/*
 * TAFA — Shared Component Styles
 * Tokens · Reset · Noise · Nav · Hero · Footer · Utilities · Responsive
 */

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
        /* ── Brand palette ──────────────────────────────────── */
        --purple:    #2d1254;
        --purple-ch: 45, 18, 84;
        --gold:      #c9a84c;
        --gold-ch:   201, 168, 76;

        /* ── Cream  (warm white — text on dark backgrounds) ─── */
        --cream:    #f5f3ef;
        --cream-ch: 245, 243, 239;

        /* ── Dark surfaces ──────────────────────────────────── */
        --dark:         #0e0919;   /* hero */
        --dark-ch:      14, 9, 25;
        --dark-footer:  #09080f;   /* footer */
        --dark-deep:    #06011a;   /* royalty section */
        --dark-deep-ch: 6, 1, 26;

        /* ── Ink (near-black for light-bg use) ──────────────── */
        --ink:    #0d0b14;
        --ink-ch: 13, 11, 20;

        /* ── Off-white surfaces ──────────────────────────────── */
        --warm-white: #faf8f4;

        /* ── Gold gradient ───────────────────────────────────── */
        --gold-foil: linear-gradient(
          135deg,
          #bf953f,
          #fcf5b7,
          #b38728,
          #fcf5b7,
          #aa771c
        );

        /* ── Curriculum dark gradient ────────────────────────── */
        --grad-curriculum: linear-gradient(135deg, #110526 0%, #2a1052 38%, #1c0840 65%, #0d0422 100%);

        /* ── Typography ──────────────────────────────────────── */
        --display: "Cormorant Garamond", serif;
        --body:    "DM Sans", sans-serif;

        /* ── Layout ──────────────────────────────────────────── */
        --gutter:    clamp(1.8rem, 5vw, 5.5rem);
        --section-v: clamp(7rem, 13vh, 11rem);

        /* ── Light-page text (purple on cream) ───────────────── */
        --text-1: rgba(var(--purple-ch), 0.92);
        --text-2: rgba(var(--purple-ch), 0.64);
        --text-3: rgba(var(--purple-ch), 0.38);
        --mid:    rgba(var(--purple-ch), 0.88);   /* mid-weight purple */

        /* ── Dark-page text (cream on dark) ──────────────────── */
        --on-dark-1: rgba(var(--cream-ch), 0.9);
        --on-dark-2: rgba(var(--cream-ch), 0.52);
        --on-dark-3: rgba(var(--cream-ch), 0.28);

        /* ── Nav scrolled glass ───────────────────────────────── */
        --nav-glass: rgba(248, 242, 224, 0.94);

        /* ── Gold decorative lines ────────────────────────────── */
        --gold-line:    rgba(var(--gold-ch), 0.28);
        --gold-line-dk: rgba(var(--gold-ch), 0.18);

        /* ── Section backgrounds (warm cream scale) ───────────── */
        --bg-base:  #faf5eb;
        --bg-alt:   #f3e8d0;
        --bg-alt2:  #ede3c6;
        --bg-strip: #e5d8b0;

        /* ── Utility ─────────────────────────────────────────── */
        --white:               #ffffff;
        --gold-dark:           #bf953f;   /* deep gold — hover states */
        --curriculum-card-bg:  #1c0840;   /* base bg for curriculum cards */
      }

      /* ================================================================
         RESET & BASE
         ================================================================ */
      *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
      html { height: 100%; overflow-x: hidden; }
      body {
        font-family: var(--body);
        background: var(--bg-base);
        color: var(--text-1);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      a { text-decoration: none; color: inherit; }

      /* ================================================================
         NOISE
         ================================================================ */
      .noise {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.06;
        background: 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' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        mix-blend-mode: multiply;
      }

/* ================================================================
NAV
         ================================================================ */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 0.5rem var(--gutter);
        display: flex;
        justify-content: space-between;
        align-items: center;
        opacity: 0;
        transition:
          background 0.5s,
          backdrop-filter 0.5s;
      }

      /* Once past hero: purple-tinted light glass */
      nav.scrolled {
        background: var(--nav-glass);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(var(--gold-ch), 0.22);
      }
      nav.scrolled .nav-link {
        color: rgba(var(--purple-ch), 0.72) !important;
      }

      .nav-logo {
        height: 36px;
        width: auto;
        display: block;
        transition: opacity 0.6s;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
      }

      .nav-link {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-weight: 300;
        color: rgba(var(--cream-ch), 0.55);
        transition:
          color 0.7s ease,
          opacity 0.3s;
      }
      .nav-link:hover {
        opacity: 0.7;
      }

      /* Hero color-detect overrides (light portrait bg) */
      nav.theme-light .nav-link {
        color: rgba(var(--ink-ch), 0.6);
      }

      .nav-enroll {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        padding: 0.3rem 1.5rem;
        background: var(--gold-foil);
        border: 1px solid rgba(var(--gold-ch), 0.45);
        color: var(--dark);
        transition:
          background 0.4s,
          color 0.4s,
          border-color 0.4s;
      }
      .nav-enroll:hover {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
      }

      /* ── Mobile hamburger ── */
      .nav-hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 101;
      }
      .nav-hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: rgba(var(--cream-ch), 0.8);
        transition: transform 0.35s ease, opacity 0.35s ease;
      }
      nav.theme-light .nav-hamburger span {
        background: rgba(var(--ink-ch), 0.7);
      }
      nav.scrolled .nav-hamburger span {
        background: rgba(var(--purple-ch), 0.85);
      }

      /* ── Mobile drawer ── */
      .nav-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 82vw);
        background: #0c0720;
        z-index: 200;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        padding: 5rem var(--gutter) 3rem;
        border-left: 1px solid rgba(var(--gold-ch), 0.12);
      }
      .nav-drawer.open {
        transform: translateX(0);
      }

      .nav-drawer-close {
        position: absolute;
        top: 1.4rem;
        right: 1.4rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .nav-drawer-close span {
        position: absolute;
        width: 18px;
        height: 1.5px;
        background: rgba(var(--cream-ch), 0.4);
        transition: background 0.25s;
      }
      .nav-drawer-close span:nth-child(1) { transform: rotate(45deg); }
      .nav-drawer-close span:nth-child(2) { transform: rotate(-45deg); }
      .nav-drawer-close:hover span { background: rgba(var(--cream-ch), 0.9); }

      .nav-drawer-nav {
        position: static;
        opacity: 1;
        inset: auto;
        z-index: auto;
        padding: 1rem 0 0;
        background: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1;
        transition: none;
      }

      .nav-drawer-link {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.24em;
        color: rgba(var(--cream-ch), 0.5);
        font-weight: 300;
        padding: 1.3rem 0;
        border-bottom: 1px solid rgba(var(--gold-ch), 0.1);
        transition: color 0.25s;
        display: block;
      }
      .nav-drawer-link:hover { color: rgba(var(--cream-ch), 0.9); }

      .nav-drawer-cta {
        display: block;
        margin-top: 2.5rem;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        padding: 1rem 0;
        background: var(--gold-foil);
        color: var(--dark);
        font-weight: 500;
        text-align: center;
        transition: opacity 0.3s;
      }
      .nav-drawer-cta:hover { opacity: 0.85; }

      .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 199;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
      }
      .nav-overlay.open {
        opacity: 1;
        pointer-events: all;
      }

      /* ================================================================

/* ================================================================
HERO  (identical to v2 — dynamic/self-adapting)
         ================================================================ */
      .hero {
        height: 100svh;
        min-height: 640px;
        position: relative;
        overflow: hidden;
        background-color: var(--dark);
        transition: background-color 0s;
      }

      .hero-portrait {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: clamp(300px, 42vw, 660px);
        height: 100%;
        overflow: hidden;
      }

      .portrait-layer {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        filter: brightness(0.9) saturate(0.88);
        transform: scale(1.04);
        transform-origin: top center;
      }
      .portrait-layer.back {
        z-index: 1;
        opacity: 0;
      }
      .portrait-layer.front {
        z-index: 2;
        opacity: 1;
      }

      .portrait-blend {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background:
          linear-gradient(
            to top,
            var(--dark) 0%,
            rgba(var(--dark-ch), 0.82) 20%,
            rgba(var(--dark-ch), 0.3) 38%,
            transparent 54%
          ),
          linear-gradient(to right, var(--dark) 0%, transparent 22%),
          linear-gradient(to left, var(--dark) 0%, transparent 22%),
          linear-gradient(to bottom, var(--dark) 0%, transparent 18%);
        transition: background 0s;
      }

      .hero-stage {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 var(--gutter) clamp(2.5rem, 6vh, 5rem);
        display: grid;
        grid-template-columns: 1fr 1px 1.4fr 1px 1fr;
        align-items: end;
        column-gap: clamp(1.5rem, 3vw, 4rem);
        z-index: 10;
      }

      .hero-brand-est,
      .hero-brand-name,
      .hero-brand-copy,
      .hw-1,
      .cta-secondary,
      .scroll-label,
      .chip-label,
      .nav-link {
        transition: color 0.7s ease;
      }

      .hero-brand-est {
        font-size: 0.54rem;
        text-transform: uppercase;
        letter-spacing: 0.44em;
        color: rgba(var(--cream-ch), 0.25);
        font-weight: 300;
        line-height: 2.4;
        display: block;
      }
      .hero-brand-name {
        font-family: var(--display);
        font-size: clamp(1rem, 1.4vw, 1.4rem);
        font-weight: 300;
        letter-spacing: 0.1em;
        color: rgba(var(--cream-ch), 0.72);
        line-height: 1.25;
        display: block;
        margin-bottom: 1.5rem;
      }
      .hero-brand-rule {
        display: block;
        width: 34px;
        height: 1px;
        background: var(--gold);
        opacity: 0.35;
        margin-bottom: 1.5rem;
      }
      .hero-brand-copy {
        font-size: 0.78rem;
        color: rgba(var(--cream-ch), 0.3);
        font-weight: 300;
        line-height: 1.8;
        max-width: 230px;
      }

      .hero-col-line {
        width: 1px;
        height: clamp(75px, 12vh, 120px);
        align-self: center;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(var(--gold-ch), 0.25),
          transparent
        );
      }

      .hero-words {
        padding-bottom: 2px;
        text-align: center;
      }
      .hero-word {
        display: block;
        font-family: var(--display);
        font-weight: 300;
        font-style: italic;
        letter-spacing: -0.01em;
        line-height: 0.88;
        overflow: hidden;
      }
      .hero-word span {
        display: block;
      }

      .hw-1 {
        font-size: clamp(3.8rem, 7vw, 8rem);
        color: rgba(var(--cream-ch), 0.95);
      }
      .hw-2 {
        font-size: clamp(3rem, 5.5vw, 6.2rem);
        margin-top: 0.18em;
      }
      .hw-2 span {
        background: var(--gold-foil);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 1.1rem;
        padding-bottom: 2px;
        opacity: 0;
      }

      .cta-primary {
        display: inline-flex;
        align-items: center;
        background: var(--gold-foil);
        color: var(--dark);
        padding: 0.95rem 2.3rem;
        font-size: 0.7rem;
        font-family: var(--body);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-weight: 500;
        transition: opacity 0.3s;
      }
      .cta-primary:hover {
        opacity: 0.85;
      }

      .cta-secondary {
        font-size: 0.66rem;
        font-family: var(--body);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(var(--cream-ch), 0.42);
        font-weight: 300;
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        padding-bottom: 3px;
        transition: color 0.7s ease;
      }
      .cta-secondary::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gold);
        opacity: 0.35;
        transform: scaleX(0);
        transform-origin: left;
        transition:
          transform 0.45s ease,
          opacity 0.3s;
      }
      .cta-secondary:hover {
        color: rgba(var(--cream-ch), 0.75);
      }
      .cta-secondary:hover::after {
        transform: scaleX(1);
        opacity: 0.65;
      }

      .hero-scroll {
        position: absolute;
        right: var(--gutter);
        bottom: clamp(2.5rem, 6vh, 5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        z-index: 10;
        opacity: 0;
      }
      .scroll-line {
        width: 1px;
        height: 46px;
        background: linear-gradient(
          to bottom,
          rgba(var(--gold-ch), 0.55),
          transparent
        );
        animation: linePulse 2.2s ease-in-out infinite;
      }
      @keyframes linePulse {
        0%,
        100% {
          opacity: 0.7;
          transform: scaleY(1);
          transform-origin: top;
        }
        50% {
          opacity: 0.18;
          transform: scaleY(0.35);
          transform-origin: top;
        }
      }
      .scroll-label {
        font-size: 0.48rem;
        text-transform: uppercase;
        letter-spacing: 0.42em;
        color: rgba(var(--cream-ch), 0.18);
        writing-mode: vertical-rl;
        font-weight: 300;
      }

      .hero-chip {
        position: absolute;
        top: 50%;
        left: calc(50% + min(clamp(120px, 16vw, 240px), 28vh) + 2.5vw);
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        opacity: 0;
        z-index: 10;
      }
      .chip-num {
        font-family: var(--display);
        font-size: clamp(2.4rem, 4vw, 4.5rem);
        font-weight: 300;
        font-style: italic;
        background: var(--gold-foil);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
      }
      .chip-label {
        font-size: 0.56rem;
        text-transform: uppercase;
        letter-spacing: 0.24em;
        color: rgba(var(--cream-ch), 0.3);
        font-weight: 300;
        line-height: 1.8;
        transition: color 0.7s;
      }
      .chip-rule {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
        opacity: 0.3;
        margin-bottom: 0.5rem;
      }

      /* Hero light-slide overrides (auto-detected from portrait) */
      .hero.theme-light .hero-brand-est {
        color: rgba(var(--ink-ch), 0.35);
      }
      .hero.theme-light .hero-brand-name {
        color: rgba(var(--ink-ch), 0.75);
      }
      .hero.theme-light .hero-brand-copy {
        color: rgba(var(--ink-ch), 0.4);
      }
      .hero.theme-light .hw-1 {
        color: rgba(var(--ink-ch), 0.9);
      }
      .hero.theme-light .cta-secondary {
        color: rgba(var(--ink-ch), 0.45);
      }
      .hero.theme-light .scroll-label {
        color: rgba(var(--ink-ch), 0.22);
      }
      .hero.theme-light .chip-label {
        color: rgba(var(--ink-ch), 0.4);
      }
      .hero.theme-light .scroll-line {
        background: linear-gradient(
          to bottom,
          rgba(var(--ink-ch), 0.4),
          transparent
        );
      }
      .hero.theme-light .hero-col-line {
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(var(--ink-ch), 0.18),
          transparent
        );
      }

      /* ================================================================

/* ================================================================
SHARED UTILITIES
         ================================================================ */
      .eyebrow {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 3rem;
      }
      .eyebrow-rule {
        width: 30px;
        height: 1px;
        background: var(--gold);
        opacity: 0.4;
        flex-shrink: 0;
      }
      .eyebrow-text {
        font-size: 0.52rem;
        text-transform: uppercase;
        letter-spacing: 0.46em;
        color: var(--text-3);
        font-weight: 300;
      }

      .text-link {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 0.63rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        color: var(--gold);
        opacity: 0.7;
        transition: opacity 0.3s;
        margin-top: 0.5rem;
      }
      .text-link:hover {
        opacity: 1;
      }

      /* ================================================================

/* ================================================================
FOOTER
      ──────────────────────────────────────── */
      footer {
        background: var(--dark-footer);
        color: var(--cream);
        padding: 10rem 0 5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .footer-bg-img {
        position: absolute;
        top: -8rem;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        z-index: 0;
        opacity: 0.1;
        filter: grayscale(100%);
        -webkit-mask-image: linear-gradient(
          to top,
          transparent 0%,
          black 45%,
          black 100%
        );
        mask-image: linear-gradient(
          to top,
          transparent 0%,
          black 45%,
          black 100%
        );
      }

      .footer-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-logo {
        height: 100px;
        margin-bottom: 2rem;
        filter: drop-shadow(0 0 30px rgba(var(--gold-ch), 0.15));
      }

      .footer-hl {
        font-family: var(--display);
        font-weight: 300;
        font-size: clamp(4rem, 7.5vw, 10rem);
        font-style: italic;
        line-height: 0.86;
        letter-spacing: -0.02em;
        margin: 2rem 0 2.8rem;
      }
      .footer-hl .hl-plain {
        color: rgba(var(--cream-ch), 0.88);
        display: block;
      }
      .footer-hl .hl-gold {
        display: block;
        background: var(--gold-foil);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .footer-sub {
        font-size: 1rem;
        margin-bottom: 5rem;
        letter-spacing: 0.15em;
        color: rgba(var(--cream-ch), 0.5);
        text-transform: uppercase;
        font-weight: 300;
      }

      .footer-links {
        display: flex;
        gap: 4rem;
        margin-top: 10rem;
        margin-bottom: 4rem;
        text-transform: uppercase;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        font-weight: 400;
      }
      .footer-links a {
        color: rgba(var(--cream-ch), 0.6);
        transition: color 0.3s;
        position: relative;
        padding-bottom: 4px;
      }
      .footer-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .footer-links a:hover {
        color: var(--gold);
      }
      .footer-links a:hover::after {
        transform: scaleX(1);
      }

      .copyright {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.2);
        letter-spacing: 0.12em;
        line-height: 2.4;
        margin-bottom: 4rem;
        font-family: var(--body);
      }

      /* ================================================================

/* ================================================================
RESPONSIVE
         ================================================================ */
      @media (max-width: 1024px) {
        .hero-stage {
          grid-template-columns: 1fr;
        }
        .hero-brand,
        .hero-col-line,
        .hero-chip,
        .hero-scroll,
        .hero-right {
          display: none;
        }
        .hero-words {
          text-align: left;
        }

        .manifesto-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .manifesto::after {
          display: none;
        }

        .curriculum-grid {
          grid-template-columns: 1fr;
        }
        .curriculum-card {
          border-right: none;
          border-bottom: 1px solid var(--gold-line);
        }
        .curriculum-card:last-child {
          border-bottom: none;
        }

        .royalty-bg {
          grid-template-columns: 1fr;
        }
        .royalty-bg-img:nth-child(1),
        .royalty-bg-img:nth-child(3) {
          display: none;
        }

        .royalty-inner {
          grid-template-columns: 1fr;
          gap: 4rem;
        }
        .royalty-panel {
          border-left: none;
          padding-left: 0;
          border-top: 1px solid rgba(var(--gold-ch), 0.14);
          padding-top: 3rem;
        }
        .royalty::after {
          display: none;
        }

        .testimonials-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .testimonials::after {
          display: none;
        }

        .photo-strip-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .photo-strip-item--raised,
        .photo-strip-item--lowered {
          margin: 0;
        }
        .photo-strip-item {
          aspect-ratio: 3 / 2;
        }

        .founder-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .founder-portrait {
          position: relative;
          top: auto;
          max-width: 500px;
        }
        .founder::before {
          display: none;
        }

        .packages-header {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .events-header {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .event-item {
          grid-template-columns: 5rem 1fr 2rem;
          grid-template-rows: auto auto;
        }
        .event-item .event-meta {
          display: none;
        }

        .footer-top {
          flex-direction: column;
          gap: 3rem;
        }
        .footer-cta {
          align-items: flex-start;
          text-align: left;
        }
        .footer-mid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 640px) {
        nav .nav-links {
          display: none;
        }
        .nav-hamburger {
          display: flex;
        }
        .hero-portrait {
          width: 85vw;
        }
        .hw-1 {
          font-size: clamp(3rem, 11vw, 5rem);
        }
        .hw-2 {
          font-size: clamp(2.4rem, 8.5vw, 4rem);
        }
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          row-gap: 3rem;
        }
        .stat:nth-child(3)::before {
          display: none;
        }
        .package-item {
          grid-template-columns: 2.5rem 1fr 2.5rem;
        }
        .pkg-meta {
          display: none;
        }
        .footer-links {
          flex-wrap: wrap;
          justify-content: center;
          gap: 1.8rem;
          margin-top: 6rem;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
        }
      }

      @media (max-height: 720px) {
        .hero-brand-copy {
          display: none;
        }
        .hw-1 {
          font-size: clamp(3rem, 6vw, 6rem);
        }
        .hw-2 {
          font-size: clamp(2.4rem, 4.8vw, 4.8rem);
        }
      }
