/* ============================================================
   MONARCH VITALITY — CORE STYLES
   ============================================================ */

/* --- CSS Variables --------------------------------------- */
:root {
    /* Color palette */
    --black: #0A0A0A;
    --black-deep: #050505;
    --black-surface: #141414;
    --black-surface-2: #1C1C1C;

    --gold: #C9A961;
    --gold-bright: #D8B876;
    --gold-deep: #A88F4C;
    --gold-muted: rgba(201, 169, 97, 0.22);
    --gold-line: rgba(201, 169, 97, 0.35);
    --gold-faint: rgba(201, 169, 97, 0.1);

    --white: #FFFFFF;
    --white-95: rgba(255, 255, 255, 0.95);
    --white-80: rgba(255, 255, 255, 0.80);
    --white-70: rgba(255, 255, 255, 0.70);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-35: rgba(255, 255, 255, 0.35);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-display: 'Josefin Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;

    /* Layout */
    --max-width: 1280px;
    --max-width-narrow: 820px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --section-pad-y: clamp(5rem, 10vw, 8rem);

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--white-80);
    background: var(--black);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

ul {
    list-style: none;
}

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

/* --- Selection ------------------------------------------- */
::selection {
    background: var(--gold);
    color: var(--black);
}

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

/* --- Common Typography ----------------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
}

.eyebrow__dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.gold { color: var(--gold); }
.muted { color: var(--white-55); }

/* --- Buttons --------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1.05rem 1.75rem;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
}
.btn--gold:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -8px rgba(201, 169, 97, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white-35);
}
.btn--ghost:hover {
    background: var(--white-08);
    border-color: var(--white-80);
}

.btn--ghost-sm {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white-15);
    padding: 0.75rem 1.25rem;
    font-size: 11px;
    letter-spacing: 0.14em;
}
.btn--ghost-sm:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--lg {
    font-size: 13px;
    padding: 1.25rem 2.25rem;
}

.link-arrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.75rem 0 0.3rem;
    border-bottom: 1px solid var(--gold-line);
    transition: all 0.3s var(--ease-out);
}
.link-arrow::after {
    content: ' →';
    transition: transform 0.3s var(--ease-out);
    display: inline-block;
}
.link-arrow:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
}
.link-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
}
.nav.is-scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: var(--white-08);
}

.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    text-decoration: none;
    line-height: 1;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.28em;
    color: var(--white);
    text-transform: uppercase;
    transition: font-size 0.3s var(--ease-out), color 0.3s var(--ease-out);
    display: inline-block;
    padding-right: 0.28em; /* offset the last-letter tracking so it looks balanced */
}
.nav__logo:hover .nav__logo-text { color: var(--gold); }
.nav.is-scrolled .nav__logo-text { font-size: 18px; }

.nav__links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav__links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-70);
    position: relative;
    padding: 0.25rem 0;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
    color: var(--gold) !important;
    border: 1px solid var(--gold-line);
    padding: 0.625rem 1.125rem !important;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.nav__cta:hover {
    background: var(--gold);
    color: var(--black) !important;
    border-color: var(--gold);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem var(--gutter) 6rem;
    background: radial-gradient(ellipse at top left, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(201, 169, 97, 0.04) 0%, transparent 50%),
                var(--black);
    overflow: hidden;
}

/* Subtle grain texture for luxury atmosphere */
.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
    position: relative;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero__text {
    max-width: 560px;
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.75rem, 7vw, 5.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 14ch;
}
.hero__headline span {
    display: block;
}
.hero__headline .serif-italic {
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-top: 0.15em;
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.65;
    color: var(--white-70);
    max-width: 44ch;
    margin-bottom: 2.75rem;
    font-weight: 400;
}

.hero__ctas {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero logo plate — the brand moment */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo-plate {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 3.5rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__logo-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.16) 0%, rgba(201, 169, 97, 0.04) 40%, transparent 65%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.hero__logo-mark {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    height: auto;
    /* Blend the PNG's black background into the page so the square disappears */
    mix-blend-mode: screen;
}

.hero__logo-rule {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 1px;
    background: var(--gold-line);
    margin: 1.75rem 0 1.25rem;
}

.hero__logo-tagline {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--white-55);
}

/* Corner brackets — Omega-watch detail */
.hero__visual::before,
.hero__visual::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: var(--gold);
    z-index: 4;
    pointer-events: none;
}
.hero__visual::before {
    top: 0;
    left: calc(50% - 240px);
    border-top: 1px solid;
    border-left: 1px solid;
}
.hero__visual::after {
    bottom: 0;
    right: calc(50% - 240px);
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white-35);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
}
.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white-35), transparent);
    animation: scrollLine 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   REVEAL ANIMATIONS (page-load hero + scroll-triggered)
   Only apply the hiding when JS is available — if JS fails,
   everything stays visible.
   ============================================================ */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--black-deep);
    border-top: 1px solid var(--white-08);
    border-bottom: 1px solid var(--white-08);
    padding: 3rem var(--gutter);
}

.trust-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 6vw, 5rem);
    flex-wrap: wrap;
}

.trust-bar__item {
    text-align: center;
}

.trust-bar__num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.trust-bar__num span {
    color: var(--gold);
    font-size: 0.7em;
    margin-left: 0.05em;
}

.trust-bar__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-55);
}

.trust-bar__divider {
    width: 1px;
    height: 56px;
    background: var(--gold-muted);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.section__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.02;
    letter-spacing: -0.022em;
    color: var(--white);
    margin-bottom: 3rem;
}
.section__headline .serif-italic { font-weight: 400; }

.section__head {
    margin-bottom: 4rem;
}
.section__head--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}
.section__head--split .section__headline { margin-bottom: 0; }

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain {
    background: var(--black);
}

.pain__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.pain__copy {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--white-70);
}
.pain__copy em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

/* ============================================================
   TRANSFORMATIONS
   ============================================================ */
.transformations {
    background: var(--black-deep);
    border-top: 1px solid var(--white-08);
    border-bottom: 1px solid var(--white-08);
}

.transformations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.transformation {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: var(--black-surface);
    aspect-ratio: 1 / 1;
    transition: transform 0.5s var(--ease-out);
}
.transformation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.transformation:hover img {
    transform: scale(1.04);
}

.transformation figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.transformation__tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================================
   WHY MONARCH
   ============================================================ */
.why {
    background: var(--black);
}

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

.why__card {
    padding: 2.5rem 2rem;
    background: var(--black-surface);
    border: 1px solid var(--white-08);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}
.why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    transition: background 0.5s var(--ease-out);
}
.why__card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-3px);
}
.why__card:hover::before {
    background: var(--gold);
}

.why__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1;
}

.why__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--white);
    letter-spacing: -0.015em;
    margin-bottom: 0.875rem;
}

.why__copy {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--white-70);
}

/* ============================================================
   FOUNDER TEASER
   ============================================================ */
.founder {
    background: var(--black-deep);
    border-top: 1px solid var(--white-08);
    border-bottom: 1px solid var(--white-08);
}

.founder__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.013em;
    max-width: 20ch;
    margin: 1rem 0 3.5rem;
}

.founder__grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.founder__portrait {
    position: relative;
}
.founder__portrait img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: 2px;
    filter: grayscale(0.1) contrast(1.02);
}
.founder__portrait-caption {
    margin-top: 1rem;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.founder__body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--white-70);
    margin-bottom: 1.25rem;
}
.founder__body p:last-of-type { margin-bottom: 1.75rem; }

/* Values row */
.values-row {
    display: flex;
    gap: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gold-faint);
    flex-wrap: wrap;
}
.values-row__item {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-55);
    position: relative;
}
.values-row__item:first-child { color: var(--gold); }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
    background: var(--black);
}

.programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.program {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--black-surface);
    border: 1px solid var(--white-08);
    border-radius: 3px;
    transition: all 0.4s var(--ease-out);
}
.program:hover {
    border-color: var(--gold-muted);
    transform: translateY(-3px);
}

.program--featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, var(--black-surface) 0%, #1A1610 100%);
}

.program__badge {
    position: absolute;
    top: -11px;
    left: 2rem;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
}

.program__tier {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.program__price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1rem;
}
.program__currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.15em;
    color: var(--white-55);
    letter-spacing: 0;
}
.program__per {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-55);
    letter-spacing: 0;
    margin-left: 0.15em;
}

.program__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--white-70);
}

.programs__note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--white-55);
    margin-top: 2rem;
    letter-spacing: 0.01em;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
    background: var(--black-deep);
    border-top: 1px solid var(--white-08);
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.cta-final__inner {
    position: relative;
    text-align: center;
    padding: 2rem 0;
}

.cta-final__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.cta-final__headline .serif-italic { font-weight: 400; }

.cta-final__sub {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--white-70);
    max-width: 52ch;
    margin: 0 auto 2.75rem;
}

.cta-final__buttons {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--black-deep);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--gold-faint);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--white-08);
}

.footer__logo {
    height: 84px;
    width: auto;
    margin-bottom: 1.5rem;
    mix-blend-mode: screen;
}

.footer__tagline {
    font-size: 0.8125rem;
    color: var(--white-55);
    line-height: 1.7;
    max-width: 28ch;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col li { font-size: 0.875rem; color: var(--white-70); }
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--white-35);
    letter-spacing: 0.06em;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__text { max-width: 100%; }
    .hero__visual { order: -1; }
    .hero__logo-plate { max-width: 380px; padding: 2rem 2rem 2rem; }
    .hero__logo-mark { max-width: 260px; }
    .hero__visual::before,
    .hero__visual::after { display: none; }

    .pain__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .transformations__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .programs__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    body { font-size: 16px; }

    /* Nav */
    .nav__logo-text { font-size: 18px; letter-spacing: 0.24em; }
    .nav.is-scrolled .nav__logo-text { font-size: 16px; }
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(80vw, 320px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        background: var(--black);
        border-left: 1px solid var(--white-08);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }
    .nav__links.is-open { transform: translateX(0); }
    .nav__links a { font-size: 14px; }

    /* Hero */
    .hero { min-height: auto; padding-top: 7rem; padding-bottom: 4rem; }
    .hero__headline { margin-bottom: 1.5rem; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { width: 100%; }
    .hero__logo-plate { max-width: 300px; padding: 1.5rem; }
    .hero__logo-mark { max-width: 220px; }
    .hero__scroll-hint { display: none; }

    /* Trust bar */
    .trust-bar { padding: 2rem var(--gutter); }
    .trust-bar__inner { gap: 1.5rem; }
    .trust-bar__divider { display: none; }

    /* Grids */
    .transformations__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }

    /* Founder */
    .founder__grid { grid-template-columns: 1fr; gap: 2rem; }
    .founder__portrait { max-width: 240px; }
    .values-row { gap: 1.5rem; }

    /* CTA Final */
    .cta-final__buttons { flex-direction: column; align-items: stretch; }
    .cta-final__buttons .btn { width: 100%; }

    /* Footer */
    .footer__logo { height: 68px; }
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MOTION REDUCED
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
