    :root {
      --gold: #b8964c;
      --gold-light: #f4ebd9;
      --gold-dark: #8a6f3a;
      --ink: #1a1a2e;
      --cream: #faf9f6;
      --warm: #f5f0e8;
      --teal: #5a7d7a;
      --teal-light: #e8eeed;
      --royal: #c9d4de;
      --muted: #6b7280;
      --line: #d4c9b8;
      --shadow: 0 18px 42px rgba(26, 26, 46, 0.1);
    }

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

    html,
    body {
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
    }

    /* ── Custom Cursor ── */
    .cursor-dot,
    .cursor-outline {
      pointer-events: none;
      position: fixed;
      top: 0;
      left: 0;
      border-radius: 50%;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    }

    .cursor-dot {
      width: 8px;
      height: 8px;
      background-color: var(--gold);
    }

    .cursor-outline {
      width: 40px;
      height: 40px;
      border: 1px solid var(--gold);
    }

    .cursor-hover .cursor-dot {
      width: 4px;
      height: 4px;
      background-color: white;
    }

    .cursor-hover .cursor-outline {
      width: 60px;
      height: 60px;
      background-color: rgba(184, 150, 76, 0.15);
      border-color: transparent;
    }

    @media (max-width: 1024px) {

      .cursor-dot,
      .cursor-outline {
        display: none;
      }
    }

    /* ── Custom Scrollbar ── */
    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 99px;
    }

    /* ── Reveal Animations ── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.9s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* ── Section Label ── */
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── Gold Rule ── */
    .gold-rule {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 1.25rem 0;
    }

    /* ── Navbar ── */
    #navbar {
      transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
    }

    #navbar.scrolled {
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
    }

    .nav-shell {
      min-height: 78px;
      padding: 0 0.75rem 0 1.5rem;
      background: rgba(250, 249, 246, 0.96);
      border: 1px solid rgba(212, 201, 184, 0.72);
      box-shadow: 0 18px 40px rgba(26, 26, 46, 0.12);
      backdrop-filter: blur(18px);
    }

    #navbar a {
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    #navbar a.flex {
      letter-spacing: 0;
      text-transform: none;
    }

    #navbar ul a:not(.nav-cta) {
      color: rgba(26, 26, 46, 0.72);
      font-size: 0.72rem;
      font-weight: 600;
    }

    #navbar ul a:not(.nav-cta):hover {
      color: var(--gold-dark);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0.65rem 1.25rem;
      background: var(--gold);
      border: 1px solid var(--gold);
      color: #ffffff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-decoration: none;
      box-shadow: 0 14px 26px rgba(26, 26, 46, 0.12);
      transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .nav-cta:hover {
      background: var(--gold-dark);
      transform: translateY(-1px);
      box-shadow: 0 18px 32px rgba(26, 26, 46, 0.14);
    }

    #navbar.scrolled .bg-cream {
      background-color: var(--ink);
    }

    /* ── Hero ── */
    #hero {
      min-height: 100svh;
      background: var(--warm);
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 -1px 0 var(--line);
    }

    @media (max-width: 1024px) {
      .speaking-header-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2rem !important;
      }

      .speaking-stats {
        width: 100% !important;
        justify-content: flex-start !important;
      }

      /* Prevent reveal animations from causing horizontal overflow */
      .reveal-left,
      .reveal-right {
        transform: translateY(24px) !important;
      }

      .reveal-left.visible,
      .reveal-right.visible {
        transform: none !important;
      }
    }

    .ambient-bg {
      position: absolute;
      inset: 0;
      background: transparent;
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      background-image: none;
    }

    .hero-img-frame {
      position: relative;
      display: inline-block;
    }

    .hero-img-frame::before {
      content: '';
      position: absolute;
      top: -12px;
      left: -12px;
      right: 12px;
      bottom: 12px;
      border: 1.5px solid var(--line);
      z-index: 0;
      pointer-events: none;
    }

    .hero-img-frame::after {
      content: '';
      position: absolute;
      bottom: -12px;
      right: -12px;
      top: 12px;
      left: 12px;
      border: 1.5px solid var(--royal);
      z-index: 0;
      pointer-events: none;
    }

    /* ── Identity Cards ── */
    .id-card {
      border: 1px solid var(--line);
      background: rgba(251, 247, 239, 0.92);
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
      border-radius: 30px;
    }

    .id-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .id-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
      box-shadow: var(--shadow);
    }

    .id-card:hover::before {
      transform: scaleX(1);
    }

    /* ── Identity Cards: desktop grid layout ── */
    .identity-scroll-wrap {
      position: relative;
    }

    .identity-cards-track {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    /* Tablet: 3-col grid */
    @media (max-width: 1024px) and (min-width: 769px) {
      .identity-cards-track {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .identity-scroll-hint {
      display: none;
    }

    .swiper,
    .bg-cream.border,
    .border.border-ink\/10 {
      box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
    }

    /* ── Timeline ── */
    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--line);
      transform: translateX(-50%);
    }

    .timeline-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold);
      border: 2px solid var(--cream);
      box-shadow: 0 0 0 4px rgba(184, 150, 76, 0.22);
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }

    /* ── Quote ── */
    .blockquote-gold {
      border-left: 3px solid var(--gold);
      padding-left: 1.5rem;
    }

    /* ── Section Divider ── */
    .divider-ornament {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .divider-ornament::before,
    .divider-ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--line);
    }

    /* ── Swiper customisation ── */
    .swiper-pagination-bullet {
      background: var(--gold) !important;
      opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
      opacity: 1 !important;
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: var(--gold) !important;
      width: 36px !important;
      height: 36px !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
      font-size: 1rem !important;
    }

    /* ── Gallery Card ── */
    .gallery-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--warm);
      cursor: pointer;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.4s;
      filter: grayscale(20%);
    }

    .gallery-card:hover img {
      transform: scale(1.07);
      filter: grayscale(0%);
    }

    .gallery-card .overlay {
      position: absolute;
      inset: 0;
      background: rgba(31, 41, 55, 0.58);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .gallery-card:hover .overlay {
      opacity: 1;
    }

    .gallery-card .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem 1.25rem;
      transform: translateY(8px);
      transition: transform 0.4s;
    }

    .gallery-card .caption p {
      color: var(--cream) !important;
    }

    .gallery-card .caption p:first-child {
      color: var(--gold-light) !important;
    }

    .gallery-card:hover .caption {
      transform: translateY(0);
    }

    /* ── Reels Section ── */
    .reels-swiper {
      padding: 2rem 0;
    }

    .reel-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 9/16;
      background: #1a1a1a;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .reel-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-color: rgba(184, 150, 76, 0.3);
    }

    .reel-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .reel-card:hover img {
      transform: scale(1.1);
    }

    .reel-card .reel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.5) 40%, 
        transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.75rem;
      z-index: 2;
    }

    .reel-instagram-icon {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      backdrop-filter: blur(8px);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      z-index: 3;
      border: none;
      transition: all 0.3s ease;
    }

    .reel-card:hover .reel-instagram-icon {
      transform: rotate(12deg) scale(1.1);
      box-shadow: 0 4px 15px rgba(214, 36, 159, 0.5);
    }

    .reel-tag {
      background: rgba(184, 150, 76, 0.2);
      color: var(--gold);
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.35rem 0.85rem;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      width: fit-content;
      margin-bottom: 0.85rem;
      border: 1px solid rgba(184, 150, 76, 0.3);
    }

    .reel-title {
      color: white;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.25rem;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: -0.01em;
    }

    .reel-stats {
      display: flex;
      gap: 1.25rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.8rem;
      font-weight: 600;
    }

    .reel-stat-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* ── Media Section Reels Grid → Carousel on mobile ── */
    @media (max-width: 639px) {
      .media-reels-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding: 0 1.5rem 1rem;
        margin: 0 -1.5rem;
      }

      .media-reels-grid::-webkit-scrollbar {
        display: none;
      }

      .media-reels-grid > a {
        flex: 0 0 78vw;
        max-width: 250px;
        scroll-snap-align: center;
      }

      .media-reels-grid > a .reel-card {
        height: 420px;
      }
    }

    .media-reels-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    /* ── Media Section: Follow Button ── */
    .media-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.85rem 2rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
      color: #fff;
      font-family: var(--font-sans, sans-serif);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
      box-shadow: 0 6px 24px rgba(131, 58, 180, 0.35);
    }

    .media-follow-btn:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 12px 32px rgba(131, 58, 180, 0.45);
      opacity: 0.95;
    }

    .media-follow-btn:active {
      transform: translateY(0) scale(0.98);
    }

    .reels-swiper-container {
      position: relative;
      padding: 0 40px;
    }

    .reel-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 30;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      cursor: pointer;
      opacity: 0.7;
    }

    .reel-prev { left: -10px; }
    .reel-next { right: -10px; }

    .reel-nav-btn:hover {
      background: #ffffff;
      opacity: 1;
      color: var(--gold);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 8px 25px rgba(184, 150, 76, 0.2);
    }

    .reel-follow-btn {
      background: var(--gold);
      color: #ffffff;
      padding: 1.15rem 2.5rem;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 10px 25px rgba(184, 150, 76, 0.25);
    }

    .reel-follow-btn:hover {
      background: var(--ink);
      transform: translateY(-4px);
      box-shadow: 0 15px 30px rgba(184, 150, 76, 0.35);
    }

    .reel-follow-btn svg {
      transition: transform 0.3s ease;
    }

    .reel-follow-btn:hover svg {
      transform: translateX(4px);
    }

    /* ── Stats ── */
    .stat-box {
      border-top: 2px solid var(--gold);
      padding-top: 1.25rem;
    }

    /* ── Community badge ── */
    .comm-badge {
      background: var(--cream);
      border: 1px solid var(--line);
      box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
      transition: all 0.3s ease;
    }

    .comm-badge:hover {
      background: #ffffff;
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    /* ── Premium Icon Box ── */
    .icon-box {
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 30px;
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(31, 41, 55, 0.07);
      border: 1px solid var(--line);
      margin-bottom: 1.25rem;
      transition: all 0.3s ease;
    }

    .id-card:hover .icon-box {
      transform: scale(1.05) rotate(2deg);
      border-color: var(--gold);
      box-shadow: 0 12px 24px rgba(31, 41, 55, 0.1);
    }

    .icon-box.teal {
      background: #ffffff;
      border-color: var(--line);
    }

    .id-card:hover .icon-box.teal {
      border-color: var(--teal);
      box-shadow: 0 12px 24px rgba(31, 41, 55, 0.1);
    }

    .icon-box-small {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #ffffff;
      border: 1px solid var(--line);
      margin-bottom: 1rem;
    }

    /* ── CTA Button ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2rem;
      background: var(--gold-light);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.875rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      box-shadow: 0 12px 24px rgba(31, 41, 55, 0.1);
      border: 1px solid var(--gold);
      transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
      border-radius: 30px;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #e8dcc0;
      box-shadow: 0 16px 30px rgba(26, 26, 46, 0.13);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.8rem;
      border: 1.5px solid var(--line);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
      border-radius: 30px;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      background: var(--cream);
      transform: translateY(-2px);
    }

    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.8rem;
      border: 1.5px solid var(--line);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s;
    }

    .btn-outline-dark:hover {
      border-color: var(--gold);
      background: var(--cream);
    }

    .btn-instagram {
      border-color: transparent;
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      color: white !important;
    }

    .btn-instagram:hover {
      border-color: transparent;
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      filter: brightness(1.1);
      color: white;
    }

    /* ── Noise overlay ── */
    .noise-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      background-size: 250px 250px;
      opacity: 0.5;
    }

    /* ── Placeholder images ── */
    .img-placeholder {
      background: var(--warm);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-placeholder span {
      color: var(--muted);
      font-size: 0.75rem;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* Mobile nav */
    #mobile-menu {
      display: none;
    }

    #mobile-menu.open {
      display: block;
    }

    /* ── Reference-style Footer ── */
    .footer-cta {
      padding: 3.5rem 6vw 2rem;
      background: var(--cream);
    }

    .footer-cta-inner {
      max-width: 88rem;
      margin: 0 auto;
      min-height: 150px;
      padding: 2rem clamp(1.5rem, 5vw, 4.25rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      background: var(--gold);
      color: #ffffff;
      box-shadow: 0 22px 46px rgba(26, 26, 46, 0.12);
    }

    @media (max-width: 1024px) {
      .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 3rem 2rem;
      }

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

    .footer-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.75rem, 3vw, 2.35rem);
      line-height: 1.05;
      color: #ffffff;
    }

    .footer-cta-text {
      margin-top: 0.65rem;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.95rem;
    }

    .footer-cta-actions,
    .footer-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0.9rem 1.75rem;
      border: 1px solid rgba(255, 255, 255, 0.22);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
    }

    .footer-btn:hover {
      transform: translateY(-2px);
    }

    .footer-btn-outline {
      color: #ffffff;
      background: transparent;
    }

    .footer-btn-light {
      color: var(--ink);
      background: #ffffff;
      border-color: #ffffff;
    }

    .footer-btn-gold {
      color: #ffffff;
      background: var(--gold);
      border-color: var(--gold);
    }

    .footer-btn-dark {
      color: #ffffff;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.18);
    }

    .site-footer {
      padding: 2rem 5vw 0;
      background: var(--cream);
    }

    .footer-frame {
      max-width: 90rem;
      margin: 0 auto;
      padding: clamp(2rem, 4vw, 4.5rem);
      background: #16120d;
      color: rgba(255, 255, 255, 0.72);
      box-shadow: 0 -16px 42px rgba(26, 26, 46, 0.16);
      position: relative;
      overflow: hidden;
    }

    .footer-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.9fr);
      gap: clamp(2rem, 6vw, 5rem);
      padding: clamp(1.75rem, 4vw, 3.25rem);
      border: 1px solid rgba(184, 150, 76, 0.25);
      background: rgba(255, 255, 255, 0.025);
    }

    @media (max-width: 1024px) {
      .footer-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem 1.5rem;
      }

      .footer-hero h2 {
        font-size: 2.5rem;
      }
    }

    .footer-kicker,
    .footer-heading {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
    }

    .footer-hero h2 {
      max-width: 45rem;
      margin-top: 1rem;
      color: #ffffff;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      line-height: 0.98;
      font-weight: 400;
    }

    .footer-hero p {
      max-width: 43rem;
      margin-top: 1.5rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.85;
    }

    .footer-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-content: center;
      gap: 0.9rem;
    }

    @media (max-width: 768px) {
      .footer-stats {
        grid-template-columns: 1fr;
      }
    }

    .footer-stats div {
      min-height: 120px;
      padding: 1.5rem;
      border: 1px solid rgba(184, 150, 76, 0.22);
      background: rgba(255, 255, 255, 0.035);
    }

    .footer-stats strong {
      display: block;
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      line-height: 1;
    }

    .footer-stats span {
      display: block;
      margin-top: 0.8rem;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      line-height: 1.5;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.7fr 1.2fr;
      gap: clamp(2rem, 6vw, 6rem);
      padding-top: clamp(2rem, 5vw, 4rem);
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-logo {
        min-width: 0;
        width: 100%;
        justify-content: center;
      }
    }

    .footer-logo {
      display: inline-flex;
      min-width: min(100%, 24rem);
      padding: 1.35rem 1.6rem;
      background: #ffffff;
      color: var(--ink);
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    }

    .footer-brand>p:not(.footer-logo) {
      max-width: 31rem;
      margin-top: 1.6rem;
      line-height: 1.85;
    }

    .footer-socials {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.8rem;
    }

    .footer-socials a,
    .sticky-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(184, 150, 76, 0.26);
      background: rgba(255, 255, 255, 0.04);
      color: var(--gold-light);
      font-size: 0.8rem;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    }

    .footer-socials a:hover,
    .sticky-actions a:hover {
      background: var(--gold);
      color: #ffffff;
      transform: translateY(-2px);
    }

    .footer-links {
      display: grid;
      gap: 1rem;
      margin-top: 1.35rem;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .footer-links a:hover {
      color: var(--gold-light);
    }

    .footer-contact-card {
      margin-top: 1rem;
      padding: 1.1rem 1.25rem;
      border: 1px solid rgba(184, 150, 76, 0.2);
      background: rgba(255, 255, 255, 0.035);
    }

    /* ── Speaking Redesign ── */
    .domain-card {
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .domain-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -12px rgba(184, 150, 76, 0.15);
    }

    .talk-teaser-card {
      transition: all 0.3s ease;
    }

    .talk-teaser-card:hover {
      background: var(--warm);
      transform: translateX(8px);
    }

    /* Gradient overlay for featured card */
    .featured-gradient {
      background: linear-gradient(0deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.4) 50%, transparent 100%);
    }

    /* Custom skew for background decoration */
    .bg-skew {
      transform: skewX(-12deg) translateX(15%);
    }

    @media (max-width: 1024px) {
      .bg-skew {
        display: none;
      }
    }

    .footer-contact-card span {
      display: block;
      color: var(--gold);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .footer-contact-card a,
    .footer-contact-card p {
      display: block;
      margin-top: 0.5rem;
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(184, 150, 76, 0.18);
      color: rgba(255, 255, 255, 0.48);
      font-size: 0.78rem;
    }

    .sticky-actions {
      position: fixed;
      right: 1.5rem;
      bottom: 1.5rem;
      z-index: 60;
      display: grid;
      gap: 0.65rem;
    }

    .sticky-actions a {
      background: var(--gold);
      color: #ffffff;
      box-shadow: 0 16px 30px rgba(26, 26, 46, 0.2);
    }

    @media (max-width: 1024px) {
      .nav-shell {
        min-height: 68px;
        padding: 0 1rem;
      }

      #mobile-menu {
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem 1.5rem 1.35rem;
        background: rgba(250, 249, 246, 0.98);
        border: 1px solid var(--line);
        border-top: 0;
        box-shadow: 0 18px 34px rgba(26, 26, 46, 0.12);
      }

      .footer-hero,
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 700px) {
      #navbar {
        padding: 0.75rem 1rem;
      }

      .footer-cta-inner,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-cta-actions,
      .footer-hero-actions,
      .footer-stats {
        grid-template-columns: 1fr;
        width: 100%;
      }

      .footer-btn {
        width: 100%;
      }

      .site-footer {
        padding-left: 0;
        padding-right: 0;
      }

      .sticky-actions {
        right: 1rem;
        bottom: 1rem;
      }
    }

    /* ══════════════════════════════════════════
       MOBILE FIXES (≤ 768px)
    ══════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* Prevent any element from causing horizontal scroll */
      section,
      .max-w-7xl,
      .max-w-4xl {
        overflow-x: hidden;
      }

      /* ── Navbar ── */
      #navbar {
        padding: 0.6rem 0.75rem;
      }

      .nav-shell {
        min-height: 60px;
        padding: 0 0.75rem;
        border-radius: 1rem;
      }

      #navbar a.flex span.font-display {
        font-size: 18px !important;
      }

      #mobile-menu {
        border-radius: 0 0 2rem 2rem;
        padding: 0.5rem 1rem 1rem;
      }

      #mobile-menu ul {
        gap: 0.75rem !important;
      }

      .nav-cta {
        min-height: 40px;
        padding: 0.55rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        border-radius: 999px;
        width: fit-content;
      }

      /* ── Hero ── */
      #hero {
        min-height: auto;
      }

      #hero .grid {
        gap: 2rem !important;
      }

      #hero h1 {
        font-size: 1.875rem !important;
        line-height: 1.2 !important;
      }

      /* Hero buttons */
      #hero .flex.flex-wrap.gap-4 {
        gap: 0.75rem !important;
      }

      .btn-primary,
      .btn-outline {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
      }

      /* Role pills — smaller on mobile */
      #hero .flex.flex-wrap.gap-3 span {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
      }

      /* ── Identity Cards ── */
      #identity .identity-scroll-wrap {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
      }

      #identity .identity-cards-track {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem !important;
        padding: 0.5rem 1.5rem 1rem;
        scrollbar-width: none;
      }

      #identity .identity-cards-track::-webkit-scrollbar {
        display: none;
      }

      #identity .identity-card-item {
        flex: 0 0 72vw;
        max-width: 280px;
        scroll-snap-align: start;
      }

      /* Scroll hint dots */
      .identity-scroll-hint {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 0.75rem;
      }

      .identity-scroll-hint span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.35;
      }

      .identity-scroll-hint span:first-child {
        opacity: 1;
      }

      /* ── Journey / About ── */
      #journey h2,
      #healthcare h2,
      #stepwise h2,
      #bluefin h2,
      #community h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
      }

      /* Journey 2-col image grid */
      #journey .grid.grid-cols-2 {
        gap: 0.5rem !important;
      }

      /* ── Blockquote font fix (was backwards: text-2xl on mobile, text-[12px] on desktop) ── */
      .blockquote-gold p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
      }

      /* ── Healthcare / Stepwise / Bluefin swipers ── */
      .swiper-slide.gallery-card {
        min-height: 240px !important;
      }

      /* ── Speaking section ── */
      #speaking {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
      }

      #speaking h2 {
        font-size: 2.25rem !important;
        line-height: 1.15 !important;
      }

      /* Hide decorative skew div that causes overflow */
      #speaking>div:first-child {
        display: none !important;
      }

      .speaking-stats {
        flex-wrap: wrap;
        gap: 1rem !important;
      }

      .speaking-stats .w-px {
        display: none;
      }

      /* Featured card */
      #speaking .aspect-\[4\/5\] {
        aspect-ratio: 3/4 !important;
      }

      /* Domain cards grid */
      #speaking .grid.sm\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
      }

      .domain-card {
        padding: 1.5rem !important;
      }

      /* CTA area */
      #speaking .pt-8.flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem !important;
      }

      /* ── Community badges ── */
      #community .grid.grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
      }

      #community .comm-badge.col-span-2 {
        grid-column: span 1 !important;
      }

      /* ── Stats grid ── */
      #community .grid.grid-cols-2 .stat-box {
        padding-top: 1rem;
      }

      /* ── Media gallery grid ── */
      #media .grid.grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
      }

      /* ── Contact section ── */
      #contact h2 {
        font-size: 2rem !important;
      }

      #contact .flex.flex-wrap.gap-4 {
        flex-direction: column;
        align-items: center;
      }

      #contact .btn-primary,
      #contact .btn-outline {
        width: 100%;
        justify-content: center;
        max-width: 280px;
      }

      #contact .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
      }

      /* ── Footer ── */
      .footer-stats {
        grid-template-columns: 1fr 1fr !important;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
      }

      .footer-logo {
        font-size: 1.5rem;
        padding: 1rem 1.25rem;
      }

      /* ── Sticky actions ── */
      .sticky-actions {
        right: 0.75rem;
        bottom: 0.75rem;
      }

      .sticky-actions a {
        width: 42px;
        height: 42px;
      }
    }

    /* ══════════════════════════════════════════
       SMALL MOBILE (≤ 480px)
    ══════════════════════════════════════════ */
    @media (max-width: 480px) {

      #hero h1 {
        font-size: 1.65rem !important;
      }

      #hero .grid {
        grid-template-columns: 1fr !important;
      }

      /* Identity cards — handled by scroll strip above */

      /* Speaking stats inline */
      .speaking-stats>div {
        text-align: left;
      }

      /* Ventures grid */
      #ventures .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
      }

      /* Media more moments — 2 cols is fine, keep it */
    }

    /* ── Hero Portrait responsive ── */
    #hero-portrait {
      aspect-ratio: 4/5;
      min-height: 0;
    }

    @media (max-width: 1023px) {
      #hero-portrait {
        aspect-ratio: auto;
        max-height: 380px;
        width: 100%;
        object-fit: cover;
        object-position: top center;
      }
    }

    /* ── Back to Top ── */
    #back-to-top {
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      border-radius: 50%;
      transition: opacity 0.3s ease, transform 0.2s ease, visibility 0.3s;
    }

    #back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
    }

    /* ── Marquee Strip ─────────────────────────────── */
    .marquee-strip {
      position: relative;
      z-index: 10;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 30s linear infinite;
    }

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

    .marquee-list {
      display: flex;
      align-items: center;
    }

    .marquee-item {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      padding: 0 1.5rem;
      white-space: nowrap;
    }

    .marquee-sep {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.6rem;
      flex-shrink: 0;
    }

    @keyframes marquee-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ── Community Impact (Redesign) ───────────────── */
    .community-section {
      position: relative;

    }

    /* Background image collage */
    .community-bg-grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      opacity: 0.12;
      pointer-events: none;
    }

    .community-bg-img {
      background-size: cover;
      background-position: center;
      filter: grayscale(100%) contrast(1.1);
    }

    /* Gold gradient overlay */
    .community-overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(
    160deg,
    rgba(138, 111, 58, 0.75) 0%,
    rgba(184, 150, 76, 0.55) 40%,
    rgba(138, 111, 58, 0.85) 100%
  );
  pointer-events: none; */
    }

    /* Section label — light variant */
    .section-label-light {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink);
      border: 1px solid rgba(26, 26, 46, 0.25);
      padding: 0.3rem 0.85rem;
      border-radius: 999px;
    }

    /* Initiative cards */
    .community-card {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 1rem;
      overflow: hidden;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .community-card:hover {
      background: rgba(255, 255, 255, 0.28);
      border-color: rgba(26, 26, 46, 0.35);
      transform: translateY(-4px);
    }

    .community-card-img {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .community-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: grayscale(20%);
    }

    .community-card:hover .community-card-img img {
      transform: scale(1.05);
      filter: grayscale(0%);
    }

    .community-card-body {
      padding: 1.25rem 1.5rem 1.5rem;
      flex: 1;
    }

    .community-card-icon {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 50%;
      background: rgba(26, 26, 46, 0.12);
      border: 1px solid rgba(26, 26, 46, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
    }

    /* Quote card variant */
    .community-card--quote {
      background: rgba(26, 26, 46, 0.18);
      border-color: rgba(26, 26, 46, 0.2);
      min-height: 260px;
    }

    .community-card--quote:hover {
      background: rgba(26, 26, 46, 0.28);
      border-color: rgba(26, 26, 46, 0.4);
    }

    /* Stats bar */
    .community-stats-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      border: 1px solid rgba(26, 26, 46, 0.15);
      border-radius: 1rem;
      background: rgba(26, 26, 46, 0.12);
      padding: 2rem 1rem;
    }

    .community-stat {
      flex: 1;
      min-width: 140px;
      text-align: center;
      padding: 1rem 1.5rem;
    }

    .community-stat-divider {
      width: 1px;
      height: 3rem;
      background: rgba(26, 26, 46, 0.2);
      flex-shrink: 0;
    }

    @media (max-width: 640px) {
      .community-bg-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .community-stat-divider {
        display: none;
      }

      .community-stats-bar {
        gap: 0.5rem;
      }

      .community-stat {
        min-width: 45%;
        border-bottom: 1px solid rgba(26, 26, 46, 0.1);
        padding-bottom: 1.25rem;
        margin-bottom: 0.25rem;
      }
    }

    /* ══════════════════════════════════════════
   JOURNEY SECTION — REDESIGN
══════════════════════════════════════════ */

    .journey-section {
      background: var(--cream);
    }

    /* 3-column editorial grid */
    .journey-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    /* ── Left: stacked images ── */
    .journey-images-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: sticky;
      top: 6rem;
    }

    .journey-img-primary {
      position: relative;
      overflow: hidden;
      border-radius: 1.25rem;
      aspect-ratio: 3/4;
      border: 1px solid var(--line);
    }

    .journey-img-primary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .journey-img-primary:hover img {
      transform: scale(1.04);
    }

    .journey-img-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem 1.25rem;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.75) 0%, transparent 100%);
      border-radius: 0 0 1.25rem 1.25rem;
    }

    .journey-img-secondary {
      overflow: hidden;
      border-radius: 1.25rem;
      aspect-ratio: 4/3;
      border: 1px solid var(--line);
    }

    .journey-img-secondary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .journey-img-secondary:hover img {
      transform: scale(1.04);
    }

    /* ── Centre: text ── */
    .journey-about-col {
      padding: 0.5rem 0;
    }

    .journey-belief {
      margin-top: 2rem;
      padding: 1.25rem 1.5rem;
      border-left: 3px solid var(--gold);
      background: var(--warm);
      border-radius: 0 0.75rem 0.75rem 0;
    }

    /* ── Right: speaking image + quote ── */
    .journey-story-col {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      position: sticky;
      top: 6rem;
    }

    .journey-img-speaking {
      position: relative;
      overflow: hidden;
      border-radius: 1.25rem;
      aspect-ratio: 4/5;
      border: 1px solid var(--line);
    }

    .journey-img-speaking img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .journey-img-speaking:hover img {
      transform: scale(1.04);
    }

    .journey-speaking-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem 1.25rem;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.75) 0%, transparent 100%);
      border-radius: 0 0 1.25rem 1.25rem;
    }

    /* ── Quote block ── */
    .journey-quote {
      padding: 1.5rem;
      border: 1px solid var(--line);
      border-radius: 1.25rem;
      background: var(--warm);
      position: relative;
    }

    .journey-quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      line-height: 1;
      color: var(--gold);
      opacity: 0.35;
      margin-bottom: -1rem;
      display: block;
    }

    .journey-quote-footer {
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .journey-quote-footer::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .journey-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .journey-images-col {
        position: static;
        grid-column: 1;
        grid-row: 1;
      }

      .journey-about-col {
        grid-column: 2;
        grid-row: 1;
      }

      .journey-story-col {
        position: static;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
      }

      .journey-img-speaking {
        aspect-ratio: 4/3;
      }
    }

    @media (max-width: 768px) {
      .journey-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .journey-images-col {
        flex-direction: row;
        gap: 0.75rem;
      }

      .journey-img-primary {
        aspect-ratio: 3/4;
        flex: 1;
      }

      .journey-img-secondary {
        aspect-ratio: 3/4;
        flex: 1;
      }

      .journey-about-col {
        grid-column: 1;
        grid-row: auto;
      }

      .journey-story-col {
        grid-template-columns: 1fr;
      }

      .journey-img-speaking {
        aspect-ratio: 16/9;
      }
    }

    /* ── Moments Lightbox ── */
    #moments-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(10, 8, 5, 0.94);
      backdrop-filter: blur(10px);
      align-items: center;
      justify-content: center;
    }

    #moments-lightbox.active {
      display: flex;
    }

    #lb-img-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 90vw;
      max-height: 88vh;
    }

    #lb-img {
      max-width: 90vw;
      max-height: 88vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border: 1px solid rgba(184, 150, 76, 0.25);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
      transition: opacity 0.25s ease;
      display: block;
    }

    #lb-close {
      position: fixed;
      top: 1.25rem;
      right: 1.5rem;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(184, 150, 76, 0.3);
      color: #fff;
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
      z-index: 9001;
    }

    #lb-close:hover {
      background: var(--gold);
      transform: scale(1.1);
    }

    #lb-prev,
    #lb-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(184, 150, 76, 0.28);
      color: #fff;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
      z-index: 9001;
    }

    #lb-prev {
      left: 1.25rem;
    }

    #lb-next {
      right: 1.25rem;
    }

    #lb-prev:hover,
    #lb-next:hover {
      background: var(--gold);
      transform: translateY(-50%) scale(1.08);
    }

    #lb-counter {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.55);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      z-index: 9001;
    }

    /* Thumbnail hover — show zoom cursor */
    #moments-grid .moment-item {
      cursor: zoom-in;
    }

    @media (max-width: 768px) {
      #lb-prev {
        left: 0.5rem;
      }

      #lb-next {
        right: 0.5rem;
      }

      #lb-prev,
      #lb-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
      }
    }