/* =========================================================================
   Oddono's Gelati — "Gelateria Editoriale"
   Refined editorial Italian craft. Cream · Pistachio · Ink.
   Fraunces (variable serif) + Manrope (sans) + JetBrains Mono (numerals).
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
    /* Palette */
    --cream: #F5F0E6;
    --cream-warm: #FAF6EC;
    --cream-deep: #ECE4D2;
    --ink: #1F2419;
    --ink-soft: #3F4538;
    --ink-mute: #6B6F5F;
    --ink-faint: #9AA08C;
    --pistachio: #7A8B5C;
    --pistachio-deep: #4D5A3A;
    --pistachio-light: #C4CBA8;
    --amber: #B85C28;
    --amber-soft: #D88550;
    --rose: #C97B6E;
    --line: rgba(31,36,25,0.10);
    --line-soft: rgba(31,36,25,0.06);
    --line-strong: rgba(31,36,25,0.18);
    --shadow-1: 0 1px 2px rgba(31,36,25,0.04);
    --shadow-2: 0 8px 28px rgba(31,36,25,0.07);
    --shadow-3: 0 24px 60px rgba(31,36,25,0.12);
    --shadow-cream: 0 24px 60px rgba(77,90,58,0.18);

    /* Type */
    --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-strong: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.7, 0, 0.3, 1);
    --t-fast: 0.22s var(--ease-out);
    --t: 0.45s var(--ease-out);
    --t-slow: 0.9s var(--ease-out-strong);

    /* Geometry */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;
    --container: 1320px;
    --container-narrow: 880px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background: var(--cream);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.6;
    background: var(--cream);
    overflow-x: hidden;
    min-height: 100vh;
    font-feature-settings: "ss01", "ss02", "cv11";
    letter-spacing: -0.005em;
}

/* Paper grain removed — full-screen fixed overlay was forcing repaints. */

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--pistachio); color: var(--cream); }

/* ---------- Typography Scale ---------- */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}
.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow .num { color: var(--pistachio-deep); font-weight: 600; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1.display, .display {
    font-size: clamp(3.25rem, 9vw, 9.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-variation-settings: "opsz" 144, "SOFT" 80;
}

h2 {
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 1.0;
    letter-spacing: -0.035em;
}

h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.15; }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.2; }

em, .italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10; }

p { color: var(--ink-soft); line-height: 1.65; }

.lede {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 56ch;
    font-weight: 400;
}

.serif-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}

/* ---------- Layout primitives ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

.section {
    padding: clamp(4.5rem, 9vw, 9rem) 0;
    position: relative;
}
.section--tight { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--bleed { padding: 0; }

.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-pistachio { background: var(--pistachio-deep); color: var(--cream); }
.bg-ink { background: var(--ink); color: var(--cream); }

/* Hairline divider */
.rule {
    height: 1px;
    background: var(--line);
    margin: 0;
    border: 0;
}

/* ---------- Header / Nav ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 240, 230, 0.96);
    border-bottom: 1px solid transparent;
    transition: background var(--t), border-color var(--t), padding var(--t);
}
.header.scrolled {
    background: var(--cream);
    border-bottom-color: var(--line);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.header.scrolled .nav { padding-top: 0.85rem; padding-bottom: 0.85rem; }

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 80;
    z-index: 110;
}
.logo .mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pistachio-deep);
    color: var(--cream);
    display: inline-grid;
    place-items: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}
.logo .word { display: inline-flex; align-items: baseline; gap: 0.18em; }
.logo .word small { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--ink-mute); text-transform: uppercase; font-weight: 500; }

/* Hide bitmap logo (we replaced with wordmark) — keep for safety */
.logo-image { display: none; }

.nav-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-self: center;
}
.nav-link {
    position: relative;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: var(--r-xs);
    transition: color var(--t-fast);
    letter-spacing: -0.005em;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.25rem;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 1.7rem); left: 0.85rem; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.05rem;
    border-radius: var(--r-pill);
    background: var(--ink);
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background var(--t-fast), transform var(--t-fast);
    justify-self: end;
}
.nav-cta::after {
    content: '→';
    font-family: var(--font-display);
    transition: transform var(--t-fast);
}
.nav-cta:hover { background: var(--pistachio-deep); }
.nav-cta:hover::after { transform: translateX(3px); }

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 120;
}
.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
    transform-origin: center;
}

@media (max-width: 960px) {
    .nav { grid-template-columns: auto 1fr auto; }
    .nav-menu {
        position: fixed;
        inset: 0;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 6rem var(--gutter) 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.45s var(--ease-out), visibility 0.45s;
        align-items: flex-start;
        justify-self: stretch;
        overflow-y: auto;
    }
    .nav-menu.active { opacity: 1; visibility: visible; }
    .nav-menu li { width: 100%; }
    .nav-link {
        display: block;
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 400;
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        letter-spacing: -0.025em;
        color: var(--ink);
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }
    .nav-menu.active .nav-link { opacity: 1; transform: translateY(0); }
    .nav-menu.active .nav-link { transition-delay: calc(var(--i, 0) * 0.05s + 0.1s); }
    .nav-link::after, .nav-link:hover::after { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.005em;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn .arrow {
    width: 1em;
    transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.btn-primary:hover {
    background: var(--pistachio-deep);
    border-color: var(--pistachio-deep);
}
.btn-pistachio {
    background: var(--pistachio-deep);
    color: var(--cream);
    border-color: var(--pistachio-deep);
}
.btn-pistachio:hover { background: var(--ink); border-color: var(--ink); }

.btn-secondary {
    background: rgba(245, 240, 230, 0.12);
    color: var(--cream);
    border-color: rgba(245, 240, 230, 0.4);
}
.btn-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

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

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 0.5rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--ink);
    font-weight: 500;
}
.btn-ghost:hover { color: var(--pistachio-deep); border-color: var(--pistachio-deep); }

.btn-white {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.btn-white:hover { background: var(--cream-warm); }

.btn-gold {
    background: var(--amber);
    color: var(--cream);
    border-color: var(--amber);
}
.btn-gold:hover { background: var(--amber-soft); }

/* ---------- Hero — Editorial split ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream);
    padding-top: 5.5rem;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    gap: 0;
    min-height: calc(100vh - 5.5rem);
    min-height: calc(100dvh - 5.5rem);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hero__copy {
    padding: clamp(2rem, 5vw, 4rem) clamp(0rem, 3vw, 3rem) clamp(2rem, 5vw, 4rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    color: var(--pistachio-deep);
}

.hero__title {
    font-size: clamp(3.5rem, 8.5vw, 9rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    font-variation-settings: "opsz" 144, "SOFT" 80;
    margin: 0;
}
.hero__title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    line-height: 0.92;
}
.hero__title .word > span {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}
.hero.is-loaded .hero__title .word > span {
    animation: heroWord 1.05s var(--ease-out-strong) forwards;
}
.hero__title .word:nth-child(1) > span { animation-delay: 0.18s; }
.hero__title .word:nth-child(2) > span { animation-delay: 0.28s; }
.hero__title .word:nth-child(3) > span { animation-delay: 0.38s; }
.hero__title .word:nth-child(4) > span { animation-delay: 0.48s; }
.hero__title .word:nth-child(5) > span { animation-delay: 0.58s; }
.hero__title .accent {
    font-style: italic;
    color: var(--pistachio-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}

@keyframes heroWord {
    0% { transform: translateY(110%); }
    100% { transform: translateY(0); }
}

.hero__lede {
    max-width: 42ch;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    opacity: 0;
    transform: translateY(14px);
    animation: heroFade 0.9s var(--ease-out) 0.85s forwards;
}

.hero__cta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    transform: translateY(14px);
    animation: heroFade 0.9s var(--ease-out) 1.0s forwards;
}

.hero__meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    margin-top: auto;
    opacity: 0;
    animation: heroFade 0.9s var(--ease-out) 1.2s forwards;
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.hero__meta-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hero__meta-label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }

.hero__visual {
    position: relative;
    overflow: hidden;
    margin: clamp(1rem, 3vw, 2.5rem) 0 clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
    border-radius: var(--r-md);
    background: var(--cream-deep);
    box-shadow: var(--shadow-3);
}
.hero__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31,36,25,0) 60%, rgba(31,36,25,0.25) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero__visual img,
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.08);
    transition: transform 14s var(--ease-out);
}
.hero.is-loaded .hero__visual img,
.hero.is-loaded .hero-bg { transform: scale(1.0); }

.hero__sticker {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    color: var(--cream);
    pointer-events: none;
}
.hero__sticker-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(31,36,25,0.78);
    padding: 0.45rem 0.85rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(245,240,230,0.18);
}
.hero__sticker-flavor {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    text-align: right;
}

.hero__corner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--pistachio-deep);
    color: var(--cream);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.3;
    transform: rotate(-8deg);
    box-shadow: 0 8px 24px rgba(77,90,58,0.3);
    animation: spin 20s linear infinite;
}
.hero__corner span {
    display: block;
}
@keyframes spin {
    /* Outer wrapper static — only inner spin if we add it; the corner itself stays still */
    from { transform: rotate(-8deg); }
    to { transform: rotate(-8deg); }
}

/* Scroll cue */
.hero__scroll {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    opacity: 0;
    animation: heroFade 0.8s var(--ease-out) 1.4s forwards;
}
.hero__scroll-line {
    width: 36px;
    height: 1px;
    background: var(--ink-mute);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateX(-100%);
    animation: scrollSlide 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollSlide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@media (max-width: 960px) {
    .hero { padding-top: 4.5rem; }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }
    .hero__copy { padding-right: 0; gap: 1.4rem; }
    .hero__visual {
        margin-left: 0;
        aspect-ratio: 4/5;
        min-height: 60vh;
    }
    .hero__title { font-size: clamp(3rem, 13vw, 5.2rem); }
    .hero__corner { width: 72px; height: 72px; font-size: 0.55rem; }
    .hero__scroll { display: none; }
}

/* ---------- Marquee — refined ---------- */
.marquee-strip {
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}
.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pistachio);
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ---------- Section header ---------- */
/* Default: stacked, left-aligned. Title sits on its own line above the
   subtitle. This is the safe layout for sub-pages that put label + title +
   subtitle directly inside .section-header. */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 100%;
}
.section-header > .section-subtitle { max-width: 56ch; }

/* Opt-in editorial split: title on the left, subtitle on the right.
   Used on the homepage where headers wrap title in a child <div>. */
.section-header--split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
}

/* Centered variant — explicit opt-in */
.section-header.center {
    align-items: center;
    text-align: center;
}
.section-header.center .section-subtitle { max-width: 56ch; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}
.section-label .num {
    color: var(--pistachio-deep);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.035em;
    margin: 0;
    color: var(--ink);
}
.section-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 48ch;
}

@media (max-width: 760px) {
    .section-header--split {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }
}

/* ---------- Editorial cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
}
@media (max-width: 880px) { .card-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

.card {
    position: relative;
    background: var(--cream-warm);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    isolation: isolate;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
    border-color: var(--line-strong);
}
.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-strong);
}
.card:hover .card-image { transform: scale(1.05); }
.card-content {
    padding: clamp(1.4rem, 2vw, 1.8rem);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.card-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.card-description {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}
.card-content .btn,
.card-content .btn-ghost { margin-top: auto; align-self: flex-start; }

/* ---------- Today's Selection (rotating flavor showcase) ---------- */
.today {
    position: relative;
    overflow: hidden;
}
.today__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2.5rem;
}
.today__nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.today__nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--ink);
    display: grid;
    place-items: center;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.today__nav button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.today__nav button svg { width: 18px; height: 18px; }

.today__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
.today__media {
    aspect-ratio: 5/6;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--cream-deep);
    position: relative;
}
.today__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s var(--ease-out), transform 1.4s var(--ease-out-strong);
}
.today__media-img.fade-out { opacity: 0; transform: scale(1.05); }
.today__swatch {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid rgba(245,240,230,0.85);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: background-color 0.6s var(--ease-out);
}

.today__detail {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.today__index {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.today__name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 80;
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.today__name .it { font-style: italic; color: var(--pistachio-deep); font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10; }
.today__name.fade-out { opacity: 0; transform: translateY(8px); }
.today__desc {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 44ch;
    transition: opacity 0.35s var(--ease-out);
}
.today__desc.fade-out { opacity: 0; }
.today__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.today__note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    color: var(--ink-soft);
}

.today__dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.today__dot {
    width: 32px;
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    transition: background var(--t-fast);
    cursor: pointer;
}
.today__dot.active { background: var(--ink); }

@media (max-width: 880px) {
    .today__stage { grid-template-columns: 1fr; }
    .today__head { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- Promise / Values — numbered editorial list ---------- */
.values {
    background: var(--cream-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.value {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background var(--t);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: relative;
}
.value:nth-child(3n) { border-right: 0; }
.value:nth-last-child(-n+3) { border-bottom: 0; }
.value:hover { background: var(--cream); }
.value__num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.value__icon {
    width: 56px;
    height: 56px;
    color: var(--pistachio-deep);
    transition: transform var(--t), color var(--t);
}
.value:hover .value__icon { transform: rotate(-6deg) scale(1.06); color: var(--ink); }
.value__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.8vw, 1.7rem);
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.value__title em { color: var(--pistachio-deep); font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10; }
.value__desc {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 880px) {
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .value:nth-child(3n) { border-right: 1px solid var(--line); }
    .value:nth-child(2n) { border-right: 0; }
    .value:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .value:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
    .values__grid { grid-template-columns: 1fr; }
    .value { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
    .value:last-child { border-bottom: 0 !important; }
}

/* Backwards compat with old features-grid markup */
.features { background: var(--cream-warm); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
}
.feature-item {
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.feature-item:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.feature-icon {
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream-deep);
    color: var(--pistachio-deep);
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.feature-description {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Stats — oversized serif numerals ---------- */
.stats-section {
    background: var(--cream);
    padding: clamp(4rem, 7vw, 7rem) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: left;
    padding: 1rem clamp(0.75rem, 2vw, 2rem);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}
.stat-item:last-child { border-right: 0; }
.stat-item:not(:last-child)::after { display: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50;
    font-weight: 400;
    display: block;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: block;
}
@media (max-width: 880px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { padding: 1.5rem 1rem; }
    .stat-item:nth-child(2n) { border-right: 0; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 420px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat-item:last-child { border-bottom: 0; }
}

/* ---------- Press Quote ---------- */
.press {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(5rem, 9vw, 9rem) 0;
    position: relative;
    overflow: hidden;
}
.press::before {
    content: '\201C';
    position: absolute;
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: clamp(15rem, 30vw, 30rem);
    color: rgba(245,240,230,0.04);
    line-height: 0.7;
    top: 1.5rem;
    left: -1rem;
    pointer-events: none;
}
.press__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
    position: relative;
    z-index: 1;
}
.press__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--cream);
}
.press__quote .pistachio { color: var(--pistachio-light); }
.press__attr {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,230,0.6);
}
.press__strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(245,240,230,0.1);
    color: rgba(245,240,230,0.55);
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}

/* Backwards compat with old quote-section */
.quote-section {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(5rem, 9vw, 9rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '\201C';
    position: absolute;
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: clamp(12rem, 28vw, 28rem);
    color: rgba(245,240,230,0.04);
    line-height: 0.7;
    top: 1.5rem;
    left: -1rem;
    pointer-events: none;
}
.quote-section::after { display: none; }
.quote-text {
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: clamp(1.85rem, 4.5vw, 3.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--cream);
    max-width: 880px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}
.quote-author {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,230,0.55);
    position: relative;
    z-index: 1;
}

/* ---------- Origin / Story split ---------- */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.story__media {
    aspect-ratio: 4/5;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--cream-deep);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.story__copy h2 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.story__copy p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4em;
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.1em 0 0;
    color: var(--pistachio-deep);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-weight: 400;
}
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }

/* ---------- Delivery section ---------- */
.delivery-cta-section {
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    position: relative;
}
.delivery-cta-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}
.delivery-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 70;
    margin-bottom: 0.6rem;
}
.delivery-cta-title .it { font-style: italic; color: var(--pistachio-deep); font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10; }
.delivery-cta-subtitle {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 38ch;
}
.delivery-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.delivery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--cream);
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    cursor: default;
    border: 0;
    box-shadow: var(--shadow-1);
}
.delivery-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); filter: brightness(1.05); }
.delivery-btn svg { flex-shrink: 0; }
.deliveroo-btn { background: #00CCBC; }
.ubereats-btn { background: #06C167; }
.justeat-btn { background: #FF8000; }

@media (max-width: 880px) {
    .delivery-cta-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .delivery-buttons { grid-template-columns: 1fr; }
    .delivery-btn { width: 100%; }
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--cream-warm); }
.faq-container { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
    background: transparent;
    border-radius: 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    transition: color var(--t-fast);
    gap: 1rem;
    font-variation-settings: "opsz" 144, "SOFT" 70;
    cursor: pointer;
}
.faq-question:hover { color: var(--pistachio-deep); }
.faq-icon {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--pistachio-deep);
    transition: transform 0.4s var(--ease-out);
    flex-shrink: 0;
    font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}
.faq-answer.active { max-height: 600px; }
.faq-answer p {
    padding: 0 0.5rem 1.5rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 65ch;
}
.faq-answer a { color: var(--pistachio-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.faq-answer a:hover { color: var(--ink); }

/* ---------- Newsletter ---------- */
.newsletter {
    background: var(--cream-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(4rem, 7vw, 7rem) 0;
}
.newsletter__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--gutter);
}
.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 1rem;
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.newsletter__title .it { font-style: italic; color: var(--pistachio-deep); font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10; }
.newsletter__sub {
    color: var(--ink-soft);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.newsletter__form {
    display: flex;
    gap: 0.5rem;
    max-width: 520px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: var(--cream);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.newsletter__form:focus-within {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(31,36,25,0.08);
}
.newsletter__form input {
    flex: 1;
    min-width: 200px;
    border: 0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    padding: 0.7rem 0;
}
.newsletter__form input::placeholder { color: var(--ink-faint); }
.newsletter__form input:focus { outline: none; }
.newsletter__form button {
    padding: 0.85rem 1.5rem;
    border-radius: var(--r-pill);
    background: var(--ink);
    color: var(--cream);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--t-fast);
    border: 0;
}
.newsletter__form button:hover { background: var(--pistachio-deep); }
.newsletter__note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 1.25rem;
}

@media (max-width: 480px) {
    .newsletter__form { padding: 0.5rem; flex-direction: column; border-radius: var(--r-md); }
    .newsletter__form input { padding: 0.85rem 1rem; }
    .newsletter__form button { width: 100%; padding: 1rem; }
}

/* ---------- Instagram CTA — refined ---------- */
.instagram-cta {
    background: var(--pistachio-deep);
    color: var(--cream);
    padding: clamp(4rem, 7vw, 7rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.instagram-cta::before {
    content: '@';
    position: absolute;
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: clamp(20rem, 50vw, 50rem);
    color: rgba(245,240,230,0.05);
    line-height: 0.7;
    top: -2rem;
    right: -3rem;
    pointer-events: none;
    z-index: 0;
}
.instagram-cta > * { position: relative; z-index: 1; }
.instagram-cta .section-label { color: rgba(245,240,230,0.7); }
.instagram-cta .section-label::before { background: rgba(245,240,230,0.4); }
.instagram-cta h2 {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
    font-variation-settings: "opsz" 144, "SOFT" 80;
}
.instagram-cta p {
    color: rgba(245,240,230,0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}
.instagram-handle {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

/* ---------- CTA section (compat) ---------- */
.cta-section {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(4rem, 7vw, 6.5rem) 2rem;
    text-align: center;
    border-radius: var(--r-md);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    border: 0;
    animation: none;
}
.cta-section h2 {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-variation-settings: "opsz" 144, "SOFT" 80;
}
.cta-section p { color: rgba(245,240,230,0.75); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer {
    background: var(--cream-warm);
    color: var(--ink);
    padding: clamp(4rem, 7vw, 6rem) 0 1.5rem;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.footer__brand {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 16rem);
    line-height: 0.85;
    letter-spacing: -0.055em;
    color: var(--ink);
    text-align: center;
    margin-bottom: 3rem;
    font-variation-settings: "opsz" 144, "SOFT" 80;
    overflow: hidden;
    user-select: none;
}
.footer__brand .it {
    font-style: italic;
    color: var(--pistachio-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}
.footer-section h3 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 1.25rem;
}
.footer-section p, .footer-section a {
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    transition: color var(--t-fast);
    line-height: 1.65;
}
.footer-section a:hover { color: var(--pistachio-deep); }
.footer-section .quote {
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.4;
    max-width: 28ch;
    margin-top: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { position: relative; padding-left: 0; transition: padding-left var(--t-fast), color var(--t-fast); }
.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1.1rem;
    opacity: 0;
    transition: all var(--t-fast);
}
.footer-links a:hover { padding-left: 1.1rem; }
.footer-links a:hover::before { left: 0; opacity: 1; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-soft);
    transition: all var(--t-fast);
}
.social-link:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-mute);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 880px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-section:first-child { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Image gallery ---------- */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out-strong);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,36,25,0.4), transparent 50%);
    opacity: 0;
    transition: opacity var(--t);
    z-index: 1;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Map ---------- */
.map-container {
    width: 100%;
    height: 460px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    margin-top: 2rem;
    border: 1px solid var(--line);
    background: var(--cream-deep);
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(0.95); }

/* ---------- Forms (contact, etc) ---------- */
.contact-form {
    max-width: 640px;
    margin: 2rem auto;
    background: var(--cream-warm);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
}
.form-group { margin-bottom: 1.4rem; }
.form-label {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(31,36,25,0.07);
}
.form-textarea { min-height: 160px; resize: vertical; }

.contact-info {
    background: var(--cream-warm);
    padding: 2rem;
    border-radius: var(--r-md);
    margin-bottom: 2rem;
    border: 1px solid var(--line);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--pistachio-deep);
    border: 1px solid var(--line);
    flex-shrink: 0;
    font-size: 1.05rem;
}
.contact-details h3 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.contact-details p { margin: 0; color: var(--ink); }

/* ---------- Journey — scroll-driven stepped story ---------- */
.journey { background: var(--cream-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey__stage {
    display: grid;
    grid-template-columns: 0.85fr 1.5fr;
    gap: clamp(2rem, 6vw, 6rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    align-items: start;
}
.journey__sticky {
    position: sticky;
    /* Sit at the same anchor line where step activation fires (45vh from top)
       minus half the year-track height, so the big year visually lines up
       with the active step's title. */
    top: calc(45vh - clamp(3.5rem, 8vw, 6rem));
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 4rem;
}
.journey__year-track {
    position: relative;
    height: clamp(7rem, 16vw, 12rem);
    overflow: hidden;
    line-height: 1;
}
.journey__year {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(5rem, 13vw, 11rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50;
    transition: transform 0.7s var(--ease-out-strong), opacity 0.5s var(--ease-out);
    opacity: 0;
    transform: translateY(110%);
}
.journey__year[data-year="Today"] {
    font-style: italic;
    color: var(--pistachio-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}
.journey__year.is-active {
    opacity: 1;
    transform: translateY(0);
    position: absolute;
    top: 0;
    left: 0;
}
.journey__year.is-past {
    opacity: 0;
    transform: translateY(-110%);
    position: absolute;
    top: 0;
    left: 0;
}
.journey__progress {
    height: 2px;
    background: var(--line-strong);
    overflow: hidden;
    border-radius: 2px;
}
.journey__progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--pistachio-deep);
    transition: width 0.4s var(--ease-out);
}
.journey__count {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.journey__steps {
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 10vw, 9rem);
    list-style: none;
    padding: 0;
}
.journey__step {
    display: grid;
    gap: 1rem;
    position: relative;
    padding-left: 0;
    opacity: 0.32;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
}
.journey__step.is-active {
    opacity: 1;
    transform: translateY(0);
}
.journey__step-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pistachio-deep);
    font-weight: 600;
}
.journey__step-year {
    display: none;
}
.journey__step-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 70;
    margin: 0;
}
.journey__step-title em {
    color: var(--pistachio-deep);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
}
.journey__step p {
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    max-width: 56ch;
}

@media (max-width: 880px) {
    .journey__stage { grid-template-columns: 1fr; gap: 1rem; }
    .journey__sticky {
        position: relative;
        top: auto;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .journey__year-track { height: clamp(3rem, 14vw, 4.5rem); flex: 1; }
    .journey__year { font-size: clamp(3rem, 13vw, 4.2rem); }
    .journey__progress { flex: 0 0 80px; }
    .journey__steps { gap: 3rem; }
    .journey__step { opacity: 1; transform: none; }
}

/* ---------- Timeline ---------- */
.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line-strong);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
    flex: 1;
    padding: 1.75rem;
    background: var(--cream-warm);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    margin: 0 2rem;
    transition: border-color var(--t), box-shadow var(--t);
}
.timeline-content:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.timeline-year {
    display: inline-block;
    font-family: var(--font-mono);
    color: var(--pistachio-deep);
    padding: 0.3rem 0;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.5rem;
}
.timeline-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: -0.02em; margin-bottom: 0.5rem; font-variation-settings: "opsz" 144, "SOFT" 70; }
.timeline-description { color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 768px) {
    .timeline::before { left: 14px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
    .timeline-content { margin-left: 3rem; margin-right: 0; }
}

/* ---------- Locations ---------- */
.location-card {
    background: var(--cream-warm);
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    margin-bottom: 1rem;
    transition: border-color var(--t), box-shadow var(--t);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: start;
}
.location-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.location-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.location-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.location-address { color: var(--ink-soft); font-size: 0.95rem; }
.location-hours { color: var(--ink-mute); font-size: 0.9rem; font-family: var(--font-mono); letter-spacing: 0.04em; }
.location-phone { color: var(--pistachio-deep); font-weight: 500; }

@media (max-width: 600px) {
    .location-card { grid-template-columns: 1fr; }
}

/* ---------- Loyalty / benefits (compat for gelato-card) ---------- */
.loyalty-benefits {
    background: var(--cream-warm);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--r-md);
    margin-top: 3rem;
    border: 1px solid var(--line);
}
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--pistachio-deep);
    color: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.benefit-text h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.benefit-text p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Trust badges ---------- */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: 2rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: var(--cream);
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.trust-badge-icon { font-size: 1rem; }

/* ---------- Hero variants for sub pages ---------- */
.hero--sub {
    min-height: 60vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: var(--cream);
}
.hero--sub .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: left;
    align-items: center;
}
.hero--sub .hero__copy {
    padding: 0;
    max-width: 880px;
    margin: 0 auto;
    align-items: flex-start;
}
.hero--sub .hero__title {
    font-size: clamp(2.75rem, 7vw, 6rem);
}
.hero--sub .hero__visual { display: none; }
.hero--sub .hero__scroll { display: none; }

/* Backwards compat for old hero markup with inline style maxheight */
.hero[style*="max-height"] {
    height: auto;
    min-height: 56vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: var(--cream);
    color: var(--ink);
    text-align: left;
}
.hero[style*="max-height"] .hero-bg { display: none; }
.hero[style*="max-height"]::before,
.hero[style*="max-height"]::after { display: none; }
.hero[style*="max-height"] .hero-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    color: var(--ink);
    text-align: left;
}
.hero[style*="max-height"] .hero-title {
    color: var(--ink);
    text-shadow: none;
    font-size: clamp(2.75rem, 6vw, 5.25rem);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}
.hero[style*="max-height"] .hero-subtitle {
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 560px;
    margin: 0 0 2rem;
}
.hero[style*="max-height"] .hero-label {
    color: var(--pistachio-deep);
    text-shadow: none;
}
.hero[style*="max-height"] .hero-scroll,
.hero[style*="max-height"] .hero-scroll-line { display: none !important; }

/* Make legacy hero label a clean eyebrow style */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pistachio-light);
    margin-bottom: 1.4rem;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-label::before {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.hero-title {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 32px rgba(0,0,0,0.25);
    font-variation-settings: "opsz" 144, "SOFT" 80;
    font-weight: 400;
}
.hero-subtitle {
    color: rgba(245,240,230,0.85);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 2rem;
}
.hero-cta-group {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- Quiz (compat) ---------- */
.flavor-quiz { max-width: 720px; margin: 0 auto; }
.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.5rem;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--t);
    text-align: left;
}
.quiz-option:hover {
    border-color: var(--ink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
}
.quiz-emoji { font-size: 2rem; line-height: 1; }
.quiz-label {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 70;
}
.quiz-result {
    text-align: center;
    padding: 2.5rem;
    background: var(--cream-warm);
    border-radius: var(--r-md);
    border: 1px solid var(--line-strong);
}
.quiz-result-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 80;
}
.quiz-result-text strong { color: var(--pistachio-deep); font-style: italic; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10; }
@media (max-width: 480px) { .quiz-options { grid-template-columns: 1fr; } }

/* ---------- Floating UI ---------- */
.fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}
.fab-button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--cream);
    box-shadow: var(--shadow-3);
    transition: transform var(--t-fast), background var(--t-fast);
    position: relative;
}
.fab-button:hover { transform: translateY(-3px); background: var(--pistachio-deep); }
.fab-button svg { width: 22px; height: 22px; }
.fab-button.phone { background: var(--ink); }
.fab-button.phone:hover { background: var(--pistachio-deep); }
.fab-button::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 64px;
    background: var(--ink);
    color: var(--cream);
    padding: 0.45rem 0.9rem;
    border-radius: var(--r-sm);
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-fast), visibility var(--t-fast);
}
.fab-button:hover::before { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
    .fab-container { bottom: 1.25rem; right: 1.25rem; }
    .fab-button { width: 48px; height: 48px; }
    .fab-button svg { width: 20px; height: 20px; }
    .fab-button::before { display: none; }
}

/* Custom cursor removed — native cursor for performance */
.cursor-dot, .cursor-ring { display: none !important; }

/* Legacy compat — drop these */
.cursor-glow { display: none; }
.social-proof { display: none; } /* removed; was intrusive */

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease-out-strong), transform 1s var(--ease-out-strong);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--pistachio-deep);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.bg-beige { background: var(--cream-warm); }

/* ---------- Page intro ---------- */
body { animation: pageLoad 0.6s var(--ease-out); }
@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Reduced motion ---------- */
@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;
    }
}

/* ---------- Print ---------- */
@media print {
    .header, .footer, .fab-container, .marquee-strip, .cursor-dot, .cursor-ring, .scroll-progress { display: none !important; }
    body { background: white; color: black; }
}

/* ---------- Compatibility: testimonials grid ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--cream-warm);
    padding: 2rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    transition: border-color var(--t), box-shadow var(--t);
    position: relative;
}
.testimonial-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    font-size: 4rem;
    color: var(--pistachio-deep);
    opacity: 0.4;
    line-height: 0.6;
    display: block;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "slnt" -10;
    color: var(--ink);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    line-height: 1.5;
}
.testimonial-author {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pistachio-deep);
}
.stars {
    color: var(--amber);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
}

/* ---------- Hero logo (legacy compat) ---------- */
.hero-logo, .page-header-logo { display: none; }
