/* ==========================================================================
   CEMETERRA — marketing site stylesheet
   --------------------------------------------------------------------------
   The single source of truth for the public marketing pages. Before this file
   existed every page carried its own hand-copied <style> block, which is how
   the site ended up with four body font stacks, nine radius values and five
   button vocabularies.

   Load it AFTER css/tailwind.css. Cascade order is what lets these button
   rules beat the @tailwindcss/forms reset — do not reintroduce !important.

   Palette is the original brand green (Tailwind green-800/700/50 + stone),
   restored 2026-08-24 after a "verdigris & granite" pass was tried and
   reverted. Structure (shared chrome, mobile nav, eyebrow device, card
   system) stayed — only the color and type tokens changed back.
   ========================================================================== */

:root {
    /* Brand */
    --verdigris-deep: #166534;   /* headings, nav, primary fill (green-800) */
    --verdigris:      #15803d;   /* links, icons, accents (green-700) */
    --verdigris-lift: #14532d;   /* primary hover (green-900) */
    --verdigris-wash: #f0fdf4;   /* tinted panels (green-50) */
    --brass:          #bbf7d0;   /* survey rules, ticks, focus ring (green-200) */

    /* Ground & ink */
    --paper:          #ffffff;
    --limestone:      #fafaf9;   /* stone-50 */
    --granite:        #1c1917;   /* stone-900 */
    --granite-mid:    #44403c;   /* stone-700 */
    --granite-soft:   #78716c;   /* stone-500 */
    --rule:           #d6d3d1;   /* stone-300 */

    /* Plot status */
    --status-available:      #15803d;
    --status-available-fill: #bbf7d0;
    --status-reserved:       #ca8a04;
    --status-reserved-fill:  #fef9c3;
    --status-occupied:       #dc2626;
    --status-occupied-fill:  #fee2e2;

    /* Type — Inter for every role. Was a Fraunces/Inter/IBM Plex Mono
       three-face system; reverted to the single face the site shipped with. */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Radius — three steps, replacing the nine values in use before */
    --r-sm: 2px;
    --r-md: 6px;
    --r-lg: 12px;

    /* Elevation — two, both tokenized */
    --shadow-sm: 0 1px 2px rgba(26, 25, 23, 0.05);
    --shadow-lg: 0 18px 44px rgba(26, 25, 23, 0.13);

    --shell: 1120px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--granite);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--verdigris-deep); }

/* Brass focus ring. There was no visible focus style anywhere on the site
   before this rule. */
:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 2px;
    border-radius: var(--r-sm);
}

/* --------------------------------------------------------------------------
   Type scale — Inter at 800 for everything structural, matching the
   original site.
   -------------------------------------------------------------------------- */

.t-display,
.t-h1,
.t-h2,
.t-h3 {
    font-family: var(--font-display);
    color: var(--granite);
    text-wrap: balance;
    margin: 0;
}

.t-display {
    font-size: clamp(2.25rem, 5.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.t-h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.012em;
}

.t-h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.05rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.t-h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
}

/* Running copy sits at 1.0–1.05rem. The old site put most body text at
   0.875rem, which is why it read dense. */
.t-lede {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--granite-mid);
    margin: 0;
}

.t-body { font-size: 1rem; color: var(--granite-mid); margin: 0; }
.t-small { font-size: 0.9rem; color: var(--granite-soft); margin: 0; }

.t-mono {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Eyebrow — the survey rule
   The site's one signature device: a surveyor's tick-and-rule carrying a mono
   label. Cemeteries are addressed as Section / Lot / Grave, so the annotation
   is the product's own vernacular rather than decoration.
   -------------------------------------------------------------------------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verdigris);
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    flex: 0 0 26px;
    height: 10px;
    background: linear-gradient(var(--brass), var(--brass)) left center / 100% 1px no-repeat;
}

.eyebrow::before { border-left: 1px solid var(--brass); }
.eyebrow::after  { border-right: 1px solid var(--brass); }

/* --------------------------------------------------------------------------
   Shell & sections
   Spacing lives on .section only. Keeping padding off element selectors is
   what stops the section/child specificity fights the old pages had.
   -------------------------------------------------------------------------- */

.shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}

.shell--narrow { max-width: 900px; }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--limestone); }
.section--head { text-align: center; margin-bottom: 48px; }
.section--head .t-lede { max-width: 62ch; margin: 16px auto 0; }

/* --------------------------------------------------------------------------
   Buttons
   One vocabulary. Was five.
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
    background: var(--verdigris-deep);
    border-color: var(--verdigris-deep);
    color: #fff;
}
.btn--primary:hover { background: var(--verdigris-lift); border-color: var(--verdigris-lift); }

.btn--outline {
    background: transparent;
    border-color: var(--verdigris-deep);
    color: var(--verdigris-deep);
}
.btn--outline:hover { background: var(--verdigris-deep); color: #fff; }

.btn--invert {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--verdigris-deep);
}
.btn--invert:hover { background: #fff; border-color: #fff; }

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   Site header
   Synced across pages by scripts/sync-chrome.js — edit config/siteChrome.js,
   not the markup in the pages.
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
}

.site-header__inner {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand__mark { display: block; width: 34px; height: 34px; }

.brand__word {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--verdigris-deep);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a:not(.btn) {
    display: inline-block;
    padding: 7px 11px;
    border-radius: var(--r-md);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--granite-mid);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-links a:not(.btn):hover { background: var(--verdigris-wash); color: var(--verdigris-deep); }

.nav-links a:not(.btn)[aria-current="page"] {
    color: var(--verdigris-deep);
    font-weight: 600;
    box-shadow: inset 0 -2px 0 var(--brass);
}

.nav-links .btn { margin-left: 6px; }

/* Mobile disclosure — a checkbox so the menu works with no JavaScript at all.
   The input is the focusable control; the label is its hit target. */
.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle__btn {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    background: #fff;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--granite-mid);
    cursor: pointer;
    user-select: none;
}

.nav-toggle__bars {
    display: block;
    position: relative;
    width: 15px;
    height: 1px;
    background: var(--granite-mid);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 1px;
    background: var(--granite-mid);
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after  { top: 5px; }

.nav-toggle:focus-visible + .nav-toggle__btn {
    outline: 2px solid var(--brass);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--granite);
    color: #a8a29e;
    padding: 64px 0 32px;
    font-size: 0.92rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 40px 28px;
}

.site-footer__brand .brand__word { color: #fff; }
.site-footer__brand p {
    margin: 16px 0 0;
    max-width: 34ch;
    color: #a8a29e;
    font-size: 0.9rem;
    line-height: 1.65;
}

.site-footer__col h2 {
    margin: 0 0 14px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d6d3d1;
}

.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: 9px; }

.site-footer a {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.15s ease;
}
.site-footer a:hover { color: #fff; text-decoration: underline; }

.site-footer__bottom {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid #292524;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: #a8a29e;
}
.site-footer__bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   Announcement bar
   Was an inline style attribute with a hardcoded gradient, duplicated per page.
   -------------------------------------------------------------------------- */

.announce {
    margin: 0;
    background: var(--verdigris-deep);
    color: #bbf7d0;
    text-align: center;
    padding: 11px 24px;
    font-size: 0.88rem;
    font-weight: 500;
}
.announce strong { color: #fff; font-weight: 600; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 26px;
}

.card__title { margin: 0 0 8px; }
.card__body { margin: 0; color: var(--granite-mid); font-size: 0.97rem; }
.card__body + .card__body { margin-top: 10px; }

.card--link { transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.card--link:hover { border-color: var(--verdigris); box-shadow: var(--shadow-sm); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    background: var(--verdigris-wash);
}
.card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--verdigris-deep);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Check list — shared SVG tick, replacing the text glyphs the comparison
   table used and the second data-URI copy pricing.html carried.
   -------------------------------------------------------------------------- */

.check-list { list-style: none; margin: 20px 0 0; padding: 0; }

.check-list li {
    position: relative;
    padding: 0 0 0 28px;
    margin-bottom: 11px;
    color: var(--granite-mid);
    font-size: 0.97rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2315803d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   Pricing — one card component, used by both index.html and pricing.html.
   Those pages previously shipped two different-looking cards for the same
   three plans.
   -------------------------------------------------------------------------- */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    align-items: start;
}

.plan {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 30px 26px;
}

.plan--featured {
    border-color: var(--verdigris);
    box-shadow: var(--shadow-lg);
}

/* A reserved badge row. Free carries no badge, Standard carries two ("Most
   popular" plus the trial badge the pricing JS injects) — without a fixed slot
   the three prices sit at three different heights. */
.plan__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 25px;
    margin-bottom: 14px;
}

.plan__badge {
    align-self: flex-start;
    padding: 4px 10px;
    border: 1px solid var(--brass);
    border-radius: 999px;
    background: var(--verdigris-wash);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--verdigris-deep);
}

.plan__name {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--granite-soft);
    margin: 0 0 10px;
}

.plan__price {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--verdigris-deep);
    margin: 0;
}
.plan__price span {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--granite-soft);
    letter-spacing: 0;
}

.plan__desc {
    margin: 12px 0 0;
    color: var(--granite-mid);
    font-size: 0.95rem;
}

.plan__rule {
    height: 1px;
    margin: 22px 0 0;
    border: 0;
    background: var(--rule);
}

.plan .check-list { flex: 1; }
.plan .btn { margin-top: 26px; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stat-bar { background: var(--verdigris-deep); padding: 40px 0; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 28px;
    text-align: center;
}

.stat__num {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.stat__label {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #bbf7d0;
}

/* --------------------------------------------------------------------------
   Split feature sections
   -------------------------------------------------------------------------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split--reverse .split__text { order: 2; }

.split__figure {
    display: grid;
    place-items: center;
    padding: 28px;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    background: #fff;
    aspect-ratio: 4 / 3;
}
/* Full opacity. These diagrams sat at 0.55 before, which read as art
   direction that was never finished. */
.split__figure svg { width: 78%; height: auto; }

/* --------------------------------------------------------------------------
   Drawing-sheet frame — hero product shot with surveyor's corner ticks
   -------------------------------------------------------------------------- */

.sheet {
    position: relative;
    max-width: 940px;
    margin: 56px auto 0;
    padding: 16px;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.sheet::before {
    content: "";
    position: absolute;
    inset: 7px;
    pointer-events: none;
    background:
        linear-gradient(var(--brass), var(--brass)) 0 0       / 15px 1px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 0 0       / 1px 15px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 100% 0    / 15px 1px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 100% 0    / 1px 15px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 0 100%    / 15px 1px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 0 100%    / 1px 15px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 100% 100% / 15px 1px no-repeat,
        linear-gradient(var(--brass), var(--brass)) 100% 100% / 1px 15px no-repeat;
}

.sheet img { display: block; border-radius: var(--r-sm); }

.sheet__caption {
    margin: 14px 4px 2px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--granite-soft);
}

/* --------------------------------------------------------------------------
   Data / comparison tables
   -------------------------------------------------------------------------- */

.table-wrap { overflow-x: auto; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.data-table th {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--rule);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--granite-soft);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--rule);
    color: var(--granite-mid);
    vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table .is-ours { background: var(--verdigris-wash); }
.data-table th.is-ours { color: var(--verdigris-deep); }

.mark { display: inline-block; width: 15px; height: 15px; vertical-align: -2px; }
.mark--yes {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2315803d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8'/%3E%3C/svg%3E") center / contain no-repeat;
}
.mark--no {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
    background: var(--verdigris-deep);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
}
.cta-band .t-h1 { color: #fff; }
.cta-band p {
    max-width: 52ch;
    margin: 16px auto 34px;
    color: #bbf7d0;
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Callouts & prose
   -------------------------------------------------------------------------- */

.callout {
    padding: 18px 20px;
    border: 1px solid var(--rule);
    border-left: 3px solid var(--brass);
    border-radius: var(--r-md);
    background: #fff;
}
.callout p { margin: 0; color: var(--granite-mid); }
.callout p + p { margin-top: 10px; }
.callout--accent { background: var(--verdigris-wash); border-left-color: var(--verdigris); }
.callout--warn { background: var(--status-occupied-fill); border-left-color: var(--status-occupied); }
.callout--good { background: var(--status-available-fill); border-left-color: var(--status-available); }

.prose { color: var(--granite-mid); }
.prose p, .prose li { line-height: 1.75; }
.prose .t-h2 { margin: 46px 0 14px; }
.prose .t-h3 { margin: 26px 0 8px; }
.prose ul, .prose ol { padding-left: 22px; margin: 10px 0 0; }
.prose li { margin-bottom: 8px; }
.prose code {
    font-family: var(--font-mono);
    font-size: 0.86em;
    padding: 1px 6px;
    border: 1px solid var(--rule);
    border-radius: var(--r-sm);
    background: var(--limestone);
}

/* --------------------------------------------------------------------------
   FAQ disclosure
   -------------------------------------------------------------------------- */

.faq {
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq > summary {
    list-style: none;
    cursor: pointer;
    padding: 17px 20px;
    font-weight: 600;
    color: var(--granite);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::after {
    content: "";
    flex: 0 0 10px;
    height: 10px;
    border-right: 1.5px solid var(--verdigris);
    border-bottom: 1.5px solid var(--verdigris);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.faq[open] > summary { background: var(--verdigris-wash); }
.faq[open] > summary::after { transform: rotate(225deg); }
.faq > p { margin: 0; padding: 4px 20px 20px; color: var(--granite-mid); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field { margin-bottom: 14px; }

.field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--granite);
}

.field input,
.field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    background: #fff;
    font: inherit;
    color: var(--granite);
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--verdigris);
    box-shadow: 0 0 0 3px rgba(92, 131, 116, 0.2);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-msg {
    display: none;
    margin-top: 14px;
    padding: 11px 14px;
    border-radius: var(--r-md);
    font-size: 0.9rem;
}
.form-msg.show { display: block; }
.form-msg.error {
    background: var(--status-occupied-fill);
    border: 1px solid var(--status-occupied);
    color: #7A4034;
}
.form-msg.success {
    background: var(--status-available-fill);
    border: 1px solid var(--status-available);
    color: var(--verdigris-deep);
}

/* --------------------------------------------------------------------------
   Responsive — two breakpoints. There were six distinct values across the
   old pages, and pricing/faq/404 had none at all.
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section--head { margin-bottom: 34px; }

    .split { grid-template-columns: 1fr; gap: 34px; }
    .split--reverse .split__text { order: 0; }
    .split__figure { aspect-ratio: 16 / 10; }

    .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .site-footer__brand { grid-column: 1 / -1; }

    .field-row { grid-template-columns: 1fr; }

    /* Nav collapses into the disclosure. The sticky bar stays one row tall —
       previously the links wrapped into a pile that ate the viewport. */
    .nav-toggle__btn { display: inline-flex; }

    .site-header__inner { flex-wrap: wrap; }

    .nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 6px 0 16px;
    }
    .nav-toggle:checked ~ .nav-links { display: flex; }

    .nav-links a:not(.btn) { padding: 11px 12px; font-size: 1rem; }
    .nav-links .btn { margin: 8px 0 0; }
}

@media (max-width: 480px) {
    .shell { padding: 0 18px; }
    .section { padding: 48px 0; }
    .card { padding: 20px; }
    .plan { padding: 24px 20px; }
    .cta-band { padding: 60px 20px; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .sheet { margin-top: 36px; padding: 10px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
