/* =============================================================
   INDEX V2 — Editorial Atelier (light/cream, sans-serif)
   The Leather Restorators — bespoke homepage
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
    --cream-paper:   #FFFFFF;
    --cream-warm:    #FAFAFA;
    --cream-deep:    #F2F2F2;
    --ivory:         #FFFFFF;
    --ink-deep:      #1F1812;
    --ink:           #2A211A;
    --ink-soft:      #4A3F35;
    --ink-faint:     #8A7E6E;
    --rule:          #2A211A;
    --rule-soft:     rgba(42,33,26,0.18);

    --oxblood:       #5C2A1F;
    --oxblood-soft:  #7A3A2A;
    --gold-leaf:     #B89968;
    --gold-bright:   #D4B26A;
    --moss:          #4F5A3E;

    --font-display:  'Syne', 'Helvetica Neue', sans-serif;
    --font-body:     'Manrope', 'Helvetica Neue', sans-serif;
    --font-mono:     'DM Mono', ui-monospace, monospace;

    --max:   1320px;
    --gutter: clamp(20px, 4vw, 56px);

    --ease: cubic-bezier(.2,.7,.2,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);

    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-xl: 40px;
    --r-pill: 999px;

    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}
/* body grain disabled — fixed-position blend-mode caused scroll repaint jank */
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--oxblood); color: var(--ivory); }

/* ---------- LAYOUT ---------- */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
}
.kicker { color: var(--oxblood); }

.display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: var(--ink-deep);
}
.it {
    font-family: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--oxblood);
    letter-spacing: -0.015em;
}

.rule { height: 1px; background: var(--rule); opacity: 0.85; }

/* ornamental flourish */
.flourish {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--oxblood);
}
.flourish::before, .flourish::after {
    content: '';
    width: 36px; height: 1px;
    background: currentColor;
    opacity: 0.55;
}
.flourish svg { width: 14px; height: 14px; }

.section-no {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--oxblood);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}
.section-no::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--oxblood);
    opacity: 0.55;
}

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }

/* ============================================================
   1 — NAVBAR (mirrors theleatherrestorators.com)
   ============================================================ */
.tlr-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color .6s var(--ease), border-color .6s var(--ease), padding .6s var(--ease);
}
.tlr-header.scrolled {
    background: var(--cream-paper);
    border-color: var(--rule-soft);
    padding: 0.55rem 0;
}
.tlr-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2vw;
    position: relative;
}

.tlr-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.tlr-nav-left  { justify-self: start; }
.tlr-nav-right { justify-self: end; }
.tlr-nav a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--ink-deep);
    text-decoration: none;
    opacity: 0.85;
    position: relative;
    padding: 0.3rem 0;
    text-transform: uppercase;
    transition: color .35s var(--ease), opacity .35s var(--ease);
}
.tlr-nav a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: -2px;
    width: 0; height: 1px;
    background: linear-gradient(90deg, var(--gold-warm, #A47149), var(--gold-bright, #E0C9A6));
    transform: translateX(-50%);
    opacity: 0;
    transition: width .35s var(--ease), opacity .35s var(--ease);
}
.tlr-nav a:hover { color: var(--gold-bright, #E0C9A6); opacity: 1; }
.tlr-nav a:hover::after { width: 60%; opacity: 1; }
.tlr-header.scrolled .tlr-nav a { color: var(--ink-deep); opacity: 0.82; }
.tlr-header.scrolled .tlr-nav a:hover { color: var(--oxblood); opacity: 1; }

.tlr-logo {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.1vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--ink-deep);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    transition: color .35s var(--ease);
}
.tlr-header.scrolled .tlr-logo {
    color: var(--ink-deep);
    text-shadow: none;
}

.tlr-burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
    padding: 8px 10px;
    width: 32px;
    height: 36px;
    box-sizing: content-box;
}
.tlr-burger span {
    display: block;
    width: 5px; height: 5px;
    background: var(--ink-deep);
    margin: 3px auto;
    border-radius: 50%;
    transition: transform .3s var(--ease), opacity .3s var(--ease), background .35s var(--ease);
}
.tlr-header.scrolled .tlr-burger span { background: var(--ink-deep); }
.tlr-burger.active { transform: translateY(-50%) rotate(90deg); }
.tlr-burger.active span:nth-child(2) { opacity: 0.45; }

.tlr-mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0; visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.tlr-mobile-overlay.open { opacity: 1; visibility: visible; }

/* ─── EDITORIAL ATELIER MENU ─── */
.tlr-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 88%; max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background:
        radial-gradient(120% 70% at 100% 0%, rgba(184, 153, 104, 0.12) 0%, transparent 55%),
        radial-gradient(100% 60% at 0% 100%, rgba(92, 42, 31, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #FBF7EF 0%, #F4ECDC 100%);
    color: var(--ink-deep);
    z-index: 2000;
    display: grid;
    grid-template-rows: auto 1fr auto;
    transition: left 0.55s cubic-bezier(.22,.61,.36,1);
    box-shadow: 18px 0 60px -20px rgba(31, 24, 18, 0.35);
    overflow: hidden;
}
.tlr-menu::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(184, 153, 104, 0.55) 25%, rgba(184, 153, 104, 0.55) 75%, transparent 100%);
    z-index: 1;
}
.tlr-menu::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(92, 42, 31, 0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
}
.tlr-menu.open { left: 0; }

/* Head row */
.tlr-menu__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.55rem 4.4rem 0.6rem 1.6rem;
}
.tlr-menu__kicker {
    font-family: var(--font-mono, 'DM Mono', monospace);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
}
.tlr-menu__loc {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--ink-deep);
    opacity: 0.65;
    letter-spacing: 0.02em;
}

/* Close — circular oxblood-ringed × */
.tlr-menu__close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    width: 44px; height: 44px;
    background: rgba(251, 247, 239, 0.7);
    border: 1.5px solid rgba(92, 42, 31, 0.45);
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px -3px rgba(31, 24, 18, 0.18);
    transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tlr-menu__close:hover,
.tlr-menu__close:focus-visible {
    background: var(--oxblood);
    border-color: var(--oxblood);
    transform: rotate(90deg);
    box-shadow: 0 4px 14px -4px rgba(92, 42, 31, 0.55);
    outline: none;
}
.tlr-menu__close-x {
    position: relative;
    width: 18px;
    height: 18px;
    font-size: 0;
    color: transparent;
    margin: 0;
}
.tlr-menu__close-x::before,
.tlr-menu__close-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--ink-deep);
    border-radius: 2px;
    transition: background .3s var(--ease);
}
.tlr-menu__close-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.tlr-menu__close-x::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.tlr-menu__close:hover .tlr-menu__close-x::before,
.tlr-menu__close:hover .tlr-menu__close-x::after,
.tlr-menu__close:focus-visible .tlr-menu__close-x::before,
.tlr-menu__close:focus-visible .tlr-menu__close-x::after { background: #FBF7EF; }

/* Nav list */
.tlr-menu__nav {
    position: relative;
    z-index: 2;
    padding: 1rem 1.6rem 1.2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
}
.tlr-menu__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 0 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(92, 42, 31, 0.12);
    color: var(--ink-deep);
    text-decoration: none;
    transition: padding-left .4s var(--ease), color .3s var(--ease);
    opacity: 0;
    transform: translateX(-18px);
}
.tlr-menu__item:first-of-type { border-top: 1px solid rgba(92, 42, 31, 0.18); }
.tlr-menu__item:hover {
    padding-left: 0.5rem;
    color: var(--oxblood);
}
.tlr-menu__item:hover .tlr-menu__num { color: var(--oxblood); }
.tlr-menu__item:hover .tlr-menu__sub { opacity: 0.85; }
.tlr-menu__num {
    font-family: var(--font-mono, 'DM Mono', monospace);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--gold-warm, #B89968);
    transition: color .3s var(--ease);
}
.tlr-menu__label {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.005em;
}
.tlr-menu__sub {
    justify-self: end;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--ink-deep);
    opacity: 0.5;
    letter-spacing: 0.02em;
    transition: opacity .3s var(--ease);
}

/* Stagger entrance once .open is set */
.tlr-menu.open .tlr-menu__item {
    animation: tlrMenuItemIn .55s var(--ease) forwards;
}
.tlr-menu.open .tlr-menu__item:nth-child(1) { animation-delay: 0.18s; }
.tlr-menu.open .tlr-menu__item:nth-child(2) { animation-delay: 0.24s; }
.tlr-menu.open .tlr-menu__item:nth-child(3) { animation-delay: 0.30s; }
.tlr-menu.open .tlr-menu__item:nth-child(4) { animation-delay: 0.36s; }
.tlr-menu.open .tlr-menu__item:nth-child(5) { animation-delay: 0.42s; }
.tlr-menu.open .tlr-menu__item:nth-child(6) { animation-delay: 0.48s; }
.tlr-menu.open .tlr-menu__item:nth-child(7) { animation-delay: 0.54s; }
.tlr-menu.open .tlr-menu__item:nth-child(8) { animation-delay: 0.60s; }

@keyframes tlrMenuItemIn {
    to { opacity: 1; transform: translateX(0); }
}

/* Footer — CTA + signature */
.tlr-menu__foot {
    position: relative;
    z-index: 2;
    padding: 1.2rem 1.6rem 1.6rem;
    background: linear-gradient(180deg, rgba(244, 236, 220, 0) 0%, rgba(244, 236, 220, 0.65) 35%);
    border-top: 1px solid rgba(184, 153, 104, 0.4);
}
.tlr-menu__cta {
    display: block;
    text-align: center;
    padding: 0.95rem 1rem;
    background: var(--oxblood);
    color: #FBF7EF;
    text-decoration: none;
    margin-bottom: 0.85rem;
    border: 1px solid var(--oxblood);
    transition: background .35s var(--ease), color .35s var(--ease);
}
.tlr-menu__cta:hover {
    background: transparent;
    color: var(--oxblood);
}
.tlr-menu__cta-kicker {
    display: block;
    font-family: var(--font-mono, 'DM Mono', monospace);
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.78;
    margin-bottom: 0.35rem;
}
.tlr-menu__cta-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.06em;
}
.tlr-menu__sig {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--ink-deep);
    opacity: 0.7;
    letter-spacing: 0.01em;
}
.tlr-menu__sig em {
    font-style: italic;
    color: var(--oxblood);
    font-weight: 500;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .tlr-header { padding: 1.4rem 0; }
    .tlr-header.scrolled { padding: 1.1rem 0; }
    .tlr-header__inner {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        min-height: 44px;
    }
    .tlr-nav { display: none; }
    .tlr-burger {
        display: block;
        right: 1.2vw;
        top: 50%;
        transform: translateY(-50%);
    }
    .tlr-burger.active { transform: translateY(-50%) rotate(90deg); }
    .tlr-logo {
        font-size: 1.1rem;
        text-align: center;
        max-width: calc(100% - 90px);
    }
}
@media (min-width: 1200px) {
    .tlr-nav { gap: 2rem; }
}
@media (max-width: 600px) {
    .hero-tag { display: none !important; }
    .tlr-header { padding: 1.55rem 0; }
    .tlr-header.scrolled { padding: 1.2rem 0; }
    .tlr-header__inner {
        padding: 0 16px;
        padding-right: 70px !important;
        min-height: 48px;
        justify-content: flex-start;
    }
    .tlr-logo {
        font-size: 1.02rem !important;
        letter-spacing: 0.12em !important;
        line-height: 1.2;
        text-align: left;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transform: none !important;
    }
    .tlr-burger {
        right: 12px !important;
        top: 50%;
        transform: translateY(-50%);
    }
    .tlr-burger.active { transform: translateY(-50%) rotate(90deg); }
}
@media (max-width: 400px) {
    .tlr-logo {
        font-size: 0.92rem !important;
        letter-spacing: 0.1em !important;
    }
}
@media (max-width: 360px) {
    .tlr-logo {
        font-size: 0.82rem !important;
        letter-spacing: 0.08em !important;
    }
}

/* ============================================================
   2 — HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 110svh;
    padding: clamp(72px, 9svh, 100px) 0 clamp(20px, 3svh, 36px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 40% at 8% 70%, rgba(184,153,104,0.18) 0, transparent 60%),
        radial-gradient(ellipse 40% 35% at 92% 20%, rgba(92,42,31,0.10) 0, transparent 65%),
        var(--cream-paper);
}
.hero .wrap { width: 100%; }
/* dark overlay strip behind navbar — subtle scrim only */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(31,24,18,0.65) 0%, rgba(31,24,18,0.25) 70%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-meta {
    position: absolute;
    left: 14px;
    top: 50%;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: flex;
    gap: 22px;
    z-index: 3;
    max-height: 70svh;
}
@media (max-width: 1400px) {
    .hero-meta { display: none; }
}
.hero-meta::before {
    content: '';
    position: absolute;
    left: 50%; top: -28px;
    width: 1px; height: 22px;
    background: var(--oxblood);
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 0;
}
.hero-left { padding-top: 0; min-width: 0; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
    padding: 6px 12px;
    border: 1px solid var(--rule-soft);
    background: var(--ivory);
}
.hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--oxblood);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(92,42,31,0.12);
    animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(92,42,31,0.12); }
    50% { box-shadow: 0 0 0 8px rgba(92,42,31,0.04); }
}
.hero-tag span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    font-weight: 500;
}
.hero-tag .glyph { width: 14px; height: 14px; color: var(--gold-leaf); }

.hero-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, 3.9vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
    color: var(--ink-deep);
    margin-bottom: 14px;
}
.hero-h1 .word {
    display: inline-block;
    transition: color .4s var(--ease), transform .4s var(--ease);
}
.hero-h1:hover .word.h-anim { color: var(--oxblood); transform: translateY(-3px); }
.hero-h1 .it { display: block; font-size: 0.92em; margin-top: 4px; }

.hero-lede {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 14px;
}
.hero-lede strong { color: var(--ink-deep); font-weight: 600; }

.hero-stamp {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0 0 18px;
}
.hero-stamp span { color: var(--ink-faint); }
.hero-stamp a {
    color: var(--ink-deep);
    text-decoration: none;
    border-bottom: 1px dotted var(--gold-leaf);
}
.hero-stamp a:hover { color: var(--oxblood); }

/* ticker mini-stats */
.hero-ticker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 14px;
    border-top: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
}
.hero-tick {
    padding: 8px 12px 8px 0;
    display: flex; align-items: center; gap: 10px;
    border-left: 1px solid var(--rule-soft);
}
.hero-tick:first-child { border-left: 0; padding-left: 0; }
.hero-tick:not(:first-child) { padding-left: 16px; }
.hero-tick svg { width: 20px; height: 20px; color: var(--oxblood); flex-shrink: 0; }
.hero-tick .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-tick .lbl {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 4px;
}

.hero-cta-row {
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
    margin-bottom: 14px;
}
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 24px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: all .4s var(--ease);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--ink-deep); color: var(--ivory); }
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--oxblood);
    transition: left .5s var(--ease);
    z-index: 0;
}
.btn-primary:hover::before { left: 0; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost { background: transparent; color: var(--ink-deep); border-color: var(--ink-deep); }
.btn-ghost:hover { background: var(--ink-deep); color: var(--ivory); }
.btn-gold { background: var(--gold-bright); color: var(--ink-deep); }
.btn-gold:hover { background: var(--gold-leaf); }

.hero-trust {
    display: flex; align-items: center; gap: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--rule-soft);
    flex-wrap: wrap;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 14px; height: 14px; fill: var(--gold-bright); stroke: none; }
.hero-trust-text { font-size: 0.85rem; color: var(--ink-soft); }
.hero-trust-text strong { color: var(--ink-deep); font-weight: 700; }
.hero-trust-logos {
    display: flex; gap: 14px;
    margin-left: auto;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    color: var(--ink-faint);
}
@media (max-width: 1180px) {
    .hero-trust-logos { margin-left: 0; width: 100%; padding-top: 8px; border-top: 1px dashed var(--rule-soft); }
}
.hero-trust-logos span { display: flex; align-items: center; gap: 6px; }
.hero-trust-logos svg { width: 14px; height: 14px; color: var(--oxblood); }

.hero-right {
    position: relative;
    padding: 20px 20px 20px 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.hero-collage {
    position: relative;
    aspect-ratio: 4 / 5.6;
    height: 92svh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}
.hero-collage .pic {
    position: absolute;
    overflow: hidden;
    background: var(--cream-deep);
    transition: transform .9s var(--ease), box-shadow .9s var(--ease);
}
.hero-collage .pic img,
.hero-collage .pic video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); display: block; }
.hero-collage .pic:hover img,
.hero-collage .pic:hover video { transform: scale(1.08); }
.hero-collage .pic-main {
    inset: 0;
    z-index: 2;
    box-shadow: 0 30px 60px -28px rgba(31,24,18,0.45);
}
.hero-collage .pic-main::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(251,247,238,0.35);
    pointer-events: none;
    border-radius: calc(var(--r-md) - 2px);
}
.hero-collage .pic-2 {
    width: 32%; aspect-ratio: 4/5;
    bottom: -22px; left: -22px;
    z-index: 3;
    border: 5px solid var(--cream-paper);
    box-shadow: 0 18px 36px -22px rgba(31,24,18,0.4);
}
.hero-collage .pic-3 {
    width: 28%; aspect-ratio: 1;
    top: -22px; right: -22px;
    z-index: 4;
    border: 5px solid var(--cream-paper);
    box-shadow: 0 18px 36px -22px rgba(31,24,18,0.4);
}
.hero-collage:hover .pic-2 { transform: translate(-6px, 6px); }
.hero-collage:hover .pic-3 { transform: translate(6px, -6px); }

.hero-stat-card {
    position: absolute;
    bottom: -22px; right: -22px;
    background: var(--ivory);
    padding: 14px 20px;
    border: 1px solid var(--rule);
    box-shadow: 0 20px 40px -22px rgba(31,24,18,0.4);
    z-index: 5;
    display: flex; gap: 12px; align-items: center;
}
.hero-stat-card .ico {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--oxblood);
    color: var(--gold-bright);
    display: grid; place-items: center;
}
.hero-stat-card .ico svg { width: 20px; height: 20px; }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--oxblood);
    letter-spacing: -0.03em;
}
.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 4px;
}

.hero-seal {
    position: absolute;
    top: 38%; right: -38px;
    transform: translateY(-50%);
    width: 92px; height: 92px;
    border-radius: 50%;
    background: var(--ink-deep);
    color: var(--gold-bright);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 0.62rem;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 6;
    animation: seal-spin 22s linear infinite;
    box-shadow: 0 14px 30px -16px rgba(31,24,18,0.5);
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.hero-seal::before {
    content: '✦';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    color: var(--gold-bright);
    font-size: 0.7rem;
}
.hero-seal span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.32em;
    color: var(--ivory);
    opacity: 0.7;
    margin-top: 4px;
}

/* scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--ink-faint);
    z-index: 4;
}
.hero-scroll .line {
    width: 1px;
    height: 26px;
    background: linear-gradient(to bottom, transparent, var(--oxblood), transparent);
    background-size: 100% 200%;
    animation: scroll-line 2s ease-in-out infinite;
}
@media (max-height: 760px) {
    .hero-scroll { display: none; }
}
@keyframes scroll-line {
    0% { background-position: 0 -100%; }
    100% { background-position: 0 200%; }
}

/* ============================================================
   3 — ATELIER STRIP (full-bleed quote)
   ============================================================ */
.strip {
    position: relative;
    padding: clamp(80px, 11vw, 140px) var(--gutter);
    background: var(--ink-deep);
    color: var(--ivory);
    overflow: hidden;
}
.strip-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    background-size: cover;
    background-position: center;
    filter: grayscale(.4);
}
.strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(184,153,104,0.18) 0, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.strip-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.strip-meta {
    display: flex; gap: 40px; flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 38px;
    align-items: center;
}
.strip-meta .star { width: 10px; height: 10px; color: var(--gold-bright); }
.strip-quote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 3.7vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ivory);
    margin-bottom: 36px;
    max-width: 22ch;
}
.strip-quote .it { color: var(--gold-bright); display: block; }
.strip-foot {
    display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(251,247,238,0.18);
    align-items: end;
}
.strip-caption {
    max-width: 460px;
    font-size: 0.92rem;
    color: rgba(251,247,238,0.78);
    line-height: 1.65;
}
.strip-credit {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-leaf);
    display: flex; align-items: center; gap: 10px;
}
.strip-credit svg { width: 14px; height: 14px; }

/* ============================================================
   4 — MANIFESTO / ABOUT
   ============================================================ */
.manifesto {
    background: var(--cream-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: clamp(48px, 6vw, 80px) 0 !important;
}
#services.section { padding: clamp(40px, 5vw, 60px) 0 clamp(28px, 3vw, 40px); }
.manifesto-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: clamp(30px, 6vw, 90px);
    align-items: start;
}
.manifesto-aside { position: sticky; top: 140px; }
.manifesto-aside .section-no { margin-bottom: 24px; }

.about-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    background: var(--cream-deep);
}
.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.about-img:hover img { transform: scale(1.06); }
.about-img-stamp {
    position: absolute;
    bottom: 14px; right: 14px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--ink-deep);
    padding: 6px 12px;
}

.manifesto-stat-block {
    margin-top: 0;
    padding: 22px 0;
    border-top: 1px solid var(--rule);
    display: flex; align-items: center; gap: 14px;
}
.manifesto-stat-block:last-of-type { border-bottom: 1px solid var(--rule); }
.manifesto-stat-block .ico {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--oxblood);
    color: var(--oxblood);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.manifesto-stat-block .ico svg { width: 18px; height: 18px; }
.manifesto-stat-block .num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--oxblood);
    letter-spacing: -0.02em;
}
.manifesto-stat-block .lbl {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 4px;
}

.manifesto-body {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    line-height: 1.22;
    color: var(--ink-deep);
    letter-spacing: -0.015em;
}
.manifesto-body p + p { margin-top: 28px; }
.manifesto-body .it { font-weight: 400; }

.about-features {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule-soft);
    border: 1px solid var(--rule-soft);
}
.about-feat {
    background: var(--cream-warm);
    padding: 24px 22px;
    display: flex; gap: 14px;
    transition: background .3s var(--ease);
}
.about-feat:hover { background: var(--ivory); }
.about-feat .ico {
    width: 36px; height: 36px;
    color: var(--oxblood);
    flex-shrink: 0;
}
.about-feat h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-deep);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.about-feat p {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.manifesto-sig {
    margin-top: 40px;
    display: flex; align-items: center; gap: 18px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.manifesto-sig svg { width: 64px; height: 22px; color: var(--oxblood); }

.author-bio {
    margin-top: 36px;
    padding: 22px 24px;
    border: 1px solid var(--rule-soft);
    border-left: 3px solid var(--oxblood);
    background: rgba(212,178,106,0.06);
    border-radius: 2px;
}
.author-bio__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 10px;
}
.author-bio p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-deep);
    margin: 0 0 8px;
}
.author-bio p:last-child { margin-bottom: 0; }
.author-bio strong { color: var(--ink-deep); font-weight: 600; }
.author-bio__meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--ink-faint);
}
.author-bio__meta a {
    color: var(--oxblood);
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
}
.author-bio__meta a:hover { color: var(--ink-deep); }

/* ============================================================
   5 — SERVICES GRID
   ============================================================ */
.services-head {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: end;
}
.services-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink-deep);
    margin-top: 22px;
}
.services-head h2 .it { display: block; }
.services-head p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 520px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.svc-card {
    background: var(--cream-paper);
    padding: 0;
    position: relative;
    transition: background .5s var(--ease);
    overflow: hidden;
    display: flex; flex-direction: column;
}
.svc-card:hover { background: var(--ivory); }
.svc-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--cream-deep);
    border-bottom: 1px solid var(--rule-soft);
}
.svc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .5s var(--ease);
}
.svc-card:hover .svc-img img { transform: scale(1.08); filter: brightness(1.04); }
.svc-no {
    position: absolute;
    top: 12px; left: 12px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    color: var(--ivory);
    background: rgba(31,24,18,0.85);
    padding: 5px 10px;
}
.svc-body { padding: 28px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body .ico-row {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
}
.svc-body .ico {
    width: 32px; height: 32px;
    color: var(--oxblood);
    transition: transform .5s var(--ease);
}
.svc-card:hover .svc-body .ico { transform: rotate(-6deg) scale(1.1); }
.svc-body .ico-tag {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.svc-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.15;
    color: var(--ink-deep);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.svc-body p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
}
.svc-spec {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 22px;
}
.svc-spec span {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    padding: 5px 10px;
    border: 1px solid var(--rule-soft);
}
.svc-from {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule-soft);
    display: flex; justify-content: space-between; align-items: center;
}
.svc-from svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.svc-card:hover .svc-from svg { transform: translateX(6px); }

/* ============================================================
   6 — PROCESS
   ============================================================ */
.process {
    background: var(--ivory);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: clamp(28px, 3vw, 40px) 0 clamp(48px, 6vw, 70px) !important;
}
.process-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: end;
}
.process-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 22px;
}
.process-head h2 .it { display: block; }
.process-head .quote {
    border-left: 2px solid var(--oxblood);
    padding-left: 22px;
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.process-list { display: grid; gap: 0; }
.proc-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.4fr 1fr;
    gap: clamp(20px, 3.5vw, 50px);
    padding: 32px 0;
    align-items: center;
    border-top: 1px solid var(--rule);
    transition: background .4s var(--ease), padding .4s var(--ease);
    position: relative;
}
.proc-row:last-child { border-bottom: 1px solid var(--rule); }
.proc-row:hover { background: var(--cream-warm); padding-left: 14px; padding-right: 14px; }
.proc-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--oxblood);
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 12px;
}
.proc-num svg { width: 28px; height: 28px; color: var(--gold-leaf); }
.proc-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: var(--ink-deep);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.proc-meta {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 8px;
    font-weight: 500;
}
.proc-desc {
    font-size: 0.94rem;
    color: var(--ink-soft);
    line-height: 1.7;
}
.proc-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-deep);
}
.proc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.2);
    transition: filter .5s var(--ease), transform 1s var(--ease);
}
.proc-row:hover .proc-img img { filter: grayscale(0); transform: scale(1.06); }

/* ============================================================
   7 — BEFORE / AFTER
   ============================================================ */
.gallery-head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 40px; flex-wrap: wrap;
    margin-bottom: 56px;
}
.gallery-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 18px;
}
.gallery-head h2 .it { display: block; }
.gallery-head .filters {
    display: flex; gap: 4px;
    border: 1px solid var(--rule);
    padding: 4px;
}
.gallery-head .filters button {
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    transition: all .3s var(--ease);
}
.gallery-head .filters button.active,
.gallery-head .filters button:hover {
    background: var(--ink-deep);
    color: var(--ivory);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ba-card {
    background: var(--ivory);
    border: 1px solid var(--rule);
    padding: 14px;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    position: relative;
    cursor: pointer;
}
.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -28px rgba(31,24,18,0.4);
}
.ba-imgwrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-deep);
}
.ba-imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ba-card:hover .ba-imgwrap img { transform: scale(1.06); }
.ba-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--ink-deep);
    color: var(--gold-bright);
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
}
.ba-tag svg { width: 10px; height: 10px; }
.ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--ivory);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 2;
}
.ba-divider::before {
    content: 'BEFORE';
    position: absolute;
    top: 14px; right: 8px;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.32em;
    color: var(--ivory);
    background: rgba(0,0,0,0.6);
    padding: 3px 6px;
}
.ba-divider::after {
    content: 'AFTER';
    position: absolute;
    bottom: 14px; left: 8px;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.32em;
    color: var(--ivory);
    background: rgba(92,42,31,0.85);
    padding: 3px 6px;
}
.ba-foot {
    padding: 18px 8px 6px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}
.ba-foot h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-deep);
    letter-spacing: -0.01em;
}
.ba-foot .meta {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: right;
    line-height: 1.4;
}
.ba-foot .meta strong { display: block; color: var(--oxblood); }

/* ============================================================
   8 — BRAND SHOWCASE
   ============================================================ */
.brands {
    background: var(--cream-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: clamp(48px, 6vw, 80px) 0 !important;
}
.brands-head {
    text-align: center;
    margin-bottom: 32px;
}
.brands-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 18px;
}
.brands-head h2 .it { display: inline-block; margin-left: 12px; }
.brands-head p {
    margin: 18px auto 0;
    max-width: 580px;
    font-size: 0.96rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.marquee {
    overflow: hidden;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 26px 0;
    margin-bottom: 50px;
    background: var(--ivory);
}
.marquee-track {
    display: flex; gap: 60px;
    width: max-content;
    animation: marquee 36s linear infinite;
    align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: var(--ink-deep);
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: flex; align-items: center; gap: 60px;
}
.marquee-track span svg { width: 16px; height: 16px; color: var(--oxblood); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.brand-tile {
    background: var(--ivory);
    border: 1px solid var(--rule);
    padding: 0;
    transition: all .4s var(--ease);
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.brand-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(31,24,18,0.3);
}
.brand-tile-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-deep);
    position: relative;
}
.brand-tile-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.brand-tile:hover .brand-tile-img img { transform: scale(1.08); }
.brand-tile-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31,24,18,0.85) 100%);
}
.brand-tile-body {
    padding: 18px 18px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.brand-tile h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-deep);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.brand-tile p {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 4px;
}
.brand-tile-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    display: grid; place-items: center;
    color: var(--ink-deep);
    transition: all .35s var(--ease);
    flex-shrink: 0;
}
.brand-tile-arrow svg { width: 12px; height: 12px; }
.brand-tile:hover .brand-tile-arrow {
    background: var(--oxblood);
    color: var(--ivory);
    border-color: var(--oxblood);
    transform: rotate(-45deg);
}

/* ============================================================
   9 — TESTIMONIALS
   ============================================================ */
.vernissage-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: end;
}
.vernissage-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 18px;
}
.vernissage-head h2 .it { display: block; }
.vernissage-head .meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: right;
    display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.vernissage-head .meta .big {
    font-family: var(--font-display);
    color: var(--oxblood);
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    line-height: 1;
}
.vernissage-head .meta .stars { gap: 4px; }
.vernissage-head .meta .stars svg { width: 16px; height: 16px; }
.platform-row {
    display: flex; gap: 18px;
    font-size: 0.62rem;
    align-items: center;
}
.platform-row span { display: flex; align-items: center; gap: 6px; }
.platform-row svg { width: 12px; height: 12px; color: var(--oxblood); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testi {
    background: var(--ivory);
    border: 1px solid var(--rule);
    padding: 32px 28px 26px;
    position: relative;
    transition: transform .5s var(--ease), background .5s var(--ease);
    display: flex; flex-direction: column;
}
.testi:nth-child(2) { transform: translateY(28px); }
.testi:hover { transform: translateY(-6px); background: var(--cream-warm); }
.testi:nth-child(2):hover { transform: translateY(22px); }
.testi-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
}
.testi-head .quote-mark {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 0.7;
    color: var(--gold-leaf);
}
.testi-head .platform {
    width: 28px; height: 28px;
    color: var(--oxblood);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 13px; height: 13px; fill: var(--gold-bright); }
.testi-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-deep);
    letter-spacing: -0.005em;
    margin-bottom: 22px;
}
.testi-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--cream-deep);
}
.testi-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}
.testi:hover .testi-img img { transform: scale(1.06); }
.testi-cite {
    display: flex; align-items: center; gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--rule-soft);
    margin-top: auto;
}
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--oxblood);
    color: var(--ivory);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.testi-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-deep);
    line-height: 1.2;
}
.testi-loc {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 4px;
}
.testi-verified {
    margin-left: auto;
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--moss);
}
.testi-verified svg { width: 12px; height: 12px; }

/* ============================================================
   10 — LEDGER
   ============================================================ */
.ledger {
    background: var(--ink-deep);
    color: var(--ivory);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}
.ledger::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(184,153,104,0.15) 0, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(92,42,31,0.25) 0, transparent 60%);
    pointer-events: none;
}
.ledger-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative; z-index: 2;
}
.ledger-head .section-no { color: var(--gold-bright); }
.ledger-head .section-no::before { background: var(--gold-bright); }
.ledger-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ivory);
    margin-top: 22px;
}
.ledger-head h2 .it { color: var(--gold-bright); display: inline-block; margin-left: 12px; }
.ledger-head p {
    margin: 18px auto 0;
    max-width: 600px;
    font-size: 0.96rem;
    color: rgba(251,247,238,0.7);
    line-height: 1.65;
}

.ledger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative; z-index: 2;
}
.ledger-cell {
    padding: 36px 28px;
    border-left: 1px solid rgba(251,247,238,0.18);
    text-align: center;
    transition: background .4s var(--ease);
    position: relative;
}
.ledger-cell:first-child { border-left: 0; }
.ledger-cell:hover { background: rgba(184,153,104,0.08); }
.ledger-cell .ico {
    width: 36px; height: 36px;
    margin: 0 auto 18px;
    color: var(--gold-bright);
    opacity: 0.85;
}
.ledger-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    line-height: 1;
    color: var(--gold-bright);
    letter-spacing: -0.03em;
}
.ledger-lbl {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(251,247,238,0.7);
    margin-top: 14px;
}
.ledger-sub {
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(251,247,238,0.5);
    letter-spacing: 0;
    text-transform: none;
}

/* ============================================================
   11 — FAQ
   ============================================================ */
#faq.section { padding: clamp(48px, 6vw, 80px) 0; }
.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
}
.faq-aside { position: sticky; top: 140px; }
.faq-aside h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink-deep);
    margin-top: 22px;
}
.faq-aside h2 .it { display: block; }
.faq-aside p {
    margin-top: 22px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
    max-width: 360px;
}
.faq-aside .faq-img {
    aspect-ratio: 1;
    margin-top: 28px;
    overflow: hidden;
    background: var(--cream-deep);
}
.faq-aside .faq-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.faq-aside .faq-img:hover img { transform: scale(1.06); }
.faq-aside .btn { margin-top: 24px; }

.faq-list { border-top: 1px solid var(--rule-soft); }
.faq-item { border-bottom: 1px solid var(--rule-soft); }
.faq-item:last-of-type { border-bottom: 0; }
.faq-q {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    padding: 26px 0;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--ink-deep);
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: color .3s var(--ease);
    outline: none;
    border: 0;
    background: transparent;
}
.faq-q:focus { outline: none; }
.faq-q:focus-visible { outline: 2px dashed var(--oxblood); outline-offset: 4px; }
.faq-q .q-no {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    color: var(--oxblood);
    margin-right: 14px;
    flex-shrink: 0;
}
.faq-q:hover { color: var(--oxblood); }
.faq-q .plus {
    width: 28px; height: 28px;
    border: 1px solid var(--ink-deep);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all .35s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--ink-deep);
    transition: all .35s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 25%; right: 25%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 25%; bottom: 25%; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus { background: var(--oxblood); border-color: var(--oxblood); transform: rotate(45deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--ivory); }
.faq-item.open .faq-q { color: var(--oxblood); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner {
    padding: 0 0 28px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 700px;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ============================================================
   12 — CONTACT / FOOTER
   ============================================================ */
.contact {
    background: var(--cream-warm);
    border-top: 1px solid var(--rule);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 100px);
}
.contact-left h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink-deep);
    margin-top: 22px;
}
.contact-left h2 .it { display: block; }
.contact-left p {
    margin-top: 26px;
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 480px;
}

.contact-info {
    margin-top: 36px;
    display: grid; gap: 0;
}
.info-row {
    display: grid;
    grid-template-columns: 50px 110px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    align-items: center;
    transition: padding .3s var(--ease);
}
.info-row:hover { padding-left: 8px; }
.info-row:last-child { border-bottom: 1px solid var(--rule); }
.info-row .ico {
    width: 32px; height: 32px;
    color: var(--oxblood);
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: grid; place-items: center;
    transition: all .3s var(--ease);
}
.info-row .ico svg { width: 14px; height: 14px; }
.info-row:hover .ico {
    background: var(--oxblood);
    color: var(--ivory);
    border-color: var(--oxblood);
}
.info-row dt {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.info-row dd {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink-deep);
    letter-spacing: -0.01em;
}
.info-row dd a:hover { color: var(--oxblood); }

.coverage {
    margin-top: 30px;
    padding: 20px;
    background: var(--ivory);
    border: 1px solid var(--rule);
}
.coverage-head {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.coverage-head svg { width: 14px; height: 14px; color: var(--oxblood); }
.coverage-list {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.coverage-list span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-deep);
    padding: 6px 10px;
    border: 1px solid var(--rule-soft);
    background: var(--cream-paper);
}

.contact-card {
    background: var(--ivory);
    border: 1px solid var(--rule);
    padding: 38px 34px;
    position: relative;
}
.contact-card::before, .contact-card::after {
    content: '';
    position: absolute;
    width: 28px; height: 28px;
    pointer-events: none;
}
.contact-card::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--oxblood);
    border-left: 2px solid var(--oxblood);
}
.contact-card::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--oxblood);
    border-right: 2px solid var(--oxblood);
}
.contact-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--ink-deep);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.contact-card .sub {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 8px;
}
.contact-card .sub svg { width: 12px; height: 12px; color: var(--moss); }

.field { margin-bottom: 18px; position: relative; }
.field label {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
}
.field label svg { width: 12px; height: 12px; color: var(--oxblood); }
.field input, .field textarea, .field select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink-deep);
    transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-bottom-color: var(--oxblood);
}
.field textarea { resize: vertical; min-height: 70px; }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 14px; }

.foot {
    margin-top: 80px;
    padding: 36px 0 14px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.foot .center { text-align: center; }
.foot .right { text-align: right; }
.foot a { transition: color .3s var(--ease); }
.foot a:hover { color: var(--oxblood); }
.foot .social {
    display: flex; gap: 12px; justify-content: flex-end;
}
.foot .social a {
    width: 32px; height: 32px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--ink-deep);
    transition: all .3s var(--ease);
}
.foot .social a:hover {
    background: var(--oxblood);
    color: var(--ivory);
    border-color: var(--oxblood);
    transform: translateY(-2px);
}
.foot .social svg { width: 14px; height: 14px; }

.foot-line {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--rule-soft);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 0.58rem;
    color: var(--ink-faint);
    opacity: 0.75;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .36s; }
.reveal.d5 { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { margin-top: 70px; }
    .hero-meta { display: none; }
    .hero-ticker { grid-template-columns: 1fr; }
    .hero-tick { border-left: 0; border-top: 1px solid var(--rule-soft); padding-left: 0 !important; padding-top: 12px; }
    .hero-tick:first-child { border-top: 0; padding-top: 0; }
    .manifesto-grid { grid-template-columns: 1fr; }
    .manifesto-aside { position: static; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-head, .process-head { grid-template-columns: 1fr; gap: 26px; }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
    .testi-grid { grid-template-columns: 1fr; gap: 18px; }
    .testi:nth-child(2) { transform: none; }
    .testi:nth-child(2):hover { transform: translateY(-6px); }
    .ledger-grid { grid-template-columns: repeat(2, 1fr); }
    .ledger-cell:nth-child(3) { border-left: 0; }
    .ledger-cell { border-top: 1px solid rgba(251,247,238,0.18); }
    .ledger-cell:nth-child(-n+2) { border-top: 0; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-aside { position: static; }
    .vernissage-head { grid-template-columns: 1fr; }
    .vernissage-head .meta { text-align: left; align-items: flex-start; }
    .contact-grid { grid-template-columns: 1fr; }
    .proc-row { grid-template-columns: 60px 1fr 1fr; }
    .proc-row .proc-img { display: none; }
}
@media (max-width: 720px) {
    .services-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .ledger-grid { grid-template-columns: 1fr; }
    .ledger-cell { border-left: 0; border-top: 1px solid rgba(251,247,238,0.18); }
    .ledger-cell:first-child { border-top: 0; }
    .hero-stat-card { right: -10px; bottom: 0; padding: 14px 18px; }
    .hero-stat-num { font-size: 1.3rem; }
    .hero-seal { width: 84px; height: 84px; top: -8px; left: -8px; font-size: 0.58rem; }
    .foot { grid-template-columns: 1fr; text-align: center; }
    .foot .right, .foot .center, .foot .social { text-align: center; justify-content: center; }
    .strip-foot { flex-direction: column; gap: 18px; align-items: flex-start; }
    .gallery-head { flex-direction: column; align-items: flex-start; }
    .info-row { grid-template-columns: 38px 1fr; }
    .info-row dt { display: none; }
    .proc-row { grid-template-columns: 60px 1fr; }
    .proc-row .proc-desc { grid-column: 1 / -1; padding-top: 8px; }
}

/* =============================================================
   GLOBAL ROUNDING — soft corners, no sharp edges
   ============================================================= */

/* pills */
.btn,
.nav-cta,
.tlr-mobile-nav .mob-cta,
.hero-tag,
.svc-spec span,
.coverage-list span,
.gallery-head .filters,
.gallery-head .filters button,
.ba-tag,
.svc-no,
.about-img-stamp,
.strip-meta span,
.strip-credit,
.testi-verified,
.platform-row span {
    border-radius: var(--r-pill);
}

/* small radius (badges, chips, fields) */
.field input,
.field textarea,
.field select,
.foot-line {
    border-radius: var(--r-xs);
}

/* medium radius (cards, tiles, info, images, frames) */
.svc-card,
.svc-img,
.ba-card,
.ba-imgwrap,
.brand-tile,
.brand-tile-img,
.testi,
.testi-img,
.proc-img,
.about-img,
.contact-card,
.coverage,
.hero-collage .pic,
.hero-collage .pic-main,
.hero-collage .pic-2,
.hero-collage .pic-3,
.hero-stat-card,
.about-feat,
.faq-img,
.manifesto-stat-block,
.process-head .quote,
.marquee {
    border-radius: var(--r-md);
}

/* larger radius for big surfaces */
.services-grid,
.about-features {
    border-radius: var(--r-lg);
    overflow: hidden;
}

/* ledger inherit */
.ledger-grid {
    border-radius: var(--r-lg);
    overflow: hidden;
}

/* round images that fill rounded parents */
.svc-img img,
.ba-imgwrap img,
.brand-tile-img img,
.testi-img img,
.proc-img img,
.about-img img,
.hero-collage .pic img,
.faq-img img {
    border-radius: inherit;
}

/* fix corners on overlapping elements */
.hero-frame::after,
.hero-collage .pic-main::after { border-radius: calc(var(--r-md) - 2px); }

/* contact-card corner ornaments — round them too */
.contact-card::before {
    border-top-left-radius: var(--r-md);
    border-top: 2px solid var(--oxblood);
    border-left: 2px solid var(--oxblood);
}
.contact-card::after {
    border-bottom-right-radius: var(--r-md);
    border-bottom: 2px solid var(--oxblood);
    border-right: 2px solid var(--oxblood);
}

/* ba-divider stripe — soften ends */
.ba-divider {
    border-radius: var(--r-pill);
}
.ba-divider::before,
.ba-divider::after {
    border-radius: var(--r-pill);
}

/* svc-spec, coverage chips already pilled above. tighten padding to suit pill */
.svc-spec span { padding: 6px 12px; }
.coverage-list span { padding: 7px 14px; }
.ba-tag { padding: 7px 14px; }
.svc-no { padding: 6px 12px; }
.about-img-stamp { padding: 7px 14px; }

/* strip card surface (full-bleed) keep flat — but strip-bg image gets soft mask not needed */

/* gallery filters: outer pill, inner buttons pill */
.gallery-head .filters { padding: 4px; }
.gallery-head .filters button { padding: 8px 18px; }

/* hero-tag pill spacing */
.hero-tag { padding: 9px 18px; }

/* nav-cta from main index pill style fallback (if any custom nav cta added later) */

/* avatar already round (50%) — keep */

/* mobile-menu rounded corner on its panel edge */
.tlr-mobile-menu {
    border-top-left-radius: var(--r-lg);
    border-bottom-left-radius: var(--r-lg);
}

/* modal-style softness on cards: subtle inner shadow on rounded surfaces */
.svc-card, .brand-tile, .testi, .ba-card, .contact-card {
    box-shadow: 0 1px 0 rgba(31,24,18,0.04), 0 8px 24px -18px rgba(31,24,18,0.18);
}
.ba-card:hover { box-shadow: 0 26px 50px -28px rgba(31,24,18,0.4); }

/* buttons: ensure pill-shape padding feels right */
.btn { padding: 15px 30px; }

/* hero seal already circle, keep */

/* fields: subtle background to match rounded look */
.field input,
.field textarea,
.field select {
    background: rgba(246,241,231,0.6);
    border: 1px solid var(--rule-soft);
    padding: 12px 14px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    background: var(--ivory);
    border-color: var(--oxblood);
}

/* coverage box softer */
.coverage { padding: 22px 22px 20px; }

/* faq plus stays circle, good */

/* contact info icon circles already round — good */

/* footer social already round */

/* services-grid inner cells: round corners of inner svc-cards on edges only */
.services-grid .svc-card { border-radius: 0; }
.services-grid .svc-card .svc-img { border-radius: 0; }
.services-grid .svc-card .svc-img img { border-radius: 0; }
/* outer corners only */
.services-grid .svc-card:nth-child(1) { border-top-left-radius: var(--r-lg); }
.services-grid .svc-card:nth-child(1) .svc-img { border-top-left-radius: var(--r-lg); }
.services-grid .svc-card:nth-child(3) { border-top-right-radius: var(--r-lg); }
.services-grid .svc-card:nth-child(3) .svc-img { border-top-right-radius: var(--r-lg); }
.services-grid .svc-card:nth-child(4) { border-bottom-left-radius: var(--r-lg); }
.services-grid .svc-card:nth-child(6) { border-bottom-right-radius: var(--r-lg); }

@media (max-width: 1024px) {
    .services-grid .svc-card { border-radius: 0 !important; }
    .services-grid .svc-card .svc-img { border-radius: 0 !important; }
    .services-grid .svc-card:nth-child(1) { border-top-left-radius: var(--r-lg) !important; }
    .services-grid .svc-card:nth-child(1) .svc-img { border-top-left-radius: var(--r-lg) !important; }
    .services-grid .svc-card:nth-child(2) { border-top-right-radius: var(--r-lg) !important; }
    .services-grid .svc-card:nth-child(2) .svc-img { border-top-right-radius: var(--r-lg) !important; }
    .services-grid .svc-card:nth-child(5) { border-bottom-left-radius: var(--r-lg) !important; }
    .services-grid .svc-card:nth-child(6) { border-bottom-right-radius: var(--r-lg) !important; }
}
@media (max-width: 720px) {
    .services-grid .svc-card { border-radius: 0 !important; }
    .services-grid .svc-card .svc-img { border-radius: 0 !important; }
    .services-grid .svc-card:first-child,
    .services-grid .svc-card:first-child .svc-img { border-top-left-radius: var(--r-lg) !important; border-top-right-radius: var(--r-lg) !important; }
    .services-grid .svc-card:last-child { border-bottom-left-radius: var(--r-lg) !important; border-bottom-right-radius: var(--r-lg) !important; }
}

/* about-features same edge-rounding */
.about-features .about-feat { border-radius: 0; }
.about-features .about-feat:nth-child(1) { border-top-left-radius: var(--r-lg); }
.about-features .about-feat:nth-child(2) { border-top-right-radius: var(--r-lg); }
.about-features .about-feat:nth-child(3) { border-bottom-left-radius: var(--r-lg); }
.about-features .about-feat:nth-child(4) { border-bottom-right-radius: var(--r-lg); }

/* ledger-grid edge cells */
.ledger-grid { gap: 0; }
.ledger-cell { border-radius: 0; }
.ledger-cell:first-child { border-top-left-radius: var(--r-lg); border-bottom-left-radius: var(--r-lg); }
.ledger-cell:last-child { border-top-right-radius: var(--r-lg); border-bottom-right-radius: var(--r-lg); }
@media (max-width: 1024px) {
    .ledger-cell { border-radius: 0 !important; }
    .ledger-cell:nth-child(1) { border-top-left-radius: var(--r-lg) !important; }
    .ledger-cell:nth-child(2) { border-top-right-radius: var(--r-lg) !important; }
    .ledger-cell:nth-child(3) { border-bottom-left-radius: var(--r-lg) !important; }
    .ledger-cell:nth-child(4) { border-bottom-right-radius: var(--r-lg) !important; }
}
@media (max-width: 720px) {
    .ledger-cell { border-radius: 0 !important; }
    .ledger-cell:first-child { border-top-left-radius: var(--r-lg) !important; border-top-right-radius: var(--r-lg) !important; }
    .ledger-cell:last-child { border-bottom-left-radius: var(--r-lg) !important; border-bottom-right-radius: var(--r-lg) !important; }
}

/* hero-tag inline already pilled — make sure the dot+icon stay circular */
.hero-tag .dot { border-radius: 50%; }

/* general anti-sharp safety: any remaining card-like surface gets a soft edge */
section .wrap > .reveal { border-radius: 0; }

/* btn::before slide-fill should match rounded */
.btn-primary::before { border-radius: inherit; }

/* progress on smooth corners — no sharp marquee edges */
.marquee { overflow: hidden; }

/* =============================================================
   HERO — viewport-fit overrides
   ============================================================= */
.hero .btn { padding: 12px 22px; font-size: 0.68rem; }
.hero .btn svg { width: 14px; height: 14px; }

@media (max-height: 820px) {
    .hero { padding-top: 90px; padding-bottom: 30px; }
    .hero-h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 14px; }
    .hero-lede { font-size: 0.88rem; margin-bottom: 14px; }
    .hero-tag { margin-bottom: 14px; padding: 5px 12px; font-size: 0.6rem; }
    .hero-tag span { font-size: 0.6rem; }
    .hero-ticker { margin-bottom: 14px; }
    .hero-tick { padding: 8px 10px 8px 0; }
    .hero-tick:not(:first-child) { padding-left: 10px; }
    .hero-tick svg { width: 18px; height: 18px; }
    .hero-tick .num { font-size: 0.95rem; }
    .hero-tick .lbl { font-size: 0.5rem; }
    .hero-cta-row { margin-bottom: 14px; }
    .hero .btn { padding: 10px 18px; font-size: 0.62rem; }
    .hero-collage { height: 84vh; max-height: none; aspect-ratio: 4 / 5.6; }
    .hero-seal { width: 84px; height: 84px; font-size: 0.58rem; }
    .hero-stat-card { padding: 12px 16px; }
    .hero-stat-num { font-size: 1.3rem; }
}

@media (max-height: 700px) {
    .hero { padding-top: 80px; padding-bottom: 20px; min-height: 100svh; }
    .hero-h1 { font-size: 1.7rem; }
    .hero-lede { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .hero-trust { gap: 10px; padding-top: 10px; }
    .hero-trust-logos { display: none; }
    .hero-collage { height: 78vh; max-height: none; aspect-ratio: 4 / 5.6; }
}

@media (max-width: 1024px) {
    .hero { height: auto; min-height: auto; padding: 100px 0 50px; }
    .hero-right { height: auto; padding: 0; }
    .hero-collage { max-height: none; height: auto; width: 100%; aspect-ratio: 4/4; }
}

/* =============================================================
   V1 PORTED — Vernissage (Client Voices)
   Font swap: Cormorant→Syne, Montserrat→Manrope/DM Mono
   ============================================================= */
.vernissage {
    position: relative;
    width: 100%;
    background: var(--cream-paper);
    overflow: hidden;
    border-top: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
}
.vernissage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
.vernissage__hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}
.vernissage__left {
    padding: clamp(5rem, 10vh, 9rem) clamp(2.5rem, 5vw, 6rem) clamp(5rem, 10vh, 9rem) clamp(3rem, 7vw, 9rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border-right: 1px solid var(--rule-soft);
}
.vernissage__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 2.2rem;
}
.vernissage__tag::before {
    content: '';
    display: inline-block;
    width: 2.8rem;
    height: 1px;
    background: var(--oxblood);
    opacity: 0.55;
}
.vernissage__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 4.6vw, 4.6rem);
    line-height: 0.98;
    color: var(--ink-deep);
    letter-spacing: -0.025em;
    margin-bottom: 2.2rem;
}
.vernissage__title em {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--oxblood);
    font-size: 1.04em;
    letter-spacing: -0.015em;
}
.vernissage__lede {
    max-width: 32rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 2.4rem;
    border-left: 2px solid var(--oxblood);
    padding-left: 1.2rem;
}
.vernissage__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-pill);
    background: var(--ivory);
    width: fit-content;
    margin-bottom: 1.4rem;
    transition: border-color .4s, box-shadow .4s, transform .4s;
}
.vernissage__rating:hover {
    border-color: var(--oxblood);
    box-shadow: 0 8px 28px rgba(92,42,31,0.12);
    transform: translateY(-2px);
}
.vernissage__stars { display: flex; gap: 3px; }
.vernissage__stars svg { fill: var(--gold-bright); width: 15px; height: 15px; }
.vernissage__rating-text {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-deep);
}
.vernissage__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.vernissage__meta-item {
    padding: 0.55rem 1rem;
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--ink-soft);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all .35s var(--ease);
}
.vernissage__meta-item:hover {
    background: var(--oxblood);
    border-color: var(--oxblood);
    color: var(--ivory);
    transform: translateY(-2px);
}
.vernissage__right {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.vernissage__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(246,241,231,0.55) 100%);
    z-index: 2;
    pointer-events: none;
}
.vernissage__track-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: visible;
}
.vernissage__track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vernissage__frame {
    position: absolute;
    width: clamp(200px, 22vw, 300px);
    display: flex;
    flex-direction: column;
    transition: transform .7s var(--ease);
    will-change: transform;
}
.vernissage__frame:nth-child(1) { top: 10%; left: 5%; transform: rotate(-5.5deg); z-index: 3; }
.vernissage__frame:nth-child(2) { top: 20%; left: 28%; transform: rotate(2.5deg) translateY(2.5rem); z-index: 4; }
.vernissage__frame:nth-child(3) { top: 12%; right: 3%; transform: rotate(6.5deg) translateY(1.5rem); z-index: 3; }
.vernissage__frame:hover {
    transform: rotate(0deg) translateY(-1.5rem) scale(1.06) !important;
    z-index: 10 !important;
}
.vernissage__frame-inner {
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--cream-deep);
    border: 1.5px solid var(--rule-soft);
    box-shadow:
        0 2px 6px rgba(31,24,18,0.08),
        0 12px 36px rgba(31,24,18,0.12),
        0 30px 70px rgba(31,24,18,0.09);
    padding: 0.7rem;
    transition: box-shadow .7s var(--ease), border-color .5s;
}
.vernissage__frame:hover .vernissage__frame-inner {
    box-shadow:
        0 4px 12px rgba(31,24,18,0.1),
        0 24px 56px rgba(31,24,18,0.18),
        0 48px 96px rgba(31,24,18,0.1);
    border-color: var(--oxblood);
}
.vernissage__frame-inner img {
    width: 100%;
    display: block;
    border-radius: var(--r-sm);
    border: 1px solid var(--rule-soft);
    transition: transform .9s var(--ease);
}
.vernissage__frame:hover .vernissage__frame-inner img { transform: scale(1.03); }
.vernissage__caption {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    margin-left: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: color .4s;
}
.vernissage__caption::before {
    content: '';
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: var(--oxblood);
    opacity: 0.85;
    flex-shrink: 0;
}
.vernissage__frame:hover .vernissage__caption { color: var(--oxblood); }

/* stats ledger */
.vernissage__stats {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--rule-soft);
    background: var(--cream-paper);
}
.vernissage__stats-intro {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vh, 4rem) clamp(2rem, 6vw, 7rem) clamp(1.5rem, 3vh, 2.5rem);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--rule-soft);
}
.vernissage__stats-kicker {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.vernissage__stats-kicker::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--oxblood);
    opacity: 0.55;
}
.vernissage__stats-copy {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.1rem, 1.7vw, 1.55rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink-soft);
    max-width: 42rem;
    text-align: right;
}
.vernissage__stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(2rem, 4vh, 3rem) clamp(2rem, 6vw, 7rem) clamp(2.5rem, 5vh, 4.5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.vernissage__stat {
    padding: 1.5rem 2.5rem 1.5rem 0;
    display: grid;
    gap: 0.35rem;
    align-content: start;
    position: relative;
}
.vernissage__stat + .vernissage__stat {
    padding-left: 2.5rem;
    border-left: 1px solid var(--rule-soft);
}
.vernissage__stat-index {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--ink-faint);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}
.vernissage__stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.4vw, 4.6rem);
    font-weight: 800;
    color: var(--ink-deep);
    letter-spacing: -0.04em;
    line-height: 0.9;
    transition: color .4s;
}
.vernissage__stat:hover .vernissage__stat-num { color: var(--oxblood); }
.vernissage__stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-deep);
    margin-top: 0.6rem;
}
.vernissage__stat-note {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-top: 0.8rem;
    max-width: 22rem;
}

@media (max-width: 960px) {
    .vernissage__hero { grid-template-columns: 1fr; min-height: auto; }
    .vernissage__left {
        border-right: none;
        border-bottom: 1px solid var(--rule-soft);
        padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 3rem);
    }
    .vernissage__right { height: 80vw; min-height: 360px; }
    .vernissage__stats-intro { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
    .vernissage__stats-copy { text-align: left; }
    .vernissage__stats-grid { grid-template-columns: 1fr; }
    .vernissage__stat + .vernissage__stat {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--rule-soft);
        padding-top: 1.5rem;
    }
}

/* =============================================================
   V1 PORTED — Before/After Slider
   Font swap: Montserrat→Manrope/DM Mono, Playfair→Syne
   ============================================================= */
.results-section {
    position: relative;
    width: 100%;
    background: var(--cream-paper);
    padding: clamp(4rem, 8vw, 6rem) 0;
    border-top: 1px solid var(--rule-soft);
}
.results-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.results-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
}
.results-kicker {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 0.85rem;
}
.results-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    font-weight: 700;
    color: var(--ink-deep);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.results-title em {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--oxblood);
    margin-top: 4px;
}

.cln-ba-slider {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 30px 60px -28px rgba(31,24,18,0.4);
    border: 1px solid var(--rule-soft);
}
.cln-ba-slider__after img { display: block; width: 100%; height: auto; pointer-events: none; }
.cln-ba-slider__before {
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.cln-ba-slider__before img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    pointer-events: none;
}
.cln-ba-slider__handle {
    position: absolute;
    top: 0; left: 50%;
    width: 3px;
    height: 100%;
    background: var(--ivory);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}
.cln-ba-slider__handle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ivory);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    pointer-events: auto;
    cursor: col-resize;
    border: 2px solid var(--oxblood);
}
.cln-ba-slider__handle::after {
    content: '\2039\00a0\00a0\203A';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--oxblood);
    letter-spacing: 0.15em;
    z-index: 4;
    pointer-events: none;
}
.cln-ba-slider__label {
    position: absolute;
    bottom: 1rem;
    padding: 0.4rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ivory);
    background: rgba(31,24,18,0.78);
    backdrop-filter: blur(6px);
    border-radius: var(--r-pill);
    z-index: 2;
    pointer-events: none;
}
.cln-ba-slider__label--before { left: 1rem; }
.cln-ba-slider__label--after { right: 1rem; background: rgba(92,42,31,0.85); }

.cln-ba-slider__caption {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ink-soft);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}
.cln-ba-slider__hint {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-top: 0.5rem;
}
.cln-ba-slider__hint svg {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 0.4em;
    width: 14px; height: 14px;
}
.cln-ba-slider--compact { width: 60%; max-width: 560px; }
@media (max-width: 768px) {
    .cln-ba-slider--compact { width: 100%; max-width: none; }
    .cln-ba-slider {
        aspect-ratio: 4 / 5;
    }
    .cln-ba-slider__after {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .cln-ba-slider__after img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .cln-ba-slider__before img {
        height: 100%;
        object-fit: cover;
        max-width: none;
    }
    .cln-ba-slider__handle::before {
        width: 56px; height: 56px;
    }
    .cln-ba-slider__label {
        font-size: 0.58rem;
        padding: 0.35rem 0.85rem;
    }
}
.results-disclaimer {
    margin-top: 2.5rem;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================
   V2 — ENHANCEMENT LAYER
   Editorial atelier polish: typography, glyphs, micro-int, perf
   ============================================================= */

/* ---------- A. TYPOGRAPHY POLISH ---------- */
body {
    hanging-punctuation: first last;
    font-feature-settings: "liga", "dlig", "kern";
}
.it, .strip-quote, .hero-h1, blockquote, .quote {
    font-feature-settings: "liga", "dlig", "kern", "onum", "pnum";
}
[data-counter], .num, .ledger-num, .vernissage__stat-num, .hero-stat-num {
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums lining-nums;
}
.hero-h1 { font-feature-settings: "liga", "dlig", "ss01"; }

/* asymmetric italic baseline drop */
.services-head h2 .it,
.process-head h2 .it,
.brands-head h2 .it,
.contact-left h2 .it,
.faq-aside h2 .it,
.ledger-head h2 .it {
    transform: translateY(.14em);
}

/* drop cap on manifesto + faq aside first paragraph */
.manifesto-body > p:first-of-type::first-letter,
.faq-aside > p::first-letter {
    font-family: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--oxblood);
    float: left;
    font-size: 4.4em;
    line-height: 0.88;
    padding: 4px 10px 0 0;
    margin-top: 6px;
}
.faq-aside > p::first-letter {
    font-size: 3.4em;
    padding: 2px 8px 0 0;
}

/* marginalia notes */
.margin-note {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    border-left: 1px solid var(--gold-leaf);
    padding: 6px 0 6px 12px;
    margin: 22px 0;
    display: block;
}
.margin-note em {
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
    color: var(--oxblood);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.05rem;
    display: block;
    margin-top: 4px;
}

/* hand-drawn underline flourish under italic h2 words */
.it.flourished {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2 8 C 30 2, 70 12, 110 6 S 180 4, 198 7' stroke='%23B89968' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 0.34em;
    padding-bottom: 0.28em;
}

/* ---------- B. EDGE / DIVIDER ORNAMENTS ---------- */

/* engraved triple rule */
.rule-engraved {
    height: 6px;
    border: 0;
    background:
        linear-gradient(to bottom,
            transparent 0, transparent 1px,
            var(--rule) 1px, var(--rule) 2px,
            transparent 2px, transparent 3px,
            rgba(42,33,26,.45) 3px, rgba(42,33,26,.45) 3.5px,
            transparent 3.5px, transparent 4.5px,
            var(--rule) 4.5px, var(--rule) 5.5px,
            transparent 5.5px);
    margin: 28px auto;
    max-width: 320px;
    opacity: .85;
}

/* fleuron section ornament */
.section-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold-leaf);
    margin-top: clamp(48px, 6vw, 80px);
    opacity: .85;
}
.section-end::before, .section-end::after {
    content: '';
    width: 60px; height: 1px;
    background: currentColor;
    opacity: .6;
}
.section-end svg { width: 22px; height: 22px; }

/* scroll progress + hero grid + collage masks + ken-burns — DISABLED for perf */
.strip-quote {
    transition: text-shadow .5s var(--ease);
}
.strip-quote:hover {
    text-shadow:
        0 0 1px rgba(212,178,106,.4),
        0 1px 0 rgba(0,0,0,.04);
}

/* ---------- D. SERVICES — dog-ear corner reveal ---------- */
.svc-card { position: relative; }
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 0 22px 22px;
    border-color: transparent transparent var(--gold-leaf) transparent;
    opacity: 0;
    transform: translate(6px, -6px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    z-index: 3;
    pointer-events: none;
}
.svc-card:hover::before {
    opacity: .9;
    transform: translate(0, 0);
}
.svc-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 22px; height: 22px;
    background-image: var(--noise);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: multiply;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.svc-card:hover::after { opacity: .35; }

/* ---------- E. PROCESS — vertical timeline ribbon ---------- */
.process-list {
    position: relative;
}
.process-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--rule-soft) 6%,
        var(--rule-soft) 94%,
        transparent 100%
    );
    z-index: 0;
}
.process-list::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    width: 3px;
    height: var(--proc-progress, 0%);
    background: var(--oxblood);
    transition: height .3s linear;
    box-shadow: 0 0 8px rgba(92,42,31,.35);
    z-index: 1;
}
@media (max-width: 880px) {
    .process-list::before, .process-list::after { display: none; }
}

/* ---------- F. BRANDS — stitched index card border ---------- */
.brand-tile {
    position: relative;
}
.brand-tile::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px dashed rgba(42,33,26,.18);
    border-radius: inherit;
    pointer-events: none;
    transition: border-color .4s var(--ease), inset .4s var(--ease);
    z-index: 1;
}
.brand-tile:hover::before {
    border-color: var(--gold-leaf);
    inset: 4px;
}
/* punch-hole corners */
.brand-tile::after {
    content: '';
    position: absolute;
    top: 14px; left: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cream-paper);
    box-shadow:
        inset 0 0 0 1px rgba(42,33,26,.3),
        calc(100% + 14px - 14px) 0 0 0 var(--cream-paper);
    /* fallback simple dot */
    z-index: 2;
    opacity: .6;
}

/* ---------- G. LEDGER — analog dial counters ---------- */
.ledger-cell {
    position: relative;
}
.ledger-cell .dial {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.ledger-cell .dial circle {
    fill: none;
    stroke: var(--gold-leaf);
    stroke-width: 1;
    stroke-dasharray: 4 5;
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: opacity .8s var(--ease), stroke-dashoffset 1.4s var(--ease);
}
.ledger-cell.in .dial circle { opacity: .55; }

/* ---------- H. FAQ — book-spine accordion ---------- */
.faq-item {
    position: relative;
    transition: background .4s var(--ease);
}
.faq-item::before {
    content: '';
    position: absolute;
    left: -16px; top: 18px; bottom: 18px;
    width: 2px;
    background: var(--gold-leaf);
    opacity: 0;
    transform: scaleY(0.2);
    transform-origin: top center;
    transition: opacity .35s var(--ease), transform .5s var(--ease);
}
.faq-item.open::before {
    opacity: 1;
    transform: scaleY(1);
}
.faq-q .plus {
    transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

/* FAQ height tween (set inline by JS, smooth) */
.faq-a {
    overflow: hidden;
    transition:
        max-height .55s var(--ease),
        opacity .35s var(--ease);
}

/* ---------- I. CONTACT — telegram / perforated ticket ---------- */
.contact-card {
    position: relative;
}
.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image:
        radial-gradient(circle at 0 50%, var(--cream-paper) 8px, transparent 9px),
        radial-gradient(circle at 100% 50%, var(--cream-paper) 8px, transparent 9px);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}
.contact-card .field input,
.contact-card .field select,
.contact-card .field textarea {
    transition: border-color .35s var(--ease), background .35s var(--ease);
}
.contact-card .field:focus-within label {
    color: var(--oxblood);
}
.contact-card .field:focus-within label svg {
    transform: rotate(-8deg) scale(1.1);
    color: var(--oxblood);
}
.contact-card .field label svg {
    transition: transform .4s var(--ease), color .35s var(--ease);
}

/* coverage chip ripple */
.coverage-list span {
    position: relative;
    overflow: hidden;
    transition: color .3s var(--ease);
}
.coverage-list span::after {
    content: '';
    position: absolute;
    left: var(--rx, 50%); top: var(--ry, 50%);
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(212,178,106,.35);
    transform: translate(-50%, -50%);
    transition: width .5s ease-out, height .5s ease-out, opacity .8s ease-out;
    opacity: 0;
    pointer-events: none;
}
.coverage-list span.rippling::after {
    width: 220px; height: 220px;
    opacity: 1;
}

/* ---------- J. HEADER — sticky shrink + scroll progress ---------- */

/* ---------- K. VERNISSAGE — 3D tilt frames ---------- */
.vernissage__frame {
    transform-style: preserve-3d;
    transition: transform .5s var(--ease);
}
.vernissage__frame .vernissage__frame-inner {
    transform: translateZ(20px);
}

/* ---------- L. HERO SEAL — slow rotate on scroll (set inline) ---------- */

/* custom cursor badge disabled — fixed-position element tracking mouse caused repaints */
.cursor-badge { display: none !important; }

/* ---------- N. SUBMIT BUTTON — stamping press ---------- */
.contact-card button[type=submit] {
    position: relative;
    overflow: hidden;
}
.contact-card button.stamping {
    transform: translateY(2px) !important;
    transition: transform .12s ease-out;
}
.contact-card button .stamp-ink {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.contact-card button.stamping .stamp-ink {
    animation: stampInk .6s var(--ease) forwards;
}
@keyframes stampInk {
    0%   { opacity: 0; transform: scale(0.4); }
    40%  { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.4); }
}

/* ---------- O. GLYPH UNIFORM SIZING ---------- */
.glyph-tlr {
    display: inline-block;
    vertical-align: middle;
}

/* ---------- P. MARQUEE — slow on hover ---------- */
.marquee:hover .marquee-track {
    animation-duration: 90s !important;
}

/* gauge needle disabled — was an infinite-running animation hurting perf */

/* ---------- R. WORD-REVEAL on hero h1 ---------- */
.hero-h1 .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.hero-h1 .word > span.inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform .9s var(--ease);
    will-change: transform;
}
.hero.in .hero-h1 .word > span.inner,
.hero-h1.in .word > span.inner {
    transform: translateY(0);
}

/* ---------- S. PERF GUARDS ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .strip-bg { animation: none !important; }
    .hero-scroll .line::after { display: none; }
}

.section,
.brands,
.vernissage,
.ledger,
.results-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}
.hero { content-visibility: visible; }

/* ---------- T. BRAND-TILE PUNCH-HOLES (cleanup) ---------- */
.brand-tile { isolation: isolate; }
.brand-tile::after {
    /* simpler corner pin marks */
    width: 4px; height: 4px;
    background: var(--gold-leaf);
    box-shadow: none;
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.brand-tile:hover::after { opacity: .7; }

/* svc-img grain hover overlay disabled — was a mix-blend layer */

/* body::after vignette disabled — fixed full-viewport gradient repainted on every scroll */

/* ---------- W. FORM submit final state ---------- */
.contact-card button.sent {
    background: var(--moss) !important;
}
.contact-card button.sent::before { display: none; }

/* ---------- X. SECTION-NO Roman+Arabic pair (decorative span) ---------- */
.section-no .roman {
    font-style: italic;
    font-family: 'DM Serif Display', Georgia, serif;
    text-transform: lowercase;
    letter-spacing: 0;
    font-size: 0.9rem;
    color: var(--gold-leaf);
    margin: 0 4px;
}

/* =============================================================
   PERF — scroll-jank fixes
   ============================================================= */
.tlr-header { will-change: background-color, padding; }
.hero-seal { will-change: transform; }
.marquee-track { will-change: transform; }

/* paint containment on big sections — limits repaint area */
.section,
.hero,
.strip,
.vernissage,
.results-section,
.brands,
.process,
.manifesto,
.contact { contain: layout paint style; }

/* pause animations off-screen if browser supports it */
.hero-seal, .marquee-track, .hero-tag .dot {
    animation-play-state: running;
}

/* respect reduced motion globally */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    html { scroll-behavior: auto; }
    .marquee-track,
    .vernissage__track,
    .hero-seal,
    .hero-tag .dot { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════
   index-v2 · LAYOUT REFINEMENT LAYER (additive — does not break v1 styles)
   ════════════════════════════════════════════════════════════ */

/* ---- Hero: tight, fits in one viewport, balanced cols ---- */
.hero {
    padding-top: clamp(96px, 9vh, 120px) !important;
    padding-bottom: clamp(40px, 5vh, 64px) !important;
    min-height: auto !important;
    align-items: center !important;
}
.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) !important;
    gap: clamp(32px, 4vw, 56px) !important;
    align-items: center !important;
}
.hero-left { padding-top: 0; min-width: 0; }

.hero-tag {
    margin-bottom: 18px !important;
    padding: 7px 14px !important;
}
.hero-tag span { font-size: 0.66rem !important; letter-spacing: 0.26em !important; }

.hero-h1 {
    font-size: clamp(2rem, 3vw, 3rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.022em !important;
    max-width: 18ch;
}
.hero-h1 .it {
    display: inline !important;
    font-size: 0.88em !important;
    margin-top: 0 !important;
    margin-left: 0.2em;
}

.hero-lede {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    max-width: 520px;
    margin-bottom: 20px !important;
}

.hero-ticker.hero-ticker--two {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 18px !important;
}
.hero-ticker.hero-ticker--two .hero-tick {
    padding: 14px 18px;
    gap: 12px;
}
.hero-ticker.hero-ticker--two .hero-tick svg { width: 22px; height: 22px; }
.hero-ticker.hero-ticker--two .num {
    font-size: 1.45rem !important;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}
.hero-ticker.hero-ticker--two .lbl {
    font-size: 0.6rem !important;
    letter-spacing: 0.18em;
}

.hero-trust {
    margin-bottom: 18px !important;
    padding-top: 14px !important;
    gap: 14px !important;
    flex-wrap: wrap;
}
.stars svg { width: 14px !important; height: 14px !important; }
.hero-trust-text { font-size: 0.85rem !important; }

.hero-cta-row {
    gap: 10px !important;
    margin-bottom: 14px !important;
}
.hero .btn {
    padding: 14px 22px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.14em;
}
.hero .btn svg { width: 14px; height: 14px; }

.hero-availability {
    margin-top: 12px !important;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    .hero-right { margin-top: 0 !important; }
}
@media (max-width: 600px) {
    .hero { padding-top: 90px !important; }
    .hero-h1 { font-size: clamp(1.9rem, 7vw, 2.4rem) !important; }
    .hero-ticker.hero-ticker--two { grid-template-columns: 1fr; }
    .hero-ticker.hero-ticker--two .hero-tick { padding: 14px 0; }
    .hero .btn { flex: 1; justify-content: center; }
}

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border: 1.5px solid #25D366;
    color: #128C2E;
    background: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 0;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-whatsapp:hover { background: #25D366; color: #fff; }

.hero-availability {
    margin-top: 16px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink-soft, #54483D);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.hero-availability strong { color: var(--oxblood); font-weight: 600; }
.dot--live {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4F8A3E;
    box-shadow: 0 0 0 0 rgba(79,138,62,.6);
    animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(79,138,62,.55); }
    70% { box-shadow: 0 0 0 8px rgba(79,138,62,0); }
    100% { box-shadow: 0 0 0 0 rgba(79,138,62,0); }
}

/* ---- Strip · v2 polish ---- */
.strip--v2 .strip-quote {
    font-size: clamp(28px, 4.6vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.strip--v2 .strip-credit-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-faint, #8A7A6B);
    white-space: nowrap;
}
.strip--v2 .strip-credit-inline svg { width: 13px; height: 13px; }
@media (max-width: 768px) {
    .strip--v2 { padding-top: clamp(48px, 8vw, 72px); padding-bottom: clamp(48px, 8vw, 72px); }
}

/* ---- Manifesto · founder line + h4 underline rule ---- */
.manifesto-sig span { font-style: italic; }
.about-feat h4 {
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 6px;
}
.about-feat h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 1.5px;
    background: var(--oxblood);
}

/* ---- Services · Most Requested ribbon, larger From price ---- */
.svc-card { position: relative; }
.svc-ribbon {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 3;
    padding: 6px 12px;
    background: var(--oxblood);
    color: #FAF7F2;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(92,42,31,.22);
}
.svc-card--featured { box-shadow: 0 1px 0 var(--oxblood) inset, 0 0 0 1px rgba(92,42,31,.08); }
.svc-card--featured:hover { transform: translateY(-4px); }
.svc-from {
    font-size: 19px !important;
    font-weight: 600;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.svc-spec { margin-bottom: 8px; }

/* ---- Section divider mark ---- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px var(--gutter);
    color: var(--oxblood);
    opacity: 0.65;
}
.section-divider__line {
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
    max-width: 280px;
}
.section-divider__mark { width: 14px; height: 14px; }

/* ---- Process · v2 timeline rule ---- */
.process--v2 .process-list { position: relative; }
.process--v2 .proc-row { position: relative; }
@media (min-width: 901px) {
    .process--v2 .process-list::before {
        content: '';
        position: absolute;
        left: 28px; top: 24px; bottom: 24px;
        width: 1px;
        background: rgba(92,42,31,.18);
        z-index: 0;
    }
    .process--v2 .proc-num { position: relative; z-index: 1; background: var(--ivory); }
}

/* ---- Before/After tabs ---- */
.results-section--v2 .ba-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 28px auto 24px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    flex-wrap: wrap;
}
.ba-tab {
    padding: 12px 22px;
    background: transparent;
    border: 0;
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--ink-faint, #8A7A6B);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
    text-transform: uppercase;
}
.ba-tab:hover { color: var(--ink); }
.ba-tab.is-active {
    color: var(--oxblood);
    border-bottom-color: var(--oxblood);
}
.ba-panel { display: none; }
.ba-panel.is-active { display: block; }
.cln-ba-slider__hint--top {
    text-align: center;
    margin: 0 auto 8px;
    color: var(--ink-faint, #8A7A6B);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.results-section--v2 .cln-ba-slider__hint--top {
    display: flex;
    justify-content: center;
}
.cln-ba-slider__hint--top svg { width: 16px; height: 16px; }

/* ---- Brand grid · uniform aspect + CTA tile ---- */
.brand-grid--v2 .brand-tile-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.brand-grid--v2 .brand-tile-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.brand-tile--cta {
    background: rgba(92,42,31,.04);
    outline: 1px dashed rgba(92,42,31,.35);
    outline-offset: -6px;
}
.brand-tile--cta:hover {
    background: rgba(92,42,31,.10);
    outline-color: var(--oxblood);
}
.brand-tile--cta h4 { color: var(--oxblood); }

/* ---- Vernissage · quote-stat variant ---- */
.vernissage__stat--quote {
    text-align: left;
    padding: 22px 22px 26px;
}
.vernissage__quote {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.4;
    color: var(--ink-deep, #2A211A);
    margin: 12px 0 14px;
}
.vernissage__quote::before { content: '“'; color: var(--oxblood); margin-right: 2px; }
.vernissage__quote::after { content: '”'; color: var(--oxblood); margin-left: 2px; }
.vernissage__quote-meta {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-faint, #8A7A6B);
    text-transform: uppercase;
}

/* ---- FAQ · WhatsApp prompt (default-open handled by existing .open class JS) ---- */
.faq-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 18px 22px;
    background: rgba(92,42,31,.05);
    border: 1px solid rgba(92,42,31,.18);
    color: var(--ink-deep, #2A211A);
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.faq-prompt:hover {
    background: rgba(92,42,31,.10);
    border-color: var(--oxblood);
}
.faq-prompt__text { font-family: 'Manrope', sans-serif; font-size: 14px; line-height: 1.5; }
.faq-prompt__text strong { color: var(--oxblood); }
.faq-prompt__arrow svg { width: 20px; height: 20px; color: var(--oxblood); }

/* ---- Contact · photo upload + city groups ---- */
.field--photo input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1.5px dashed rgba(92,42,31,.32);
    background: rgba(92,42,31,.03);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--ink-soft, #54483D);
    cursor: pointer;
}
.field--photo input[type="file"]:hover { border-color: var(--oxblood); }
.field--photo .field-hint {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--ink-faint, #8A7A6B);
    text-transform: uppercase;
    margin-left: 8px;
    letter-spacing: 0.04em;
}
.coverage--v2 .coverage-group { margin-top: 14px; }
.coverage--v2 .coverage-group:first-of-type { margin-top: 12px; }
.coverage--v2 .coverage-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--ink-faint, #8A7A6B);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.coverage-list--muted span { opacity: 0.65; }

/* ---- Sticky mobile CTA bar ---- */
.tlr-stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: none;
    background: #FAF7F2;
    border-top: 1px solid var(--oxblood);
    box-shadow: 0 -6px 24px rgba(31,24,18,.08);
    padding: 8px max(12px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
    gap: 8px;
    transform: translateY(110%);
    transition: transform .28s var(--ease);
}
.tlr-stickybar[data-show="true"] { transform: translateY(0); }
.tlr-stickybar__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 0;
}
.tlr-stickybar__btn svg { width: 18px; height: 18px; }
.tlr-stickybar__btn--call {
    background: var(--oxblood);
    color: #FAF7F2;
}
.tlr-stickybar__btn--call:hover { background: #4A1F18; }
.tlr-stickybar__btn--wa {
    background: #25D366;
    color: #fff;
}
.tlr-stickybar__btn--wa:hover { background: #1FB857; }

@media (max-width: 768px) {
    .tlr-stickybar { display: flex; }
    body.has-stickybar { padding-bottom: 76px; }
}

/* ---- Reveal stagger retiming ---- */
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.54s; }

/* ════════════════════════════════════════════════════════════════════
   HERO V3 — EDITORIAL REVAMP
   Wins cascade against earlier hero polish via specificity + ordering.
   Three priorities:
     1. Single full-bleed portrait plate (replaces 3-image collage)
     2. Identity / Proof / Action zoning with hairline rules
     3. WhatsApp-primary CTA in oxblood + lightened nav
   ════════════════════════════════════════════════════════════════════ */

/* Kill the dark scrim that lived behind the old nav */
.hero.hero--v3::before { display: none !important; }

/* ---- Hero shell ---- */
.hero.hero--v3 {
    padding-top: clamp(110px, 11vh, 140px) !important;
    padding-bottom: clamp(56px, 7vh, 88px) !important;
    background:
        radial-gradient(ellipse 55% 45% at 88% 78%, rgba(184, 153, 104, 0.16) 0, transparent 62%),
        radial-gradient(ellipse 45% 38% at 6% 12%, rgba(92, 42, 31, 0.07) 0, transparent 65%),
        var(--cream-paper);
}
.hero.hero--v3::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 220px;
    opacity: 0.55;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 1;
}

/* Vertical rails removed */
.hero.hero--v3 .hero-meta { display: none !important; }

/* ---- Asymmetric 7/5 grid ---- */
.hero.hero--v3 .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) !important;
    gap: clamp(40px, 6vw, 88px) !important;
    align-items: stretch !important;
}
.hero.hero--v3 .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero.hero--v3 .hero-right {
    display: flex;
    align-items: center;
    justify-content: stretch;
}

/* ---- Block zoning with hairline rules ---- */
.hero-block {
    position: relative;
    padding: 22px 0;
}
.hero-block + .hero-block {
    border-top: 1px solid rgba(42, 33, 26, 0.14);
}
.hero-block--identity { padding-top: 0; }
.hero-block--action { padding-bottom: 0; }

/* ---- Identity: bigger headline, tighter mix of voices ---- */
.hero.hero--v3 .hero-tag {
    margin-bottom: 22px !important;
    padding: 7px 14px !important;
    background: rgba(251, 247, 238, 0.6);
    border: 1px solid rgba(184, 153, 104, 0.42);
}
.hero.hero--v3 .hero-tag span {
    font-size: 0.64rem !important;
    letter-spacing: 0.3em !important;
    color: var(--oxblood);
}

.hero.hero--v3 .hero-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.4rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.025em !important;
    color: var(--ink-deep);
    margin-bottom: 22px !important;
    max-width: 16ch;
    font-feature-settings: "ss01", "liga", "dlig";
}
.hero.hero--v3 .hero-h1 .it,
.hero.hero--v3 h1.hero-h1 .it {
    display: block !important;
    font-family: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    font-size: 0.78em !important;
    color: var(--oxblood) !important;
    margin-top: 8px !important;
    margin-left: 0.5em !important;
    letter-spacing: -0.005em !important;
    line-height: 1.05 !important;
}
.hero.hero--v3 .hero-h1 .it .word,
.hero.hero--v3 .hero-h1 .it .word > .inner,
.hero.hero--v3 .hero-h1 .it span {
    font-family: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
}

.hero.hero--v3 .hero-lede {
    font-size: 1.02rem !important;
    line-height: 1.6 !important;
    color: var(--ink-soft);
    max-width: 52ch !important;
    margin-bottom: 0 !important;
}
.hero.hero--v3 .hero-lede strong {
    color: var(--ink-deep);
    font-weight: 600;
    border-bottom: 1px solid rgba(92, 42, 31, 0.32);
}

/* ---- Proof: 3 columns, even widths, no wrap ---- */
.hero-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: clamp(18px, 2.4vw, 32px);
    align-items: center;
}
.hero-proof-item {
    min-width: 0;
}
.hero-proof-item + .hero-proof-item {
    padding-left: clamp(16px, 2vw, 28px);
    border-left: 1px solid rgba(42, 33, 26, 0.14);
}
.hero-proof-item .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ink-deep);
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.hero-proof-item .lbl {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-proof-item--reviews .num .stars {
    display: inline-flex;
    gap: 2px;
}
.hero-proof-item--reviews .num .stars svg {
    width: 13px;
    height: 13px;
    fill: var(--gold-bright);
    stroke: none;
}
.hero-proof-item--reviews .num .rating {
    font-size: 1.15rem;
    color: var(--oxblood);
    font-weight: 700;
}
@media (max-width: 760px) {
    .hero-proof-row { grid-template-columns: 1fr 1fr; gap: 18px; }
    .hero-proof-item + .hero-proof-item { padding-left: 0; border-left: 0; }
    .hero-proof-item--reviews {
        grid-column: 1 / -1;
        padding-top: 14px;
        border-top: 1px solid rgba(42, 33, 26, 0.1);
    }
}

/* ---- Availability pill (moved above CTAs) ---- */
.hero.hero--v3 .hero-availability--pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 12px;
    background: rgba(251, 247, 238, 0.85);
    border: 1px solid rgba(184, 153, 104, 0.5);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 18px !important;
    margin-top: 0 !important;
    flex-wrap: wrap;
}
.hero.hero--v3 .hero-availability--pill em {
    font-style: normal;
    color: var(--oxblood);
    font-weight: 600;
    letter-spacing: 0.14em;
}
.hero.hero--v3 .hero-availability--pill .slots {
    color: var(--ink-deep);
    border-left: 1px solid rgba(184, 153, 104, 0.5);
    padding-left: 10px;
    letter-spacing: 0.14em;
}

/* ---- CTAs: WhatsApp primary in oxblood, Book ghost ---- */
.hero.hero--v3 .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px !important;
}
.hero.hero--v3 .btn-primary-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px !important;
    background: var(--oxblood);
    color: var(--ivory);
    border: 1px solid var(--oxblood);
    font-family: var(--font-mono);
    font-size: 0.74rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
    box-shadow: 0 14px 30px -18px rgba(92, 42, 31, 0.55);
}
.hero.hero--v3 .btn-primary-wa:hover {
    background: #4A1F18;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px -18px rgba(92, 42, 31, 0.6);
}
.hero.hero--v3 .btn-primary-wa svg { width: 16px; height: 16px; }
.hero.hero--v3 .btn-primary-wa .btn-arrow { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.hero.hero--v3 .btn-primary-wa:hover .btn-arrow { transform: translateX(4px); }

.hero.hero--v3 .btn-ghost-v3 {
    display: inline-flex;
    align-items: center;
    padding: 16px 24px !important;
    background: transparent;
    color: var(--ink-deep);
    border: 1px solid rgba(42, 33, 26, 0.4);
    font-family: var(--font-mono);
    font-size: 0.74rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.hero.hero--v3 .btn-ghost-v3:hover {
    background: var(--ink-deep);
    border-color: var(--ink-deep);
    color: var(--ivory);
}

.hero-cta-note {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 4px;
}

/* ---- Hero plate (right column) ---- */
.hero.hero--v3 .hero-right { padding: 0; min-width: 0; width: 100%; }
.hero-plate {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
}
.hero-plate-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: clamp(520px, 78vh, 760px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 22px;
    background: var(--cream-deep);
    box-shadow:
        0 1px 0 rgba(184, 153, 104, 0.5),
        0 40px 80px -36px rgba(31, 24, 18, 0.5),
        0 12px 28px -18px rgba(31, 24, 18, 0.3);
    isolation: isolate;
}
.hero-plate-frame video,
.hero-plate-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 1.6s var(--ease);
}
.hero-plate-frame:hover video,
.hero-plate-frame:hover img { transform: scale(1.04); }
/* Inner mat — narrow cream border inside the frame, like a print mount */
.hero-plate-mat {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(251, 247, 238, 0.45);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}
/* Plate tag overlaid bottom-left of the image */
.hero-plate-tag {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    background: rgba(31, 24, 18, 0.78);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 3;
}
.hero-plate-tag-no { color: var(--gold-bright); font-weight: 600; }
.hero-plate-tag-divider {
    width: 1px;
    height: 12px;
    background: rgba(212, 178, 106, 0.5);
}
.hero-plate-tag-loc { opacity: 0.85; }

/* Caption under the plate — magazine credit */
.hero-plate-caption {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding-top: 14px;
    border-top: 1px solid rgba(42, 33, 26, 0.18);
    margin-top: 14px;
}
.hero-plate-caption-no {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    font-weight: 600;
    padding-top: 2px;
    white-space: nowrap;
}
.hero-plate-caption-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink-soft);
}

/* ---- Hide legacy collage / stat-card / seal so old CSS can't bleed through ---- */
.hero.hero--v3 .hero-collage,
.hero.hero--v3 .hero-stat-card,
.hero.hero--v3 .hero-seal,
.hero.hero--v3 .hero-ticker,
.hero.hero--v3 .hero-trust { display: none !important; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero.hero--v3 .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
    .hero.hero--v3 .hero-h1 { max-width: 100%; }
    .hero-plate-frame { aspect-ratio: 4 / 4.6; }
}
@media (max-width: 600px) {
    .hero.hero--v3 { padding-top: 96px !important; }
    .hero.hero--v3 .hero-h1 {
        font-size: clamp(2rem, 9vw, 2.8rem) !important;
        max-width: 100%;
    }
    .hero.hero--v3 .hero-h1 .it.line-2 { margin-left: 0.3em; }
    .hero.hero--v3 .hero-availability--pill {
        font-size: 0.58rem;
        padding: 7px 12px;
    }
    .hero.hero--v3 .hero-cta-row {
        align-items: stretch;
    }
    .hero.hero--v3 .btn-primary-wa,
    .hero.hero--v3 .btn-ghost-v3 {
        flex: 1;
        justify-content: center;
        padding: 14px 18px !important;
        min-height: 56px;
        text-align: center;
    }
    .hero-plate-tag {
        left: 14px;
        bottom: 14px;
        font-size: 0.52rem;
        padding: 7px 11px;
    }
    .hero-plate-caption { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   ATELIER STRIP — full-bleed editorial image break
   (ported from services/atelier.css, scoped to index-v2)
   ============================================================ */
.atelier-strip {
    position: relative;
    height: 62vh;
    min-height: 460px;
    max-height: 720px;
    overflow: hidden;
    background: var(--ink-deep);
    isolation: isolate;
}
.atelier-strip-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04) brightness(0.95);
    transition: transform 18s linear;
    z-index: 0;
}
.atelier-strip:hover .atelier-strip-img { transform: scale(1.12); }

.atelier-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20,12,6,0.55) 0%, rgba(20,12,6,0.18) 35%, rgba(20,12,6,0.18) 65%, rgba(20,12,6,0.78) 100%),
        radial-gradient(ellipse 60% 50% at 18% 80%, rgba(184,153,104,0.25) 0%, transparent 70%);
    z-index: 1;
}

.atelier-strip-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    padding: 28px 0 32px;
    color: var(--cream-paper);
    box-sizing: border-box;
}
.atelier-strip-headline { align-self: center; }

.atelier-strip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(248,240,227,0.75);
}
.atelier-strip-meta span { display: inline-flex; align-items: center; gap: 14px; }
.atelier-strip-meta span::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold-bright);
    opacity: 0.7;
}

/* triple-span meta (Manifesto / Practice / Spring) — center middle, star dividers */
.atelier-strip-meta--triple { justify-content: space-between; gap: 24px; }
.atelier-strip-meta--triple span { position: relative; }
.atelier-strip-meta--triple span:nth-child(2) {
    flex: 1;
    justify-content: center;
    text-align: center;
}
.atelier-strip-meta--triple span:nth-child(2)::before,
.atelier-strip-meta--triple span:nth-child(2)::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-bright);
    opacity: 0.55;
    max-width: 80px;
}
.atelier-strip-meta--triple span:nth-child(2)::after { content: ''; display: block; }
.atelier-strip-meta--triple span:nth-child(3)::before { display: none; }
.atelier-strip-meta--triple span:nth-child(3) { padding-left: 0; }

.atelier-strip-headline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.65rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 680px;
    color: var(--cream-paper);
    overflow-wrap: break-word;
    margin: 0;
}
.atelier-strip-headline .t-italic {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold-bright), #E8C9A8, var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atelier-strip-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: nowrap;
}
.atelier-strip-caption {
    flex: 1 1 auto;
    max-width: 520px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(248,240,227,0.88);
    font-weight: 300;
    margin: 0;
}
.atelier-strip-credit {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--gold-bright);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-self: flex-end;
    opacity: 0.85;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .atelier-strip { height: 70vh; min-height: 520px; max-height: none; }
    .atelier-strip-content { padding: 32px 0 36px; gap: 20px; }
    .atelier-strip-meta { font-size: 0.5rem; letter-spacing: 0.3em; flex-wrap: wrap; gap: 12px; }
    .atelier-strip-meta--triple { flex-direction: column; align-items: flex-start; gap: 8px; }
    .atelier-strip-meta--triple span:nth-child(2) { justify-content: flex-start; text-align: left; flex: none; }
    .atelier-strip-meta--triple span:nth-child(2)::before,
    .atelier-strip-meta--triple span:nth-child(2)::after { display: none; }
    .atelier-strip-headline { font-size: clamp(1.05rem, 5vw, 1.55rem); line-height: 1.1; }
    .atelier-strip-foot { flex-direction: column; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
    .atelier-strip-credit { writing-mode: horizontal-tb; transform: none; align-self: flex-start; opacity: 0.75; }
    .atelier-strip-caption { font-size: 0.78rem; line-height: 1.5; max-width: 100%; flex: none; }
}

/* ============================================================
   12 — CONTACT v3 — editorial spread (Book A Visit)
   light theme · cream paper · gold accent · oxblood ink
   ============================================================ */
.contact--v3 {
    background:
        radial-gradient(ellipse 60% 40% at 12% 0%, rgba(212,178,106,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 95% 100%, rgba(92,42,31,0.06) 0%, transparent 65%),
        var(--cream-paper);
    border-top: 1px solid var(--rule-soft);
    position: relative;
    overflow: hidden;
}
.contact--v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(31,24,18,0.025) 39px 40px),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(31,24,18,0.025) 39px 40px);
    pointer-events: none;
    z-index: 0;
}
.contact--v3 .wrap { position: relative; z-index: 1; }

/* ── Editorial header ───────────────────────────────────────── */
.bv-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(36px, 4vw, 56px);
    border-bottom: 1px solid var(--rule-soft);
}
.bv-head-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.bv-head-meta .section-no { margin: 0; }
.bv-head-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--rule-soft) 0%, transparent 100%);
    max-width: 260px;
}
.bv-head-stamp {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-leaf);
    padding: 7px 14px;
    border: 1px solid var(--gold-leaf);
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bv-head-stamp::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: bv-pulse 2.4s ease-in-out infinite;
}
@keyframes bv-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.bv-head-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5.4vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.028em;
    color: var(--ink-deep);
    margin: 0;
    max-width: 18ch;
}
.bv-head-title .it {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--oxblood);
    letter-spacing: -0.015em;
    margin-top: 4px;
}
.bv-head-lede {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0;
}

/* ── Spread: ledger | form ──────────────────────────────────── */
.bv-spread {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(28px, 3.5vw, 56px);
    align-items: stretch;
}

/* ── LEFT: ledger ───────────────────────────────────────────── */
.bv-ledger {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.bv-ledger-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule);
}
.bv-ledger-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-deep);
}
.bv-ledger-mark {
    width: 18px;
    height: 18px;
    color: var(--oxblood);
}

.bv-channels {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}
.bv-channels > li { list-style: none; margin: 0; padding: 0; }
.bv-ch {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 6px;
    border-bottom: 1px solid var(--rule-soft);
    color: var(--ink-deep);
    text-decoration: none;
    transition: padding .35s var(--ease), background .35s var(--ease);
    position: relative;
}
.bv-ch-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bv-ch-num { flex-shrink: 0; min-width: 22px; }
.bv-ch-ico { flex-shrink: 0; }
.bv-ch-arrow { flex-shrink: 0; }
.bv-ch:last-child { border-bottom: 0; }
.bv-ch.bv-ch--static { cursor: default; }

.bv-ch-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--gold-leaf);
    transition: color .35s var(--ease);
}
.bv-ch-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: rgba(212,178,106,0.14);
    border: 1px solid var(--rule-soft);
    transition: all .35s var(--ease);
}
.bv-ch-ico svg { width: 16px; height: 16px; }
.bv-ch dt,
.bv-ch-text > strong {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0 0 3px;
    line-height: 1;
    display: block;
}
.bv-ch dd,
.bv-ch-text > span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ink-deep);
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.2;
    display: block;
}
.bv-ch-arrow {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink-faint);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .35s var(--ease);
}
.bv-ch:not(.bv-ch--static):hover {
    padding-left: 14px;
    background: linear-gradient(90deg, rgba(212,178,106,0.10) 0%, transparent 100%);
}
.bv-ch:not(.bv-ch--static):hover .bv-ch-num { color: var(--oxblood); }
.bv-ch:not(.bv-ch--static):hover .bv-ch-ico {
    background: var(--oxblood);
    color: var(--ivory);
    border-color: var(--oxblood);
    transform: rotate(-6deg);
}
.bv-ch:not(.bv-ch--static):hover .bv-ch-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--oxblood);
}

.bv-ch--accent {
    background: rgba(212,178,106,0.06);
    border-radius: var(--r-md);
    padding: 22px 16px;
    border-bottom: 1px solid var(--rule-soft);
}
.bv-ch--accent .bv-ch-ico {
    background: var(--gold-bright);
    border-color: var(--gold-leaf);
    color: var(--ink-deep);
}
.bv-ch--accent dt { color: var(--oxblood); }

/* Atelier promise strip */
.bv-promise {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--ivory);
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-md);
    position: relative;
}
.bv-promise::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 3px;
    background: var(--gold-bright);
    border-radius: 0 2px 2px 0;
}
.bv-promise-glyph {
    width: 22px;
    height: 22px;
    color: var(--gold-leaf);
    flex-shrink: 0;
    margin-top: 2px;
}
.bv-promise p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0;
}

/* ── RIGHT: form card ───────────────────────────────────────── */
.bv-card {
    background: var(--ivory);
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-lg);
    padding: clamp(32px, 3.5vw, 44px);
    position: relative;
    box-shadow:
        0 1px 0 rgba(31,24,18,0.04),
        0 30px 60px -38px rgba(31,24,18,0.28);
    display: flex;
    flex-direction: column;
}
.bv-card::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px;
    width: 80px; height: 80px;
    background:
        linear-gradient(135deg, transparent 50%, var(--gold-bright) 50%, var(--gold-bright) 52%, transparent 52%);
    border-top-right-radius: var(--r-lg);
    pointer-events: none;
    opacity: 0.55;
}
.bv-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--oxblood);
    background: rgba(92,42,31,0.06);
    padding: 9px 16px;
    border-radius: var(--r-pill);
    align-self: flex-start;
    margin-bottom: 20px;
}
.bv-card-tag .dot {
    width: 6px; height: 6px;
    background: var(--oxblood);
    border-radius: 50%;
}
.bv-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.05;
    color: var(--ink-deep);
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.bv-card-title .it {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--oxblood);
    font-size: 0.85em;
    margin-top: 4px;
}
.bv-card-sub {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 26px;
}
.bv-card-sub svg { width: 12px; height: 12px; color: var(--moss); }

.bv-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
}
.bv-field { display: flex; flex-direction: column; }
.bv-field--full { grid-column: 1 / -1; }
.bv-field label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 9px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.bv-hint {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: var(--gold-leaf);
    text-transform: uppercase;
    font-weight: 500;
}
.bv-field input,
.bv-field textarea,
.bv-field select {
    width: 100%;
    background: var(--cream-paper);
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-xs);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--ink-deep);
    transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
.bv-field input::placeholder,
.bv-field textarea::placeholder { color: rgba(31,24,18,0.32); font-weight: 300; }
.bv-field input:focus,
.bv-field textarea:focus,
.bv-field select:focus {
    outline: none;
    border-color: var(--oxblood);
    background: var(--ivory);
    box-shadow: 0 0 0 3px rgba(212,178,106,0.18);
}
.bv-field textarea { resize: vertical; min-height: 76px; line-height: 1.5; }

.bv-select-wrap { position: relative; }
.bv-select-caret {
    position: absolute;
    right: 14px; top: 50%;
    width: 14px; height: 14px;
    color: var(--ink-soft);
    transform: translateY(-50%);
    pointer-events: none;
}
.bv-field select { padding-right: 38px; cursor: pointer; }

/* photo drop */
.bv-photo-drop {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px dashed var(--rule-soft);
    border-radius: var(--r-xs);
    background: rgba(212,178,106,0.05);
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all .25s var(--ease);
}
.bv-photo-drop:hover {
    border-color: var(--gold-leaf);
    background: rgba(212,178,106,0.10);
    color: var(--ink-deep);
}
.bv-photo-drop svg { width: 18px; height: 18px; color: var(--gold-leaf); flex-shrink: 0; }
.bv-photo-drop strong { color: var(--ink-deep); font-weight: 600; }

.bv-submit {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 16px 28px !important;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
}
.bv-card-fineprint {
    margin: 14px 0 0;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: center;
    line-height: 1.7;
}

/* ── Coverage band ──────────────────────────────────────────── */
.bv-coverage {
    margin-top: clamp(56px, 6vw, 90px);
    padding-top: clamp(36px, 4vw, 56px);
    border-top: 1px solid var(--rule-soft);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}
.bv-coverage-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--oxblood);
    display: block;
    margin-bottom: 14px;
}
.bv-coverage-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink-deep);
    margin: 0;
}
.bv-coverage-title .it {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--oxblood);
    font-size: 0.85em;
}
.bv-coverage-lists {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.bv-coverage-group { display: flex; flex-direction: column; gap: 12px; }
.bv-coverage-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.bv-coverage-label .bullet {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1px solid var(--ink-faint);
}
.bv-coverage-label .bullet--on {
    background: var(--gold-bright);
    border-color: var(--gold-leaf);
}
.bv-coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bv-coverage-list span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-deep);
    padding: 8px 14px;
    border: 1px solid var(--rule-soft);
    background: var(--ivory);
    border-radius: var(--r-pill);
    transition: all .25s var(--ease);
    cursor: default;
}
.bv-coverage-list span:hover {
    background: var(--ink-deep);
    color: var(--cream-paper);
    border-color: var(--ink-deep);
    transform: translateY(-2px);
}
.bv-coverage-list--muted span {
    color: var(--ink-faint);
    background: transparent;
    border-style: dashed;
}
.bv-coverage-list--muted span:hover {
    color: var(--gold-leaf);
    border-color: var(--gold-leaf);
    border-style: solid;
    background: rgba(212,178,106,0.08);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .contact--v3 .bv-spread {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .contact--v3 .bv-coverage {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
@media (max-width: 720px) {
    .bv-head-meta { gap: 12px; }
    .bv-head-rule { display: none; }
    .bv-channels .bv-ch {
        grid-template-columns: 32px 32px 1fr auto;
        gap: 12px;
        padding: 18px 0;
    }
    .bv-ch-num { font-size: 0.52rem; }
    .bv-ch dd,
    .bv-ch-text > span { font-size: 0.92rem; word-break: break-word; }
    .bv-ch--accent { padding: 18px 12px; }
    .bv-fields { grid-template-columns: 1fr; }
    .bv-card { padding: 26px 22px; }
    .bv-card::before { width: 56px; height: 56px; }
    .bv-coverage-list span { font-size: 0.55rem; padding: 7px 12px; }
}

/* ============================================================
   13 — SITE FOOTER (light · v1-style multi-column)
   ============================================================ */
.site-footer {
    position: relative;
    background: var(--cream-warm);
    border-top: 1px solid var(--rule-soft);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 56px) 32px;
    overflow: hidden;
}
.site-footer__monolith {
    position: absolute;
    left: 50%;
    bottom: -12%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(6rem, 14vw, 16rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--ink-deep);
    opacity: 0.04;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}
.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.2fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: flex-start;
    padding-bottom: clamp(40px, 5vw, 64px);
}
.sf-eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 18px;
}
.sf-contact { display: flex; flex-direction: column; gap: 10px; }
.sf-contact__big {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink-deep);
    text-decoration: none;
    transition: color .4s var(--ease);
    word-break: break-word;
}
.sf-contact__big:hover { color: var(--oxblood); }

.sf-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.5vw, 36px);
}
.sf-col { display: flex; flex-direction: column; gap: 12px; }
.sf-col .sf-eyebrow {
    color: var(--ink-deep);
    margin-bottom: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
}
.sf-col a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .3s var(--ease), padding .3s var(--ease);
    line-height: 1.4;
}
.sf-col a:hover {
    color: var(--oxblood);
    padding-left: 6px;
}

/* Sub-footer line */
.site-footer__sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 26px 0 14px;
    border-top: 1px solid var(--rule-soft);
}
.sf-copy {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.sf-legal {
    display: flex;
    gap: 28px;
}
.sf-legal a {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-decoration: none;
    transition: color .3s var(--ease);
}
.sf-legal a:hover { color: var(--oxblood); }

.sf-address {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 1024px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 56px;
    }
    .sf-cols { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
}
@media (max-width: 560px) {
    .sf-cols { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__sub { justify-content: flex-start; }
    .sf-legal { gap: 18px; flex-wrap: wrap; }
}

/* ============================================================
   PRICE LEDGER · indicative pricing table (after services grid)
   ============================================================ */
.price-ledger {
    margin-top: clamp(48px, 6vw, 80px);
    padding: clamp(28px, 3vw, 44px);
    background: var(--ivory);
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-lg);
    box-shadow: 0 1px 0 rgba(31,24,18,0.04), 0 18px 40px -28px rgba(31,24,18,0.18);
}

.quick-facts {
    margin: 32px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--rule-soft);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 28px;
}
.quick-facts > div { margin: 0; }
.quick-facts dt {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
}
.quick-facts dd {
    font-family: var(--font-display);
    font-size: 0.98rem;
    color: var(--ink-deep);
    margin: 0;
    line-height: 1.4;
}
.price-ledger-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule-soft);
}
.price-ledger-head .section-no { margin: 0; }
.price-ledger-head h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--ink-deep);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}
.price-ledger-head h3 .it {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--oxblood);
    font-size: 0.85em;
}
.price-ledger-note {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 64ch;
    margin: 0;
}
.price-ledger-table-wrap { overflow-x: auto; }
.price-ledger-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}
.price-ledger-table thead th {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid var(--rule-soft);
    background: rgba(212,178,106,0.05);
}
.price-ledger-table thead th:last-child { text-align: right; }
.price-ledger-table tbody th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink-deep);
    letter-spacing: -0.012em;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--rule-soft);
}
.price-ledger-table tbody th a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color .25s var(--ease), color .25s var(--ease);
}
.price-ledger-table tbody th a:hover {
    color: var(--oxblood);
    border-bottom-color: var(--oxblood);
}
.price-ledger-table td {
    padding: 16px;
    font-size: 0.92rem;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--rule-soft);
    line-height: 1.45;
}
.price-ledger-table td:last-child {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink-deep);
    text-align: right;
    letter-spacing: -0.01em;
}
.price-ledger-table tbody tr:last-child th,
.price-ledger-table tbody tr:last-child td { border-bottom: 0; }
.price-ledger-table tbody tr {
    transition: background .25s var(--ease);
}
.price-ledger-table tbody tr:hover {
    background: rgba(212,178,106,0.05);
}

@media (max-width: 720px) {
    .price-ledger-table thead { display: none; }
    .price-ledger-table tbody tr {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 4px 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--rule-soft);
    }
    .price-ledger-table tbody tr:last-child { border-bottom: 0; }
    .price-ledger-table tbody th,
    .price-ledger-table tbody td {
        padding: 0;
        border: 0;
    }
    .price-ledger-table tbody th { grid-column: 1 / 2; font-size: 0.95rem; }
    .price-ledger-table tbody td:last-child { grid-column: 2; grid-row: 1; align-self: start; }
    .price-ledger-table tbody td:first-of-type { grid-column: 1 / -1; font-size: 0.82rem; color: var(--ink-faint); }
    .price-ledger-table tbody td:nth-of-type(2) {
        grid-column: 1 / -1;
        font-family: var(--font-mono);
        font-size: 0.6rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold-leaf);
    }
}

/* visually hidden (a11y) */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

