/* ==========================================================================
   Sarah's Grave Decor — site stylesheet
   Palette: ivory paper, muted sage, antique gold. Motif: the memorial arch.
   No framework, no build step. Edit freely.
   ========================================================================== */

:root {
    /* Colour */
    --paper:      #FBF8F2;
    --linen:      #F2EADC;
    --linen-deep: #E8DDCA;
    --ink:        #262220;
    --stone:      #6C6157;
    --sage:       #7C8F76;
    --sage-deep:  #46563F;
    --sage-wash:  #EEF1EA;
    --gold:       #B08D48;
    --gold-light: #DCC38A;
    --rose:       #9B6A62;
    --white:      #FFFFFF;

    /* Type */
    --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
    --body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* Scale — a 1.25 minor third, fluid between 380px and 1200px */
    --step--1: clamp(0.84rem, 0.82rem + 0.10vw, 0.90rem);
    --step-0:  clamp(1.02rem, 0.99rem + 0.16vw, 1.12rem);
    --step-1:  clamp(1.27rem, 1.20rem + 0.34vw, 1.50rem);
    --step-2:  clamp(1.55rem, 1.41rem + 0.68vw, 2.05rem);
    --step-3:  clamp(1.90rem, 1.63rem + 1.30vw, 2.85rem);
    --step-4:  clamp(2.30rem, 1.80rem + 2.30vw, 4.00rem);

    /* Space */
    --gap: clamp(1rem, 0.7rem + 1.4vw, 2rem);
    --section: clamp(3.5rem, 2.4rem + 4.6vw, 6.5rem);
    --shell: 1180px;
    --measure: 66ch;

    --arch: 999px 999px 4px 4px;   /* the headstone arch */
    --radius: 4px;
    --line: 1px solid rgba(38, 34, 32, 0.12);
    --gold-line: 1px solid rgba(176, 141, 72, 0.38);
    --lift: 0 18px 44px -28px rgba(38, 34, 32, 0.45);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@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;
    }
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: var(--step-0);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.005em;
    margin: 0 0 0.5em;
    color: var(--ink);
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--sage-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

:focus-visible {
    outline: 2px solid var(--sage-deep);
    outline-offset: 3px;
    border-radius: 2px;
}

hr { border: 0; border-top: var(--line); margin: var(--gap) 0; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--sage-deep); color: var(--white);
    padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }
.shell-narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }

.band { padding-block: var(--section); }
.band-linen { background: var(--linen); }
.band-sage { background: var(--sage-deep); color: #F3F1E9; }
.band-sage h2, .band-sage h3 { color: #FBF8F2; }
.band-sage a { color: var(--gold-light); }
.band-paper { background: var(--paper); }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.muted { color: var(--stone); }

.lede {
    font-size: var(--step-1);
    line-height: 1.5;
    color: var(--stone);
    font-weight: 300;
    max-width: 58ch;
}

/* A section heading with a short gold rule above it */
.head-rule {
    display: block;
    width: 44px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.4rem;
}
.center .head-rule { margin-inline: auto; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--stone); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.95rem 1.7rem;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--sage-deep); color: #FDFBF6; }
.btn-primary:hover { background: #374431; color: #FDFBF6; }
.btn-gold { background: var(--gold); color: #2B2115; }
.btn-gold:hover { background: #9C7B3C; color: #FFF; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(38,34,32,0.28); }
.btn-ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); background: rgba(124,143,118,0.08); }
.btn-light { background: #FBF8F2; color: var(--sage-deep); }
.btn-light:hover { background: #FFF; color: var(--sage-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.92rem; }

.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.actions.center { justify-content: center; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--sage-deep);
    color: #E9EBE2;
    font-size: var(--step--1);
    letter-spacing: 0.01em;
}
.topbar .shell {
    display: flex; flex-wrap: wrap; gap: 0.35rem 1.5rem;
    align-items: center; justify-content: space-between;
    padding-block: 0.55rem;
}
.topbar a { color: #E9EBE2; text-decoration: none; }
.topbar a:hover { color: var(--gold-light); text-decoration: underline; }
.topbar-note { opacity: 0.85; }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 248, 242, 0.94);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: var(--line);
}
.site-header .shell {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: inherit; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.brand-name {
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
}
.brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--stone);
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    background: none; border: 1px solid rgba(38,34,32,0.2);
    border-radius: 2px; padding: 0.55rem 0.7rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
.nav-toggle span + span { margin-top: 5px; }

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.6rem); }
.nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.97rem;
    padding-block: 0.35rem;
    border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--sage-deep); border-bottom-color: var(--gold); }
.nav a.is-active { border-bottom-color: var(--gold); color: var(--sage-deep); }
.nav .btn { color: #FDFBF6; border-bottom: 0; }
.nav .btn:hover { border-bottom: 0; }

@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .nav {
        position: fixed; inset: 0 0 0 auto;
        width: min(86vw, 340px);
        background: var(--paper);
        border-left: var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 5.5rem 1.6rem 2rem;
        transform: translateX(100%);
        transition: transform 0.28s ease;
        overflow-y: auto;
    }
    .nav[data-open="true"] { transform: translateX(0); box-shadow: -20px 0 60px -30px rgba(0,0,0,0.5); }
    .nav a { padding-block: 0.9rem; border-bottom: var(--line); }
    .nav .btn { margin-top: 1.2rem; justify-content: center; }
    .nav-close {
        position: absolute; top: 1.1rem; right: 1.2rem;
        background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--stone);
    }
}
@media (min-width: 961px) { .nav-close { display: none; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 5vw, 5rem) var(--section); background: var(--paper); }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.hero h1 { margin-bottom: 0.35em; }
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero-lede { font-size: var(--step-1); color: var(--stone); font-weight: 300; max-width: 46ch; }
.hero .actions { margin-top: 2rem; }
.hero-meta { margin-top: 1.6rem; font-size: var(--step--1); color: var(--stone); }

/* The arch — a headstone silhouette holding the photograph */
.arch {
    position: relative;
    border-radius: var(--arch);
    overflow: hidden;
    background: var(--linen);
    box-shadow: var(--lift);
    aspect-ratio: 4 / 5;
}
.arch::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: var(--arch);
    border: 1px solid rgba(176, 141, 72, 0.45);
    pointer-events: none;
}
.arch img, .arch svg { width: 100%; height: 100%; object-fit: cover; }

.hero-figure { position: relative; }
.hero-stamp {
    position: absolute;
    left: -1.6rem; bottom: 1.8rem;
    background: var(--white);
    border: var(--gold-line);
    border-radius: 2px;
    padding: 0.85rem 1.1rem;
    max-width: 15rem;
    box-shadow: var(--lift);
}
.hero-stamp strong { display: block; font-family: var(--display); font-size: 1.2rem; }
.hero-stamp span { font-size: 0.82rem; color: var(--stone); }

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-figure { order: -1; max-width: 460px; margin-inline: auto; }
    .hero-stamp { left: auto; right: 0.6rem; bottom: -1rem; }
    .hero .actions .btn { flex: 1 1 14rem; }
}

/* Trust strip under the hero */
.trust {
    border-top: var(--line); border-bottom: var(--line);
    background: var(--linen);
}
.trust ul {
    list-style: none; margin: 0; padding: 1.2rem 0;
    display: grid; gap: 0.7rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    font-size: var(--step--1);
    color: var(--stone);
}
.trust li { display: flex; gap: 0.6rem; align-items: flex-start; }
.trust li::before {
    content: ""; flex: none;
    width: 7px; height: 7px; margin-top: 0.55em;
    border-radius: 50%; background: var(--gold);
}

/* --------------------------------------------------------------------------
   Process — a genuine sequence, so it is numbered
   -------------------------------------------------------------------------- */
.steps {
    display: grid; gap: clamp(1.6rem, 3vw, 2.6rem);
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    counter-reset: step;
}
.step { position: relative; padding-top: 2.6rem; border-top: var(--line); }
.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute; top: 1rem; left: 0;
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--gold);
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.4em; }
.step p { font-size: 0.97rem; color: var(--stone); }

/* --------------------------------------------------------------------------
   Reasons — unnumbered, because these are not a sequence
   -------------------------------------------------------------------------- */
.reasons {
    display: grid; gap: clamp(1.6rem, 3vw, 2.4rem);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.reason { padding-top: 1.2rem; border-top: 1px solid var(--gold-light); }
.reason h3 { font-size: var(--step-1); margin-bottom: 0.4em; }
.reason p { font-size: 0.97rem; color: var(--stone); margin: 0; }

/* --------------------------------------------------------------------------
   Season band — the year, left to right
   -------------------------------------------------------------------------- */
.season-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 1fr);
    gap: 1.1rem;
    overflow-x: auto;
    padding-bottom: 1.2rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}
.season-scroll::-webkit-scrollbar { height: 6px; }
.season-scroll::-webkit-scrollbar-thumb { background: var(--linen-deep); border-radius: 3px; }

.season-card {
    scroll-snap-align: start;
    background: var(--white);
    border: var(--line);
    border-top: 3px solid var(--tint, var(--sage));
    padding: 1.4rem 1.3rem 1.5rem;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.season-card:hover { border-color: rgba(176,141,72,0.5); transform: translateY(-3px); color: inherit; }
.season-card h3 { font-size: var(--step-1); margin-bottom: 0.2em; }
.season-when { font-size: 0.8rem; color: var(--stone); letter-spacing: 0.04em; margin-bottom: 0.9rem; }
.season-card p { font-size: 0.93rem; color: var(--stone); margin-bottom: 1.2rem; }
.season-from { margin-top: auto; font-family: var(--display); font-size: 1.15rem; color: var(--sage-deep); }
.season-from span { font-family: var(--body); font-size: 0.78rem; color: var(--stone); }

/* Full season grid (collections page) */
.season-grid {
    display: grid; gap: 1.3rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.service-list {
    display: grid; gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.service {
    padding: 1.7rem 1.6rem 1.9rem;
    border-bottom: var(--line);
    border-right: var(--line);
}
.service:last-child { border-right: 0; }
.service h3 { font-size: var(--step-1); display: flex; align-items: center; gap: 0.7rem; }
.service h3 svg { width: 24px; height: 24px; flex: none; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.service p { font-size: 0.96rem; color: var(--stone); }
.service ul { margin: 0.9rem 0 0; padding-left: 1.1rem; font-size: 0.92rem; color: var(--stone); }
.service li { margin-bottom: 0.4rem; }
.service-price { margin-top: 1rem; font-family: var(--display); font-size: 1.1rem; color: var(--sage-deep); }

/* --------------------------------------------------------------------------
   Packages
   -------------------------------------------------------------------------- */
.packages {
    display: grid; gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    align-items: start;
}
.package {
    background: var(--white);
    border: var(--line);
    padding: 1.9rem 1.6rem 1.8rem;
    display: flex; flex-direction: column;
    height: 100%;
}
.package.is-popular {
    border-color: rgba(176,141,72,0.55);
    box-shadow: var(--lift);
    position: relative;
}
.package.is-popular::before {
    content: "Most chosen";
    position: absolute; top: -0.85rem; left: 1.6rem;
    background: var(--gold); color: #2B2115;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
    padding: 0.25rem 0.7rem;
}
.package h3 { font-size: var(--step-2); margin-bottom: 0.15em; }
.package-price { font-family: var(--display); font-size: 2.1rem; color: var(--sage-deep); line-height: 1; }
.package-unit { font-size: 0.82rem; color: var(--stone); margin-bottom: 1.1rem; }
.package-summary { font-size: 0.97rem; color: var(--stone); }
.package ul { list-style: none; margin: 1.2rem 0; padding: 0; font-size: 0.93rem; }
.package li { display: flex; gap: 0.6rem; padding: 0.42rem 0; border-top: var(--line); }
.package li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 0.62em; background: var(--gold); border-radius: 50%; }
.package-best { font-size: 0.87rem; color: var(--stone); font-style: italic; margin-bottom: 1rem; }
.package .btn { margin-top: auto; }

.addons { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2.5rem; font-size: 0.95rem; }
.addons li { break-inside: avoid; padding: 0.6rem 0; border-bottom: var(--line); display: flex; justify-content: space-between; gap: 1rem; }
.addons span { color: var(--stone); white-space: nowrap; }
@media (max-width: 640px) { .addons { columns: 1; } }

/* --------------------------------------------------------------------------
   Before / after
   -------------------------------------------------------------------------- */
.compare-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.compare {
    position: relative;
    border: var(--line);
    background: var(--white);
}
.compare-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
}
.compare-frame > img, .compare-frame > svg,
.compare-after, .compare-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.compare-handle {
    position: absolute; top: 0; bottom: 0;
    left: var(--split, 50%);
    width: 2px; background: var(--paper);
    box-shadow: 0 0 0 1px rgba(38,34,32,0.25);
    cursor: ew-resize;
}
.compare-handle::after {
    content: "";
    position: absolute; top: 50%; left: 50%;
    width: 38px; height: 38px; margin: -19px 0 0 -19px;
    border-radius: 50%; background: var(--paper);
    border: 1px solid var(--gold);
    background-image: linear-gradient(90deg, transparent 45%, var(--gold) 45%, var(--gold) 55%, transparent 55%);
}
.compare-label {
    position: absolute; bottom: 0.7rem;
    font-size: 0.72rem; letter-spacing: 0.12em;
    background: rgba(38,34,32,0.72); color: #FBF8F2;
    padding: 0.2rem 0.6rem;
}
.compare-label.is-before { left: 0.7rem; }
.compare-label.is-after { right: 0.7rem; }
.compare-body { padding: 1.1rem 1.2rem 1.3rem; }
.compare-body h3 { font-size: var(--step-1); margin-bottom: 0.25em; }
.compare-body p { font-size: 0.92rem; color: var(--stone); }
.compare-meta { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.5rem; }

/* --------------------------------------------------------------------------
   Away-from-home section
   -------------------------------------------------------------------------- */
.away-grid {
    display: grid; gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}
@media (max-width: 860px) { .away-grid { grid-template-columns: 1fr; } }
.away-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.away-list li { padding: 0.9rem 0; border-top: 1px solid rgba(243,241,233,0.22); }
.away-list strong { font-family: var(--display); font-size: 1.22rem; font-weight: 500; display: block; }
.away-list span { font-size: 0.95rem; opacity: 0.85; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.reviews {
    display: grid; gap: 1.3rem;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.review {
    background: var(--white);
    border: var(--line);
    padding: 1.7rem 1.6rem;
    display: flex; flex-direction: column;
}
.review blockquote {
    margin: 0 0 1.2rem;
    font-family: var(--display);
    font-size: var(--step-1);
    line-height: 1.42;
    color: var(--ink);
}
.review blockquote::before { content: "\201C"; color: var(--gold); }
.review blockquote::after { content: "\201D"; color: var(--gold); }
.review-who { margin-top: auto; font-size: 0.9rem; }
.review-who strong { display: block; }
.review-who span { color: var(--stone); }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.85rem; margin-bottom: 0.9rem; }
.sample-flag {
    display: inline-block; margin-top: 0.8rem;
    font-size: 0.72rem; letter-spacing: 0.08em;
    color: var(--rose); border: 1px dashed rgba(155,106,98,0.5);
    padding: 0.1rem 0.45rem;
}

/* --------------------------------------------------------------------------
   Areas
   -------------------------------------------------------------------------- */
.area-columns {
    columns: 4; column-gap: 2rem;
    font-size: 0.95rem;
}
@media (max-width: 900px) { .area-columns { columns: 2; } }
@media (max-width: 520px) { .area-columns { columns: 1; } }
.area-columns a { display: block; padding: 0.35rem 0; text-decoration: none; color: var(--ink); break-inside: avoid; }
.area-columns a:hover { color: var(--gold); }
.area-columns .dist { color: var(--stone); font-size: 0.82rem; }

.area-links {
    display: grid; gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    list-style: none; padding: 0; margin: 0;
}
.area-links a {
    display: block; padding: 0.9rem 1.1rem;
    background: var(--white); border: var(--line);
    text-decoration: none; color: var(--ink);
}
.area-links a:hover { border-color: var(--gold); color: var(--sage-deep); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: var(--line); }
.faq details { border-bottom: var(--line); }
.faq summary {
    cursor: pointer; list-style: none;
    padding: 1.15rem 2.5rem 1.15rem 0;
    font-family: var(--display);
    font-size: var(--step-1);
    position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%);
    color: var(--gold); font-size: 1.5rem; line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 1.3rem; color: var(--stone); font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-card {
    background: var(--white);
    border: var(--line);
    padding: clamp(1.5rem, 3vw, 2.6rem);
}
.field { margin-bottom: 1.25rem; }
.field label, .field .label {
    display: block;
    font-size: 0.93rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.field .hint { display: block; font-weight: 400; font-size: 0.85rem; color: var(--stone); margin-bottom: 0.4rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="date"], .field input[type="password"], .field input[type="number"],
.field input[type="url"], .field select, .field textarea {
    width: 100%;
    font-family: var(--body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(38,34,32,0.2);
    border-radius: 2px;
    padding: 0.8rem 0.9rem;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--sage-deep);
    box-shadow: 0 0 0 3px rgba(124,143,118,0.18);
}
.field .err { color: #9B3F35; font-size: 0.86rem; margin-top: 0.3rem; display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #9B3F35; }

.field-row {
    display: grid; gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.choice-grid {
    display: grid; gap: 0.7rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.choice {
    position: relative;
    border: 1px solid rgba(38,34,32,0.2);
    border-radius: 2px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    background: var(--paper);
    display: block;
    font-size: 0.95rem;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice strong { display: block; font-family: var(--display); font-size: 1.12rem; font-weight: 500; }
.choice span { color: var(--stone); font-size: 0.85rem; }
.choice:has(input:checked) { border-color: var(--sage-deep); background: var(--sage-wash); box-shadow: inset 0 0 0 1px var(--sage-deep); }
.choice:has(input:focus-visible) { outline: 2px solid var(--sage-deep); outline-offset: 2px; }

.check { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.93rem; }
.check input { margin-top: 0.3rem; flex: none; }

fieldset { border: 0; margin: 0 0 2rem; padding: 0; }
legend {
    font-family: var(--display);
    font-size: var(--step-2);
    padding: 0;
    margin-bottom: 0.3rem;
}
.fieldset-note { color: var(--stone); font-size: 0.93rem; margin-bottom: 1.4rem; }

/* Flash messages */
.flash { padding: 1rem 1.2rem; border-left: 3px solid var(--sage-deep); background: var(--sage-wash); margin-bottom: 1.5rem; font-size: 0.96rem; }
.flash-error { border-left-color: #9B3F35; background: #F8ECEA; }

/* --------------------------------------------------------------------------
   CTA band + footer
   -------------------------------------------------------------------------- */
.cta-band { background: var(--sage-deep); color: #F3F1E9; text-align: center; }
.cta-band h2 { color: #FBF8F2; }
.cta-band p { margin-inline: auto; color: rgba(243,241,233,0.85); }
.cta-band .actions { margin-top: 2rem; }

.site-footer { background: var(--ink); color: #CFC7BC; font-size: 0.95rem; padding-block: clamp(3rem, 5vw, 4.5rem) 0; }
.site-footer h4 { color: #FBF8F2; font-size: 1.2rem; margin-bottom: 0.9rem; }
.site-footer a { color: #CFC7BC; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { padding: 0.28rem 0; }
.footer-brand img { width: 84px; height: 84px; border-radius: 50%; margin-bottom: 1rem; }
.footer-bottom {
    margin-top: 3rem; padding-block: 1.4rem;
    border-top: 1px solid rgba(207,199,188,0.18);
    display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; justify-content: space-between;
    font-size: 0.85rem; color: #9D958B;
}

/* --------------------------------------------------------------------------
   Page headers + article pages
   -------------------------------------------------------------------------- */
.page-head { background: var(--linen); padding-block: clamp(2.6rem, 5vw, 4.5rem); border-bottom: var(--line); }
.page-head h1 { margin-bottom: 0.3em; }
.page-head p { color: var(--stone); font-size: var(--step-1); font-weight: 300; }
.crumbs { font-size: 0.85rem; color: var(--stone); margin-bottom: 1rem; }
.crumbs a { color: var(--stone); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2rem; max-width: var(--measure); }
.prose li { margin-bottom: 0.5rem; }

.split {
    display: grid; gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.sidecard {
    background: var(--linen);
    border: var(--gold-line);
    padding: 1.6rem;
    position: sticky; top: 6.5rem;
}
.sidecard h3 { font-size: var(--step-1); }
.sidecard dl { margin: 0; font-size: 0.93rem; }
.sidecard dt { font-weight: 600; margin-top: 0.8rem; }
.sidecard dd { margin: 0; color: var(--stone); }

/* Placeholder artwork */
.ph { width: 100%; height: 100%; display: block; }

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.small { font-size: var(--step--1); }
.nowrap { white-space: nowrap; }

@media print {
    .site-header, .topbar, .site-footer, .cta-band, .nav-toggle { display: none; }
    body { background: #fff; }
}
