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

    html, body { overflow-x: hidden; }

    .page {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 12px 2%;
    }

    .hero-bg { isolation: isolate;
      width: 100%;
      min-height: 900px;
      border-radius: 0 0 22px 22px;
      overflow: hidden;
      position: relative;
    }

    .hero-bg > img,
    .hero-bg > video {
      width: 100%;
      height: 130%;
      min-height: 900px;
      object-fit: cover;
      object-position: center;
      display: block;
      position: absolute;
      top: -15%;
      left: 0;
      will-change: transform;
    }

    :root {
      --cream:    #ffffff;
      --cream-bg: #f4f8f9;
      --dark:     #1b1815;
      --muted:    #8c847a;
      --muted-lt: #b8b0a8;
      --white:    #ffffff;

      --serif: 'ivyora-display', Georgia, serif;
      --sans:  'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    body {
      background: var(--cream-bg);
      color: var(--dark);
      font-family: var(--sans);
      min-height: 100vh;
    }

    .hero {
      display: flex;
      min-height: 72vh;
      max-height: 800px;
      background: var(--cream);
      border-radius: 22px;
      overflow: hidden;
      padding-top: 3%;
      padding-bottom: 3%;
    }

    .hero-left {
      flex: 0 0 60%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 36px 52px 40px;
    }

    .hero-headline {
      font-family: var(--serif);
      font-size: clamp(30px, 3.4vw, 48px);
      font-weight: 400;
      opacity: 1;
      color: var(--dark);
      line-height: 1.18;
      letter-spacing: -0.01em;
      margin-bottom: 26px;
    }

    .hero-headline-light {
      font-style: normal;
      font-weight: 200;
    }

    .inline-thumb {
      display: inline-flex;
      width: clamp(54px, 6.2vw, 82px);
      height: clamp(34px, 4vw, 52px);
      border-radius: 9px;
      overflow: hidden;
      vertical-align: middle;
      position: relative;
      top: -3px;
      margin: 0 4px;
    }

    .inline-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-divider {
      width: 1.5px;
      height: 52px;
      background: var(--muted);
      opacity: 0.35;
      margin-bottom: 26px;
    }

    .hero-copy {
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.75;
      color: var(--dark);
      margin-bottom: 34px;
    }

    .hero-copy em { font-style: normal; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--dark);
      color: var(--white);
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      padding: 7px 28px 7px 8px;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      width: fit-content;
      white-space: nowrap;
      transition: opacity .18s ease;
    }

    .btn:hover { opacity: 0.8; }

    .btn-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-icon-sm {
      width: 30px;
      height: 30px;
    }

    .etymology {
      margin-top: auto;
      padding-top: 32px;
      font-family: var(--sans);
      font-size: 11px;
      line-height: 1.8;
      color: var(--muted);
      text-align: center;
    }

    .hero-right {
      flex: 1;
      padding: 12px 12px 12px 0;
      max-height: 680px;
    }

    .hero-img-frame {
      width: 100%;
      height: 680px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
    }

    .hero-img-frame > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-img-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,.32) 0%, rgba(0,0,0,.08) 35%, transparent 60%);
      z-index: 1;
    }

    .img-tagline {
      position: absolute;
      top: 26px;
      left: 26px;
      z-index: 2;
      color: rgba(255,255,255,.95);
      font-family: var(--sans);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.5;
      max-width: 78%;
    }

    .btn-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 2;
    }

    .bubbles {
      position: absolute;
      bottom: 24px;
      left: 20px;
      right: 20px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    /* width removed — controlled by left/right anchoring */

    .b-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .b-row { justify-content: flex-start; }



    .b {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.93);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 5px;
      padding: 8px 16px;
      font-family: var(--serif);
      font-size: clamp(14px, 1.4vw, 17px);
      font-weight: 400;
      color: var(--dark);
      white-space: nowrap;
      box-shadow: 0 3px 12px rgba(0,0,0,.12);
    }

    .b.em { font-style: normal; font-weight: 400; }

    .b.round {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      padding: 0;
      font-size: 14px;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    }

    .hero-bg-bottom {
      position: absolute;
      left: 72px;
      right: 72px;
      bottom: 100px;
      z-index: 10;
      max-width: 1100px;
    }

    .hero-bg-bottom h2 {
      font-family: var(--serif);
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 400;
      line-height: 1.06;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .hero-bg-bottom h2 em {
      font-style: normal;
      font-weight: 400;
    }

    .hero-bg-tagline {
      font-family: var(--serif);
      font-size: clamp(28px, 4.5vw, 48px);
      font-weight: 100;
      font-style: normal;
      line-height: 1.3;
      color: rgba(255,255,255,0.92);
      max-width: 100%;
      margin-bottom: 0;
      letter-spacing: -0.005em;
    }

    @media (min-width: 900px) {
      .hero-bg-tagline {
        white-space: nowrap;
      }
    }

    /* ── Fixed global header ── */
    .site-header {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1200px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px 10px 20px;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.08);
      transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    }
    
    /* ── Nav links wrapper ── */
    .hdr-nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .hdr-nav-links a {
      font-family: var(--sans); font-size: 13px; font-weight: 500;
      color: rgba(27,24,21,0.65); text-decoration: none; white-space: nowrap;
      padding: 6px 12px; border-radius: 6px;
      transition: color 0.18s, background 0.18s;
    }
    .hdr-nav-links a:hover { color: #1b1815; background: rgba(27,24,21,0.06); }

    /* ── Tagline: hidden by default, only shows in State 3 ── */
    .hdr-tagline {
      display: none;
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 300;
      color: rgba(27,24,21,0.78);
      white-space: nowrap;
      letter-spacing: -0.01em;
    }
    .hdr-tagline-light { font-style: normal; font-weight: 200; }

    /* ══════════════════════════════════════════════════════════════════
       3-STATE HEADER
       State 1 — natural: full width, nav links visible
       State 2 — scrolled: compact pill, center hidden
       State 3 — scrolled + drawer open: full width, tagline in center
       ══════════════════════════════════════════════════════════════════ */

    /* Add width to the transition on the base header */
    .site-header {
      transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  max-width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.3s ease;
    }

    /* State 2: compact */
    .site-header.scrolled {
      max-width: 570px !important;
      gap: 20px;  /* 20px between logo group and button group */
      box-shadow: 0 2px 8px rgba(0,0,0,0.09), 0 10px 32px rgba(0,0,0,0.12);
    }
    .site-header.scrolled .site-header-center {
      opacity: 0;
      pointer-events: none;
      overflow: hidden;
      max-width: 0;
      padding: 0;
      transition: opacity 0.2s ease, max-width 0.35s ease;
    }

    /* State 3: scrolled + drawer expanded — full width, tagline left-aligned */
    .site-header.scrolled.drawer-expanded {
      max-width: 1152px !important;
      justify-content: flex-start;
      gap: 15px;
    }
    .site-header.scrolled.drawer-expanded .site-header-center {
      position: static;
      opacity: 1;
      pointer-events: auto;
      overflow: visible;
      max-width: none;
      width: auto;
      flex: 1;
      padding: 0;
      transition: opacity 0.3s ease 0.3s;
    }
    .site-header.scrolled.drawer-expanded .site-header-right {
      margin-left: auto;
    }
    .site-header.scrolled.drawer-expanded .hdr-nav-links { display: none; }
    .site-header.scrolled.drawer-expanded .hdr-tagline {
      display: block;
      font-size: 26px;
      text-align: center;
      width: 100%;
    }
    .site-header.scrolled.drawer-expanded .site-header-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
    }

    
    /* Homepage only: nav starts lower, slides up on scroll */
    .site-header.hdr-hero-offset {
      top: 52px;
    }

    .site-header.scrolled {
      box-shadow: 0 2px 8px rgba(0,0,0,0.09), 0 10px 32px rgba(0,0,0,0.12);
    }

    .site-header-left {
      display: flex; align-items: center; gap: 12px; flex-shrink: 0;
    }

    /* Non-sticky center nav inside hero-bg */
    .hero-bg-nav-center {
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .hero-bg-nav-center a {
      font-family: var(--sans);
      font-size: 13.5px;
      font-weight: 400;
      font-style: normal;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      white-space: nowrap;
      transition: color .15s;
    }

    .hero-bg-nav-center a { position: relative; }
    .hero-bg-nav-center a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: rgba(255,255,255,0.75);
      transition: width 0.25s ease;
    }
    .hero-bg-nav-center a:hover { color: var(--white); }
    .hero-bg-nav-center a:hover::after { width: 100%; }

    /* Hidden in fixed header, shown in hero instead */
    .site-header-center {
      position: absolute; left: 50%; transform: translateX(-50%);
      display: flex; align-items: center; gap: 2px;
    }

    .site-header-center a {
      font-family: var(--sans); font-size: 13px; font-weight: 500;
      color: rgba(27,24,21,0.65); text-decoration: none; white-space: nowrap;
      padding: 6px 12px; border-radius: 6px;
      transition: color 0.18s, background 0.18s;
    }

    /* site-header-center hover handled by background pill (see above) */

    .site-header-right {
      display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    }

    .logo-wrap { text-decoration: none; display: flex; align-items: center; }
    .logo-text {
      display: none; font-family: var(--sans);
      font-size: 16px; font-weight: 700; color: #1b1815;
    }
    .hamburger span { background: #1b1815; }

    .logo-img {
      height: 34px; width: auto; max-width: 110px;
      object-fit: contain; display: block;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #1a1815;
      color: var(--white);
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      cursor: pointer;
      border-radius: 5px;
      padding: 7px 28px 7px 8px;
      font-family: var(--sans);
      font-size: 13.5px;
      font-weight: 500;
      white-space: nowrap;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background .18s ease, border-color .18s ease;
    }

    .btn-ghost:hover {
      background: rgba(255,255,255,0.22);
      border-color: rgba(255,255,255,0.8);
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--dark);
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      padding: 7px 28px 7px 8px;
      font-family: var(--sans);
      font-size: 13.5px;
      font-weight: 500;
      white-space: nowrap;
      transition: opacity .18s ease;
    }

    .btn-white:hover { opacity: 0.88; }

    /* Dark icon circle on white (solid) button only */
    .btn-white .btn-icon {
      background: transparent;
    }

    .btn-white .btn-icon svg path {
      stroke: currentColor;
    }
    /* Ghost button keeps default white icon circle with dark arrow */

    .core-adv-line {
      display: block;
      font-style: normal;
      font-weight: 400;
      font-size: clamp(30px, 4vw, 64px);
      line-height: 1.0;
      margin: 4px 0 8px;
    }

    /* Collective Buying Power emphasis line */
    .cbp-line {
      display: block;
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(40px, 5.5vw, 76px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      margin-top: 10px;
      opacity: 1;
    }

    /* Hero bottom button — larger than nav buttons */
    .hero-bg-bottom .btn-white {
      padding-top: 12px;
      padding-bottom: 12px;
    }

    /* Thin weight for tagline variation */
    @keyframes text-shine {
      0%   { background-position: 200% center; }
      100% { background-position: -100% center; }
    }

    .hero-thin {
      font-weight: 100;
      font-style: normal;
      background: linear-gradient(
        110deg,
        rgba(255,255,255,0.72) 0%,
        rgba(255,255,255,0.72) 36%,
        rgba(255,248,210,0.98) 46%,
        rgba(255,255,255,1)    50%,
        rgba(255,248,210,0.98) 54%,
        rgba(255,255,255,0.72) 64%,
        rgba(255,255,255,0.72) 100%
      );
      background-size: 300% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: text-shine 10s ease-in-out infinite;
    }

    /* ══════════════════════════════════════
       SECTION 3 — Tiles / Who We Are
    ══════════════════════════════════════ */
    .section-tiles {
      background: var(--cream);
      border-radius: 22px;
      padding: 80px 56px 72px;
    }

    /* Used where a section header should be semantic h2 but visually reads like an eyebrow label */
    .section-h2-label {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(27,24,21,0.75);
      margin-bottom: 20px;
    }

    .eyebrow {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(27,24,21,0.75);
      margin-bottom: 20px;
    }

    .section-intro {
      font-family: var(--serif);
      font-size: clamp(30px, 3.6vw, 48px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--dark);
      margin-bottom: 56px;
    }

    .tiles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 52px;
    }

    .tile {
      border-radius: 18px;
      padding: 44px 36px;
      display: flex;
      flex-direction: column;
      min-height: 400px;
      transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s ease;
    }

    .tile:hover {
      transform: translateY(-6px);
    }

    .tile-dark { background: #ffffff; color: var(--dark); }
    .tile-mid  { background: #fafcfc; color: var(--dark); }
    .tile-light { background: var(--cream-bg); color: var(--dark); }

    .tile-label {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .tile-heading {
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 400;
      line-height: 1.25;
      margin-top: 60px;
      margin-bottom: 14px;
    }

    .tile-body {
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.7;
      opacity: 0.85;
    }

    .section-tiles-sub {
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 400;
      color: rgba(27,24,21,0.68);
      max-width: 540px;
      margin-top: -36px;
      margin-bottom: 44px;
      line-height: 1.65;
    }

    .section-cta {
      display: flex;
      gap: 12px;
    }

    /* ══════════════════════════════════════
       SECTION 4 — Track Record
    ══════════════════════════════════════ */
    .section-stats {
      background: var(--dark);
      border-radius: 22px;
      padding: 96px 72px;
    }

    .section-stats--compact {
      padding: 64px 56px;
    }

    .track-record-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 56px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .track-record-copy {
      flex: 1 1 380px;
      max-width: 440px;
    }

    .track-record-title {
      color: var(--white);
      margin-bottom: 18px;
    }

    .track-record-body {
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.62);
    }

    .track-record-inner .stats-grid {
      flex: 1 1 420px;
      margin-top: 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 52px;
    }

    .stat-block {
      padding: 44px 40px;
      border-radius: 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
    }

    .stat-number {
      font-family: var(--serif);
      font-size: clamp(64px, 8vw, 108px);
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      margin-bottom: 18px;
      letter-spacing: -0.03em;
    }

    .stat-desc {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,.7);
      max-width: 260px;
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
       SECTION 4.5 — Member Community Access
    ══════════════════════════════════════ */
    .section-member-access {
      border-radius: 22px;
      min-height: 600px;
      display: flex;
      align-items: center;
      padding: 120px 64px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .member-access-bg {
      position: absolute;
      top: -15%;
      left: 0;
      width: 100%;
      height: 130%;
      object-fit: cover;
      object-position: right center;
      z-index: -2;
      will-change: transform;
      display: block;
    }

    .member-access-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(26,24,21,0.92) 0%, rgba(26,24,21,0.72) 40%, rgba(26,24,21,0.25) 78%);
      z-index: -1;
    }

    .member-access-content {
      max-width: 66%;
      position: relative;
      z-index: 1;
    }

    .member-access-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(36px, 4.2vw, 58px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .member-access-body {
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      margin-bottom: 36px;
      max-width: 66%;
    }

    /* ══════════════════════════════════════
       SECTION 5 — Profiles / How To Work
    ══════════════════════════════════════ */
    .section-profiles {
      background: var(--cream);
      border-radius: 22px;
      padding: 80px 56px 72px;
    }

    .profiles-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      gap: 24px;
    }

    .tab-switcher {
      display: flex;
      background: var(--cream-bg);
      border-radius: 5px;
      padding: 4px;
      gap: 4px;
      flex-shrink: 0;
    }

    .tab-btn {
      padding: 10px 22px;
      border: none;
      background: none;
      border-radius: 5px;
      font-family: var(--sans);
      font-size: 12.5px;
      font-weight: 400;
      color: var(--muted);
      cursor: pointer;
      white-space: nowrap;
      transition: background .18s, color .18s;
    }

    .tab-btn.active {
      background: var(--dark);
      color: var(--white);
    }

    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 44px;
    }

    .profiles-grid.hidden { display: none; }

    .profile-tile {
      background: var(--cream-bg);
      border-radius: 16px;
      padding: 44px 26px 40px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, transform .28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .28s ease;
      text-decoration: none;
      color: var(--dark);
    }

    .profile-tile:hover {
      background: var(--dark);
      color: var(--white);
      transform: translateY(-5px);
    }

    .profile-label {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      opacity: 0.5;
    }

    .profile-title {
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 400;
      line-height: 1.2;
      flex: 1;
    }

    .profile-desc {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      opacity: 0.7;
    }

    .profile-arrow {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-top: 8px;
      opacity: 0.4;
    }

    .profiles-cta {
      display: flex;
      gap: 12px;
    }


    /* Section 4 — track record graph (jagged multi-line) */
    .section-stats { position: relative; overflow: hidden; }

    .stats-graph {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 68%;
      opacity: 0.08;
      pointer-events: none;
    }
    .stats-graph svg { width: 100%; height: 100%; }

    /* Grid lines */
    .g-grid {
      stroke: #ffffff;
      stroke-width: 0.5;
      opacity: 0;
      transition: opacity 1.2s ease 0.6s;
    }
    .section-stats.graph-on .g-grid { opacity: 1; }

    /* Area fill */
    .graph-area {
      fill: url(#gGrad);
      transform: scaleY(0);
      transform-origin: bottom center;
      transition: transform 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .section-stats.graph-on .graph-area { transform: scaleY(1); }

    /* Primary line */
    .graph-line {
      stroke: #ffffff;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 3000;
      stroke-dashoffset: 3000;
      transition: stroke-dashoffset 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    /* Secondary line — slightly lighter, 0.35s delay */
    .graph-line--2 {
      stroke-opacity: 0.6;
      stroke-width: 1.5;
      transition: stroke-dashoffset 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
    }
    .section-stats.graph-on .graph-line { stroke-dashoffset: 0; }


    /* Arrow icon: rotate to point right on hover */
    .btn .btn-icon,
    .btn-white .btn-icon,
    .btn-ghost .btn-icon {
      transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1),
                  background 0.18s ease;
    }
    .btn:hover .btn-icon,
    .btn-white:hover .btn-icon,
    .btn-ghost:hover .btn-icon {
      transform: rotate(45deg);
      transition-delay: 0.08s;
    }

    /* ── Apple-style entrance animations ── */
    @media (prefers-reduced-motion: no-preference) {
      .fade-up {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .fade-up.in-view {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }

      /* Images: subtle scale-down into place */
      .scale-in {
        transform: scale(1.05);
        transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .scale-in.in-view {
        transform: scale(1);
      }

      /* Stagger helpers */
      [data-delay="1"] { transition-delay: 0.1s; }
      [data-delay="2"] { transition-delay: 0.2s; }
      [data-delay="3"] { transition-delay: 0.3s; }
      [data-delay="4"] { transition-delay: 0.4s; }
    }

    /* ══ FOOTER ══════════════════════════════════ */
    .site-footer {
      background: var(--dark);
      border-radius: 22px 22px 0 0;
      padding: 96px 56px 72px;
      color: var(--white);
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 36px;
    }
    .footer-logo-img {
      width: 90px; height: auto;
      object-fit: contain;
      display: block;
    }
    .footer-logo-text {
      font-family: var(--sans); font-size: 20px;
      font-weight: 700; letter-spacing: 0.06em;
      color: var(--white);
    }
    .footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
    .footer-nav-label {
      font-family: var(--sans); font-size: 9px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(255,255,255,0.3); margin-bottom: 4px;
    }
    .footer-nav-col a {
      font-family: var(--sans); font-size: 13px; font-weight: 400;
      color: rgba(255,255,255,0.6); text-decoration: none;
      transition: color .18s; position: relative;
    }
    .footer-nav-col a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px; background: rgba(255,255,255,0.65);
      transition: width 0.25s ease;
    }
    .footer-nav-col a:hover { color: var(--white); }
    .footer-nav-col a:hover::after { width: 100%; }
    .footer-ctas-col { display: flex; flex-direction: row; gap: 10px; align-items: center; }

    .footer-btn-white {
      font-family: var(--sans); font-size: 13px; font-weight: 500;
      color: #1b1815; text-decoration: none;
      padding: 7px 14px 7px 7px; border-radius: 5px;
      background: #ffffff; white-space: nowrap;
      display: inline-flex; align-items: center; gap: 8px;
      transition: opacity 0.18s;
    }
    .footer-btn-white:hover { opacity: 0.85; }
    .footer-disclaimer {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.35);
      max-width: none;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }
    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-family: var(--sans); font-size: 11px; font-weight: 400;
      color: rgba(255,255,255,0.28); line-height: 1.6;
    }
    .footer-copy a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .18s; }
    .footer-copy a:hover { color: var(--white); }


    /* Footer dot-map decoration */
    .site-footer { position: relative; overflow: hidden; }
    .footer-map {
      position: absolute;
      top: -10%; right: -2%;
      width: 48%; height: 120%;
      background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
      background-size: 18px 18px;
      mask-image: radial-gradient(ellipse 75% 75% at 62% 48%,
        black 5%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.2) 60%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 75% 75% at 62% 48%,
        black 5%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.2) 60%, transparent 80%);
      pointer-events: none;
      z-index: 0;
    }
    .footer-inner, .footer-bottom { position: relative; z-index: 1; }


    /* ══ HAMBURGER DRAWER ════════════════════════ */
    /* ════════════════════════════════════════════════════════════════════
       DRAWER — dark bg, narrower than nav, slides from under pill
       ════════════════════════════════════════════════════════════════════ */

    .nav-drawer {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(96% - 88px);   /* 20px narrower each side than header */
      max-width: 1112px;
      z-index: 999;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 8px;
      overflow: hidden;
      background: #1a1815;
      box-shadow: 0 4px 6px rgba(0,0,0,0.12),
                  0 16px 48px rgba(0,0,0,0.28),
                  0 0 0 1px rgba(255,255,255,0.04);
      clip-path: inset(0 0 100% 0 round 8px);
      transition: clip-path 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      pointer-events: none;
    }
    /* Match header hero-offset position on homepage */
    .nav-drawer.hdr-hero-offset { top: 52px; }

    .nav-drawer.open {
      clip-path: inset(0 0 0% 0 round 8px);
      pointer-events: auto;
    }

    /* Left: nav links on dark */
    .nd-links {
      padding: 92px 52px 48px;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .nd-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--serif);
      font-size: clamp(14px, 1.7vw, 22px);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      padding: 11px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: padding-left 0.22s ease, opacity 0.22s ease;
    }
    .nd-nav a:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    .nd-nav a svg {
      opacity: 0;
      flex-shrink: 0;
      transform: translateX(-6px);
      color: rgba(255,255,255,0.88);
      transition: opacity 0.2s, transform 0.2s;
    }
    .nd-nav a:hover { padding-left: 10px; opacity: 0.5; }
    .nd-nav a:hover svg { opacity: 1; transform: translateX(0); }

    /* Right: image + contact */
    .nd-panel {
      padding: 88px 36px 40px;   /* match left panel + extra breathing room */
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .nd-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      display: block;
      flex-shrink: 0;
      position: relative;
      inset: auto;
    }
    .nd-contact {
      position: relative;
      bottom: auto; left: auto; right: auto;
      padding: 0;
      background: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
      justify-content: flex-end;
    }
    .nd-contact-heading {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 4px;
    }
    .nd-contact-details p {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }
    .nd-contact-details p a {
      color: #8ecbe0;
      text-decoration: none;
      border-bottom: 1px dotted #8ecbe0;
    }
    .nd-contact-details p a:hover {
      opacity: 0.75;
    }
    .nd-apply {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 4px;
      transition: gap 0.2s ease;
    }
    .nd-apply svg path { stroke: #ffffff; }
    .nd-apply:hover { gap: 14px; }

    /* Hamburger → X */
    .hamburger {
      background: none; border: none; cursor: pointer;
      padding: 4px; display: flex; flex-direction: column; gap: 5px;
      position: relative; z-index: 1002;
      outline: none;
    }
    .hamburger:focus { outline: none; }
    .hamburger:focus-visible { outline: none; }
    .hamburger span {
      display: block; width: 20px; height: 1.5px;
      background: #1b1815; border-radius: 2px;
      transform-origin: center;
      transition: transform 0.3s ease, opacity 0.2s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── White pill header buttons ── */
    .hdr-btn-ghost {
      font-family: var(--sans); font-size: 13px; font-weight: 500;
      color: rgba(27,24,21,0.72); text-decoration: none;
      padding: 7px 14px 7px 7px; border-radius: 5px;
      border: 1.5px solid rgba(27,24,21,0.2);
      white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
      transition: color 0.18s, border-color 0.18s, background 0.18s;
    }
    .hdr-btn-ghost:hover { color: #1b1815; border-color: rgba(27,24,21,0.45); background: rgba(27,24,21,0.04); }
    .hdr-btn-dark {
      font-family: var(--sans); font-size: 13px; font-weight: 600;
      color: #ffffff; text-decoration: none;
      padding: 7px 16px 7px 7px; border-radius: 5px;
      background: #1b1815; white-space: nowrap;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.18s;
    }
    .hdr-btn-dark:hover { background: #2c2a27; }


    /* ── Header button icon circles ── */
    /* Get Information circle: white with black arrow */
    .hdr-btn-icon {
      width: 24px; height: 24px;
      background: transparent;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    /* Apply Now: bare arrow, no circle */
    .hdr-btn-icon--inv {
      width: 24px; height: 24px;
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }



    /* ── Footer btn-ghost circle: white bg, dark arrow ── */
    .btn-ghost .btn-icon {
      background: transparent;
      color: inherit;
    }
    /* ── Footer btn-white circle: dark bg, white arrow (original) ── */
    .btn-white .btn-icon {
      background: transparent;
    }

    /* ── Header button: animated arrow on hover ── */
    .hdr-btn-icon svg,
    .hdr-btn-icon--inv svg {
      transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hdr-btn-ghost:hover .hdr-btn-icon svg,
    .hdr-btn-dark:hover .hdr-btn-icon--inv svg {
      transform: rotate(45deg);
    }

    /* ── Footer tagline ── */
    .footer-tagline {
      font-family: var(--serif); font-size: clamp(22px, 2.6vw, 34px);
      font-weight: 400; font-style: normal; color: #ffffff; line-height: 1.2;
      margin-top: 16px; letter-spacing: -0.01em;
    }

    .footer-subtagline {
      font-family: var(--serif); font-size: 15px;
      font-weight: 400; font-style: normal; color: #ffffff; line-height: 1.3;
      margin-top: 6px; letter-spacing: -0.01em;
      white-space: nowrap;
    }
