/* ═══════════════════════════════════════════════════
       VARIABLES
    ═══════════════════════════════════════════════════ */
    :root {
      --gold: #D4AF37;
      --gold-light: #F0D060;
      --gold-pale: #FBF0D0;
      --gold-dark: #A08520;
      --teal: #00D4AA;
      --teal-dark: #00A888;
      --ink-950: #06060A;
      --ink-900: #0B0B10;
      --ink-850: #0E0E14;
      --ink-800: #121218;
      --ink-700: #1A1A22;
      --ink-600: #24242E;
      --cream: #F2EDE4;
      --cream-60: rgba(242, 237, 228, .6);
      --cream-40: rgba(242, 237, 228, .4);
      --cream-25: rgba(242, 237, 228, .25);
      --cream-15: rgba(242, 237, 228, .15);
      --cream-08: rgba(242, 237, 228, .08);
      --cream-04: rgba(242, 237, 228, .04);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --radius-full: 9999px;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Outfit', system-ui, sans-serif;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --nav-h: 72px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--nav-h);
    }

    body {
      font-family: var(--font-body);
      background: var(--ink-950);
      color: var(--cream);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.6;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

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

    ::-webkit-scrollbar-thumb {
      background: rgba(212, 175, 55, .25);
      border-radius: 3px;
    }

    ::selection {
      background: rgba(212, 175, 55, .25);
    }

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

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

    ul,
    ol {
      list-style: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Noise */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: .03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ═══════════════════════════════════════════════════
       PRELOADER
    ═══════════════════════════════════════════════════ */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: var(--ink-950);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      transition: opacity .6s ease, visibility .6s ease;
    }

    .preloader.done {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-logo {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 600;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .preloader-bar {
      width: 120px;
      height: 2px;
      background: var(--cream-08);
      border-radius: 2px;
      overflow: hidden;
    }

    .preloader-bar-fill {
      width: 0;
      height: 100%;
      background: var(--gold);
      border-radius: 2px;
      transition: width .6s var(--ease-out-expo);
    }

    /* ═══════════════════════════════════════════════════
       SCROLL PROGRESS BAR
    ═══════════════════════════════════════════════════ */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--teal));
      transition: width .1s linear;
    }

    /* ═══════════════════════════════════════════════════
       CURSOR FOLLOWER (desktop only)
    ═══════════════════════════════════════════════════ */
    .cursor-dot {
      position: fixed;
      z-index: 9998;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      pointer-events: none;
      transition: transform .15s ease, opacity .3s ease;
      transform: translate(-50%, -50%);
      mix-blend-mode: difference;
    }

    .cursor-ring {
      position: fixed;
      z-index: 9997;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid rgba(212, 175, 55, .4);
      pointer-events: none;
      transition: width .35s var(--ease-out-expo), height .35s var(--ease-out-expo), border-color .3s ease, opacity .3s ease;
      transform: translate(-50%, -50%);
    }

    .cursor-ring.hover {
      width: 56px;
      height: 56px;
      border-color: var(--gold);
    }

    @media (hover:none) {

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

    /* ═══════════════════════════════════════════════════
       AMBIENT ORBS
    ═══════════════════════════════════════════════════ */
    .bg-orbs {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      top: -15%;
      left: -10%;
      background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 70%);
      animation: orbF 18s ease-in-out infinite;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      bottom: -10%;
      right: -8%;
      background: radial-gradient(circle, rgba(0, 212, 170, .12), transparent 70%);
      animation: orbF 18s ease-in-out infinite -6s;
    }

    .orb-3 {
      width: 350px;
      height: 350px;
      top: 40%;
      left: 55%;
      background: radial-gradient(circle, rgba(212, 175, 55, .08), transparent 70%);
      animation: orbF 18s ease-in-out infinite -12s;
    }

    @keyframes orbF {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(30px, -25px) scale(1.06);
      }

      66% {
        transform: translate(-20px, 30px) scale(.94);
      }
    }

    /* ═══════════════════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (min-width:768px) {
      .container {
        padding: 0 48px;
      }
    }

    @media (min-width:1024px) {
      .container {
        padding: 0 64px;
      }
    }

    .page-content {
      position: relative;
      z-index: 1;
    }

    section {
      padding: 120px 0;
    }

    @media (max-width:768px) {
      section {
        padding: 80px 0;
      }
    }

    .section-alt {
      background: rgba(11, 11, 16, .5);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 8px;
      letter-spacing: -.01em;
    }

    .section-title em {
      font-style: italic;
      font-weight: 500;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-divider {
      height: 1px;
      margin: 0 24px;
      background: linear-gradient(90deg, transparent, rgba(242, 237, 228, .06), transparent);
    }

    @media (min-width:768px) {
      .section-divider {
        margin: 0 48px;
      }
    }

    /* ═══════════════════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
    }

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

    .stagger>* {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
    }

    .stagger.in>*:nth-child(1) {
      opacity: 1;
      transform: none;
      transition-delay: .05s;
    }

    .stagger.in>*:nth-child(2) {
      opacity: 1;
      transform: none;
      transition-delay: .12s;
    }

    .stagger.in>*:nth-child(3) {
      opacity: 1;
      transform: none;
      transition-delay: .19s;
    }

    .stagger.in>*:nth-child(4) {
      opacity: 1;
      transform: none;
      transition-delay: .26s;
    }

    .stagger.in>*:nth-child(5) {
      opacity: 1;
      transform: none;
      transition-delay: .33s;
    }

    .stagger.in>*:nth-child(6) {
      opacity: 1;
      transform: none;
      transition-delay: .40s;
    }

    /* Text split reveal */
    .text-reveal {
      overflow: hidden;
      display: inline-block;
    }

    .text-reveal .inner {
      display: inline-block;
      transform: translateY(105%);
      transition: transform .8s var(--ease-out-expo);
    }

    .text-reveal.in .inner {
      transform: translateY(0);
    }

    /* Counter animation handled by JS */
    .counter {
      font-variant-numeric: tabular-nums;
    }

    /* ═══════════════════════════════════════════════════
       GLASS / BUTTONS / CHIPS
    ═══════════════════════════════════════════════════ */
    .glass {
      background: var(--cream-04);
      border: 1px solid var(--cream-08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .glass-hover {
      transition: all .4s var(--ease-out-expo);
    }

    .glass-hover:hover {
      background: rgba(242, 237, 228, .07);
      border-color: rgba(212, 175, 55, .2);
      transform: translateY(-2px);
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .84rem;
      font-weight: 600;
      padding: 14px 30px;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--ink-950);
      box-shadow: 0 0 24px rgba(212, 175, 55, .2);
      transition: all .4s var(--ease-out-expo);
      position: relative;
      overflow: hidden;
    }

    .btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .2));
      opacity: 0;
      transition: opacity .4s ease;
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 40px rgba(212, 175, 55, .35);
    }

    .btn-gold:hover::before {
      opacity: 1;
    }

    .btn-gold:active {
      transform: translateY(-1px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .84rem;
      font-weight: 500;
      padding: 14px 30px;
      border-radius: var(--radius-full);
      background: var(--cream-04);
      border: 1px solid var(--cream-08);
      color: var(--cream-60);
      backdrop-filter: blur(12px);
      transition: all .4s var(--ease-out-expo);
    }

    .btn-ghost:hover {
      background: var(--cream-08);
      transform: translateY(-2px);
      color: var(--cream);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      padding: 3px 12px;
      border-radius: var(--radius-full);
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: rgba(212, 175, 55, .08);
      border: 1px solid rgba(212, 175, 55, .22);
      color: var(--gold-light);
    }

    /* ═══════════════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      background: rgba(6, 6, 10, .7);
      backdrop-filter: blur(40px) saturate(1.5);
      -webkit-backdrop-filter: blur(40px) saturate(1.5);
      border-bottom: 1px solid rgba(242, 237, 228, .06);
      transition: background .4s ease, box-shadow .4s ease;
    }

    .nav.scrolled {
      background: rgba(6, 6, 10, .92);
      box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
    }

    @media (min-width:768px) {
      .nav {
        padding: 0 48px;
      }
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: .02em;
    }

    .nav-logo .dot {
      color: var(--gold);
      animation: dotPulse 3s ease infinite;
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .4;
      }
    }

    .nav-center {
      display: none;
      align-items: center;
      gap: 4px;
    }

    @media (min-width:900px) {
      .nav-center {
        display: flex;
      }
    }

    .nav-link {
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cream-40);
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      transition: all .3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: var(--cream);
      background: var(--cream-04);
    }

    .nav-link.active {
      color: var(--gold);
      background: rgba(212, 175, 55, .08);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-cta {
      display: none;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .13em;
      text-transform: uppercase;
      padding: 10px 22px;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--ink-950);
      transition: all .35s var(--ease-out-expo);
      box-shadow: 0 0 20px rgba(212, 175, 55, .2);
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 30px rgba(212, 175, 55, .35);
    }

    @media (min-width:900px) {
      .nav-cta {
        display: inline-flex;
      }
    }

    /* Language toggle */
    .lang-toggle {
      display: flex;
      align-items: center;
      border-radius: var(--radius-full);
      background: var(--cream-04);
      border: 1px solid var(--cream-08);
      overflow: hidden;
    }

    .lang-btn {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: 6px 12px;
      color: var(--cream-25);
      transition: all .25s ease;
    }

    .lang-btn.active {
      background: rgba(212, 175, 55, .15);
      color: var(--gold-light);
    }

    .lang-btn:hover:not(.active) {
      color: var(--cream-40);
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--cream-60);
      border-radius: 2px;
      transition: all .35s var(--ease-out-expo);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (min-width:900px) {
      .hamburger {
        display: none;
      }
    }

    .mobile-menu {
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      z-index: 90;
      background: rgba(6, 6, 10, .97);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border-bottom: 1px solid rgba(242, 237, 228, .06);
      padding: 16px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
      transition: all .35s var(--ease-out-expo);
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu a {
      display: block;
      font-size: .88rem;
      font-weight: 500;
      color: var(--cream-40);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      transition: all .25s ease;
    }

    .mobile-menu a:hover {
      color: var(--gold);
      background: var(--cream-04);
    }

    /* ═══════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: calc(var(--nav-h) + 40px);
      padding-bottom: 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: center;
    }

    @media (min-width:1024px) {
      .hero-grid {
        grid-template-columns: 1.1fr .9fr;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      background: rgba(212, 175, 55, .08);
      border: 1px solid rgba(212, 175, 55, .2);
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 24px;
      animation: fadeUp .8s var(--ease-out-expo) .1s both;
    }

    .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 8px var(--teal);
      animation: pulseG 2s ease infinite;
    }

    @keyframes pulseG {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .5;
        transform: scale(.8);
      }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(3.2rem, 7vw, 6rem);
      line-height: 1.04;
      letter-spacing: -.025em;
      margin-bottom: 24px;
    }

    .hero h1 strong {
      font-weight: 600;
      font-style: italic;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--cream-40);
      max-width: 460px;
      margin-bottom: 36px;
    }

    .hero-subtitle span {
      color: var(--cream-60);
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 48px;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 36px;
      padding-top: 36px;
      border-top: 1px solid var(--cream-08);
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: .66rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cream-25);
      margin-top: 6px;
    }

    .hero-visual {
      display: none;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    @media (min-width:1024px) {
      .hero-visual {
        display: flex;
      }
    }

    .hero-avatar-wrap {
      position: relative;
      width: 320px;
      height: 400px;
    }

    .hero-avatar-shape {
      width: 100%;
      height: 100%;
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(212, 175, 55, .15);
      animation: blobMorph 10s ease-in-out infinite;
    }

    @keyframes blobMorph {

      0%,
      100% {
        border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      }

      25% {
        border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
      }

      50% {
        border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%;
      }

      75% {
        border-radius: 70% 30% 60% 40% / 50% 40% 60% 50%;
      }
    }

    /* Photo mode: replace .hero-avatar-inner with an <img> */
    .hero-avatar-shape img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-avatar-fallback {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(212, 175, 55, .08), rgba(0, 212, 170, .05));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-avatar-fallback .initials {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--ink-950);
    }

    .hero-avatar-ring {
      position: absolute;
      inset: -20px;
      border: 1px dashed rgba(212, 175, 55, .15);
      border-radius: 50%;
      animation: spin 30s linear infinite;
    }

    .hero-avatar-ring::after {
      content: '';
      position: absolute;
      top: -4px;
      left: 50%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 12px rgba(212, 175, 55, .5);
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .hero-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, .2), transparent 65%);
      filter: blur(60px);
      z-index: -1;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Hero stagger delays */
    .h-d1 {
      animation: fadeUp .8s var(--ease-out-expo) .1s both;
    }

    .h-d2 {
      animation: fadeUp .8s var(--ease-out-expo) .25s both;
    }

    .h-d3 {
      animation: fadeUp .8s var(--ease-out-expo) .4s both;
    }

    .h-d4 {
      animation: fadeUp .8s var(--ease-out-expo) .55s both;
    }

    .h-d5 {
      animation: fadeUp .8s var(--ease-out-expo) .7s both;
    }

    .h-dv {
      animation: fadeIn 1s var(--ease-out-expo) .3s both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* ═══════════════════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════════════════ */
    .marquee-wrap {
      overflow: hidden;
      padding: 20px 0;
      border-top: 1px solid var(--cream-08);
      border-bottom: 1px solid var(--cream-08);
    }

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

    .marquee-track span {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 400;
      font-style: italic;
      color: var(--cream-08);
      white-space: nowrap;
      padding: 0 32px;
    }

    .marquee-track .sep {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(212, 175, 55, .25);
      vertical-align: middle;
      margin: 0 28px;
    }

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

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

    /* ═══════════════════════════════════════════════════
       À PROPOS
    ═══════════════════════════════════════════════════ */
    .apropos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    @media (min-width:1024px) {
      .apropos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
      }
    }

    .apropos-text p {
      color: var(--cream-40);
      font-size: .95rem;
      line-height: 1.85;
      margin-bottom: 32px;
      max-width: 480px;
    }

    .apropos-text .hl {
      color: var(--cream-60);
      font-weight: 500;
    }

    .info-card {
      border-radius: var(--radius-lg);
      padding: 22px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .info-icon {
      width: 46px;
      height: 46px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      background: rgba(212, 175, 55, .08);
      border: 1px solid rgba(212, 175, 55, .15);
    }

    .info-card h3 {
      font-size: .9rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .info-card p {
      font-size: .82rem;
      color: var(--cream-40);
      line-height: 1.65;
    }

    .formation-card {
      border-radius: var(--radius-lg);
      padding: 28px;
    }

    .formation-card h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .form-item {
      padding: 10px 0 10px 18px;
      border-left: 2px solid var(--cream-08);
      margin-bottom: 12px;
    }

    .form-item.current {
      border-left-color: var(--gold);
    }

    .form-item h4 {
      font-size: .87rem;
      font-weight: 600;
    }

    .tag-now {
      display: inline-block;
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 2px 10px;
      border-radius: var(--radius-full);
      background: rgba(212, 175, 55, .1);
      border: 1px solid rgba(212, 175, 55, .25);
      color: var(--gold-light);
      margin-left: 8px;
      vertical-align: middle;
    }

    .form-item p {
      font-size: .76rem;
      color: var(--cream-25);
      margin-top: 4px;
    }

    .activism-card {
      border-radius: var(--radius-lg);
      padding: 28px;
      background: linear-gradient(135deg, rgba(0, 212, 170, .04), transparent);
      border: 1px solid rgba(0, 212, 170, .12);
    }

    .activism-card h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .activism-card p {
      font-size: .84rem;
      color: var(--cream-40);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════
       TIMELINE / PARCOURS
    ═══════════════════════════════════════════════════ */
    .timeline {
      position: relative;
      padding-left: 32px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), var(--cream-08) 70%, transparent);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 40px;
    }

    .timeline-item:last-child {
      margin-bottom: 0;
    }

    .timeline-dot {
      position: absolute;
      left: -32px;
      top: 4px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--ink-950);
      border: 2px solid var(--gold);
      z-index: 1;
      transition: all .3s ease;
    }

    .timeline-item:hover .timeline-dot {
      background: var(--gold);
      box-shadow: 0 0 12px rgba(212, 175, 55, .4);
    }

    .timeline-year {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .timeline-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .timeline-desc {
      font-size: .84rem;
      color: var(--cream-40);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════
       EXPERTISES
    ═══════════════════════════════════════════════════ */
    .expertise-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    @media (min-width:640px) {
      .expertise-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width:1024px) {
      .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .expertise-card {
      border-radius: var(--radius-lg);
      padding: 30px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      overflow: hidden;
      transition: all .5s var(--ease-out-expo);
    }

    .expertise-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, .25);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    }

    .expertise-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(212, 175, 55, .06), transparent);
      opacity: 0;
      transition: opacity .4s ease;
      pointer-events: none;
    }

    .expertise-card:hover::after {
      opacity: 1;
    }

    .expertise-card .icon {
      font-size: 1.8rem;
      position: relative;
      z-index: 1;
    }

    .expertise-card h3 {
      font-size: .92rem;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    .expertise-card ul {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      z-index: 1;
    }

    .expertise-card li {
      font-size: .78rem;
      color: var(--cream-25);
      padding-left: 16px;
      position: relative;
    }

    .expertise-card li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: .5;
      transform: translateY(-50%);
    }

    /* ═══════════════════════════════════════════════════
       PROJETS
    ═══════════════════════════════════════════════════ */
    .projects-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width:640px) {
      .projects-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width:1200px) {
      .projects-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .project-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      transition: all .5s var(--ease-out-expo);
    }

    .project-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, .2);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
    }

    .project-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, var(--ink-800), var(--ink-950));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .project-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s var(--ease-out-expo);
    }

    .project-card:hover .project-thumb img {
      transform: scale(1.06);
    }

    .project-thumb .overlay-g {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--ink-950), transparent 60%);
      pointer-events: none;
    }

    .project-thumb .emoji-ph {
      font-size: 3rem;
      opacity: .18;
      user-select: none;
    }

    .project-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .project-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .project-date {
      font-size: .68rem;
      color: var(--cream-25);
      font-weight: 500;
    }

    .project-body h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 1.3;
    }

    .project-body>p {
      font-size: .83rem;
      color: var(--cream-25);
      line-height: 1.7;
      flex: 1;
    }

    .project-cta {
      font-size: .74rem;
      font-weight: 600;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap .3s ease;
    }

    .project-card:hover .project-cta {
      gap: 10px;
    }

    .loader-dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      padding: 60px 0;
    }

    .loader-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      animation: dotBounce 1.2s ease infinite;
    }

    .loader-dots span:nth-child(2) {
      animation-delay: .2s;
    }

    .loader-dots span:nth-child(3) {
      animation-delay: .4s;
    }

    @keyframes dotBounce {

      0%,
      80%,
      100% {
        transform: scale(.6);
        opacity: .3;
      }

      40% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* ═══════════════════════════════════════════════════
       TÉMOIGNAGES
    ═══════════════════════════════════════════════════ */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width:768px) {
      .testimonials-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width:1200px) {
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .testimonial-card {
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      transition: all .4s var(--ease-out-expo);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: rgba(212, 175, 55, .18);
    }

    .testimonial-quote {
      font-size: 2rem;
      color: var(--gold);
      opacity: .3;
      line-height: 1;
      margin-bottom: 12px;
      font-family: var(--font-display);
    }

    .testimonial-text {
      font-size: .88rem;
      color: var(--cream-40);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(212, 175, 55, .12), rgba(0, 212, 170, .08));
      border: 1px solid rgba(212, 175, 55, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      font-weight: 600;
      color: var(--gold-light);
    }

    .testimonial-name {
      font-size: .82rem;
      font-weight: 600;
    }

    .testimonial-role {
      font-size: .72rem;
      color: var(--cream-25);
    }

    /* ═══════════════════════════════════════════════════
   GALERIE — Editorial mosaic (pro + UX-first)
═══════════════════════════════════════════════════ */

    /* Section spacing fix */
    #galerie {
      padding-bottom: 70px;
    }

    @media (max-width:768px) {
      #galerie {
        padding-bottom: 50px;
      }
    }

    #galerie+.section-divider {
      display: none;
    }

    #contact {
      padding-top: 80px;
    }

    @media (max-width:768px) {
      #contact {
        padding-top: 60px;
      }
    }

    .galerie-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 180px;
      grid-auto-flow: dense;
      gap: 12px;
    }

    @media (min-width:640px) {
      .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
        gap: 14px;
      }
    }

    @media (min-width:1024px) {
      .galerie-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 16px;
      }
    }

    /* Subtle asymmetry — only a few accent tiles, dense flow fills gaps */
    .galerie-item:nth-child(7n+1) {
      grid-row: span 2;
    }

    @media (min-width:1024px) {
      .galerie-item:nth-child(9n+5) {
        grid-column: span 2;
      }
    }

    .galerie-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      background: linear-gradient(135deg, #14141c 0%, #0c0c12 100%);
      border: 1px solid var(--cream-08);
      isolation: isolate;
      transition: transform .5s var(--ease-out-expo),
        border-color .4s ease,
        box-shadow .5s ease;
    }

    /* Skeleton shimmer while image loads (behind image) */
    .galerie-item::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(110deg, #14141c 25%, #1d1d28 50%, #14141c 75%);
      background-size: 200% 100%;
      animation: skelShimmer 1.6s ease-in-out infinite;
    }

    @keyframes skelShimmer {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }

    /* Permanent gradient for caption legibility */
    .galerie-item::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background: linear-gradient(180deg,
          rgba(6, 6, 10, .35) 0%,
          transparent 25%,
          transparent 55%,
          rgba(6, 6, 10, .75) 92%,
          rgba(6, 6, 10, .95) 100%);
      transition: opacity .5s ease;
    }

    .galerie-item:hover {
      transform: translateY(-3px);
      border-color: rgba(212, 175, 55, .4);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(212, 175, 55, .3),
        0 0 40px rgba(212, 175, 55, .12);
    }

    .galerie-item img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(.95) brightness(.92);
      transition: transform 1s var(--ease-out-expo),
        filter .5s ease;
    }

    .galerie-item:hover img {
      transform: scale(1.07);
      filter: saturate(1.08) brightness(1);
    }

    /* Number label — editorial magazine touch */
    .galerie-item .gal-num {
      position: absolute;
      top: 14px;
      left: 16px;
      z-index: 4;
      font-family: var(--font-display);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .15em;
      color: rgba(242, 237, 228, .55);
      text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
      transition: color .4s ease;
    }

    .galerie-item:hover .gal-num {
      color: var(--gold-light);
    }

    /* Caption — always visible, lifts up on hover */
    .galerie-item .caption-ov {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 4;
      padding: 16px 18px 18px;
      transform: translateY(0);
      transition: transform .5s var(--ease-out-expo);
    }

    .galerie-item:hover .caption-ov {
      transform: translateY(-4px);
    }

    .caption-ov::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 8px;
      transition: width .5s var(--ease-out-expo);
    }

    .galerie-item:hover .caption-ov::before {
      width: 40px;
    }

    .caption-ov span {
      display: block;
      font-family: var(--font-display);
      font-style: italic;
      font-size: .92rem;
      line-height: 1.35;
      color: var(--cream);
      text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
    }

    /* Zoom badge — top-right */
    .galerie-item .zoom-ic {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 5;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(6, 6, 10, .55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(242, 237, 228, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream);
      font-size: .78rem;
      opacity: 0;
      transform: scale(.8);
      transition: all .45s var(--ease-spring);
    }

    .galerie-item:hover .zoom-ic {
      opacity: 1;
      transform: scale(1);
      background: rgba(212, 175, 55, .95);
      color: var(--ink-950);
      border-color: var(--gold-light);
      box-shadow: 0 4px 16px rgba(212, 175, 55, .35);
    }

    /* Keyboard focus */
    .galerie-item:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    .galerie-link {
      text-align: center;
      margin-top: 32px;
      font-size: .85rem;
      color: var(--cream-25);
    }

    .galerie-link a {
      color: var(--gold);
      font-weight: 500;
      transition: opacity .3s;
    }

    .galerie-link a:hover {
      opacity: .7;
    }

    /* ═══════════════════════════════════════════════════
   MARQUEE — Refined illuminated text
═══════════════════════════════════════════════════ */
    .marquee-wrap {
      position: relative;
      padding: 16px 0;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(212, 175, 55, .02) 50%,
          transparent 100%);
    }

    .marquee-wrap::before,
    .marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 160px;
      z-index: 2;
      pointer-events: none;
    }

    .marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--ink-950) 0%, transparent 100%);
    }

    .marquee-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--ink-950) 0%, transparent 100%);
    }

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

    .marquee-track span {
      background: linear-gradient(90deg,
          rgba(242, 237, 228, .04) 0%,
          rgba(212, 175, 55, .25) 40%,
          var(--gold-light) 50%,
          rgba(212, 175, 55, .25) 60%,
          rgba(242, 237, 228, .04) 100%);
      background-size: 250% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shineMarquee 8s linear infinite;
      text-shadow: 0 0 50px rgba(212, 175, 55, .06);
    }

    .marquee-track .sep {
      width: 5px !important;
      height: 5px !important;
      background: radial-gradient(circle, var(--gold-light) 0%, rgba(212, 175, 55, .4) 60%, transparent 100%) !important;
      box-shadow: 0 0 10px rgba(212, 175, 55, .4), 0 0 20px rgba(212, 175, 55, .15);
      animation: pulseSep 3s ease infinite;
    }

    @keyframes shineMarquee {
      0% {
        background-position: 250% 0;
      }

      100% {
        background-position: -250% 0;
      }
    }

    @keyframes pulseSep {

      0%,
      100% {
        opacity: .5;
        transform: scale(.9);
      }

      50% {
        opacity: 1;
        transform: scale(1.15);
      }
    }

    /* ═══════════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    @media (min-width:1024px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
      }
    }

    .contact-info>p {
      font-size: .95rem;
      color: var(--cream-40);
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 32px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px;
      border-radius: var(--radius-md);
      background: var(--cream-04);
      border: 1px solid var(--cream-08);
      transition: all .4s var(--ease-out-expo);
    }

    .contact-item:hover {
      transform: translateX(6px);
      border-color: rgba(212, 175, 55, .2);
      background: rgba(242, 237, 228, .06);
    }

    .ci-icon {
      width: 46px;
      height: 46px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      background: rgba(212, 175, 55, .08);
      border: 1px solid rgba(212, 175, 55, .15);
    }

    .ci-label {
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cream-25);
      margin-bottom: 3px;
    }

    .ci-value {
      font-size: .88rem;
      color: var(--cream-60);
    }

    /* CV Download */
    .cv-download {
      margin-top: 24px;
    }

    .cv-download .btn-ghost {
      font-size: .78rem;
      gap: 8px;
      padding: 12px 24px;
    }

    .contact-form-card {
      border-radius: var(--radius-xl);
      padding: 36px;
    }

    .contact-form-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    @media (min-width:480px) {
      .form-row.half {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-label {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cream-25);
    }

    .form-label .req {
      color: rgba(212, 175, 55, .6);
    }

    .form-input {
      width: 100%;
      font-family: var(--font-body);
      font-size: .87rem;
      color: var(--cream);
      padding: 13px 16px;
      border-radius: 10px;
      background: var(--cream-04);
      border: 1px solid var(--cream-08);
      outline: none;
      transition: all .3s ease;
    }

    .form-input::placeholder {
      color: var(--cream-15);
    }

    .form-input:focus {
      border-color: rgba(212, 175, 55, .35);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, .08);
    }

    textarea.form-input {
      resize: vertical;
    }

    .status-ok {
      font-size: .85rem;
      text-align: center;
      padding: 10px 16px;
      border-radius: var(--radius-md);
      background: rgba(0, 212, 170, .08);
      border: 1px solid rgba(0, 212, 170, .2);
      color: var(--teal);
      margin-top: 12px;
    }

    .status-err {
      font-size: .85rem;
      text-align: center;
      padding: 10px 16px;
      border-radius: var(--radius-md);
      background: rgba(239, 68, 68, .08);
      border: 1px solid rgba(239, 68, 68, .2);
      color: #F87171;
      margin-top: 12px;
    }

    .hidden {
      display: none !important;
    }

    /* ═══════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════ */
    .footer {
      border-top: 1px solid var(--cream-08);
      padding: 28px 0;
      background: var(--ink-950);
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      font-size: .75rem;
      color: var(--cream-15);
    }

    @media (min-width:640px) {
      .footer-inner {
        flex-direction: row;
      }
    }

    .footer-inner a {
      color: var(--cream-15);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      transition: all .25s ease;
      font-weight: 500;
    }

    .footer-inner a:hover {
      color: var(--gold);
      background: var(--cream-04);
    }

    /* ═══════════════════════════════════════════════════
       MODAL
    ═══════════════════════════════════════════════════ */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, .82);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .modal-card {
      background: var(--ink-800);
      border: 1px solid var(--cream-08);
      border-radius: var(--radius-xl);
      width: 100%;
      max-width: 660px;
      max-height: 90vh;
      overflow-y: auto;
      animation: modalIn .4s var(--ease-spring) both;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, .1) transparent;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 28px 28px 20px;
      border-bottom: 1px solid var(--cream-08);
    }

    .modal-header h2 {
      font-family: var(--font-display);
      font-size: 1.7rem;
      font-weight: 500;
      line-height: 1.25;
    }

    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--cream-40);
      flex-shrink: 0;
      transition: all .25s ease;
    }

    .modal-close:hover {
      color: var(--cream);
      background: var(--cream-08);
    }

    .modal-body {
      padding: 28px;
    }

    .modal-body>*+* {
      margin-top: 24px;
    }

    .modal-img-wrap {
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 16/9;
      background: var(--ink-950);
    }

    .modal-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-slabel {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .modal-slabel::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--cream-08);
    }

    .modal-text {
      font-size: .87rem;
      color: var(--cream-40);
      line-height: 1.7;
    }

    .modal-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .modal-li {
      font-size: .84rem;
      color: var(--cream-40);
      line-height: 1.65;
      padding-left: 20px;
      position: relative;
    }

    .modal-li::before {
      content: '✦';
      position: absolute;
      left: 0;
      top: 5px;
      color: var(--gold);
      font-size: .42rem;
    }

    .modal-result {
      padding: 14px 18px;
      border-radius: var(--radius-md);
      background: rgba(0, 212, 170, .06);
      border: 1px solid rgba(0, 212, 170, .18);
      color: var(--teal);
      font-size: .87rem;
      line-height: 1.6;
    }

    .modal-fmeta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 20px;
      border-top: 1px solid var(--cream-08);
      font-size: .78rem;
      color: var(--cream-25);
    }

    .modal-fmeta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ═══════════════════════════════════════════════════
       LIGHTBOX (with nav arrows)
    ═══════════════════════════════════════════════════ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(0, 0, 0, .92);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    }

    .lb-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--cream-60);
      z-index: 10;
      transition: all .25s ease;
    }

    .lb-close:hover {
      color: var(--cream);
      background: rgba(255, 255, 255, .1);
    }

    .lb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--cream-60);
      transition: all .25s ease;
      z-index: 10;
    }

    .lb-arrow:hover {
      color: var(--cream);
      background: rgba(255, 255, 255, .1);
    }

    .lb-prev {
      left: 16px;
    }

    .lb-next {
      right: 16px;
    }

    .lb-caption {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1rem;
      color: var(--cream-40);
      text-align: center;
      padding: 0 16px;
      pointer-events: none;
    }

    .lb-counter {
      position: absolute;
      top: 24px;
      left: 24px;
      font-size: .72rem;
      color: var(--cream-25);
      font-weight: 500;
    }

    /* ═══════════════════════════════════════════════════
       SCROLL TOP
    ═══════════════════════════════════════════════════ */
    .scroll-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 50;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--ink-950);
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 4px 24px rgba(212, 175, 55, .3);
      opacity: 0;
      pointer-events: none;
      transition: all .4s var(--ease-out-expo);
    }

    .scroll-top.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 32px rgba(212, 175, 55, .45);
    }