/* ==========================================================================
   Lungo: Specialty Coffee
   1. Tokens          5. Header / nav        9.  Sections
   2. Reset & base    6. Overlay menu        10. Footer
   3. Utilities       7. Hero                11. Responsive
   4. Buttons         8. Rails & cues        12. Motion preferences
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */

:root {
    --ink:        #0c0806;
    --ink-soft:   #14100c;
    --ink-panel:  #191310;
    --brown:      #3e1614;
    --brown-soft: #5c2b25;
    --cream:      #fbf3e4;
    --sand:       #f3efe5;
    --crema:      #c98a4b;
    --cocoa:      #2b1e16;

    --cream-80: rgba(251, 243, 228, .80);
    --cream-70: rgba(251, 243, 228, .70);
    --cream-55: rgba(251, 243, 228, .55);
    --cream-45: rgba(251, 243, 228, .45);
    --cream-22: rgba(251, 243, 228, .22);
    --cream-12: rgba(251, 243, 228, .12);

    --brown-70: rgba(62, 22, 20, .70);
    --brown-55: rgba(62, 22, 20, .55);
    --brown-18: rgba(62, 22, 20, .18);

    --serif: 'Cormorant Garamond', 'Times New Roman', Times, serif;
    --sans:  'Jost', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Horizontal rhythm, tuned so the hero matches the reference composition. */
    --gutter:      clamp(20px, 7vw, 100px);
    --rail-x:      clamp(14px, 4.4vw, 63px);
    --hero-indent: calc(var(--gutter) + clamp(24px, 6vw, 88px));
    --mark-w:      clamp(168px, 26vw, 360px);

    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* 2. Reset & base ---------------------------------------------------------- */

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

* { margin: 0; padding: 0; }

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

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

img,
svg,
iframe { display: block; max-width: 100%; }

img { height: auto; }

ul,
ol { list-style: none; }

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

:focus-visible {
    outline: 1px solid var(--crema);
    outline-offset: 4px;
}

::selection {
    background: var(--crema);
    color: var(--ink);
}

/* 3. Utilities ------------------------------------------------------------- */

.container {
    width: min(100% - (var(--gutter) * 2), 1320px);
    margin-inline: auto;
}

/* Keep anchor targets clear of the fixed header. */
[id] { scroll-margin-top: clamp(84px, 11vh, 130px); }

.u-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 10px 18px;
    background: var(--cream);
    color: var(--ink);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: translateY(-160%);
    transition: transform .3s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(9px, .72vw, 11px);
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--cream-55);
}

.section--cream .eyebrow { color: var(--brown-55); }

.rule {
    width: clamp(28px, 3.1vw, 45px);
    height: 1px;
    background: var(--cream-55);
    border: 0;
}

.section--cream .rule { background: var(--brown-55); }

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 3.6vw, 52px);
    line-height: 1.15;
    letter-spacing: .005em;
}

.h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(21px, 1.9vw, 28px);
    line-height: 1.25;
}

.lede {
    font-size: clamp(14px, 1.05vw, 16.5px);
    line-height: 1.75;
    color: var(--cream-70);
}

.section--cream .lede { color: var(--brown-70); }


/* 4. Buttons --------------------------------------------------------------- */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.4vw, 34px);
    height: clamp(44px, 3.4vw, 49px);
    padding-inline: clamp(20px, 2.6vw, 34px);
    border: 1px solid var(--cream-45);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(10px, .95vw, 13px);
    letter-spacing: .2em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    transition: color .45s var(--ease), border-color .45s var(--ease);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .55s var(--ease);
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn:focus-visible {
    color: var(--ink);
    border-color: var(--cream);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.btn__arrow {
    width: clamp(24px, 2.1vw, 30px);
    transition: transform .45s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--sm {
    gap: 0;
    height: clamp(36px, 3.1vw, 45px);
    padding-inline: clamp(15px, 1.8vw, 26px);
    font-size: clamp(9px, .88vw, 12px);
    letter-spacing: .18em;
}

.btn--dark {
    border-color: var(--brown-18);
    color: var(--brown);
}

.btn--dark::before { background: var(--brown); }

.btn--dark:hover,
.btn--dark:focus-visible {
    color: var(--sand);
    border-color: var(--brown);
}

/* Understated text link with an animated underline. */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(10px, .9vw, 12.5px);
    letter-spacing: .22em;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    transition: gap .4s var(--ease), opacity .4s var(--ease);
}

.link-arrow:hover { gap: 22px; }

.link-arrow svg { width: 22px; }

/* 5. Header / nav ---------------------------------------------------------- */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    padding-block: clamp(10px, 1.35vw, 16px);
    background: rgba(12, 8, 6, .48);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(251, 243, 228, .08);
    color: var(--cream);
    transition: padding .45s var(--ease),
                background .35s var(--ease),
                color .35s var(--ease),
                border-color .45s var(--ease),
                transform .5s var(--ease);
}

.site-header.is-scrolled {
    padding-block: clamp(6px, .8vw, 10px);
}

.site-header.is-hidden { transform: translateY(-101%); }

.site-header.is-on-light {
    background: rgba(243, 239, 229, .72);
    border-bottom-color: rgba(62, 22, 20, .1);
    color: var(--brown);
}

.site-header__inner {
    display: flex;
    align-items: center;
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
}

.brand {
    flex: 0 0 auto;
    display: block;
}

.brand__mark {
    width: clamp(78px, 7.4vw, 108px);
    transition: width .45s var(--ease), opacity .4s var(--ease);
}

.site-header.is-scrolled .brand__mark {
    width: clamp(64px, 6.2vw, 88px);
}

.brand__mark--brown { display: none; }

.site-header.is-on-light .brand__mark--cream { display: none; }

.site-header.is-on-light .brand__mark--brown { display: block; }

.brand:hover .brand__mark { opacity: .78; }

.brand__tagline {
    display: block;
    margin-top: 2px;
    text-align: center;
    font-size: clamp(5.5px, .52vw, 7.5px);
    font-weight: 300;
    letter-spacing: .18em;
    color: var(--cream-55);
    transition: color .35s var(--ease);
}

.site-header.is-on-light .brand__tagline { color: var(--brown-55); }

.site-nav { margin-left: auto; }

.site-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 44px);
}

.site-nav__link {
    position: relative;
    display: block;
    padding-block: 4px;
    font-size: clamp(10px, .85vw, 12px);
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color .4s var(--ease);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    inset: auto 0 -8px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .5s var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active { color: inherit; }

.site-header.is-on-light .site-nav__link { color: var(--brown); }

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.4vw, 20px);
    margin-left: clamp(14px, 3vw, 40px);
}

.header-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: inherit;
}

.header-icon svg {
    width: 20px;
    height: 20px;
}

.site-header.is-on-light .header-icon { color: var(--brown); }

.lang-switch {
    display: flex;
    align-items: center;
    height: 28px;
    padding: 2px;
    border: 1px solid rgba(251, 243, 228, .28);
    border-radius: 99px;
}

.site-header.is-on-light .lang-switch {
    border-color: rgba(62, 22, 20, .18);
}

.lang-switch button {
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: inherit;
    opacity: .55;
}

.lang-switch button.is-active {
    background: rgba(251, 243, 228, .16);
    opacity: 1;
}

.site-header.is-on-light .lang-switch button.is-active {
    background: rgba(62, 22, 20, .1);
}

.site-header .btn--sm {
    height: 32px;
    padding-inline: 14px;
    font-size: 10px;
    transition: color .35s var(--ease), border-color .35s var(--ease);
}

.site-header.is-on-light .btn--sm {
    border-color: var(--brown-18);
    color: var(--brown);
}

.site-header.is-on-light .btn--sm::before { background: var(--brown); }

.site-header.is-on-light .btn--sm:hover,
.site-header.is-on-light .btn--sm:focus-visible {
    color: var(--sand);
    border-color: var(--brown);
}

.menu-toggle {
    display: none;
    place-items: center;
    width: clamp(28px, 2.4vw, 34px);
    height: clamp(28px, 2.4vw, 34px);
}

.menu-toggle__bars {
    display: block;
    width: clamp(21px, 2.1vw, 28px);
}

.menu-toggle__bars i {
    display: block;
    height: 1px;
    background: var(--cream);
    transition: transform .45s var(--ease), opacity .3s var(--ease), background .35s var(--ease);
}

.menu-toggle__bars i + i { margin-top: 5px; }

.site-header.is-on-light .menu-toggle__bars i { background: var(--brown); }

.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 6. Overlay menu ---------------------------------------------------------- */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 55;
    background:
        radial-gradient(120% 90% at 85% 15%, rgba(201, 138, 75, .14), transparent 60%),
        var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

.menu-overlay[hidden] { display: none; }

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-overlay__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(36px, 6vh, 72px);
    height: 100%;
    padding: clamp(110px, 16vh, 190px) var(--gutter) clamp(48px, 8vh, 90px);
    overflow-y: auto;
}

.menu-overlay__nav ul {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.1vh, 14px);
}

.menu-overlay__nav a {
    display: flex;
    align-items: baseline;
    gap: clamp(16px, 2vw, 30px);
    width: max-content;
    max-width: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease), color .4s var(--ease);
}

.menu-overlay.is-open .menu-overlay__nav a {
    opacity: 1;
    transform: none;
    transition-delay: calc(.16s + var(--i) * .07s);
}

.menu-overlay__num {
    font-size: clamp(9px, .8vw, 11px);
    letter-spacing: .22em;
    color: var(--crema);
}

.menu-overlay__label {
    font-family: var(--serif);
    font-size: clamp(34px, 6vw, 76px);
    line-height: 1.06;
    color: var(--cream-70);
    transition: color .4s var(--ease);
}

.menu-overlay__nav a:hover .menu-overlay__label,
.menu-overlay__nav a[aria-current] .menu-overlay__label { color: var(--cream); }

.menu-overlay__aside {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(28px, 5vw, 84px);
    padding-top: clamp(24px, 4vh, 44px);
    border-top: 1px solid var(--cream-12);
    font-size: 14px;
    color: var(--cream-70);
}

.menu-overlay__block .eyebrow { margin-bottom: 12px; }

.menu-overlay__block a:hover { color: var(--cream); }

.menu-overlay__socials {
    display: flex;
    gap: 20px;
}

/* 7. Hero ------------------------------------------------------------------ */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    overflow: hidden;
    background: var(--ink);
}

/* Transform is driven frame-by-frame from JS, so no CSS transition here. */
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 52%;
    transform: scale(1.06);
    animation: heroDrift 30s ease-in-out infinite alternate;
}

@keyframes heroDrift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to   { transform: scale(1.13) translate3d(-1.4%, -1%, 0); }
}

/* Deepens the left third so the type stays legible over the photograph. */
.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg,
            rgba(8, 5, 4, .96)  0%,
            rgba(8, 5, 4, .90) 22%,
            rgba(8, 5, 4, .62) 42%,
            rgba(8, 5, 4, .18) 60%,
            rgba(8, 5, 4, .10) 74%,
            rgba(8, 5, 4, .48) 100%),
        radial-gradient(70% 55% at 72% 46%, rgba(201, 138, 75, .16), transparent 70%),
        linear-gradient(to bottom,
            rgba(8, 5, 4, .70) 0%,
            transparent 26%,
            transparent 68%,
            rgba(8, 5, 4, .82) 100%);
}

/* Fine film grain keeps the large dark areas from banding. */
.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .30;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-block: clamp(96px, 12vh, 140px);
    padding-left: var(--hero-indent);
    padding-right: var(--gutter);
}

.hero__content { max-width: 28rem; }

/* Overhangs the text column to the left, mirroring the swash in the logotype. */
.hero__mark {
    width: var(--mark-w);
    margin-left: calc(var(--mark-w) * -.12);
}

.hero__tagline {
    margin-top: clamp(4px, .5vw, 8px);
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 300;
    letter-spacing: .04em;
    color: rgba(251, 243, 228, .88);
}

.hero__rule {
    margin: clamp(14px, 1.8vw, 22px) 0 clamp(12px, 1.3vw, 18px);
}

.hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(22px, 2.35vw, 34px);
    line-height: 1.28;
    letter-spacing: .005em;
    color: var(--cream);
}

.hero__title span { display: block; }

.hero__lede {
    margin-top: clamp(12px, 1.4vw, 18px);
    font-size: clamp(12px, .95vw, 14.5px);
    line-height: 1.7;
    color: var(--cream-70);
    max-width: 42ch;
}

.hero__cta { margin-top: clamp(18px, 2.2vw, 28px); }

/* 8. Rails & cues ---------------------------------------------------------- */

.social-rail {
    position: absolute;
    left: var(--rail-x);
    top: 56%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 1.6vw, 22px);
}

.hero .social-rail {
    top: auto;
    bottom: calc(clamp(36px, 6vh, 64px) + 1.4em + 10px + clamp(32px, 4.6vh, 52px) + 24px);
}

.social-rail__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: clamp(7.5px, .62vw, 9px);
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--cream-55);
}

.social-rail__list {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.1vw, 16px);
}

.social-rail__list a {
    display: block;
    color: rgba(251, 243, 228, .62);
    transition: color .35s var(--ease), transform .35s var(--ease);
}

.social-rail__list a:hover {
    color: var(--cream);
    transform: translateY(-2px);
}

.social-rail__list svg { width: clamp(14px, 1.2vw, 17px); }

.scroll-cue {
    position: absolute;
    left: var(--rail-x);
    bottom: clamp(36px, 6vh, 64px);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.scroll-cue__line {
    position: relative;
    width: 1px;
    height: clamp(32px, 4.6vh, 52px);
    margin-left: 6px;
    background: var(--cream-22);
    overflow: hidden;
}

.scroll-cue__line i {
    position: absolute;
    inset: 0;
    background: var(--cream);
    animation: cueTrail 2.6s ease-in-out infinite;
}

@keyframes cueTrail {
    0%       { transform: translateY(-100%); }
    55%, 100% { transform: translateY(100%); }
}

.scroll-cue__row {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 16px);
}

.scroll-cue__dot {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    border: 1px solid var(--cream-45);
    border-radius: 50%;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.scroll-cue:hover .scroll-cue__dot {
    transform: translateY(3px);
    border-color: var(--cream);
}

.scroll-cue__label {
    font-size: clamp(7.5px, .62vw, 9.5px);
    letter-spacing: .3em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--cream-55);
}

/* 9. Sections -------------------------------------------------------------- */

.section { padding-block: clamp(72px, 9vw, 140px); }

/* Home content sections also lock to one screen. */
body[data-page="home"] .section--dark,
body[data-page="home"] .section--panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    overflow: hidden;
    padding-block: clamp(48px, 6vh, 88px);
}

body[data-page="home"] .section--dark > .container,
body[data-page="home"] .section--panel > .container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    overflow: auto;
}

body[data-page="home"] .section__head {
    margin-bottom: clamp(28px, 3.6vh, 52px);
}

body[data-page="home"] .menu-row {
    padding-block: clamp(14px, 1.8vh, 24px);
}

.section--dark  { background: var(--ink); color: var(--cream); }
.section--panel { background: var(--ink-soft); color: var(--cream); }

.section--cream {
    background: var(--sand);
    color: var(--brown);
}

.section__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 1.6vw, 22px);
    max-width: 640px;
    margin-bottom: clamp(40px, 5vw, 72px);
}

.section__head--center {
    align-items: center;
    text-align: center;
    margin-inline: auto;
}

/* Marquee ------------------------------------------------------------------ */

.marquee {
    margin-block: clamp(28px, 4.5vh, 56px);
    background: var(--ink-soft);
    border-block: 1px solid var(--cream-12);
    overflow: hidden;
    padding-block: clamp(8px, 1vw, 12px);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 42s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
    display: flex;
    align-items: center;
    gap: clamp(36px, 4.4vw, 64px);
    padding-right: clamp(36px, 4.4vw, 64px);
}

.marquee__item {
    font-size: clamp(9px, .78vw, 11px);
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--cream-55);
    white-space: nowrap;
}

.marquee__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--crema);
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* Experience: narrative column beside four full-bleed cards ---------------- */

/* Intro band + cream half share one screen, but can grow so the wordmark is not clipped. */
#experience {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
}

/* Dark lead-in band above the cream half of the section. */
.intro {
    position: relative;
    display: flex;
    flex: 0 0 clamp(220px, 30vh, 300px);
    align-items: center;
    min-height: 0;
    overflow: hidden;
    background: var(--ink);
}

.intro__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Scaled well past cover to sit inside the crema, as the design does. */
.intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.9);
}

.intro__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(95deg,
            rgba(8, 5, 4, .95)  0%,
            rgba(8, 5, 4, .88) 26%,
            rgba(8, 5, 4, .52) 46%,
            rgba(8, 5, 4, .12) 66%,
            rgba(8, 5, 4, 0)   82%),
        linear-gradient(to bottom,
            rgba(8, 5, 4, .50) 0%,
            transparent 30%,
            transparent 78%,
            rgba(8, 5, 4, .40) 100%);
}

.intro__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: clamp(28px, 3.5vh, 48px);
    padding-left: clamp(12px, 4vw, 64px);
}

.intro__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.35vw, 48px);
    line-height: 1.35;
    color: var(--cream);
}

.intro__title span { display: block; }

.intro__rule {
    width: clamp(24px, 2.8vw, 40px);
    height: 1px;
    margin: clamp(16px, 2vw, 26px) 0 clamp(14px, 1.7vw, 22px);
    background: var(--crema);
    border: 0;
}

.intro__text {
    max-width: 44ch;
    font-size: clamp(12.5px, 1.15vw, 16px);
    line-height: 1.72;
    color: var(--cream-70);
}

/* Fills the remaining screen under the intro band. */
.section--experience {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding-block: clamp(28px, 4vh, 52px) clamp(32px, 4.5vh, 60px);
}

.section--experience .experience {
    flex: 0 1 auto;
    min-height: 0;
    align-items: stretch;
}

.experience {
    display: grid;
    grid-template-columns: 1fr 2.6fr;
    gap: clamp(36px, 5vw, 72px);
}

.experience__intro {
    display: flex;
    flex-direction: column;
}

.experience__title {
    margin-top: clamp(14px, 1.8vw, 26px);
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 3.9vw, 55px);
    line-height: 1.12;
    color: var(--brown);
}

.experience__title em { font-style: italic; }

.experience__text {
    margin-top: clamp(16px, 2vw, 28px);
    max-width: 32ch;
    font-size: clamp(12.5px, 1.15vw, 16px);
    line-height: 1.75;
    color: var(--brown-70);
}

/* Sits at the foot of the column, level with the step numbers. */
.experience__sign {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: clamp(28px, 4vw, 56px);
}

.experience__sign-mark {
    display: block;
    width: clamp(78px, 8.5vw, 118px);
}

.experience__sign-label {
    display: block;
    margin-top: clamp(12px, 1.5vw, 20px);
}

.experience > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

.experience__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(4px, .4vw, 6px);
}

.xcard {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 2 / 3;
    padding: clamp(14px, 1.7vw, 22px) clamp(10px, 1.3vw, 18px) clamp(18px, 2.4vw, 34px);
    overflow: hidden;
    text-align: center;
    color: var(--cream);
}

.xcard__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.xcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.1s var(--ease);
}

.xcard:hover .xcard__media img { transform: scale(1.09); }

.xcard__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(14, 9, 6, .90)  0%,
        rgba(14, 9, 6, .58) 38%,
        rgba(14, 9, 6, .20) 68%,
        rgba(14, 9, 6, .34) 100%);
}

.xcard__body {
    position: relative;
    z-index: 1;
}

/* Box matches the icon artboard ratio so every icon lands at the same size. */
.xcard__icon {
    width: clamp(38px, 4vw, 54px);
    height: clamp(26px, 2.7vw, 36px);
    margin: 0 auto clamp(12px, 1.5vw, 20px);
    object-fit: contain;
}

.xcard__title {
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(9.5px, 1.02vw, 13px);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream);
}

.xcard__desc {
    margin-top: clamp(8px, 1vw, 13px);
    font-size: clamp(9.5px, .98vw, 12.5px);
    line-height: 1.55;
    color: rgba(251, 243, 228, .74);
}

.experience__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex: 0 0 auto;
    margin-top: clamp(10px, 1.4vh, 20px);
}

.experience__step {
    position: relative;
    display: flex;
    justify-content: center;
    font-family: var(--serif);
    font-size: clamp(14px, 1.5vw, 21px);
    color: var(--brown-70);
}

/* Hairline reaching across to the next number. */
.experience__step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% + 24px);
    right: calc(-50% + 24px);
    height: 1px;
    background: var(--brown-18);
}

.experience__step:last-child::after { display: none; }

/* Story: editorial band over the photograph, values strip beneath ---------- */

/* The photographic band and the values strip together fill one screen. */
.story {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    overflow: hidden;
}

.story__band {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.story__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

/* Weighted to the left so the copy reads, leaving the jar and cup untouched. */
.story__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(95deg,
            rgba(8, 5, 4, .95)  0%,
            rgba(8, 5, 4, .88) 24%,
            rgba(8, 5, 4, .55) 42%,
            rgba(8, 5, 4, .16) 60%,
            rgba(8, 5, 4, 0)   78%),
        linear-gradient(to bottom,
            rgba(8, 5, 4, .45) 0%,
            transparent 24%,
            transparent 80%,
            rgba(8, 5, 4, .35) 100%);
}

.story__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: clamp(44px, 5.5vw, 84px);
}

/* Extra left indent matches the design: copy sits in from the photo edge. */
.story__content {
    max-width: 28rem;
    padding-left: clamp(28px, 7vw, 110px);
}

.story__rule {
    width: clamp(24px, 2.8vw, 40px);
    height: 1px;
    margin: clamp(10px, 1.2vw, 16px) 0 clamp(18px, 2.2vw, 30px);
    background: var(--crema);
    border: 0;
}

.story__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.28;
    color: var(--cream);
}

.story__title em {
    display: block;
    font-style: italic;
    color: var(--crema);
}

.story__text {
    margin-top: clamp(16px, 2vh, 26px);
    max-width: 36ch;
    font-size: clamp(13px, 1.2vw, 16.5px);
    line-height: 1.8;
    color: var(--cream-70);
}

.story__text + .story__text { margin-top: clamp(12px, 1.5vh, 20px); }

.story__sign { margin-top: clamp(22px, 2.8vh, 38px); }

/* Masked so the single wordmark file can carry the accent tone here. */
.story__mark {
    display: block;
    width: clamp(66px, 7vw, 100px);
    aspect-ratio: 1171 / 472;
    background: var(--crema);
    -webkit-mask: url("../Images/Logos/wordmark-cream.png") left center / contain no-repeat;
    mask: url("../Images/Logos/wordmark-cream.png") left center / contain no-repeat;
}

.story__sign-label {
    display: block;
    margin-top: clamp(12px, 1.4vw, 18px);
}

.story__values {
    flex: 0 0 auto;
    background: var(--sand);
}

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: clamp(28px, 3.8vh, 52px);
}

.value {
    padding-inline: clamp(18px, 2.6vw, 40px);
    text-align: center;
    color: var(--brown);
}

.value + .value { border-left: 1px solid var(--brown-18); }

.value__icon {
    width: clamp(44px, 5vw, 68px);
    height: clamp(36px, 4.3vw, 54px);
    margin-inline: auto;
    object-fit: contain;
}

.value__icon.is-placeholder { opacity: .38; }

.value__title {
    margin-top: clamp(16px, 2.2vw, 30px);
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(10px, 1.02vw, 13px);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brown);
}

.value__desc {
    max-width: 24ch;
    margin: clamp(9px, 1.1vw, 14px) auto 0;
    font-size: clamp(11.5px, 1.05vw, 14px);
    line-height: 1.7;
    color: var(--brown-70);
}

/* Menu showcase: fourth section ------------------------------------------- */

.offer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    overflow: hidden;
    background: var(--sand);
    color: var(--brown);
}

.offer__main {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(243, 239, 229, .88) 0%, rgba(243, 239, 229, .72) 34%, rgba(243, 239, 229, .28) 58%, rgba(243, 239, 229, .12) 100%),
        var(--sand) url('../Images/Elements/Fourthsection/SectionBG.png') center / cover no-repeat;
}

.offer .eyebrow {
    font-weight: 500;
    color: var(--brown);
}

.offer__title {
    margin-top: clamp(8px, 1.2vh, 16px);
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(24px, 2.8vw, 40px);
    line-height: 1.15;
    color: var(--brown);
}

.offer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 32vw) 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.offer__intro {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: clamp(20px, 3.2vh, 36px) clamp(20px, 2.4vw, 36px) clamp(12px, 1.6vh, 20px) var(--gutter);
}

.offer-cat.is-active,
.offer-cat:hover {
    background: var(--cocoa);
    color: var(--cream);
    box-shadow: inset 0 0 0 1px rgba(251, 243, 228, .35);
}

.offer__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.offer__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    flex: 1 1 auto;
    gap: 4px;
    min-height: 0;
    margin: 18px 28px 10px 12px;
    overflow: hidden;
}

.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #1a0f0a;
    color: #e8d8c3;
    border-radius: 0;
}

.offer-card:first-child {
    border-radius: 14px 0 0 14px;
}

.offer-card:last-child {
    border-radius: 0 14px 14px 0;
}

.offer-card__media {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    background: #2b1e16;
}

.offer-card__media.is-placeholder {
    flex: 1 1 auto;
    min-height: 0;
}

.offer-card__body {
    position: absolute;
    inset: auto 0 0;
    min-width: 0;
    padding: 52px 14px 14px;
    text-align: left;
    background: linear-gradient(
        to top,
        rgba(16, 9, 6, .96) 0%,
        rgba(16, 9, 6, .78) 48%,
        rgba(16, 9, 6, 0) 100%
    );
}

.offer-card__name {
    font-family: var(--sans);
    font-size: clamp(11px, .95vw, 14px);
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #f3e6d4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-card__desc {
    margin-top: 5px;
    font-size: clamp(11px, .85vw, 13px);
    font-weight: 300;
    line-height: 1.4;
    color: rgba(243, 230, 212, .82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-card__price {
    margin-top: 10px;
    padding-top: 0;
    border-top: 0;
    font-family: var(--sans);
    font-size: clamp(11px, .88vw, 13px);
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #d4b08c;
}

.offer-card__price::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 9px;
    background: #f3e6d4;
    opacity: .4;
}

.offer__pager {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 32px);
    margin: 0;
    padding: 8px 0 4px;
    color: var(--brown);
    background: none;
    transform: none;
}

.offer__title em { font-style: italic; font-weight: 500; }

.offer__text {
    margin-top: clamp(8px, 1.1vh, 14px);
    max-width: 34ch;
    font-size: clamp(13px, 1.05vw, 15.5px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--brown);
}

.offer__cats {
    display: grid;
    gap: 2px;
    margin-top: clamp(12px, 1.8vh, 22px);
}

.offer-cat {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 7px 12px;
    border-radius: 8px;
    text-align: left;
    color: var(--brown);
    transition: background .35s var(--ease), color .35s var(--ease);
}

.offer-cat__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    object-fit: contain;
}

.offer-cat__icon.is-placeholder { opacity: .5; }

.offer-cat__label {
    display: block;
    font-size: clamp(11px, .9vw, 13px);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.offer-cat__note {
    display: block;
    margin-top: 1px;
    font-size: clamp(11px, .85vw, 13px);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    opacity: .85;
}

.offer__more {
    margin-top: clamp(14px, 1.8vh, 22px);
    padding-top: 0;
    color: var(--brown);
}

.offer__count {
    font-size: clamp(12px, 1vw, 14px);
    letter-spacing: .16em;
}

.offer__arrow {
    display: grid;
    place-items: center;
    width: 36px;
    color: inherit;
    opacity: .7;
    transition: opacity .3s var(--ease);
}

.offer__arrow svg { width: 24px; }

.offer__arrow:hover { opacity: 1; }

/* Features bar: fourth section -------------------------------------------- */

.features {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    background: #23120b;
    color: #e8d8c3;
    overflow: hidden;
}

.features__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 18%);
    align-items: stretch;
    min-height: clamp(92px, 13vh, 128px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 48px);
    align-items: center;
    padding: clamp(22px, 3.4vh, 38px) clamp(18px, 2.2vw, 32px) clamp(22px, 3.4vh, 38px) var(--gutter);
}

.features__cup {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    border-radius: 0;
}

.features__cup-media {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(92px, 13vh, 128px);
    object-fit: cover;
    object-position: 18% 48%;
}

.features__cup-media.is-placeholder {
    background: rgba(232, 216, 195, .08);
}

.feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(10px, 1.2vw, 16px);
    min-width: 0;
    color: inherit;
}

.feature__icon {
    width: clamp(28px, 2.4vw, 38px);
    height: clamp(28px, 2.4vw, 38px);
    flex: 0 0 auto;
    object-fit: contain;
    mix-blend-mode: screen;
    color: #e8d8c3;
}

.feature__icon.is-placeholder {
    opacity: .5;
    mix-blend-mode: normal;
}

.feature__copy {
    min-width: 0;
}

.feature__title {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(10px, .82vw, 12.5px);
    letter-spacing: .14em;
    line-height: 1.25;
    text-transform: uppercase;
    color: #e8d8c3;
}

.feature__desc {
    margin-top: 3px;
    max-width: 24ch;
    font-size: clamp(11px, .88vw, 13.5px);
    font-weight: 400;
    line-height: 1.4;
    color: #e8d8c3;
}

/* Together: fifth section -------------------------------------------------- */

.together {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    overflow: hidden;
    background: var(--sand);
    color: var(--brown);
}

.together__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(72px, 10vh, 100px) clamp(28px, 4vw, 64px) clamp(32px, 4vh, 56px) var(--gutter);
}

.together__leaf {
    position: absolute;
    left: clamp(8px, 1.2vw, 20px);
    bottom: clamp(8px, 1.4vh, 20px);
    width: clamp(140px, 18vw, 220px);
    height: auto;
    color: var(--brown);
    opacity: .07;
    pointer-events: none;
}

.together .eyebrow {
    font-weight: 500;
    color: var(--brown);
}

.together__title {
    margin-top: clamp(10px, 1.4vh, 18px);
    max-width: 14ch;
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.18;
    letter-spacing: -.01em;
    color: var(--brown);
}

.together__title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
}

.together__text {
    margin-top: clamp(14px, 1.8vh, 22px);
    max-width: 42ch;
    font-size: clamp(13px, 1.05vw, 15.5px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--brown-70);
}

.together__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2.2vw, 32px);
    margin-top: clamp(24px, 3.2vh, 40px);
}

.together-point + .together-point {
    padding-left: clamp(18px, 2.2vw, 32px);
    border-left: 1px solid var(--brown-18);
}

.together-point__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    object-fit: contain;
    color: var(--brown);
}

.together-point__icon.is-placeholder { opacity: .4; }

.together-point__title {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(10px, .82vw, 12px);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown);
}

.together-point__desc {
    margin-top: 8px;
    font-size: clamp(12px, .92vw, 14px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--brown-70);
}

.together__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: clamp(24px, 3.2vh, 40px);
}

.together__mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    color: var(--brown);
}

.together__mail svg {
    width: 16px;
    height: 16px;
}

.together__media {
    position: relative;
    margin: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #2b1e16;
}

.together__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.together__photo.is-placeholder {
    height: 100%;
    min-height: 100%;
    background:
        linear-gradient(155deg, #3d2a1e 0%, #1a0f0a 72%);
}

.together__badge {
    position: absolute;
    top: clamp(20px, 3.4vh, 36px);
    left: clamp(18px, 2.4vw, 32px);
    z-index: 2;
    max-width: 18ch;
    color: var(--cream);
}

.together__badge-label {
    display: block;
    font-size: clamp(9px, .72vw, 11px);
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(251, 243, 228, .78);
}

.together__badge-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 12px;
    background: #c5a07f;
}

.together__badge-ar {
    font-family: 'Segoe UI', 'Noto Naskh Arabic', Tahoma, serif;
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.25;
    color: var(--cream);
}

.together__badge-en {
    margin-top: 4px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(22px, 2.6vw, 36px);
    line-height: 1.1;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #c5a07f;
}

.together__badge-en span { color: var(--cream); }

.together__badge-tag {
    margin-top: 8px;
    font-size: clamp(11px, .85vw, 13px);
    font-weight: 300;
    letter-spacing: .04em;
    color: rgba(251, 243, 228, .78);
}

/* Philosophy --------------------------------------------------------------- */

.philosophy { text-align: center; }

.philosophy__lockup {
    width: clamp(230px, 26vw, 360px);
    margin: clamp(26px, 3vw, 44px) auto clamp(30px, 3.6vw, 52px);
}

.philosophy__quote {
    max-width: 22ch;
    margin-inline: auto;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 36px);
    line-height: 1.3;
    color: var(--brown);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 72px);
    margin-top: clamp(52px, 6vw, 96px);
    text-align: left;
}

.pillar {
    padding-top: clamp(18px, 2vw, 26px);
    border-top: 1px solid var(--brown-18);
}

.pillar__num {
    display: block;
    margin-bottom: clamp(12px, 1.4vw, 18px);
    font-size: clamp(9px, .72vw, 11px);
    letter-spacing: .28em;
    color: var(--crema);
}

.pillar h3 { margin-bottom: 10px; }

.pillar p {
    font-size: clamp(13.5px, 1vw, 15.5px);
    line-height: 1.75;
    color: var(--brown-70);
}

/* Menu list ---------------------------------------------------------------- */

.menu-list { display: grid; }

.menu-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: clamp(16px, 3vw, 48px);
    padding-block: clamp(18px, 2.2vw, 28px);
    border-bottom: 1px solid var(--cream-12);
    transition: padding-left .5s var(--ease);
}

.menu-row:first-child { border-top: 1px solid var(--cream-12); }

.menu-row:hover { padding-left: clamp(8px, 1.2vw, 18px); }

.menu-row__name {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-family: var(--serif);
    font-size: clamp(21px, 2vw, 29px);
    line-height: 1.2;
}

.menu-row__tag {
    font-family: var(--sans);
    font-size: clamp(8.5px, .68vw, 10px);
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--crema);
    border: 1px solid rgba(201, 138, 75, .38);
    padding: 3px 9px;
}

.menu-row__desc {
    margin-top: 8px;
    max-width: 52ch;
    font-size: clamp(13px, .98vw, 15px);
    line-height: 1.7;
    color: var(--cream-45);
}

.menu-row__price {
    font-family: var(--serif);
    font-size: clamp(19px, 1.6vw, 25px);
    color: var(--crema);
    white-space: nowrap;
}

.menu-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(36px, 4.4vw, 64px);
}

.menu-foot p {
    font-size: clamp(12.5px, .95vw, 14.5px);
    color: var(--cream-45);
}

/* Visit -------------------------------------------------------------------- */

.visit {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}

.visit__frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.visit__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% 42%;
    transform: scale(1.35);
    transition: transform 1.2s var(--ease);
}

.visit__frame:hover img { transform: scale(1.42); }

.visit__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px var(--cream-22);
    background: linear-gradient(to top, rgba(8, 5, 4, .55), transparent 55%);
}

.info-list { display: grid; }

.info-list__row {
    display: grid;
    grid-template-columns: minmax(120px, .5fr) 1fr;
    gap: 16px clamp(20px, 3vw, 48px);
    padding-block: clamp(14px, 1.7vw, 22px);
    border-bottom: 1px solid var(--cream-12);
}

.info-list__row:first-child { border-top: 1px solid var(--cream-12); }

.info-list__row dd {
    font-size: clamp(14px, 1.05vw, 16.5px);
    color: var(--cream-80);
}

.info-list__row dd a:hover { color: var(--crema); }

.visit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 1.6vw, 22px);
    margin-top: clamp(30px, 3.6vw, 48px);
}

/* Page hero (inner pages) -------------------------------------------------- */

.page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(420px, 64vh, 620px);
    overflow: hidden;
    background: var(--ink);
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 48%;
    transform: scale(1.08);
}

.page-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(8, 5, 4, .95) 0%, rgba(8, 5, 4, .72) 42%, rgba(8, 5, 4, .28) 70%, rgba(8, 5, 4, .55) 100%),
        linear-gradient(to bottom, rgba(8, 5, 4, .78) 0%, transparent 40%, rgba(8, 5, 4, .92) 100%);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: clamp(56px, 7vw, 88px);
}

.page-hero__title {
    margin-top: clamp(14px, 1.6vw, 22px);
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 1.04;
}

.page-hero__lede {
    margin-top: clamp(14px, 1.6vw, 22px);
    max-width: 52ch;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.7;
    color: var(--cream-70);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(9px, .72vw, 11px);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--cream-45);
}

.breadcrumbs a:hover { color: var(--cream); }

/* Prose / editorial columns ------------------------------------------------ */

.prose-grid {
    display: grid;
    grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 88px);
}

.prose p + p { margin-top: 1.15em; }

.prose p {
    font-size: clamp(14px, 1.08vw, 17px);
    line-height: 1.85;
    color: var(--cream-70);
}

.section--cream .prose p { color: var(--brown-70); }

.prose .drop-cap::first-letter {
    float: left;
    margin: .06em .12em 0 0;
    font-family: var(--serif);
    font-size: 3.4em;
    line-height: .82;
    color: var(--crema);
}

/* Stat strip --------------------------------------------------------------- */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(24px, 3vw, 48px);
    margin-top: clamp(48px, 5.5vw, 80px);
}

.stat {
    padding-top: clamp(16px, 1.8vw, 24px);
    border-top: 1px solid var(--cream-12);
}

.stat__value {
    font-family: var(--serif);
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1;
    color: var(--cream);
}

.stat__label {
    margin-top: 10px;
    font-size: clamp(9.5px, .74vw, 11px);
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--cream-45);
}

/* Contact form ------------------------------------------------------------- */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 2.2vw, 30px);
}

.field { display: grid; gap: 10px; }

.field--full { grid-column: 1 / -1; }

.field label {
    font-size: clamp(9px, .72vw, 11px);
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--cream-45);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--sans);
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 300;
    color: var(--cream);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--cream-22);
    border-radius: 0;
    transition: border-color .4s var(--ease);
}

.field select option { color: #111; }

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--crema);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--cream-22); }

.field label span {
    letter-spacing: .16em;
    opacity: .6;
}

.field__error {
    font-size: 12.5px;
    letter-spacing: .02em;
    text-transform: none;
    color: #d98c72;
}

/* Honeypot: hidden from people, reachable by bots. */
.field--trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    margin-bottom: clamp(24px, 3vw, 36px);
    padding: clamp(18px, 2.2vw, 28px);
    border-left: 2px solid var(--crema);
    background: rgba(201, 138, 75, .08);
    font-size: clamp(13.5px, 1vw, 15.5px);
    color: var(--cream-70);
}

.notice .h3 {
    margin-bottom: 8px;
    color: var(--cream);
}

.notice--bad {
    border-left-color: #d98c72;
    background: rgba(217, 140, 114, .08);
}

.form-note {
    margin-top: clamp(22px, 2.6vw, 34px);
    font-size: 12.5px;
    color: var(--cream-45);
}

/* Shared newsletter + collab bands --------------------------------------- */

.loop {
    padding: 0 var(--gutter) clamp(48px, 6vw, 80px);
    background: #f7f3ea;
    color: var(--cream);
}

.loop__inner {
    display: grid;
    grid-template-columns: minmax(220px, 30%) 1fr auto;
    align-items: center;
    gap: 0;
    width: min(100%, 1180px);
    min-height: 200px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 18px;
    background: #1a120b;
}

.loop__media {
    position: relative;
    align-self: stretch;
    margin: 0;
    min-height: 200px;
    overflow: hidden;
    background: #120c09;
}

.loop__media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 48%, #1a120b 100%);
}

.loop__photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 50%;
}

.loop__photo.is-placeholder {
    height: 100%;
    background: linear-gradient(155deg, #3d2a1e 0%, #1a0f0a 72%);
}

.loop__copy {
    padding: 32px 28px 32px 12px;
}

.loop__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 28px);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.loop__title::after {
    content: '';
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 10px;
    background: #c5a07f;
}

.loop__text {
    margin-top: 10px;
    max-width: 46ch;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream-70);
}

.loop__form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-width: min(100%, 320px);
    padding: 32px 28px 32px 0;
}

.loop__form .form-status {
    flex: 1 1 100%;
    margin-top: 10px;
}

.loop__form input {
    flex: 1 1 auto;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #c5a07f;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    background: transparent;
    color: var(--cream);
    font: inherit;
    font-size: 14px;
}

.loop__form input::placeholder { color: var(--cream-45); }

.loop__form input:focus { outline: none; }

.loop__form button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 46px;
    border-radius: 0 6px 6px 0;
    background: #c5a07f;
    color: #1a120b;
}

.loop__form button svg { width: 18px; height: 18px; }

.ab-collab {
    background: #1a120b;
    color: var(--cream);
}

.ab-collab__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    width: min(100% - (var(--gutter) * 2), 1180px);
    margin-inline: auto;
    padding-block: clamp(48px, 7vh, 88px);
}

.ab-collab__eyebrow { color: #c5a07f; }

.ab-collab__eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    margin-bottom: 12px;
    background: #c5a07f;
}

.ab-collab h2 {
    margin-top: 10px;
    max-width: 14ch;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.15;
}

.ab-collab__copy p {
    margin-top: 14px;
    max-width: 42ch;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.7;
    color: var(--cream-70);
}

.ab-collab__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    background: #c5a07f;
    color: #1a120b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ab-collab__btn svg {
    width: 16px;
    height: 16px;
}

.ab-collab__btn:hover { background: #d4b098; }

.ab-collab__contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ab-collab__contacts a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 92px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(197, 160, 127, .22);
    border-radius: 14px;
    background: rgba(251, 243, 228, .04);
    color: var(--cream);
    transition: border-color .3s var(--ease), background .3s var(--ease);
}

.ab-collab__contacts a:hover {
    border-color: rgba(197, 160, 127, .5);
    background: rgba(251, 243, 228, .08);
}

.ab-collab__contacts svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #c5a07f;
}

.ab-collab__contacts strong {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c5a07f;
}

.ab-collab__contacts span {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--cream-80);
}

/* 10. Footer --------------------------------------------------------------- */

.site-footer {
    position: relative;
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: env(safe-area-inset-bottom);
    background: #1a0f0a;
    color: #d4b098;
    overflow: hidden;
}

.site-footer__plant {
    position: absolute;
    right: -4%;
    bottom: -8%;
    z-index: 0;
    width: min(42vw, 420px);
    height: auto;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.1;
}

.site-footer__top,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    gap: 0;
    padding-bottom: clamp(40px, 5vw, 72px);
}

.site-footer__brand,
.site-footer__col {
    padding-inline: clamp(16px, 1.8vw, 28px);
}

.site-footer__brand { padding-left: 0; }

.site-footer__col + .site-footer__col,
.site-footer__col:first-of-type {
    border-left: 1px solid rgba(212, 176, 152, .18);
}

.site-footer__mark { width: clamp(120px, 12vw, 168px); }

.site-footer__tagline {
    display: block;
    margin-top: 6px;
    font-size: clamp(10px, .82vw, 12px);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(212, 176, 152, .7);
}

.site-footer__blurb {
    margin-top: clamp(16px, 1.8vw, 24px);
    max-width: 32ch;
    font-size: clamp(12.5px, .95vw, 14px);
    line-height: 1.7;
    color: rgba(212, 176, 152, .78);
}

.site-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: clamp(18px, 2vw, 26px);
}

.site-footer__socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(212, 176, 152, .4);
    border-radius: 50%;
    color: #d4b098;
    transition: border-color .35s var(--ease), color .35s var(--ease);
}

.site-footer__socials svg { width: 14px; }

.site-footer__socials a:hover {
    color: var(--cream);
    border-color: var(--cream);
}

.site-footer__handle {
    margin-top: 10px;
    font-size: 12.5px;
    letter-spacing: .08em;
    color: rgba(212, 176, 152, .7);
}

.site-footer__col h2 {
    margin-bottom: clamp(14px, 1.6vw, 22px);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 176, 152, .28);
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(10px, .82vw, 11.5px);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #d4b098;
}

.site-footer__col > ul { display: grid; gap: 10px; }

.site-footer__col,
.site-footer__col p {
    font-size: clamp(13px, .98vw, 14.5px);
    line-height: 1.7;
    color: rgba(212, 176, 152, .82);
}

.site-footer__col a { transition: color .35s var(--ease); }

.site-footer__col a:hover { color: var(--cream); }

.site-footer__row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.site-footer__row svg {
    flex: 0 0 auto;
    width: 15px;
    margin-top: 3px;
}

.site-footer__dir {
    margin-top: clamp(18px, 2vw, 26px);
    color: #d4b098;
    border-color: rgba(212, 176, 152, .4);
}

.site-footer__dir::before { background: #d4b098; }

.site-footer__dir:hover,
.site-footer__dir:focus-visible {
    color: #1a0f0a;
    border-color: #d4b098;
}

.site-footer__pay {
    margin-top: clamp(18px, 2vw, 26px);
    padding-top: clamp(14px, 1.6vw, 20px);
    border-top: 1px solid rgba(212, 176, 152, .22);
}

.site-footer__pay-label {
    font-size: clamp(9px, .72vw, 10.5px);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(212, 176, 152, .6);
}

.site-footer__pay-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.site-footer__pay-list li {
    display: grid;
    place-items: center;
    height: 32px;
    padding: 0 8px;
    border: 1px solid rgba(212, 176, 152, .35);
    border-radius: 6px;
    background: rgba(8, 5, 4, .35);
}

.site-footer__pay-list img {
    display: block;
    height: 18px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.site-footer__form {
    display: flex;
    align-items: center;
    margin-top: clamp(16px, 1.8vw, 22px);
    border: 1px solid rgba(212, 176, 152, .35);
}

.site-footer__form input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: #d4b098;
    background: transparent;
    border: 0;
}

.site-footer__form input::placeholder { color: rgba(212, 176, 152, .4); }

.site-footer__form input:focus { outline: none; }

.site-footer__form button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #d4b098;
}

.site-footer__form button svg { width: 20px; }

.form-status {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.45;
}

.form-status.is-good { color: #c5a07f; }

.form-status.is-bad { color: #d98c72; }

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding-block: clamp(16px, 2vw, 24px);
    border-top: 1px solid rgba(212, 176, 152, .18);
    font-size: clamp(11px, .8vw, 12.5px);
    color: rgba(212, 176, 152, .55);
}

.site-footer__motto {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(15px, 1.3vw, 18px);
    color: #d4b098;
    text-align: center;
}

.site-footer__place {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-footer__place svg { width: 16px; }

.site-footer__bottom a {
    color: #d4b098;
    font-weight: 500;
    transition: color .35s var(--ease);
}

.site-footer__bottom a:hover {
    color: var(--cream);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wa-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 50;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(12, 8, 6, .28);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.wa-float:hover,
.wa-float:focus-visible {
    background: #1ebe5d;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 32px rgba(12, 8, 6, .34);
}

html.has-launch .wa-float {
    opacity: 0;
    pointer-events: none;
}

/* 11. Responsive ----------------------------------------------------------- */

@media (max-width: 1180px) {
    .site-nav { display: none; }

    .site-header__actions { margin-left: auto; }

    .menu-toggle { display: grid; }
}

@media (max-width: 1080px) {
    /* Stacked layout no longer fits one screen. */
    #experience,
    .offer,
    .together {
        height: auto;
        max-height: none;
        overflow: visible;
        display: block;
    }

    .intro {
        flex: none;
        min-height: clamp(220px, 34vh, 320px);
    }

    .section--experience {
        display: block;
        padding-block: clamp(30px, 3.2vw, 46px) clamp(44px, 5.5vw, 80px);
    }

    .experience { grid-template-columns: 1fr; }

    .story__content { padding-left: clamp(8px, 3vw, 24px); }

    .experience__sign {
        margin-top: 0;
        padding-top: clamp(22px, 3vw, 34px);
    }

    .offer__grid { grid-template-columns: 1fr; }

    .offer__stage { height: auto; }

    .offer__track {
        grid-auto-columns: minmax(170px, 42vw);
        gap: 4px;
        margin: 8px 16px 0 var(--gutter);
        overflow-x: auto;
        flex: none;
    }

    .offer-card__media { aspect-ratio: 3 / 4; }

    .together {
        display: grid;
        grid-template-columns: 1fr;
    }

    .together__copy {
        padding-block: clamp(48px, 7vh, 72px);
    }

    .together__media {
        min-height: clamp(280px, 48vw, 440px);
        aspect-ratio: 4 / 3;
    }

    .offer__pager {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 12px auto 16px;
        color: var(--brown);
        background: none;
    }
}

@media (max-width: 980px) {
    .loop__inner { grid-template-columns: minmax(180px, 34%) 1fr; }

    .loop__copy { padding: 28px 22px 12px 8px; }

    .loop__form {
        grid-column: 2;
        min-width: 0;
        padding: 0 22px 28px 8px;
    }

    .ab-collab__inner { grid-template-columns: 1fr; }

    /* Too little room: release the one-screen lock and let content stack. */
    .hero,
    #experience,
    .story,
    .offer,
    .together,
    body[data-page="home"] .section--dark,
    body[data-page="home"] .section--panel {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    #experience { display: block; }

    .intro {
        flex: none;
        min-height: clamp(220px, 34vh, 320px);
    }

    .section--experience {
        display: block;
        padding-block: clamp(30px, 3.2vw, 46px) clamp(44px, 5.5vw, 80px);
    }

    .story__band { min-height: clamp(380px, 56vh, 520px); }

    .story__content { padding-left: clamp(8px, 3vw, 24px); }

    .values {
        grid-template-columns: repeat(2, 1fr);
        row-gap: clamp(30px, 4.4vw, 48px);
        padding-block: clamp(34px, 4.4vw, 56px);
    }

    .features__grid { grid-template-columns: repeat(2, 1fr); }

    .features__inner {
        grid-template-columns: 1fr;
    }

    .features__cup {
        height: clamp(88px, 16vw, 140px);
        min-height: 0;
    }

    .features__cup-media { min-height: 100%; }

    body[data-page="home"] .section--dark,
    body[data-page="home"] .section--panel {
        display: block;
        padding-block: clamp(72px, 9vw, 140px);
    }

    body[data-page="home"] .section--dark > .container,
    body[data-page="home"] .section--panel > .container {
        display: block;
        overflow: visible;
    }

    .value:nth-child(odd) { border-left: 0; }

    .visit { grid-template-columns: 1fr; }

    .visit__frame {
        order: -1;
        aspect-ratio: 16 / 10;
    }

    .prose-grid { grid-template-columns: 1fr; }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
    }

    .site-footer__brand,
    .site-footer__col {
        padding: clamp(22px, 3vw, 32px) 0;
        border-left: 0;
        border-top: 1px solid rgba(212, 176, 152, .18);
    }

    .site-footer__brand {
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 900px) {
    :root { --hero-indent: var(--gutter); }

    .social-rail,
    .scroll-cue { display: none; }

    .hero {
        display: flex;
        align-items: flex-end;
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
        overflow: hidden;
    }

    .hero__mark { margin-left: 0; }

    .hero__inner {
        width: 100%;
        padding-top: calc(var(--header-h, 72px) + 12px);
        padding-bottom: max(40px, env(safe-area-inset-bottom));
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .loop__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 14px;
    }

    .loop__media {
        min-height: 168px;
        max-height: 180px;
    }

    .loop__media::after {
        background: linear-gradient(180deg, transparent 42%, #1a120b 100%);
    }

    .loop__copy { padding: 8px 18px 12px; }

    .loop__form {
        grid-column: 1;
        min-width: 0;
        width: 100%;
        padding: 0 18px 22px;
    }

    .ab-collab__inner { padding-block: 40px; }

    .ab-collab h2 { max-width: none; }

    .ab-collab__btn { width: 100%; justify-content: center; }

    .ab-collab__contacts { grid-template-columns: 1fr; }

    :root { --mark-w: clamp(150px, 48vw, 240px); --gutter: 16px; }

    .site-header { padding-block: 10px; }

    .site-header.is-scrolled { padding-block: 6px; }

    .brand__mark { width: 78px; }

    .site-header.is-scrolled .brand__mark { width: 64px; }

    .site-header__actions { gap: 8px; margin-left: auto; }

    .site-header__actions > .header-icon { display: none; }

    .site-header .btn,
    .site-header .btn--sm {
        width: auto;
        height: 32px;
        padding-inline: 10px;
        font-size: 9px;
        letter-spacing: .12em;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero__title {
        font-size: clamp(24px, 6.8vw, 32px);
        line-height: 1.22;
    }

    .hero__tagline { font-size: clamp(13px, 3.4vw, 16px); }

    .hero__lede {
        font-size: clamp(13px, 3.4vw, 15px);
        max-width: 34ch;
    }

    .hero__lede br,
    .intro__text br { display: none; }

    .hero__media img {
        object-position: 88% 44%;
        transform: scale(1.12);
        animation: none;
    }

    .hero__scrim {
        background:
            linear-gradient(to top, rgba(8, 5, 4, .88) 0%, rgba(8, 5, 4, .38) 46%, rgba(8, 5, 4, .58) 100%),
            linear-gradient(108deg, rgba(8, 5, 4, .9) 0%, rgba(8, 5, 4, .42) 52%, rgba(8, 5, 4, .16) 100%);
    }

    .intro__title { font-size: clamp(26px, 7.2vw, 36px); }

    .btn { width: 100%; }

    .hero__cta .btn {
        width: 100%;
        max-width: 260px;
    }

    .together__cta .btn,
    .visit__actions .btn,
    .site-footer .btn { width: auto; }

    .scroll-cue__label { display: none; }

    .story__scrim {
        background: linear-gradient(to bottom, rgba(8, 5, 4, .90), rgba(8, 5, 4, .74));
    }

    .values { grid-template-columns: 1fr 1fr; }

    .value:nth-child(odd) { border-left: 0; }

    .value:nth-child(n+3) {
        border-top: 1px solid var(--brown-18);
        padding-top: 22px;
        margin-top: 8px;
    }

    .features__grid { grid-template-columns: 1fr; }

    .together__points { grid-template-columns: 1fr; }

    .together-point + .together-point {
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid var(--brown-18);
    }

    .experience__cards { grid-template-columns: 1fr 1fr; }

    .experience__steps { display: none; }

    .menu-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .menu-row__price { grid-row: 1; justify-self: start; }

    .info-list__row { grid-template-columns: 1fr; gap: 6px; }

    .form-grid { grid-template-columns: 1fr; }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 28px;
    }

    .site-footer__brand,
    .site-footer__col {
        padding: 0;
        border: 0;
    }

    .site-footer__col h2 {
        margin-bottom: 14px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .site-footer__col h2::after {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        margin-top: 8px;
        background: rgba(212, 176, 152, .45);
    }

    .site-footer__pay {
        margin-top: 18px;
        padding-top: 0;
        border-top: 0;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: flex-start;
        text-align: left;
    }

    .site-footer__place { justify-content: flex-start; }

    .site-footer__plant {
        width: min(70vw, 280px);
        right: -12%;
        bottom: -6%;
    }

    .page-hero {
        min-height: 72svh;
        align-items: flex-end;
        overflow: hidden;
    }

    .page-hero__inner {
        padding-top: calc(var(--header-h, 64px) + 16px);
        padding-bottom: max(32px, env(safe-area-inset-bottom));
    }

    .page-hero__title { font-size: clamp(36px, 11vw, 52px); }

    .page-hero__media img { object-position: 86% 44%; }

    .menu-overlay__label { font-size: clamp(28px, 9vw, 40px); }

    .menu-overlay__inner {
        padding-top: calc(var(--header-h, 88px) + 24px);
        padding-bottom: max(32px, env(safe-area-inset-bottom));
    }

    input,
    select,
    textarea { font-size: 16px !important; }

    .ct-facts a,
    .site-footer__row a { overflow-wrap: anywhere; }
}

@media (max-width: 520px) {
    .menu-overlay__inner { justify-content: flex-start; }

    .site-header .btn--sm span { letter-spacing: .08em; }

    .experience__cards { grid-template-columns: 1fr 1fr; }

    .xcard { aspect-ratio: 4 / 5; }

    .offer__track {
        grid-auto-columns: minmax(150px, 72vw);
        margin-left: var(--gutter);
        margin-right: var(--gutter);
    }

    .scroll-cue { display: none; }
}

/* 12. Motion preferences --------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero__media img { animation: none; }
}

/* 13. Intelex credit page -------------------------------------------------- */

body.page-intelex {
    min-height: 100vh;
    min-height: 100svh;
    background: #f7f3ea;
    color: var(--brown);
}

.intelex-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 48px 20px;
}

.intelex-page__card {
    width: min(100%, 480px);
    padding: 32px 28px 36px;
    border: 1px solid var(--brown-18);
    border-radius: 16px;
    background: #fbf6ee;
    text-align: center;
}

.intelex-page__back {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8b5a3c;
}

.intelex-page__back:hover { color: var(--brown); }

.intelex-page__logo-wrap {
    display: inline-flex;
    margin-bottom: 18px;
}

.intelex-page__logo {
    width: min(240px, 100%);
    height: auto;
    object-fit: contain;
}

.intelex-page__title {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.intelex-page__tagline {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #8b5a3c;
}

.intelex-page__desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--brown-70);
}

.intelex-page__contact {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: start;
    border-top: 1px solid var(--brown-18);
}

.intelex-page__contact li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--brown-18);
    font-size: 14px;
}

.intelex-page__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown-55);
}

.intelex-page__contact a {
    color: #8b5a3c;
    font-weight: 500;
}

.intelex-page__contact a:hover { color: var(--brown); }
