/* ==========================================================================
   INSTANT TV MOUNT  —  Design System
   Brand:  Same-day TV install crew, photographed.
   Voice:  Punchy, warm, time-stamped. "Send a snap, we're already loading the van."
   Visual: Polaroid frames, sodium-amber developer light, paper grain,
           heavy serif numerals, mono timestamps, faded photo borders.
   ========================================================================== */

/* -----  1. TOKENS  ------------------------------------------------------- */
:root {
    /* Palette — warm photo album + darkroom amber */
    --paper:     #f4ede0;       /* warm cream album page */
    --paper-2:   #ece4d2;       /* dimmer paper */
    --paper-3:   #dfd5be;       /* deeper edge */
    --bone:      #faf4e6;       /* lightest highlight */

    --ink:       #1a1614;       /* deep darkroom black */
    --ink-2:     #2b2520;       /* secondary text */
    --ink-3:     #4a4036;       /* tertiary */

    --amber:     #d68b3c;       /* sodium-vapor developer light */
    --amber-2:   #b56a1f;       /* deeper amber */
    --amber-soft:#f1c994;       /* amber wash */

    --rose:      #e8a39e;       /* faded photo pink */
    --rose-2:    #d57b75;
    --rose-pale: #f5d6d2;

    --olive:     #6b6d3a;       /* Polaroid border green-grey */
    --olive-2:   #4a4b29;
    --steel:     #847a6c;       /* developer chemistry grey */
    --steel-2:   #a89e8f;

    --line:      rgba(26,22,20,0.14);
    --line-dim:  rgba(26,22,20,0.07);
    --line-onink:rgba(244,237,224,0.18);

    /* Type — chunky high-contrast serif + soft humanist sans + technical mono */
    --font-display: "Fraunces", "Times New Roman", Georgia, serif;
    --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

    /* Type scale */
    --t-mega:    clamp(3.25rem, 7.5vw + 1rem, 7.75rem);
    --t-display: clamp(2.5rem, 5vw + 1rem, 5.25rem);
    --t-h1:      clamp(2.25rem, 4.2vw + 0.5rem, 4rem);
    --t-h2:      clamp(1.75rem, 2.6vw + 0.5rem, 2.625rem);
    --t-h3:      clamp(1.3125rem, 1.6vw + 0.5rem, 1.75rem);
    --t-h4:      clamp(1.0625rem, 0.6vw + 0.85rem, 1.25rem);
    --t-body:    1rem;
    --t-small:   0.9375rem;
    --t-micro:   0.75rem;

    --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
    --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

    --max-w: 1280px;
    --gutter: 28px;

    /* Signature: square-ish corners, like a real Polaroid card.
       Most "instant" brands go ultra-rounded; we go the opposite way.    */
    --radius:    4px;
    --radius-sm: 2px;
    --radius-lg: 8px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur: 280ms;
}

/* -----  2. RESET + BASE  ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--t-body);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--amber); color: var(--ink); }

/* -----  3. TYPOGRAPHY  --------------------------------------------------- */
.mega {
    font-family: var(--font-display);
    font-size: var(--t-mega);
    font-weight: 500;          /* Fraunces gets heavy at this scale */
    line-height: 0.92;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display {
    font-family: var(--font-display);
    font-size: var(--t-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.018em;
    font-variation-settings: "opsz" 96, "SOFT" 30;
}
h1, .h1 {
    font-family: var(--font-display);
    font-size: var(--t-h1);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 96, "SOFT" 30;
}
h2, .h2 {
    font-family: var(--font-display);
    font-size: var(--t-h2);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 72, "SOFT" 30;
}
h3, .h3 {
    font-family: var(--font-display);
    font-size: var(--t-h3);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.005em;
}
h4, .h4 {
    font-family: var(--font-body);
    font-size: var(--t-h4);
    font-weight: 600;
    line-height: 1.3;
}

em, i, .italic {
    font-style: italic;
    font-family: var(--font-display);
    font-variation-settings: "opsz" 96, "SOFT" 100;     /* the italic gets curvier */
}

/* Tag-strip — like film perforation labels at the top of each section */
.tag-strip {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.tag-strip::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(214,139,60,0.18);
}
.tag-strip--ink { color: var(--ink); }
.tag-strip--ink::before { background: var(--ink); box-shadow: 0 0 0 3px rgba(26,22,20,0.12); }
.tag-strip--rose { color: var(--rose-2); }
.tag-strip--rose::before { background: var(--rose); box-shadow: 0 0 0 3px rgba(232,163,158,0.22); }

/* Stamp — JetBrains mono timestamp accent */
.stamp {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--ink-3);
}
.stamp--amber { color: var(--amber-2); }

.lede {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink-2);
}
.lede-lg { font-size: 1.25rem; line-height: 1.55; }
.small { font-size: var(--t-small); }
.micro { font-size: var(--t-micro); letter-spacing: 0.06em; }
.muted { color: var(--steel); }
.accent { color: var(--amber-2); }

/* -----  4. LAYOUT  ------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.container--narrow { max-width: 960px; }
.container--wide   { max-width: 1380px; }

.section {
    padding-top: var(--s-9);
    padding-bottom: var(--s-9);
    position: relative;
}
@media (max-width: 768px) {
    .section { padding-top: var(--s-8); padding-bottom: var(--s-8); }
}
.section--tight    { padding-top: var(--s-7); padding-bottom: var(--s-7); }
.section--paper-2  { background: var(--paper-2); }
.section--paper-3  { background: var(--paper-3); }
.section--ink      { background: var(--ink); color: var(--bone); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bone); }
.section--ink .lede { color: rgba(250,244,230,0.78); }
.section--ink .muted { color: var(--steel-2); }
.section--ink .stamp { color: var(--amber-soft); }
.section--amber    { background: var(--amber); color: var(--ink); }
.section--rose     { background: var(--rose-pale); color: var(--ink); }

/* -----  5. PAPER GRAIN  -------------------------------------------------- */
.paper-grain {
    position: relative;
}
.paper-grain::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 28%, rgba(26,22,20,0.025) 1px, transparent 1.6px),
        radial-gradient(circle at 78% 72%, rgba(26,22,20,0.022) 1.2px, transparent 1.8px),
        radial-gradient(circle at 52% 18%, rgba(214,139,60,0.018) 1.5px, transparent 2px);
    background-size: 56px 56px, 84px 84px, 120px 120px;
    background-position: 0 0, 22px 22px, 11px 33px;
    pointer-events: none;
    opacity: 0.85;
}
.paper-grain > * { position: relative; z-index: 1; }

/* Sodium amber wash — like a darkroom safelight */
.amber-wash {
    position: relative;
    overflow: hidden;
}
.amber-wash::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(214,139,60,0.16), transparent 60%);
    pointer-events: none;
}
.amber-wash > * { position: relative; z-index: 1; }

/* -----  6. BUTTONS  ----------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    border-radius: var(--radius);            /* SQUARE-ish — signature distinction */
    border: 1.5px solid transparent;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
                color var(--dur) var(--ease), border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    position: relative;
}
.btn:focus-visible { outline: 2px solid var(--amber-2); outline-offset: 3px; }
.btn .arr { transition: transform var(--dur) var(--ease); font-family: var(--font-mono); }
.btn:hover .arr { transform: translateX(4px); }

.btn--primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.btn--primary:hover {
    background: var(--amber-2);
    border-color: var(--amber-2);
    color: var(--paper);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px -14px rgba(214,139,60,0.7);
}

.btn--amber {
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
}
.btn--amber:hover {
    background: var(--ink);
    color: var(--amber);
    border-color: var(--ink);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.section--ink .btn--outline { color: var(--paper); border-color: var(--paper); }
.section--ink .btn--outline:hover { background: var(--paper); color: var(--ink); }

.btn--ghost {
    padding: 4px 0;
    background: none;
    border: none;
    border-bottom: 1.5px solid currentColor;
    color: var(--amber-2);
    border-radius: 0;
    font-weight: 600;
}
.btn--ghost:hover { color: var(--ink); }

/* -----  7. CHIPS / BADGES  --------------------------------------------- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--paper-2);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.chip--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip--amber { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.chip--rose { background: var(--rose-pale); color: var(--rose-2); border-color: var(--rose-pale); }
.chip--live::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 3px rgba(214,139,60,0.28);
    animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(214,139,60,0.28); }
    50%      { box-shadow: 0 0 0 6px rgba(214,139,60,0); }
}

/* -----  8. FRAME — Polaroid-style content card  ---------------------- */
/* The signature element. Generous bottom whitespace mimics the Polaroid
   developing strip. Slight rotation possible on hover for a touch of life.  */
.frame {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-4) var(--s-4) var(--s-6);     /* extra bottom — the famous strip */
    box-shadow:
        0 2px 0 rgba(26,22,20,0.03),
        0 12px 32px -16px rgba(26,22,20,0.12);
    position: relative;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.frame:hover {
    transform: translateY(-3px) rotate(-0.5deg);
    box-shadow:
        0 4px 0 rgba(26,22,20,0.04),
        0 22px 48px -20px rgba(26,22,20,0.18);
}
.frame__image {
    background: var(--paper-2);
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-4);
    position: relative;
}
.frame__image svg { width: 64%; height: auto; color: var(--ink); }
.frame__caption {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--s-3);
}
.frame__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.frame__stamp {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    color: var(--steel);
}

/* -----  9. SNAP — service card with frame border, top heavy            */
.snap {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-3) var(--s-3) var(--s-6);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 0 rgba(26,22,20,0.03), 0 14px 36px -18px rgba(26,22,20,0.14);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
    position: relative;
}
.snap:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 0 rgba(26,22,20,0.05), 0 26px 52px -22px rgba(26,22,20,0.22);
}
.snap__image {
    aspect-ratio: 4 / 3;
    background: linear-gradient(160deg, var(--paper-2), var(--paper-3));
    border-radius: var(--radius-sm);
    margin-bottom: var(--s-5);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.snap__image svg { width: 70%; height: auto; color: var(--ink); }
.snap__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 65%, rgba(214,139,60,0.1) 100%);
    pointer-events: none;
}
.snap__corner {
    position: absolute;
    top: var(--s-3);
    right: var(--s-3);
    background: var(--amber);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    z-index: 2;
}
.snap__index {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--amber-2);
    margin: 0 var(--s-3) var(--s-2);
    text-transform: uppercase;
}
.snap__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 var(--s-3) var(--s-3);
    color: var(--ink);
    letter-spacing: -0.012em;
}
.snap__body {
    color: var(--ink-2);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
    margin: 0 var(--s-3) var(--s-5);
}
.snap__foot {
    margin: 0 var(--s-3);
    padding-top: var(--s-4);
    border-top: 1px dashed var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--ink-3);
}
.snap__foot .accent { color: var(--amber-2); }

/* -----  10. TIMER — process step (timed exposure)  --------------------- */
.timer {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-6) var(--s-5);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--dur) var(--ease);
}
.timer:hover { transform: translateY(-2px); border-color: var(--amber); }
.timer__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-4);
    border-bottom: 1px dashed var(--line);
}
.timer__step {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--amber-2);
    text-transform: uppercase;
}
.timer__clock {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 0.9;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.timer__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--s-3);
    color: var(--ink);
    letter-spacing: -0.005em;
}
.timer__body { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.55; }

/* -----  11. PRICING CARD  --------------------------------------------- */
.price {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-7) var(--s-6);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
    position: relative;
}
.price:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -24px rgba(26,22,20,0.2);
}
.price--feature {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.price--feature .price__name,
.price--feature .price__amount,
.price--feature .price__sub,
.price--feature .price__inc li { color: var(--paper); }
.price--feature .price__inc li { border-color: var(--line-onink); }
.price--feature .price__inc li::before { color: var(--amber); }

.price__roll {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: var(--s-4);
}
.price--feature .price__roll { color: var(--amber); }
.price__name {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--s-3);
    color: var(--ink);
    letter-spacing: -0.014em;
}
.price__amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: var(--s-2);
    font-variant-numeric: tabular-nums;
}
.price__amount small {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--steel);
    letter-spacing: 0.08em;
}
.price__sub {
    color: var(--ink-2);
    font-size: 0.9375rem;
    padding-bottom: var(--s-5);
    margin-bottom: var(--s-4);
    border-bottom: 1px dashed var(--line);
    line-height: 1.55;
}
.price--feature .price__sub { border-color: var(--line-onink); color: rgba(244,237,224,0.78); }
.price__inc { flex: 1; margin-bottom: var(--s-5); }
.price__inc li {
    padding: var(--s-3) 0 var(--s-3) 26px;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line-dim);
}
.price__inc li:last-child { border-bottom: none; }
.price__inc li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--amber-2);
    font-size: 0.625rem;
}

/* -----  12. PRINT (testimonial)  -------------------------------------- */
/* Looks like a photo print laid flat — caption strip at bottom.            */
.print {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-4);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 0 rgba(26,22,20,0.03);
    transition: transform var(--dur) var(--ease-out);
}
.print:nth-child(2n) { transform: rotate(0.4deg); }
.print:nth-child(2n+1) { transform: rotate(-0.3deg); }
.print:hover { transform: rotate(0deg) translateY(-3px); }
.print__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--s-4);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--line);
}
.print__roll {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: var(--amber-2);
    text-transform: uppercase;
}
.print__stamp {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--steel);
    letter-spacing: 0.04em;
}
.print__body {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ink);
    flex: 1;
    margin-bottom: var(--s-5);
}
.print__sign {
    padding-top: var(--s-4);
    border-top: 1px dashed var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.print__name {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
}
.print__where {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--steel);
    letter-spacing: 0.04em;
}

/* -----  13. EXPOSURE (stat tile)  ------------------------------------- */
.exposure {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-6) var(--s-5);
    background: var(--bone);
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.exposure__label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber-2);
}
.exposure__value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 0.9;
    color: var(--ink);
    letter-spacing: -0.022em;
    font-variant-numeric: tabular-nums;
}
.exposure__note {
    color: var(--ink-3);
    font-size: 0.875rem;
    line-height: 1.5;
}
.section--ink .exposure {
    background: var(--ink-2);
    border-color: var(--line-onink);
}
.section--ink .exposure__label { color: var(--amber); }
.section--ink .exposure__value { color: var(--paper); }
.section--ink .exposure__note  { color: rgba(244,237,224,0.7); }

/* -----  14. CONTACT SHEET — gallery of small frames ------------------ */
.contact-sheet {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-3);
    padding: var(--s-5);
    background: var(--ink);
    border-radius: var(--radius);
    border: 1px solid var(--ink);
}
@media (max-width: 900px) { .contact-sheet { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .contact-sheet { grid-template-columns: repeat(2, 1fr); } }
.contact-sheet__cell {
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: var(--s-2);
    text-align: center;
    transition: transform var(--dur) var(--ease);
    position: relative;
}
.contact-sheet__cell:hover {
    transform: scale(1.04);
    z-index: 2;
}
.contact-sheet__cell svg {
    width: 100%;
    height: 56px;
    color: var(--ink);
}
.contact-sheet__lbl {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    margin-top: 4px;
    display: block;
    text-transform: uppercase;
}

/* -----  15. SHUTTER (CTA panel)  -------------------------------------- */
.shutter {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius);
    padding: var(--s-9) var(--s-7);
    position: relative;
    overflow: hidden;
}
.shutter::before {
    /* sodium-amber spot, like a darkroom safelight switched on */
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(214,139,60,0.35), transparent 65%);
    pointer-events: none;
}
.shutter > * { position: relative; z-index: 1; }
@media (max-width: 700px) { .shutter { padding: var(--s-7) var(--s-5); } }

/* -----  16. FORMS  ----------------------------------------------------- */
.form { display: grid; gap: var(--s-5); }
.form__row { display: grid; gap: var(--s-5); grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-2);
    font-weight: 500;
}
.field label .opt { color: var(--steel); margin-left: 4px; letter-spacing: 0.04em; }
.field input,
.field textarea,
.field select {
    background: var(--bone);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--ink);
    width: 100%;
    font-family: var(--font-body);
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--steel-2); }
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--amber-2);
    background: var(--paper);
}
.field textarea { resize: vertical; min-height: 150px; }

/* -----  17. HEADER + NAV  --------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(244,237,224,0.96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: var(--s-5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__txt {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.012em;
}
.brand__sub {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--amber-2);
    margin-top: 4px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: var(--s-6); }
.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-2);
    padding: 8px 0;
    position: relative;
    transition: color var(--dur) var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); font-weight: 600; }
.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--amber);
}

.header-cta { display: flex; align-items: center; gap: var(--s-3); }
.menu-btn {
    display: none;
    width: 44px; height: 44px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
}
.menu-btn span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
    position: relative;
}
.menu-btn span::before, .menu-btn span::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after  { top: 6px; }

@media (max-width: 980px) {
    .nav, .header-cta .btn:not(.menu-btn) { display: none; }
    .header-cta .menu-btn { display: flex; }
    .header-cta .chip { display: none; }
}

.mobile-menu {
    position: fixed; inset: 0;
    background: var(--paper);
    z-index: 100;
    padding: var(--s-7) var(--gutter);
    display: none;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s-8);
}
.mobile-menu__close {
    width: 44px; height: 44px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: var(--s-3); }
.mobile-menu nav a {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--ink);
    line-height: 1;
    border-bottom: 1px solid var(--line);
    padding: var(--s-4) 0;
    letter-spacing: -0.018em;
    font-weight: 500;
}
.mobile-menu nav a.is-active { color: var(--amber-2); font-style: italic; }
.mobile-menu__foot { margin-top: auto; padding-top: var(--s-7); }

/* -----  18. HERO  ----------------------------------------------------- */
.hero {
    padding: var(--s-8) 0 var(--s-9);
    position: relative;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: var(--s-8);
    align-items: end;
}
@media (max-width: 920px) {
    .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); }
    .hero { padding: var(--s-7) 0; }
}
.hero__lockup .tag-strip { margin-bottom: var(--s-6); }
.hero__lockup h1 {
    font-family: var(--font-display);
    font-size: var(--t-mega);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.028em;
    margin-bottom: var(--s-5);
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__lockup h1 em {
    font-style: italic;
    color: var(--amber-2);
}
.hero__lede {
    color: var(--ink-2);
    font-size: 1.1875rem;
    line-height: 1.55;
    max-width: 50ch;
    margin-bottom: var(--s-6);
}
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-7); }
.hero__notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
    padding-top: var(--s-5);
    border-top: 1px dashed var(--line);
}
@media (max-width: 640px) { .hero__notes { grid-template-columns: 1fr 1fr; } }
.hero__note dt {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: 6px;
}
.hero__note dd {
    color: var(--ink-2);
    font-size: 0.9375rem;
    line-height: 1.45;
    font-weight: 500;
}

.hero__editorial {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-4) var(--s-4) var(--s-7);
    box-shadow: 0 4px 0 rgba(26,22,20,0.04), 0 24px 56px -22px rgba(26,22,20,0.22);
    transform: rotate(-1.4deg);
    transition: transform var(--dur) var(--ease-out);
}
.hero__editorial:hover { transform: rotate(0deg); }
@media (max-width: 920px) { .hero__editorial { transform: rotate(-0.8deg); margin-top: var(--s-5); } }

/* -----  19. PAGE HEAD  ------------------------------------------------ */
.page-head {
    padding: var(--s-8) 0 var(--s-7);
    border-bottom: 1px solid var(--line);
}
.page-head__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--s-6);
    flex-wrap: wrap;
    gap: var(--s-3);
}
.page-head__crumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--steel);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.page-head__crumb a { color: var(--ink-2); }
.page-head__crumb a:hover { color: var(--amber-2); }
.page-head__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
    align-items: end;
}
@media (max-width: 768px) { .page-head__grid { grid-template-columns: 1fr; } }
.page-head h1 {
    font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
    line-height: 0.98;
    margin-bottom: var(--s-4);
    max-width: 16ch;
    letter-spacing: -0.02em;
}
.page-head h1 em { color: var(--amber-2); font-style: italic; }
.page-head__lede {
    max-width: 56ch;
    color: var(--ink-2);
    font-size: 1.0625rem;
    line-height: 1.55;
}

/* -----  20. SECTION HEAD  --------------------------------------------- */
.sec-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: end;
    margin-bottom: var(--s-8);
}
@media (max-width: 768px) { .sec-head { grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-7); } }
.sec-head__title { max-width: 17ch; }
.sec-head__lede { color: var(--ink-2); line-height: 1.55; }

/* -----  21. FAQ  ------------------------------------------------------ */
.q {
    border-top: 1px solid var(--line);
    padding: var(--s-5) 0;
}
.q:last-of-type { border-bottom: 1px solid var(--line); }
.q summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s-4);
    transition: color var(--dur) var(--ease);
}
.q summary::-webkit-details-marker { display: none; }
.q summary:hover .q__title { color: var(--amber-2); }
.q__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.005em;
    flex: 1;
}
.q__title em { color: var(--amber-2); font-style: italic; }
.q__toggle {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    line-height: 1;
    color: var(--amber-2);
    transition: transform var(--dur) var(--ease);
    padding-left: var(--s-4);
}
.q[open] .q__toggle { transform: rotate(45deg); }
.q__body {
    padding-top: var(--s-4);
    color: var(--ink-2);
    line-height: 1.7;
    max-width: 70ch;
}
.q__body p + p { margin-top: var(--s-3); }

/* -----  22. FOOTER  --------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding-top: var(--s-9);
    padding-bottom: var(--s-5);
}
.footer-call {
    padding-bottom: var(--s-8);
    border-bottom: 1px dashed var(--line-onink);
    margin-bottom: var(--s-8);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--s-7);
    align-items: end;
}
@media (max-width: 800px) { .footer-call { grid-template-columns: 1fr; } }
.footer-call h2 { color: var(--paper); max-width: 14ch; }
.footer-call h2 em { color: var(--amber); }
.footer-call p { color: rgba(244,237,224,0.75); max-width: 46ch; margin-top: var(--s-4); line-height: 1.55; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--s-6);
    margin-bottom: var(--s-7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--s-4);
    font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: rgba(244,237,224,0.78);
    font-size: 0.9375rem;
    transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--paper); }
.footer-col p { color: rgba(244,237,224,0.72); line-height: 1.55; font-size: 0.9375rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-5);
    padding-top: var(--s-5);
    border-top: 1px dashed var(--line-onink);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,237,224,0.55);
    flex-wrap: wrap;
}
.footer-bottom__legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* -----  23. PROSE (legal pages)  -------------------------------------- */
.prose {
    max-width: 70ch;
    color: var(--ink-2);
    line-height: 1.75;
}
.prose h2 {
    font-size: 1.75rem;
    margin-top: var(--s-7);
    margin-bottom: var(--s-4);
    color: var(--ink);
    letter-spacing: -0.015em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-size: 1.1875rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: var(--s-5);
    margin-bottom: var(--s-3);
    color: var(--ink);
}
.prose p { margin-bottom: var(--s-4); }
.prose ul { margin: 0 0 var(--s-4) 0; padding-left: 0; }
.prose ul li {
    padding: 6px 0 6px 26px;
    position: relative;
    list-style: none;
}
.prose ul li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--amber-2);
    font-size: 0.625rem;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
    color: var(--amber-2);
    border-bottom: 1px solid rgba(181,106,31,0.35);
    transition: border-color var(--dur) var(--ease);
}
.prose a:hover { border-color: var(--amber-2); }

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: var(--s-8);
}
@media (max-width: 900px) {
    .legal-grid { grid-template-columns: 1fr; }
    .prose-toc { position: static; }
}
.prose-toc {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--s-5);
    position: sticky;
    top: 96px;
    height: max-content;
}
.prose-toc h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: var(--s-4);
    font-weight: 500;
}
.prose-toc ol { display: flex; flex-direction: column; gap: 10px; counter-reset: toc; }
.prose-toc ol li {
    font-size: 0.875rem;
    padding-left: 30px;
    position: relative;
    counter-increment: toc;
}
.prose-toc ol li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-family: var(--font-mono);
    color: var(--amber-2);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}
.prose-toc a { color: var(--ink-2); transition: color var(--dur) var(--ease); }
.prose-toc a:hover { color: var(--ink); }

/* -----  24. UTILITY  -------------------------------------------------- */
.rule { height: 1px; background: var(--line); width: 100%; border: 0; margin: var(--s-6) 0; }
.rule--dashed { border-top: 1px dashed var(--line); height: 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); } .mt-8 { margin-top: var(--s-8); }
.mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); } .mb-6 { margin-bottom: var(--s-6); }
.hidden-md { display: initial; }
@media (max-width: 768px) { .hidden-md { display: none; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .frame:hover, .print:nth-child(2n), .print:nth-child(2n+1) { transform: none; }
    html { scroll-behavior: auto; }
}
