:root {
    --bg: #0a0604;
    --bg-soft: #140d09;
    --stage-black: #000000;
    --surface: rgba(24, 16, 12, 0.72);
    --surface-strong: rgba(29, 18, 13, 0.9);
    --line: rgba(245, 239, 230, 0.12);
    --line-strong: rgba(198, 163, 111, 0.24);
    --text: #f5efe6;
    --text-soft: rgba(245, 239, 230, 0.74);
    --text-muted: rgba(245, 239, 230, 0.52);
    --brown: #5a3a22;
    --gold: #c6a36f;
    --shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content-max: 1240px;
    --header-h: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top, rgba(90, 58, 34, 0.16), transparent 26%),
        linear-gradient(180deg, #000 0%, #050302 22%, #0a0604 100%);
    color: var(--text);
    font-family: "Sora", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.is-loading,
body.menu-open {
    overflow: hidden;
}

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

button,
canvas {
    font: inherit;
}

img,
canvas {
    display: block;
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.16;
    mix-blend-mode: soft-light;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.06) 0 0.7px, transparent 0.8px),
        radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.05) 0 0.7px, transparent 0.8px),
        radial-gradient(circle at 46% 76%, rgba(255, 255, 255, 0.04) 0 0.9px, transparent 1px);
    background-size: 180px 180px, 210px 210px, 260px 260px;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.8rem;
    background:
        radial-gradient(circle at 50% 40%, rgba(198, 163, 111, 0.1), transparent 26%),
        linear-gradient(180deg, #000 0%, #060302 70%, #0a0604 100%);
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    position: relative;
    width: 84px;
    height: 84px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(245, 239, 230, 0.12);
    border-radius: 50%;
    animation: loader-spin 2.5s linear infinite;
}

.loader-ring--secondary {
    inset: 12px;
    border-color: rgba(198, 163, 111, 0.42);
    animation-direction: reverse;
}

.loader-title,
.loader-status {
    margin: 0;
}

.loader-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: 0.04em;
}

.loader-status {
    color: var(--text-soft);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 2rem), calc(var(--content-max) + 2rem));
    margin: 1rem auto 0;
    padding: 0.9rem 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease,
        transform 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(12, 8, 6, 0.78);
    border-color: rgba(245, 239, 230, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(198, 163, 111, 0.18), rgba(90, 58, 34, 0.65));
    border: 1px solid rgba(198, 163, 111, 0.26);
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.brand-text {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav a {
    padding: 0.75rem 1rem;
    color: var(--text-soft);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.nav-pill {
    border-radius: 999px;
    background: rgba(245, 239, 230, 0.06);
    border: 1px solid rgba(245, 239, 230, 0.1);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(245, 239, 230, 0.1);
    border-radius: 50%;
    background: rgba(245, 239, 230, 0.04);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
    position: relative;
    height: 220vh;
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0) 38%),
        linear-gradient(180deg, #000 0%, #030201 72%, #0a0604 100%);
}

.hero-pin {
    position: sticky;
    top: 0;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.hero-stage-glow,
.hero-spotlight {
    position: absolute;
    pointer-events: none;
    filter: blur(28px);
}

.hero-stage-glow {
    width: 36vw;
    height: 36vw;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-stage-glow--left {
    left: -8vw;
    top: 18vh;
    background: radial-gradient(circle, rgba(90, 58, 34, 0.28), transparent 70%);
}

.hero-stage-glow--right {
    right: -10vw;
    top: 12vh;
    background: radial-gradient(circle, rgba(198, 163, 111, 0.16), transparent 72%);
}

.hero-spotlight {
    left: 50%;
    top: 10vh;
    width: min(70vw, 960px);
    height: min(70vw, 960px);
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(198, 163, 111, 0.18), rgba(0, 0, 0, 0) 62%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: min(100vw - 2rem, 1760px);
    max-width: none;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding: calc(var(--header-h) + 1.25rem) clamp(1rem, 3vw, 2.5rem) 2.4rem;
}

.hero-copy {
    position: absolute;
    z-index: 3;
}

.hero-copy {
    top: min(16vh, 150px);
    left: clamp(1rem, 4vw, 4rem);
    width: min(100%, 380px);
    max-width: 380px;
    padding: 1.4rem 2rem 1.55rem 0;
    background: linear-gradient(90deg, rgba(10, 6, 4, 0.92), rgba(10, 6, 4, 0));
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-intro h2,
.cta-panel h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    max-width: 6ch;
    font-size: clamp(3rem, 5vw, 5rem);
}

.hero-text {
    max-width: 22rem;
    margin: 1.1rem 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.05vw, 1.06rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        color 0.28s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(145deg, rgba(198, 163, 111, 0.24), rgba(90, 58, 34, 0.96));
    box-shadow: 0 14px 30px rgba(90, 58, 34, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 22px 40px rgba(90, 58, 34, 0.34);
}

.button-secondary {
    border-color: rgba(245, 239, 230, 0.16);
    background: rgba(245, 239, 230, 0.03);
    color: var(--text-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(198, 163, 111, 0.3);
    color: var(--text);
}

.hero-stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-stage-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    isolation: isolate;
}

.hero-stage-frame::before,
.hero-stage-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.hero-stage-frame::before {
    background:
        radial-gradient(circle at 50% 34%, rgba(198, 163, 111, 0.2), transparent 42%),
        radial-gradient(circle at 50% 80%, rgba(90, 58, 34, 0.16), transparent 44%);
    filter: blur(18px);
    transform: scale(1.02);
}

.hero-stage-frame::after {
    inset: 8% 10%;
    border: 1px solid rgba(245, 239, 230, 0.03);
    border-radius: 42px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22) 78%);
}

#hero-canvas {
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0.84;
    filter: drop-shadow(0 26px 90px rgba(0, 0, 0, 0.7));
    will-change: transform;
}

.hero-caption {
    position: absolute;
    top: min(16vh, 150px);
    right: clamp(1rem, 4vw, 4rem);
    display: grid;
    gap: 0.35rem;
    width: min(100%, 260px);
    padding: 0.9rem 1rem 0.95rem;
    border: 1px solid rgba(245, 239, 230, 0.06);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(18, 12, 9, 0.78), rgba(8, 5, 4, 0.46));
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

.hero-caption span:last-child::before {
    display: none;
}

.meta-card,
.feature-card,
.testimonial-card,
.cta-panel {
    backdrop-filter: blur(16px);
    background: linear-gradient(160deg, rgba(26, 18, 13, 0.86), rgba(8, 5, 4, 0.72));
    border: 1px solid rgba(245, 239, 230, 0.08);
    box-shadow: var(--shadow);
}

.meta-card {
    min-height: 100%;
    padding: 0.9rem 1rem 0.95rem;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, rgba(18, 12, 9, 0.68), rgba(8, 5, 4, 0.3));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.meta-label {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.meta-card p,
.feature-card p,
.section-intro p,
.testimonial-author span,
.cta-panel p,
.footer-copy {
    margin: 0;
    color: var(--text-soft);
}

.hero-progress {
    position: absolute;
    right: max(1rem, calc((100vw - var(--content-max)) / 2));
    top: 50%;
    display: flex;
    justify-content: center;
    width: 18px;
    height: min(36vh, 280px);
    transform: translateY(-50%);
}

.hero-progress-track,
.hero-progress-fill {
    position: absolute;
    width: 2px;
    height: 100%;
    border-radius: 999px;
}

.hero-progress-track {
    background: rgba(245, 239, 230, 0.12);
}

.hero-progress-fill {
    background: linear-gradient(180deg, rgba(198, 163, 111, 0.95), rgba(90, 58, 34, 0.95));
    transform-origin: top center;
    transform: scaleY(0);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-line {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(245, 239, 230, 0), rgba(245, 239, 230, 0.6));
    animation: scroll-line 1.8s ease-in-out infinite;
}

.section {
    position: relative;
    padding: 7rem 0;
}

.section-shell {
    position: relative;
    z-index: 1;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-intro {
    margin-bottom: 3.25rem;
}

.section-intro--centered {
    text-align: center;
}

.title-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
    gap: clamp(1rem, 3vw, 3rem);
    align-items: end;
}

.title-row--centered {
    max-width: 980px;
    margin: 0 auto;
}

.section-intro h2,
.cta-panel h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.section-intro p,
.cta-panel p {
    font-size: 1rem;
}

.features {
    background:
        radial-gradient(circle at 18% 12%, rgba(90, 58, 34, 0.18), transparent 26%),
        linear-gradient(180deg, #0a0604 0%, #110a07 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, rgba(198, 163, 111, 0.8), rgba(198, 163, 111, 0));
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 163, 111, 0.22);
    background: linear-gradient(160deg, rgba(32, 22, 17, 0.9), rgba(9, 6, 4, 0.74));
}

.feature-index {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(198, 163, 111, 0.88);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.feature-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
}

.feature-card p {
    margin-top: 0.85rem;
}

.feature-accent {
    display: inline-flex;
    margin-top: 1.4rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonials {
    background:
        radial-gradient(circle at 82% 20%, rgba(198, 163, 111, 0.08), transparent 22%),
        linear-gradient(180deg, #0c0705 0%, #120b08 100%);
}

.testimonial-stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.testimonial-stack {
    position: relative;
    min-height: 380px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: var(--radius-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.2em;
}

.testimonial-quote {
    margin: 0;
    max-width: 18ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.04;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-author span {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.carousel-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(245, 239, 230, 0.1);
    border-radius: 50%;
    background: rgba(245, 239, 230, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(198, 163, 111, 0.26);
    background: rgba(245, 239, 230, 0.05);
}

.carousel-button span {
    width: 12px;
    height: 12px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}

[data-carousel-prev] span {
    transform: rotate(-135deg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(245, 239, 230, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-dot.is-active {
    transform: scale(1.15);
    background: rgba(198, 163, 111, 0.9);
}

.cta {
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 12%, rgba(198, 163, 111, 0.12), transparent 24%),
        linear-gradient(180deg, #0e0806 0%, #080503 100%);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    pointer-events: none;
}

.cta-orb--one {
    left: 12%;
    top: 18%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(198, 163, 111, 0.16), transparent 70%);
}

.cta-orb--two {
    right: 10%;
    bottom: 18%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(90, 58, 34, 0.26), transparent 70%);
}

.floating-bean {
    position: absolute;
    display: block;
    width: clamp(46px, 6vw, 84px);
    aspect-ratio: 1.35 / 1;
    border-radius: 55% 45% 52% 48%;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(145deg, rgba(104, 67, 39, 0.92), rgba(36, 20, 12, 0.96));
    opacity: 0.22;
    box-shadow: inset -6px -10px 18px rgba(0, 0, 0, 0.3);
}

.floating-bean::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 49%;
    width: 11%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(10, 6, 4, 0.8), rgba(198, 163, 111, 0.08));
    transform: translateX(-50%) rotate(6deg);
}

.floating-bean--1 {
    top: 22%;
    left: 12%;
}

.floating-bean--2 {
    top: 16%;
    right: 18%;
}

.floating-bean--3 {
    bottom: 20%;
    left: 18%;
}

.floating-bean--4 {
    right: 12%;
    bottom: 18%;
}

.floating-bean--5 {
    left: 48%;
    bottom: 12%;
}

.cta-panel {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(2.4rem, 5vw, 4rem);
    border-radius: 36px;
    text-align: center;
}

.cta-panel p {
    max-width: 36rem;
    margin: 1.1rem auto 0;
}

.cta-actions {
    justify-content: center;
}

.site-footer {
    padding: 0 0 3rem;
    background: #060302;
}

.footer-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 230, 0.08);
}

.footer-brand {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-copy {
    font-size: 0.92rem;
}

.reveal-card,
.section-intro,
.testimonial-stage,
.cta-panel {
    will-change: transform, opacity;
}

@keyframes loader-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scroll-line {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

@media (max-width: 1120px) {
    .hero {
        height: 210vh;
    }

    .hero-grid {
        width: calc(100% - 1rem);
    }

    .hero-copy {
        left: 1rem;
        top: min(14vh, 128px);
        max-width: 340px;
        width: 340px;
    }

    .hero-copy h1 {
        max-width: 7ch;
    }

    .hero-progress {
        display: none;
    }

    .title-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    :root {
        --header-h: 76px;
    }

    .site-header {
        width: calc(100% - 1rem);
        margin-top: 0.5rem;
        padding: 0.8rem 0.85rem;
    }

    .site-nav {
        position: fixed;
        top: calc(var(--header-h) + 0.25rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.8rem;
        border: 1px solid rgba(245, 239, 230, 0.08);
        border-radius: 24px;
        background: rgba(10, 6, 4, 0.94);
        backdrop-filter: blur(14px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        border-radius: 16px;
        background: rgba(245, 239, 230, 0.03);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        height: 170vh;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: calc(var(--header-h) + 1.2rem);
        padding-bottom: 1.25rem;
    }

    .hero-copy {
        position: relative;
        top: auto;
        left: auto;
        max-width: 34rem;
        width: 100%;
        margin-top: auto;
        padding: 1rem 0.35rem 0 0;
        background: linear-gradient(180deg, rgba(10, 6, 4, 0), rgba(10, 6, 4, 0.88) 22%);
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 11vw, 3.6rem);
        max-width: 6.5ch;
    }

    .hero-text {
        max-width: 22rem;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .button {
        width: auto;
        min-width: 158px;
    }

    .hero-caption {
        top: calc(var(--header-h) + 0.9rem);
        right: 1rem;
        width: auto;
        min-width: 180px;
        max-width: calc(100% - 2rem);
        padding: 0.7rem 0.85rem;
        bottom: auto;
        font-size: 0.66rem;
    }

    .scroll-cue {
        bottom: 1.1rem;
        width: calc(100% - 2rem);
        justify-content: center;
        text-align: center;
    }

    .section {
        padding: 5.5rem 0;
    }

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

    .testimonial-stage {
        grid-template-columns: 1fr;
    }

    .testimonial-stack {
        min-height: 420px;
    }

    .carousel-button {
        width: 48px;
        height: 48px;
    }

    .testimonial-stage .carousel-button:first-child {
        justify-self: start;
        margin-top: 0.75rem;
    }

    .testimonial-stage .carousel-button:last-child {
        justify-self: end;
        margin-top: -3rem;
    }

    .cta-panel {
        padding: 2.2rem 1.4rem;
    }

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .brand-text {
        letter-spacing: 0.12em;
        font-size: 0.8rem;
    }

    .hero {
        height: 150vh;
    }

    .hero-grid {
        gap: 0.9rem;
        padding-bottom: 1rem;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-actions {
        gap: 0.65rem;
    }

    .button {
        width: calc(50% - 0.35rem);
        min-width: 0;
        padding-inline: 0.9rem;
    }

    .hero-caption {
        left: 1rem;
        right: 1rem;
        min-width: 0;
        width: auto;
    }

    .section-intro h2,
    .cta-panel h2 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    .testimonial-stack {
        min-height: 440px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        max-width: 100%;
    }

    .carousel-dots {
        margin-top: 1rem;
    }

    .floating-bean {
        opacity: 0.14;
    }
}
