﻿    :root {
      --app-height: 100svh;
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --gold-dim: #8a6f2e;
      --dark: #0a0807;
      --dark-2: #120f0a;
      --dark-3: #1c1610;
      --dark-4: #261e14;
      --cream: #f5efe6;
      --cream-dim: #c8bfb0;
      --white: #ffffff;
      --sky: #8fb4c4;
      --sky-soft: #dbe9ee;
      --ink: #221913;
      --surface-border: rgba(201, 168, 76, 0.14);
      --nav-bg: rgba(10, 8, 7, 0.82);
      --nav-bg-scrolled: rgba(10, 8, 7, 0.92);
      --hero-overlay-top: rgba(10, 8, 7, 0.5);
      --hero-overlay-mid: rgba(10, 8, 7, 0.3);
      --hero-overlay-bottom: rgba(10, 8, 7, 0.7);
      --hero-lockup-offset: clamp(12px, 1vw, 22px);
      --arrival-focus-x: 50%;
      --arrival-focus-y: 28%;
      --arrival-core: rgba(236, 210, 154, 0.12);
      --arrival-ambient: rgba(201, 168, 76, 0.08);
      --arrival-orb-a: rgba(232, 198, 128, 0.14);
      --arrival-orb-b: rgba(244, 229, 194, 0.08);
      --arrival-beam: rgba(232, 208, 138, 0.14);
      --arrival-shimmer: rgba(245, 239, 230, 0.5);
      --loader-bg: #000000;
      --loader-vignette: rgba(0, 0, 0, 0.14);
      --loader-frame: rgba(201, 168, 76, 0.08);
      --loader-welcome-color: #c8bfb0;
      --loader-wordmark-color: #e8d08a;
      --loader-subtitle-color: #f5efe6;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      transition: background 0.45s ease, color 0.45s ease;
    }

    body[data-theme="light"] {
      --gold: #498aa8;
      --gold-light: #5c94ad;
      --gold-dim: #2c231d;
      --dark: #fbf4ea;
      --dark-2: #e6d5bf;
      --dark-3: #fffdf9;
      --dark-4: #d4b89a;
      --cream: #100b08;
      --cream-dim: #302721;
      --white: #080604;
      --sky: #498aa8;
      --sky-soft: #bcd4df;
      --ink: #100b08;
      --surface-border: rgba(73, 138, 168, 0.42);
      --nav-bg: rgba(248, 241, 232, 0.84);
      --nav-bg-scrolled: rgba(248, 241, 232, 0.94);
      --hero-overlay-top: rgba(241, 231, 216, 0.08);
      --hero-overlay-mid: rgba(200, 221, 231, 0.08);
      --hero-overlay-bottom: rgba(225, 211, 192, 0.22);
      --loader-bg: #000000;
      --loader-vignette: rgba(0, 0, 0, 0.14);
      --loader-frame: rgba(201, 168, 76, 0.08);
      --loader-welcome-color: #c8bfb0;
      --loader-wordmark-color: #e8d08a;
      --loader-subtitle-color: #f5efe6;
    }

    body[data-theme="emerald"] {
      --gold: #c4b27a;
      --gold-light: #e2d7aa;
      --gold-dim: #91845d;
      --dark: #0f4338;
      --dark-2: #133d34;
      --dark-3: #174a3f;
      --dark-4: #1d5a4d;
      --cream: #f1ead7;
      --cream-dim: #cabf9f;
      --white: #fff7e7;
      --sky: #2f7967;
      --sky-soft: #89ab9f;
      --ink: #0e221d;
      --surface-border: rgba(196, 178, 122, 0.16);
      --nav-bg: rgba(15, 67, 56, 0.84);
      --nav-bg-scrolled: rgba(15, 67, 56, 0.94);
      --hero-overlay-top: rgba(10, 42, 36, 0.36);
      --hero-overlay-mid: rgba(15, 67, 56, 0.16);
      --hero-overlay-bottom: rgba(8, 34, 29, 0.54);
      --arrival-focus-x: 52%;
      --arrival-focus-y: 26%;
      --arrival-core: rgba(226, 215, 170, 0.1);
      --arrival-ambient: rgba(196, 178, 122, 0.07);
      --arrival-orb-a: rgba(226, 215, 170, 0.1);
      --arrival-orb-b: rgba(137, 171, 159, 0.08);
      --arrival-beam: rgba(213, 196, 140, 0.12);
      --arrival-shimmer: rgba(245, 236, 208, 0.5);
      --loader-bg: linear-gradient(180deg, #15453a 0%, #10362f 44%, #08241f 100%);
      --loader-vignette: rgba(6, 22, 19, 0.22);
      --loader-frame: rgba(201, 168, 76, 0.08);
      --loader-welcome-color: #c8bfb0;
      --loader-wordmark-color: #e8d08a;
      --loader-subtitle-color: #f5efe6;
    }

    body[data-arrival-mode="dawn"] {
      --arrival-focus-x: 38%;
      --arrival-focus-y: 24%;
      --arrival-core: rgba(240, 212, 170, 0.14);
      --arrival-ambient: rgba(216, 162, 106, 0.08);
      --arrival-shimmer: rgba(255, 233, 198, 0.54);
    }

    body[data-arrival-mode="day"] {
      --arrival-focus-x: 50%;
      --arrival-focus-y: 20%;
      --arrival-core: rgba(246, 235, 208, 0.1);
      --arrival-ambient: rgba(224, 212, 184, 0.06);
      --arrival-shimmer: rgba(255, 248, 232, 0.46);
    }

    body[data-arrival-mode="sunset"] {
      --arrival-focus-x: 64%;
      --arrival-focus-y: 28%;
      --arrival-core: rgba(226, 183, 120, 0.15);
      --arrival-ambient: rgba(186, 124, 72, 0.09);
      --arrival-shimmer: rgba(245, 214, 166, 0.58);
    }

    body[data-arrival-mode="night"] {
      --arrival-focus-x: 54%;
      --arrival-focus-y: 24%;
      --arrival-core: rgba(182, 153, 109, 0.08);
      --arrival-ambient: rgba(101, 78, 54, 0.08);
      --arrival-shimmer: rgba(228, 204, 152, 0.42);
    }

    body[data-theme="emerald"][data-arrival-mode="dawn"] {
      --arrival-focus-x: 44%;
      --arrival-focus-y: 24%;
      --arrival-core: rgba(230, 217, 176, 0.11);
      --arrival-ambient: rgba(196, 178, 122, 0.07);
      --arrival-shimmer: rgba(246, 239, 214, 0.5);
    }

    body[data-theme="emerald"][data-arrival-mode="day"] {
      --arrival-focus-x: 50%;
      --arrival-focus-y: 21%;
      --arrival-core: rgba(235, 228, 198, 0.08);
      --arrival-ambient: rgba(196, 178, 122, 0.05);
      --arrival-shimmer: rgba(248, 242, 223, 0.42);
    }

    body[data-theme="emerald"][data-arrival-mode="sunset"] {
      --arrival-focus-x: 58%;
      --arrival-focus-y: 27%;
      --arrival-core: rgba(219, 193, 132, 0.12);
      --arrival-ambient: rgba(196, 178, 122, 0.07);
      --arrival-shimmer: rgba(240, 220, 176, 0.54);
    }

    body[data-theme="emerald"][data-arrival-mode="night"] {
      --arrival-focus-x: 52%;
      --arrival-focus-y: 25%;
      --arrival-core: rgba(188, 170, 120, 0.08);
      --arrival-ambient: rgba(118, 97, 68, 0.07);
      --arrival-shimmer: rgba(224, 200, 150, 0.38);
    }

    
    .cursor,
    .cursor-ring {
      display: none;
    }

    @media (pointer: fine) {

      .cursor,
      .cursor-ring {
        display: block;
      }

      .cursor {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
      }

      .cursor-ring {
        position: fixed;
        width: 32px;
        height: 32px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.18s ease;
        opacity: 0.6;
      }
    }

    
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 60px;
      transition: background 0.5s ease, padding 0.4s ease;
    }

    nav.scrolled {
      background: var(--nav-bg-scrolled);
      backdrop-filter: blur(12px);
      padding: 18px 60px;
      border-bottom: 1px solid var(--surface-border);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 300;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-decoration: none;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--cream-dim);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    a[href^="tel"] {
      color: inherit;
      text-decoration: none;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(201, 168, 76, 0.35);
      background: var(--nav-bg);
      color: var(--gold);
      border-radius: 999px;
      cursor: pointer;
    }

    .menu-toggle svg {
      pointer-events: none;
    }

    .nav-meta {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .theme-switcher {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 42px;
      padding: 5px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 999px;
      background: var(--nav-bg);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(12px);
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.28s ease;
    }

    .theme-option {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-width: 94px;
      height: 30px;
      padding: 0 12px;
      border: none;
      border-radius: 999px;
      background: transparent;
      color: var(--cream-dim);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.56rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    body.theme-switching .theme-switcher {
      transform: scale(0.985);
    }

    body.theme-switching .theme-option.active {
      animation: themeOptionPulse 0.38s ease;
    }

    @keyframes themeOptionPulse {
      0% {
        transform: scale(0.96);
      }

      55% {
        transform: scale(1.04);
      }

      100% {
        transform: scale(1);
      }
    }

    .theme-option:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-1px);
    }

    .theme-option.active {
      background: rgba(201, 168, 76, 0.14);
      color: var(--gold-light);
      box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.12);
    }

    .theme-swatch {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      flex: 0 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

    .theme-option[data-theme-option="dark"] .theme-swatch {
      background: linear-gradient(135deg, #090807, #1d1710);
    }

    .theme-option[data-theme-option="emerald"] .theme-swatch {
      background: linear-gradient(135deg, #0f4a3f, #1b6757);
    }

    .theme-option[data-theme-option="light"] .theme-swatch {
      background: linear-gradient(135deg, #f7ecde, #5c94ad);
    }

    .theme-option-label {
      margin-right: -0.22em;
    }

    .lang-switcher {
      display: flex;
      gap: 12px;
    }

    .lang-btn {
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: var(--cream-dim);
      transition: color 0.3s;
      text-transform: uppercase;
      padding: 4px 0;
      border-bottom: 1px solid transparent;
    }

    .lang-btn.active,
    .lang-btn:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    
    #hero {
      position: relative;
      min-height: 100svh;
      height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at var(--arrival-focus-x) var(--arrival-focus-y), var(--arrival-core) 0%, transparent 32%),
        radial-gradient(circle at 24% 74%, var(--arrival-ambient) 0%, transparent 26%),
        radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.35;
    }

    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, var(--hero-overlay-top) 0%, var(--hero-overlay-mid) 50%, var(--hero-overlay-bottom) 100%);
      z-index: 1;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-line-left,
    .hero-line-right {
      position: absolute;
      top: 50%;
      width: 1px;
      background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
      transform: translateY(-50%);
      animation: lineReveal 2s ease forwards;
      animation-delay: 0.8s;
      opacity: 0;
    }

    .hero-line-left {
      left: 60px;
      height: 0;
    }

    .hero-line-right {
      right: 60px;
      height: 0;
    }

    @keyframes lineReveal {
      to {
        height: 340px;
        opacity: 1;
      }
    }

    .hero-content {
      text-align: center;
      position: relative;
      z-index: 2;
      transform: translateX(var(--hero-lockup-offset));
    }

    .hero-eyebrow {
      font-size: 0.6rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.3s;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(5rem, 14vw, 11rem);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: 0.15em;
      color: var(--white);
      opacity: 0;
      animation: fadeUp 1.2s ease forwards;
      animation-delay: 0.5s;
      text-transform: uppercase;
    }

    .hero-title span {
      display: block;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      color: var(--cream-dim);
      text-transform: uppercase;
      margin-top: 24px;
      opacity: 0;
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.9s;
    }

    .hero-divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 28px auto;
      opacity: 0;
      animation: fadeUp 1s ease forwards;
      animation-delay: 1.1s;
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      font-weight: 300;
      color: var(--cream-dim);
      opacity: 0;
      animation: fadeUp 1s ease forwards;
      animation-delay: 1.2s;
    }

    .hero-cta {
      margin-top: 48px;
      opacity: 0;
      animation: fadeUp 1s ease forwards;
      animation-delay: 1.4s;
    }

    .btn-gold {
      display: inline-block;
      padding: 14px 48px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: -1;
    }

    .btn-gold:hover {
      color: var(--dark);
    }

    .btn-gold:hover::before {
      transform: scaleX(1);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(calc(-50% + var(--hero-lockup-offset)));
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1s ease forwards;
      animation-delay: 2s;
    }

    .scroll-indicator span {
      font-size: 0.5rem;
      letter-spacing: 0.3em;
      color: var(--gold-dim);
      text-transform: uppercase;
    }

    .scroll-indicator > span {
      display: block;
      text-align: center;
    }

    .scroll-indicator [data-lang].active {
      display: inline-block;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.3;
        transform: scaleY(0.8);
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    section {
      padding: 120px 60px;
    }

    .section-label {
      font-size: 0.55rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 20px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    .gold-rule {
      width: 50px;
      height: 1px;
      background: var(--gold);
      margin: 28px 0;
    }

    
    #about {
      background: var(--dark-2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .about-visual {
      position: relative;
      padding: 0 18px 18px 0;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      inset: 26px 0 0 26px;
      background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.08), transparent 48%);
      filter: blur(16px);
      pointer-events: none;
    }

    .about-img-frame {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--dark-3);
      border: 1px solid var(--surface-border);
      position: relative;
      overflow: hidden;
      border-radius: 34px 10px 34px 10px;
      box-shadow: 0 28px 54px rgba(0, 0, 0, 0.16);
    }

    
    .about-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      z-index: 0;
      transform: scale(1.035);
      transform-origin: center;
      filter: saturate(1.04) contrast(1.03) brightness(0.97);
      transition: transform 0.6s ease, filter 0.6s ease;
    }

    .about-img-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 26%, rgba(201, 168, 76, 0.14) 0%, transparent 58%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.06), rgba(10, 8, 7, 0.22));
      pointer-events: none;
      z-index: 1;
    }

    .about-img-frame::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(201, 168, 76, 0.14);
      border-radius: 22px 8px 22px 8px;
      pointer-events: none;
      z-index: 1;
    }

    .about-img-frame:hover .about-photo {
      transform: scale(1.06);
      filter: saturate(1.08) contrast(1.04) brightness(0.99);
    }

    .corner {
      position: absolute;
      width: 30px;
      height: 30px;
      border-color: var(--gold);
      border-style: solid;
      border-width: 0;
      z-index: 2;
    }

    .corner.tl {
      top: 16px;
      left: 16px;
      border-top-width: 1px;
      border-left-width: 1px;
    }

    .corner.tr {
      top: 16px;
      right: 16px;
      border-top-width: 1px;
      border-right-width: 1px;
    }

    .corner.bl {
      bottom: 16px;
      left: 16px;
      border-bottom-width: 1px;
      border-left-width: 1px;
    }

    .corner.br {
      bottom: 16px;
      right: 16px;
      border-bottom-width: 1px;
      border-right-width: 1px;
    }

    .about-img-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
    }

    .about-img-inner .venue-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      color: var(--gold-dim);
      opacity: 0.4;
    }

    .about-badge {
      position: absolute;
      bottom: -18px;
      right: -18px;
      width: 112px;
      height: 112px;
      background: var(--dark-4);
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2px;
      padding: 10px 10px 12px;
      z-index: 3;
      border-radius: 22px 0 22px 0;
      box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
      text-align: center;
    }

    .about-badge .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.3rem;
      color: var(--gold);
      line-height: 0.9;
      transform: translateY(-3px);
    }

    .about-badge .lbl {
      font-size: 0.52rem;
      line-height: 1.1;
      letter-spacing: 0.09em;
      color: var(--cream-dim);
      text-transform: uppercase;
      max-width: 7ch;
    }

    .about-text p {
      font-size: 0.85rem;
      line-height: 2;
      color: var(--cream-dim);
      margin-bottom: 20px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
      border-top: 1px solid rgba(201, 168, 76, 0.15);
      padding-top: 40px;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.55rem;
      letter-spacing: 0.25em;
      color: var(--cream-dim);
      text-transform: uppercase;
      margin-top: 6px;
    }

    #signature-experience {
      background: var(--dark);
    }

    .experience-header {
      max-width: 900px;
      margin: 0 auto 78px;
      text-align: center;
    }

    .experience-header .gold-rule {
      margin: 28px auto;
    }

    .experience-intro {
      max-width: 720px;
      margin: 0 auto;
      font-size: 0.84rem;
      line-height: 2;
      color: var(--cream-dim);
    }

    .experience-stage-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      max-width: 1360px;
      margin: 0 auto;
    }

    .experience-stage {
      position: relative;
      min-height: 320px;
      padding: 38px 28px 34px;
      border: 1px solid var(--surface-border);
      background: linear-gradient(180deg, var(--dark-3), var(--dark-4));
      overflow: hidden;
      transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    }

    .experience-stage::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.07) 0%, transparent 52%);
      pointer-events: none;
    }

    .experience-stage:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 168, 76, 0.32);
    }

    .experience-stage:nth-child(2) {
      margin-top: 42px;
    }

    .experience-stage:nth-child(3) {
      margin-top: 86px;
    }

    .experience-stage:nth-child(4) {
      margin-top: 128px;
    }

    .experience-stage-index {
      display: block;
      margin-bottom: 26px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      line-height: 0.9;
      color: rgba(201, 168, 76, 0.2);
    }

    .experience-stage-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 18px;
    }

    .experience-stage-copy {
      font-size: 0.76rem;
      line-height: 1.95;
      color: var(--cream-dim);
    }

    
    #gallery {
      background: var(--dark);
      padding-bottom: 80px;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .gallery-header .gold-rule {
      margin: 28px auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .gallery-launch {
      max-width: 760px;
      margin: 44px auto 0;
      text-align: center;
    }

    .gallery-launch-copy {
      max-width: 48ch;
      margin: 0 auto 22px;
      font-size: 0.78rem;
      line-height: 1.95;
      color: var(--cream-dim);
    }

    .gallery-launch-btn {
      min-width: 280px;
    }

    body.is-gallery-lightbox-open {
      overflow: hidden;
    }

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      background: rgba(6, 5, 4, 0.9);
      backdrop-filter: blur(16px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .gallery-lightbox.visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .gallery-lightbox-shell {
      width: min(100%, 1460px);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
    }

    .gallery-lightbox-stage {
      min-width: 0;
    }

    .gallery-lightbox-media {
      position: relative;
      width: 100%;
      min-height: min(72vh, 860px);
      border-radius: 34px 12px 34px 12px;
      overflow: hidden;
      border: 1px solid rgba(201, 168, 76, 0.18);
      box-shadow: 0 38px 86px rgba(0, 0, 0, 0.32);
      background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.08), transparent 28%),
        rgba(13, 10, 8, 0.92);
    }

    .gallery-lightbox-media::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(201, 168, 76, 0.12);
      border-radius: 24px 10px 24px 10px;
      pointer-events: none;
    }

    .gallery-lightbox-media img {
      display: block;
      width: 100%;
      height: min(72vh, 860px);
      object-fit: contain;
    }

    .gallery-lightbox-media.is-next img {
      animation: galleryLightboxSlideNext 0.36s ease both;
    }

    .gallery-lightbox-media.is-prev img {
      animation: galleryLightboxSlidePrev 0.36s ease both;
    }

    .gallery-lightbox-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 16px;
      padding: 0 4px;
    }

    .gallery-lightbox-caption {
      font-size: 0.72rem;
      line-height: 1.8;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--cream);
    }

    .gallery-lightbox-count {
      flex-shrink: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      color: var(--gold);
    }

    .gallery-lightbox-nav,
    .gallery-lightbox-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(201, 168, 76, 0.22);
      background: rgba(17, 13, 10, 0.7);
      color: var(--gold-light);
      backdrop-filter: blur(10px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
      cursor: pointer;
    }

    .gallery-lightbox-nav:hover,
    .gallery-lightbox-close:hover {
      transform: translateY(-2px);
      background: rgba(27, 21, 17, 0.84);
      border-color: rgba(201, 168, 76, 0.38);
    }

    .gallery-lightbox-nav {
      width: 58px;
      height: 58px;
      border-radius: 999px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      line-height: 1;
    }

    .gallery-lightbox-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 54px;
      height: 54px;
      border-radius: 999px;
      font-size: 2rem;
      line-height: 1;
      z-index: 2;
    }

    .gallery-lightbox-close span {
      transform: translateY(-1px);
    }

    @keyframes galleryLightboxSlideNext {
      from {
        opacity: 0;
        transform: translateX(34px) scale(0.985);
      }

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

    @keyframes galleryLightboxSlidePrev {
      from {
        opacity: 0;
        transform: translateX(-34px) scale(0.985);
      }

      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    .g-item {
      --gallery-shell-radius: 30px 10px 30px 10px;
      --gallery-inner-radius: 20px 8px 20px 8px;
      background: var(--dark-3);
      border: 1px solid rgba(201, 168, 76, 0.1);
      overflow: hidden;
      position: relative;
      isolation: isolate;
      border-radius: var(--gallery-shell-radius);
      box-shadow: 0 26px 48px rgba(0, 0, 0, 0.16);
      cursor: pointer;
      transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    }

    .g-item::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(201, 168, 76, 0.08), transparent 28%);
      pointer-events: none;
      z-index: 0;
    }

    .g-item:hover {
      border-color: rgba(201, 168, 76, 0.4);
      transform: translateY(-4px);
      box-shadow: 0 34px 62px rgba(0, 0, 0, 0.2);
    }

    .g-item:focus-visible {
      outline: 2px solid rgba(201, 168, 76, 0.88);
      outline-offset: 4px;
    }

    .g-item:nth-child(even) {
      --gallery-shell-radius: 10px 30px 10px 30px;
      --gallery-inner-radius: 8px 20px 8px 20px;
    }

    .g-item:nth-child(1),
    .g-item:nth-child(6) {
      --gallery-shell-radius: 34px 12px 34px 12px;
      --gallery-inner-radius: 24px 10px 24px 10px;
    }

    .g-item:nth-child(1) {
      grid-column: span 5;
      grid-row: span 2;
      min-height: 500px;
    }

    .g-item:nth-child(2) {
      grid-column: span 4;
      min-height: 240px;
    }

    .g-item:nth-child(3) {
      grid-column: span 3;
      min-height: 240px;
    }

    .g-item:nth-child(4) {
      grid-column: span 4;
      min-height: 240px;
    }

    .g-item:nth-child(5) {
      grid-column: span 3;
      min-height: 240px;
    }

    .g-item:nth-child(6) {
      grid-column: span 7;
      min-height: 300px;
    }

    .g-item:nth-child(7) {
      grid-column: span 5;
      min-height: 300px;
    }

    .g-inner {
      width: 100%;
      height: 100%;
      min-height: inherit;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      flex-direction: column;
      gap: 10px;
      background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
      position: relative;
      overflow: hidden;
      padding: 24px 22px 20px;
      transition: transform 0.5s ease;
    }

    .g-item:hover .g-inner {
      transform: scale(1.02);
    }

    .g-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 22%, rgba(201, 168, 76, 0.14) 0%, transparent 56%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.04), rgba(10, 8, 7, 0.26));
      z-index: 1;
      pointer-events: none;
    }

    .g-inner::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(201, 168, 76, 0.12);
      border-radius: var(--gallery-inner-radius);
      z-index: 1;
      pointer-events: none;
    }

    .g-photo {
      position: absolute;
      inset: 0;
      object-fit: cover;
      width: 100%;
      height: 100%;
      transform: scale(1.035);
      transform-origin: center;
      filter: saturate(1.04) contrast(1.03) brightness(0.96);
      transition: opacity 0.4s ease, transform 0.6s ease, filter 0.6s ease;
    }

    .g-item:hover .g-photo {
      transform: scale(1.065);
      filter: saturate(1.08) contrast(1.05) brightness(0.99);
    }

    .g-label {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 8px 12px 7px;
      border-radius: 999px;
      background: rgba(10, 8, 7, 0.28);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(201, 168, 76, 0.16);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
      font-size: 0.52rem;
      letter-spacing: 0.22em;
      color: var(--gold-dim);
      text-transform: uppercase;
      position: relative;
      z-index: 2;
    }

    .g-num {
      font-family: 'Cormorant Garamond', serif;
      width: 78px;
      height: 78px;
      display: grid;
      place-items: center;
      padding-top: 4px;
      font-size: 2.75rem;
      color: rgba(201, 168, 76, 0.15);
      position: absolute;
      bottom: 16px;
      right: 18px;
      line-height: 0.9;
      border-radius: var(--gallery-inner-radius);
      border: 1px solid rgba(201, 168, 76, 0.12);
      background: linear-gradient(180deg, rgba(10, 8, 7, 0.1), rgba(10, 8, 7, 0.2));
      backdrop-filter: blur(8px);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
      z-index: 2;
      transition: transform 0.4s ease, border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
    }

    .g-item:hover .g-num {
      transform: translateY(-2px);
      color: rgba(201, 168, 76, 0.28);
      border-color: rgba(201, 168, 76, 0.22);
    }

    .gallery-grid .g-num {
      display: none;
    }


    
    #video-reel {
      background: var(--dark-2);
      padding: 120px 60px;
    }

    .video-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .video-header .gold-rule {
      margin: 28px auto;
    }

    .video-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .video-card {
      --video-shell-radius: 30px 10px 30px 10px;
      --video-inner-radius: 22px 8px 22px 8px;
      position: relative;
      border: 1px solid var(--surface-border);
      overflow: hidden;
      background: var(--dark-3);
      border-radius: var(--video-shell-radius);
      box-shadow: 0 24px 46px rgba(0, 0, 0, 0.14);
      transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    }

    .video-card:hover {
      border-color: rgba(201, 168, 76, 0.4);
      transform: translateY(-4px);
      box-shadow: 0 32px 58px rgba(0, 0, 0, 0.18);
    }

    .video-card.featured {
      grid-column: span 2;
      --video-shell-radius: 34px 12px 34px 12px;
      --video-inner-radius: 24px 10px 24px 10px;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: var(--dark-4);
      overflow: hidden;
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
    }

    .video-wrapper video,
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      overflow: hidden;
      width: 100%;
      padding: 0;
      border: 0;
      background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
      isolation: isolate;
      cursor: pointer;
    }

    .video-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.1), rgba(10, 8, 7, 0.42));
      z-index: 1;
      pointer-events: none;
    }

    .video-placeholder:focus-visible {
      outline: 2px solid rgba(201, 168, 76, 0.82);
      outline-offset: -6px;
    }

    .video-placeholder::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(201, 168, 76, 0.12);
      border-radius: var(--video-inner-radius);
      z-index: 1;
      pointer-events: none;
    }

    .video-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      filter: saturate(1.05) contrast(1.03) brightness(0.88);
      transition: transform 0.7s ease, filter 0.7s ease;
    }

    .video-card:hover .video-poster {
      transform: scale(1.08);
      filter: saturate(1.08) contrast(1.05) brightness(0.94);
    }

    .video-card.is-playing .video-placeholder {
      display: none;
    }

    .video-card.is-playing {
      border-color: rgba(201, 168, 76, 0.32);
      box-shadow: 0 34px 62px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
    }

    .video-player {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #000;
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
    }

    .video-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 7px 12px 6px;
      border-radius: 999px;
      border: 1px solid rgba(201, 168, 76, 0.18);
      background: rgba(10, 8, 7, 0.24);
      backdrop-filter: blur(10px);
      font-size: 0.5rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      z-index: 2;
    }

    .play-btn {
      width: 64px;
      height: 64px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.2rem;
      background: rgba(10, 8, 7, 0.18);
      backdrop-filter: blur(8px);
      box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.04);
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .video-card:hover .play-btn {
      background: rgba(201, 168, 76, 0.1);
      transform: scale(1.08);
    }

    .video-label {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      color: var(--cream-dim);
      text-transform: uppercase;
      position: relative;
      z-index: 2;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
    }

    .video-caption {
      padding: 20px 24px;
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      position: relative;
      background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.05), transparent 34%),
        linear-gradient(180deg, rgba(28, 22, 16, 0.98), rgba(23, 18, 13, 0.98));
    }

    .video-caption h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 6px;
    }

    .video-caption p {
      font-size: 0.72rem;
      color: var(--cream-dim);
      line-height: 1.7;
    }

    
    #services {
      background: var(--dark-2);
    }

    .services-header {
      margin-bottom: 70px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .service-card {
      padding: 56px 44px;
      background: var(--dark-3);
      border: 1px solid var(--surface-border);
      position: relative;
      transition: background 0.4s ease, border-color 0.4s ease;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-card:hover {
      background: var(--dark-4);
      border-color: rgba(201, 168, 76, 0.25);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      color: rgba(201, 168, 76, 0.08);
      line-height: 1;
      margin-bottom: 32px;
      transition: color 0.4s;
    }

    .service-card:hover .service-num {
      color: rgba(201, 168, 76, 0.15);
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
    }

    .service-desc {
      font-size: 0.78rem;
      line-height: 1.9;
      color: var(--cream-dim);
    }

    .service-line {
      width: 30px;
      height: 1px;
      background: var(--gold);
      margin: 24px 0;
    }

    
    #testimonials {
      background: var(--dark);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #testimonials::before {
      content: '"';
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: 40rem;
      line-height: 0.7;
      color: rgba(201, 168, 76, 0.03);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .testimonials-header {
      margin-bottom: 70px;
    }

    .testimonials-header .gold-rule {
      margin: 28px auto;
    }

    .impression-wall {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 32px;
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .impression-note {
      position: relative;
      min-height: 320px;
      padding: 42px 38px 36px;
      background: var(--dark-2);
      border: 1px solid var(--surface-border);
      text-align: left;
      overflow: hidden;
      transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    }

    .impression-note::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.06) 0%, transparent 48%);
      pointer-events: none;
    }

    .impression-note:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 168, 76, 0.3);
    }

    .impression-note-wide {
      grid-column: span 7;
    }

    .impression-note-tall {
      grid-column: span 5;
      min-height: 430px;
    }

    .impression-note-stat {
      grid-column: span 5;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 430px;
    }

    .impression-tag {
      position: relative;
      z-index: 1;
      display: inline-block;
      font-size: 0.56rem;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .impression-text {
      position: relative;
      z-index: 1;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.34rem;
      font-style: italic;
      line-height: 1.6;
      color: var(--cream);
      margin: 28px 0 32px;
    }

    .impression-meta {
      position: relative;
      z-index: 1;
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .impression-stat-value {
      position: relative;
      z-index: 1;
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      line-height: 0.9;
      color: var(--white);
      margin: 22px 0 12px;
    }

    .impression-stat-label {
      position: relative;
      z-index: 1;
      font-size: 0.62rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .impression-stat-copy {
      position: relative;
      z-index: 1;
      font-size: 0.78rem;
      line-height: 1.9;
      color: var(--cream-dim);
      max-width: 28ch;
    }

    
    #contact {
      background: var(--dark-2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }

    .contact-info .section-title {
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 36px;
    }

    .contact-detail-link,
    .contact-detail-action {
      width: 100%;
      color: inherit;
      text-decoration: none;
      background: none;
      border: 0;
      padding: 0;
      text-align: left;
      cursor: pointer;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .contact-detail-link:hover,
    .contact-detail-action:hover {
      transform: translateX(4px);
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 0.9rem;
    }

    .contact-detail-text .label {
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 6px;
    }

    .contact-detail-text .value {
      font-size: 0.85rem;
      color: var(--cream);
    }

    .contact-sheet {
      position: fixed;
      inset: 0;
      z-index: 10030;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .contact-sheet.visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .contact-sheet-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(6, 5, 4, 0.56);
      backdrop-filter: blur(8px);
    }

    .contact-sheet-panel {
      position: absolute;
      left: 50%;
      bottom: 24px;
      width: min(100% - 32px, 460px);
      transform: translateX(-50%) translateY(24px);
      padding: 28px 22px 22px;
      border: 1px solid rgba(201, 168, 76, 0.18);
      border-radius: 28px 12px 28px 12px;
      background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.08), transparent 34%),
        rgba(16, 12, 10, 0.94);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
      transition: transform 0.35s ease;
    }

    .contact-sheet.visible .contact-sheet-panel {
      transform: translateX(-50%) translateY(0);
    }

    .contact-sheet-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201, 168, 76, 0.24);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.02);
      color: var(--gold);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
    }

    .contact-sheet-eyebrow {
      font-size: 0.55rem;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .contact-sheet-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      line-height: 1.02;
      color: var(--white);
      margin-bottom: 18px;
      max-width: 12ch;
    }

    .contact-sheet-actions {
      display: grid;
      gap: 12px;
    }

    .contact-sheet-action {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 18px 18px 16px;
      border: 1px solid rgba(201, 168, 76, 0.18);
      border-radius: 20px;
      text-decoration: none;
      color: var(--cream);
      background: rgba(255, 255, 255, 0.02);
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .contact-sheet-action:hover {
      transform: translateY(-2px);
      border-color: rgba(201, 168, 76, 0.34);
    }

    .contact-sheet-action-primary {
      background: linear-gradient(180deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.04));
    }

    .contact-sheet-action-label {
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .contact-sheet-action-value {
      font-size: 0.92rem;
      color: var(--cream);
    }

    .contact-form {
      position: relative;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--dark-3);
      border: 1px solid var(--surface-border);
      color: var(--cream);
      padding: 14px 18px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s ease;
      cursor: pointer;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
      border-color: #d35c5c;
      box-shadow: 0 0 0 1px rgba(211, 92, 92, 0.12);
    }

    .field-error {
      min-height: 16px;
      margin-top: 8px;
      font-size: 0.64rem;
      letter-spacing: 0.06em;
      color: #d35c5c;
      line-height: 1.5;
    }

    .form-group select option {
      background: var(--dark-3);
    }

    .form-group textarea {
      height: 120px;
      resize: none;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 40px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      text-decoration: none;
      background: none;
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      margin-top: 8px;
    }

    .btn-whatsapp::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: 0;
    }

    .btn-whatsapp:hover {
      color: var(--dark);
    }

    .btn-whatsapp:hover::before {
      transform: scaleX(1);
    }

    .btn-whatsapp span,
    .btn-whatsapp svg {
      position: relative;
      z-index: 1;
    }

    
    footer {
      background: var(--dark);
      border-top: 1px solid var(--surface-border);
      padding: 60px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      gap: 40px;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .footer-copy {
      text-align: center;
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      color: var(--cream-dim);
      text-transform: uppercase;
    }

    .footer-credit {
      display: inline-block;
      margin-top: 3vh;
      letter-spacing: 0.24em;
      color: var(--gold-dim);
      opacity: 0.9;
    }

    .footer-credit-link {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease, opacity 0.3s ease;
    }

    .footer-credit-link:hover {
      color: var(--gold);
      opacity: 1;
    }

    .footer-social {
      display: flex;
      justify-content: flex-end;
      gap: 16px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-dim);
      font-size: 0.75rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201, 168, 76, 0.06);
    }

    .mobile-action-bar {
      display: none;
    }

    @media (hover: none) and (pointer: coarse) {
      .btn-gold:active,
      .btn-whatsapp:active,
      .theme-option:active,
      .lang-btn:active,
      .menu-toggle:active,
      .social-link:active,
      .g-item:active,
      .video-card:active,
      .service-card:active,
      .experience-stage:active,
      .impression-note:active,
      .language-choice:active,
      .mobile-action-pill:active {
        transform: scale(0.985);
      }
    }

    
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.35s;
    }

    
    [data-lang] {
      display: none;
    }

    [data-lang].active {
      display: block;
    }

    
    .nav-logo-img {
      height: 44px;
      width: auto;
      object-fit: contain;
      
      filter: brightness(0) saturate(100%) invert(73%) sepia(35%) saturate(600%) hue-rotate(5deg) brightness(95%);
      transition: filter 0.3s ease, opacity 0.3s ease;
      display: block;
    }

    .nav-logo:hover .nav-logo-img {
      filter: brightness(0) saturate(100%) invert(85%) sepia(40%) saturate(400%) hue-rotate(5deg) brightness(110%);
    }

    nav.scrolled .nav-logo-img {
      height: 36px;
    }

    
    .hero-logo-img {
      width: clamp(200px, 30vw, 340px);
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto 16px;
      
      filter: sepia(30%) saturate(120%) hue-rotate(180deg) brightness(1.1);
      opacity: 0;
      animation: fadeUp 1.2s ease forwards;
      animation-delay: 0.5s;
    }

    
    .footer-logo-img {
      height: 56px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(73%) sepia(35%) saturate(600%) hue-rotate(5deg) brightness(95%);
      opacity: 0.85;
      transition: opacity 0.3s ease;
    }

    .footer-logo-img:hover {
      opacity: 1;
    }

    
    
    body.is-loading {
      overflow: hidden;
    }

    body.is-contact-sheet-open {
      overflow: hidden;
    }

    #loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: var(--loader-bg);
      transition: opacity 1s ease, visibility 1s ease;
      overflow: hidden;
    }

    #loader::before,
    #loader::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    #loader::before {
      background: radial-gradient(circle at center, transparent 54%, var(--loader-vignette) 100%);
      opacity: 1;
    }

    #loader::after {
      inset: 30px;
      border: 1px solid var(--loader-frame);
      opacity: 0;
      animation: loaderFrameIn 1.2s ease 0.15s forwards;
    }

    #loader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-mark {
      position: relative;
      width: min(98vw, 1380px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-align: center;
      padding: clamp(10px, 1.8vw, 22px);
      margin-top: -4vh;
      opacity: 0;
      transform: translateY(14px);
      animation: loaderIntro 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    }

    .loader-crest-wrap {
      position: relative;
      width: min(98vw, 1360px);
      margin-top: -14px;
      margin-bottom: -18px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .loader-crest-glow {
      position: absolute;
      inset: 18% 14% 20%;
      background: none;
      filter: blur(24px);
      opacity: 0;
      animation: loaderGlow 1.4s ease 0.75s forwards;
    }

    .loader-crest {
      position: relative;
      width: min(45vw, 1280px);
      max-height: 68vh;
      object-fit: contain;
      opacity: 0;
      filter:
        sepia(18%) saturate(118%) brightness(1.06) contrast(1.08) drop-shadow(0 0 14px rgba(201, 168, 76, 0.16)) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
      transform: translateY(18px) scale(1.015);
      animation: loaderCrestReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    }

    .loader-welcome {
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--loader-welcome-color);
      margin-right: -0.28em;
      margin-top: 8vh;
      opacity: 0;
      transform: translateY(10px);
      animation: loaderTextRise 0.7s ease 1.05s forwards;
    }

    .loader-wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.3rem, 6.4vw, 5.8rem);
      line-height: 0.88;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--loader-wordmark-color);
      margin-right: -0.18em;
      text-shadow: 0 0 18px rgba(201, 168, 76, 0.08);
      opacity: 0;
      transform: translateY(6px);
      animation: loaderTextRise 0.8s ease 1.22s forwards;
    }

    .loader-divider {
      width: min(300px, 46vw);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(231, 212, 172, 0.7), transparent);
      opacity: 0;
      transform: scaleX(0.2);
      animation: loaderDividerExpand 0.85s cubic-bezier(0.16, 1, 0.3, 1) 1.42s forwards;
    }

    .loader-subtitle {
      max-width: 560px;
      font-size: clamp(0.88rem, 1.05vw, 0.96rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--loader-subtitle-color);
      opacity: 0;
      transform: translateY(10px);
      animation: loaderTextRise 0.75s ease 1.62s forwards;
    }

    .loader-note {
      display: none;
      max-width: 620px;
      font-size: 0.82rem;
      line-height: 1.85;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(231, 212, 172, 0.74);
      opacity: 0;
      transform: translateY(10px);
      animation: loaderTextRise 0.9s ease 2.75s forwards;
    }

    body.is-language-gate {
      overflow: hidden;
    }

    .language-gate {
      position: fixed;
      inset: 0;
      z-index: 99990;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      background: rgba(10, 8, 7, 0.5);
      backdrop-filter: blur(18px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .language-gate.visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .language-gate-panel {
      width: min(100%, 980px);
      padding: clamp(28px, 5vw, 54px);
      border: 1px solid rgba(201, 168, 76, 0.16);
      background:
        radial-gradient(circle at top center, rgba(201, 168, 76, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(18, 15, 10, 0.96), rgba(10, 8, 7, 0.94));
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
      position: relative;
      overflow: hidden;
    }

    .language-gate-panel::before,
    .language-gate-panel::after {
      content: '';
      position: absolute;
      pointer-events: none;
    }

    .language-gate-panel::before {
      inset: 14px;
      border: 1px solid rgba(201, 168, 76, 0.08);
    }

    .language-gate-panel::after {
      top: 22px;
      left: 50%;
      width: min(220px, 36vw);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(232, 208, 138, 0.72), transparent);
    }

    .language-gate-eyebrow {
      display: block;
      margin-bottom: 18px;
      text-align: center;
      font-size: 0.58rem;
      letter-spacing: 0.48em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .language-gate-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.3rem);
      font-weight: 300;
      line-height: 1.04;
      text-align: center;
      color: var(--white);
      margin-bottom: 18px;
    }

    .language-gate-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .language-gate-subtitle {
      max-width: 660px;
      margin: 0 auto 38px;
      text-align: center;
      font-size: 0.82rem;
      line-height: 1.9;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cream-dim);
    }

    .language-gate-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .language-choice {
      position: relative;
      padding: 28px 22px 24px;
      border: 1px solid rgba(201, 168, 76, 0.16);
      background: rgba(255, 255, 255, 0.02);
      text-align: left;
      cursor: pointer;
      transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    }

    .language-choice::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(201, 168, 76, 0.08);
      pointer-events: none;
      transition: border-color 0.35s ease;
    }

    .language-choice:hover {
      transform: translateY(-3px);
      border-color: rgba(232, 208, 138, 0.34);
      background: rgba(232, 208, 138, 0.04);
      box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
    }

    .language-choice.active {
      border-color: rgba(232, 208, 138, 0.4);
      background: rgba(232, 208, 138, 0.06);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    }

    .language-choice.active::before {
      border-color: rgba(232, 208, 138, 0.12);
    }

    .language-choice-lang {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      line-height: 1;
      color: var(--white);
      margin-bottom: 10px;
    }

    .language-choice-native {
      display: block;
      font-size: 0.58rem;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .language-choice-desc {
      display: block;
      font-size: 0.74rem;
      line-height: 1.75;
      color: var(--cream-dim);
    }

    body[data-theme="light"] .language-gate {
      background: rgba(79, 61, 45, 0.24);
    }

    body[data-theme="light"] .language-gate-panel {
      background:
        radial-gradient(circle at top center, rgba(73, 138, 168, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(251, 244, 234, 0.96), rgba(236, 220, 200, 0.94));
      border-color: rgba(73, 138, 168, 0.16);
    }

    body[data-theme="light"] .language-gate-panel::before {
      border-color: rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .language-gate-panel::after {
      background: linear-gradient(90deg, transparent, rgba(73, 138, 168, 0.48), transparent);
    }

    body[data-theme="light"] .language-gate-title {
      color: #120d09;
    }

    body[data-theme="light"] .language-gate-title em,
    body[data-theme="light"] .language-choice-native {
      color: #498aa8;
    }

    body[data-theme="light"] .language-gate-subtitle,
    body[data-theme="light"] .language-choice-desc {
      color: #4b3c31;
    }

    body[data-theme="light"] .language-choice {
      background: rgba(255, 252, 246, 0.72);
      border-color: rgba(73, 138, 168, 0.16);
    }

    body[data-theme="light"] .language-choice::before {
      border-color: rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .language-choice:hover,
    body[data-theme="light"] .language-choice.active {
      border-color: rgba(73, 138, 168, 0.34);
      background: rgba(255, 252, 246, 0.94);
    }

    body[data-theme="light"] .language-choice-lang {
      color: #120d09;
    }

    body[data-theme="emerald"] .language-gate {
      background: rgba(5, 23, 19, 0.52);
    }

    body[data-theme="emerald"] .language-gate-panel {
      background:
        radial-gradient(circle at top center, rgba(226, 215, 170, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(18, 66, 56, 0.97), rgba(8, 34, 29, 0.96));
      border-color: rgba(196, 178, 122, 0.18);
    }

    body[data-theme="emerald"] .language-gate-panel::before {
      border-color: rgba(226, 215, 170, 0.08);
    }

    body[data-theme="emerald"] .language-choice {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(196, 178, 122, 0.16);
    }

    body[data-theme="emerald"] .language-choice:hover,
    body[data-theme="emerald"] .language-choice.active {
      border-color: rgba(226, 215, 170, 0.34);
      background: rgba(226, 215, 170, 0.05);
    }

    body[data-theme="light"] .hero-title span {
      background: linear-gradient(135deg, #3f3024 0%, #498aa8 34%, #17110d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    body[data-theme="light"] .hero-bg {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.8) 0%, transparent 36%),
        radial-gradient(ellipse at 78% 34%, rgba(73, 138, 168, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 16% 82%, rgba(86, 65, 48, 0.08) 0%, transparent 42%),
        linear-gradient(180deg, #fdf6ed 0%, #e8d9c5 46%, #f8f0e4 100%);
    }

    body[data-theme="light"] .g-inner,
    body[data-theme="light"] .video-placeholder {
      background:
        radial-gradient(ellipse at 50% 20%, rgba(73, 138, 168, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, #fffdf9, #efddca);
    }

    body[data-theme="light"] .video-placeholder::before {
      background:
        radial-gradient(circle at top left, rgba(73, 138, 168, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(39, 24, 15, 0.12));
    }

    body[data-theme="light"] .video-placeholder::after {
      border-color: rgba(73, 138, 168, 0.16);
    }

    body[data-theme="light"] .video-badge {
      background: rgba(255, 251, 245, 0.78);
      border-color: rgba(73, 138, 168, 0.18);
      color: #2f6780;
      box-shadow: 0 12px 24px rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .about-img-frame::before {
      background:
        radial-gradient(ellipse at 50% 20%, rgba(73, 138, 168, 0.1) 0%, transparent 52%),
        linear-gradient(180deg, rgba(255, 253, 249, 0.02), rgba(47, 103, 128, 0.12));
    }

    body[data-theme="light"] .btn-gold:hover,
    body[data-theme="light"] .btn-whatsapp:hover {
      color: var(--dark);
    }

    body[data-theme="light"] .contact-icon,
    body[data-theme="light"] .social-link {
      border-color: rgba(73, 138, 168, 0.32);
      color: var(--gold);
    }

    body[data-theme="light"] .contact-sheet-panel {
      border-color: rgba(73, 138, 168, 0.16);
      background:
        radial-gradient(circle at top left, rgba(73, 138, 168, 0.08), transparent 34%),
        rgba(255, 249, 241, 0.97);
    }

    body[data-theme="light"] .contact-sheet-close,
    body[data-theme="light"] .contact-sheet-action {
      border-color: rgba(73, 138, 168, 0.2);
      color: #241b15;
      background: rgba(255, 255, 255, 0.55);
    }

    body[data-theme="light"] .contact-sheet-title {
      color: #241b15;
    }

    body[data-theme="light"] .contact-sheet-action-label,
    body[data-theme="light"] .contact-sheet-eyebrow {
      color: #2f6780;
    }

    body[data-theme="light"] .contact-sheet-action-value {
      color: #5a4637;
    }

    body[data-theme="light"] .nav-links a,
    body[data-theme="light"] .lang-btn,
    body[data-theme="light"] .hero-eyebrow,
    body[data-theme="light"] .hero-subtitle,
    body[data-theme="light"] .section-label,
    body[data-theme="light"] .stat-label,
    body[data-theme="light"] .experience-stage-index,
    body[data-theme="light"] .impression-tag,
    body[data-theme="light"] .impression-meta,
    body[data-theme="light"] .impression-stat-label,
    body[data-theme="light"] .contact-detail-text .label,
    body[data-theme="light"] .scroll-indicator span {
      color: #2c231d;
    }

    body[data-theme="light"] nav,
    body[data-theme="light"] nav.scrolled {
      backdrop-filter: blur(16px);
    }

    body[data-theme="light"] .nav-logo {
      color: #2c221a;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
    }

    body[data-theme="light"] .hero-divider,
    body[data-theme="light"] .service-line,
    body[data-theme="light"] .gold-rule {
      background: linear-gradient(90deg, transparent, #498aa8, transparent);
    }

    body[data-theme="light"] .about-img-frame,
    body[data-theme="light"] .g-item,
    body[data-theme="light"] .video-card,
    body[data-theme="light"] .service-card,
    body[data-theme="light"] .experience-stage,
    body[data-theme="light"] .impression-note,
    body[data-theme="light"] .form-group input,
    body[data-theme="light"] .form-group select,
    body[data-theme="light"] .form-group textarea {
      background: rgba(255, 252, 246, 0.98);
      box-shadow: 0 18px 42px rgba(44, 30, 18, 0.1);
    }

    body[data-theme="light"] .video-card {
      border-color: rgba(73, 138, 168, 0.16);
      background:
        radial-gradient(circle at top left, rgba(73, 138, 168, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.99), rgba(244, 232, 214, 0.98));
      box-shadow: 0 22px 46px rgba(88, 62, 38, 0.12);
    }

    body[data-theme="light"] .video-caption {
      border-top-color: rgba(73, 138, 168, 0.14);
      background:
        radial-gradient(circle at top left, rgba(73, 138, 168, 0.05), transparent 30%),
        linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(239, 225, 205, 0.98));
    }

    body[data-theme="light"] .video-card::after {
      border-color: rgba(73, 138, 168, 0.1);
    }

    body[data-theme="light"] .video-caption h4 {
      color: #251b14;
    }

    body[data-theme="light"] .video-caption p {
      color: #5a4637;
    }

    body[data-theme="light"] .video-label {
      color: #2f6780;
      text-shadow: 0 1px 10px rgba(255, 255, 255, 0.35);
    }

    body[data-theme="light"] .play-btn {
      border-color: rgba(47, 103, 128, 0.55);
      color: #2f6780;
      background: rgba(255, 248, 239, 0.78);
      box-shadow: 0 0 0 8px rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .hero-tagline {
      color: #211914;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    body[data-theme="light"] .btn-gold,
    body[data-theme="light"] .btn-whatsapp {
      border-width: 1.5px;
      font-weight: 400;
      background: rgba(255, 252, 246, 0.68);
      box-shadow: 0 14px 30px rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .btn-gold::before,
    body[data-theme="light"] .btn-whatsapp::before {
      background: #498aa8;
    }

    body[data-theme="light"] .hero-content,
    body[data-theme="light"] .gallery-header,
    body[data-theme="light"] .video-header,
    body[data-theme="light"] .services-header,
    body[data-theme="light"] .experience-header,
    body[data-theme="light"] .testimonials-header {
      position: relative;
    }

    body[data-theme="light"] .hero-content::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(78vw, 920px);
      height: min(56vw, 620px);
      transform: translate(-50%, -50%);
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 68%);
      pointer-events: none;
      z-index: -1;
    }

    body[data-theme="light"] #about,
    body[data-theme="light"] #signature-experience,
    body[data-theme="light"] #video-reel,
    body[data-theme="light"] #services,
    body[data-theme="light"] #contact {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 18%),
        linear-gradient(180deg, #e8d7c3, #f8f0e4);
    }

    body[data-theme="light"] #gallery,
    body[data-theme="light"] #testimonials,
    body[data-theme="light"] footer {
      background:
        radial-gradient(circle at top center, rgba(73, 138, 168, 0.08), transparent 42%),
        #f4ebdf;
    }

    body[data-theme="light"] #gallery {
      background:
        radial-gradient(circle at 50% 0%, rgba(73, 138, 168, 0.1), transparent 30%),
        linear-gradient(180deg, #efe1cf 0%, #e4d0bb 48%, #f2e6d8 100%);
      border-top: 1px solid rgba(47, 103, 128, 0.14);
      border-bottom: 1px solid rgba(47, 103, 128, 0.12);
    }

    body[data-theme="light"] #testimonials::before {
      color: rgba(73, 138, 168, 0.06);
    }

    body[data-theme="light"] .g-item,
    body[data-theme="light"] .video-card,
    body[data-theme="light"] .service-card,
    body[data-theme="light"] .experience-stage,
    body[data-theme="light"] .impression-note,
    body[data-theme="light"] .about-img-frame {
      border-color: rgba(73, 138, 168, 0.28);
    }

    body[data-theme="light"] .g-item {
      background: rgba(255, 253, 248, 0.99);
      box-shadow: 0 22px 48px rgba(46, 31, 18, 0.16);
    }

    body[data-theme="light"] .g-item:hover,
    body[data-theme="light"] .video-card:hover,
    body[data-theme="light"] .service-card:hover,
    body[data-theme="light"] .experience-stage:hover,
    body[data-theme="light"] .impression-note:hover {
      border-color: rgba(73, 138, 168, 0.58);
      transform: translateY(-3px);
    }

    body[data-theme="light"] .section-title,
    body[data-theme="light"] .service-title,
    body[data-theme="light"] .video-caption h4,
    body[data-theme="light"] .experience-stage-title,
    body[data-theme="light"] .impression-text,
    body[data-theme="light"] .impression-stat-value,
    body[data-theme="light"] .stat-num {
      color: #100b08;
    }

    body[data-theme="light"] .g-label,
    body[data-theme="light"] .video-label,
    body[data-theme="light"] .about-badge .lbl {
      color: #2f6780;
    }

    body[data-theme="light"] .gallery-lightbox {
      background: rgba(38, 28, 20, 0.82);
    }

    body[data-theme="light"] .gallery-lightbox-media {
      background:
        radial-gradient(circle at top left, rgba(73, 138, 168, 0.12), transparent 26%),
        rgba(255, 250, 244, 0.95);
      border-color: rgba(73, 138, 168, 0.22);
    }

    body[data-theme="light"] .gallery-lightbox-media::after {
      border-color: rgba(73, 138, 168, 0.16);
    }

    body[data-theme="light"] .gallery-lightbox-caption {
      color: #f7f1ea;
    }

    body[data-theme="light"] .gallery-lightbox-nav,
    body[data-theme="light"] .gallery-lightbox-close {
      background: rgba(255, 250, 244, 0.86);
      border-color: rgba(73, 138, 168, 0.24);
      color: #2f6780;
    }

    body[data-theme="light"] .g-inner::before {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(73, 138, 168, 0.12) 0%, transparent 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(47, 103, 128, 0.14));
    }

    body[data-theme="light"] .g-inner::after {
      border-color: rgba(73, 138, 168, 0.16);
    }

    body[data-theme="light"] .g-label {
      background: rgba(255, 252, 246, 0.8);
      border-color: rgba(73, 138, 168, 0.18);
      box-shadow: 0 10px 24px rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .g-num {
      color: rgba(47, 103, 128, 0.62);
      background: linear-gradient(180deg, rgba(255, 252, 246, 0.84), rgba(232, 215, 195, 0.9));
      border-color: rgba(73, 138, 168, 0.16);
      box-shadow: 0 18px 30px rgba(73, 138, 168, 0.08);
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    body[data-theme="light"] .service-num {
      color: rgba(47, 103, 128, 0.24);
    }

    body[data-theme="light"] .service-card:hover .service-num {
      color: rgba(47, 103, 128, 0.44);
    }

    body[data-theme="light"] .about-badge {
      background: #fffaf4;
      box-shadow: 0 16px 28px rgba(44, 30, 18, 0.12);
    }

    body[data-theme="light"] .about-badge .num,
    body[data-theme="light"] .play-btn {
      color: #2f6780;
      border-color: #2f6780;
    }

    body[data-theme="light"] .g-inner {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(73, 138, 168, 0.12) 0%, transparent 46%),
        linear-gradient(135deg, #fffefb 0%, #f1dfca 100%);
    }

    body[data-theme="light"] .g-label {
      color: #2b5a74;
      font-weight: 500;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    }

    body[data-theme="light"] .section-title em,
    body[data-theme="light"] .experience-stage-index,
    body[data-theme="light"] .impression-tag,
    body[data-theme="light"] .impression-meta,
    body[data-theme="light"] .impression-stat-label,
    body[data-theme="light"] .footer-credit {
      color: #498aa8;
    }

    body[data-theme="light"] .theme-switcher,
    body[data-theme="light"] .menu-toggle {
      background: rgba(255, 252, 246, 0.82);
      border-color: rgba(73, 138, 168, 0.24);
    }

    body[data-theme="light"] .hero-tagline,
    body[data-theme="light"] .gallery-launch-copy,
    body[data-theme="light"] .video-caption p,
    body[data-theme="light"] .service-desc,
    body[data-theme="light"] .about-text p,
    body[data-theme="light"] .experience-intro,
    body[data-theme="light"] .experience-stage-copy,
    body[data-theme="light"] .impression-stat-copy,
    body[data-theme="light"] .contact-detail-text .value,
    body[data-theme="light"] .footer-copy,
    body[data-theme="light"] .form-group input,
    body[data-theme="light"] .form-group select,
    body[data-theme="light"] .form-group textarea {
      color: #201813;
    }

    body[data-theme="light"] .btn-gold,
    body[data-theme="light"] .btn-whatsapp,
    body[data-theme="light"] .contact-icon,
    body[data-theme="light"] .social-link,
    body[data-theme="light"] .theme-switcher,
    body[data-theme="light"] .menu-toggle {
      color: #2f6780;
    }

    body[data-theme="light"] .theme-option.active {
      background: rgba(73, 138, 168, 0.14);
      color: #2f6780;
      box-shadow: inset 0 0 0 1px rgba(73, 138, 168, 0.12);
    }

    body[data-theme="light"] .theme-option:hover {
      color: #2f6780;
      background: rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .nav-links a:hover,
    body[data-theme="light"] .lang-btn.active,
    body[data-theme="light"] .lang-btn:hover {
      color: #498aa8;
      border-bottom-color: #498aa8;
    }

    body[data-theme="light"] .scroll-line {
      background: linear-gradient(180deg, #498aa8, transparent);
    }

    body[data-theme="light"] .menu-toggle,
    body[data-theme="light"] .theme-switcher,
    body[data-theme="light"] .nav-links,
    body[data-theme="light"] nav.scrolled {
      box-shadow: 0 18px 40px rgba(73, 138, 168, 0.08);
    }

    body[data-theme="light"] .mobile-action-bar {
      background: rgba(255, 252, 246, 0.92);
      border-color: rgba(73, 138, 168, 0.22);
      box-shadow: 0 18px 40px rgba(73, 138, 168, 0.12);
    }

    body[data-theme="light"] .mobile-action-pill-secondary {
      color: #2f6780;
      background: rgba(73, 138, 168, 0.06);
      border-color: rgba(73, 138, 168, 0.18);
    }

    body[data-theme="light"] .mobile-action-pill-primary {
      color: #fffdf9;
      background: #498aa8;
      border-color: #498aa8;
    }

    body[data-theme="emerald"] .hero-title span {
      background: linear-gradient(135deg, #e4daad 0%, #c4b27a 48%, #8f845e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(196, 178, 122, 0.08);
    }

    body[data-theme="emerald"] .hero-bg {
      background:
        radial-gradient(ellipse at 50% 14%, rgba(226, 215, 170, 0.12) 0%, transparent 34%),
        radial-gradient(ellipse at 64% 28%, rgba(196, 178, 122, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 18% 78%, rgba(137, 171, 159, 0.08) 0%, transparent 44%),
        linear-gradient(180deg, #15453a 0%, #10362f 42%, #08241f 100%);
    }

    body[data-theme="emerald"] .hero-content::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 48%;
      width: min(72vw, 880px);
      height: min(48vw, 560px);
      transform: translate(-50%, -50%);
      background: radial-gradient(circle at center, rgba(226, 215, 170, 0.08), transparent 68%);
      pointer-events: none;
      z-index: -1;
    }

    body[data-theme="emerald"] .hero-eyebrow,
    body[data-theme="emerald"] .hero-subtitle,
    body[data-theme="emerald"] .section-label,
    body[data-theme="emerald"] .stat-label,
    body[data-theme="emerald"] .impression-tag,
    body[data-theme="emerald"] .impression-meta,
    body[data-theme="emerald"] .impression-stat-label,
    body[data-theme="emerald"] .contact-detail-text .label,
    body[data-theme="emerald"] .scroll-indicator span,
    body[data-theme="emerald"] .nav-links a,
    body[data-theme="emerald"] .lang-btn {
      color: #d0c39f;
    }

    body[data-theme="emerald"] .hero-tagline,
    body[data-theme="emerald"] .about-text p,
    body[data-theme="emerald"] .experience-intro,
    body[data-theme="emerald"] .experience-stage-copy,
    body[data-theme="emerald"] .service-desc,
    body[data-theme="emerald"] .video-caption p,
    body[data-theme="emerald"] .impression-stat-copy,
    body[data-theme="emerald"] .contact-detail-text .value,
    body[data-theme="emerald"] .footer-copy,
    body[data-theme="emerald"] .form-group input,
    body[data-theme="emerald"] .form-group select,
    body[data-theme="emerald"] .form-group textarea {
      color: #efe6ce;
    }

    body[data-theme="emerald"] .nav-logo {
      color: #e7d8a4;
      text-shadow: 0 0 18px rgba(196, 178, 122, 0.08);
    }

    body[data-theme="emerald"] .nav-links a:hover,
    body[data-theme="emerald"] .lang-btn.active,
    body[data-theme="emerald"] .lang-btn:hover {
      color: #f4edd5;
      border-bottom-color: #d7c892;
    }

    body[data-theme="emerald"] nav.scrolled,
    body[data-theme="emerald"] .nav-links,
    body[data-theme="emerald"] .theme-switcher,
    body[data-theme="emerald"] .menu-toggle {
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    body[data-theme="emerald"] nav.scrolled {
      border-bottom-color: rgba(226, 215, 170, 0.12);
    }

    body[data-theme="emerald"] #about,
    body[data-theme="emerald"] #signature-experience,
    body[data-theme="emerald"] #services,
    body[data-theme="emerald"] #contact,
    body[data-theme="emerald"] #video-reel {
      background:
        radial-gradient(circle at top center, rgba(196, 178, 122, 0.06), transparent 34%),
        linear-gradient(180deg, #123c33, #0e312a);
    }

    body[data-theme="emerald"] #gallery,
    body[data-theme="emerald"] #testimonials,
    body[data-theme="emerald"] footer {
      background:
        radial-gradient(circle at top center, rgba(196, 178, 122, 0.08), transparent 34%),
        linear-gradient(180deg, #0f3b33, #082722);
    }

    body[data-theme="emerald"] .g-inner,
    body[data-theme="emerald"] .video-placeholder {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(226, 215, 170, 0.1) 0%, transparent 48%),
        linear-gradient(180deg, #1d5449, #10342c);
    }

    body[data-theme="emerald"] .video-placeholder::before {
      background:
        radial-gradient(circle at top left, rgba(226, 215, 170, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(5, 24, 20, 0.06), rgba(5, 24, 20, 0.26));
    }

    body[data-theme="emerald"] .video-placeholder::after {
      border-color: rgba(226, 215, 170, 0.14);
    }

    body[data-theme="emerald"] .video-badge {
      background: rgba(7, 30, 24, 0.34);
      border-color: rgba(226, 215, 170, 0.18);
      color: #e5d7a5;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    }

    body[data-theme="emerald"] .about-img-frame::before {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(226, 215, 170, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(8, 28, 24, 0.06), rgba(8, 28, 24, 0.2));
    }

    body[data-theme="emerald"] .g-item,
    body[data-theme="emerald"] .video-card,
    body[data-theme="emerald"] .service-card,
    body[data-theme="emerald"] .experience-stage,
    body[data-theme="emerald"] .impression-note,
    body[data-theme="emerald"] .about-img-frame,
    body[data-theme="emerald"] .form-group input,
    body[data-theme="emerald"] .form-group select,
    body[data-theme="emerald"] .form-group textarea {
      background: rgba(22, 71, 60, 0.9);
      box-shadow: 0 18px 38px rgba(4, 20, 17, 0.2);
      border-color: rgba(196, 178, 122, 0.22);
    }

    body[data-theme="emerald"] .video-card {
      background:
        radial-gradient(circle at top left, rgba(226, 215, 170, 0.06), transparent 30%),
        linear-gradient(180deg, rgba(25, 87, 72, 0.97), rgba(17, 61, 51, 0.97));
    }

    body[data-theme="emerald"] .video-caption {
      border-top-color: rgba(226, 215, 170, 0.12);
      background:
        radial-gradient(circle at top left, rgba(226, 215, 170, 0.05), transparent 32%),
        linear-gradient(180deg, rgba(24, 82, 68, 0.97), rgba(18, 65, 54, 0.97));
    }

    body[data-theme="emerald"] .video-caption p {
      color: #e8dcc1;
    }

    body[data-theme="emerald"] .play-btn {
      background: rgba(10, 41, 34, 0.34);
      box-shadow: 0 0 0 8px rgba(226, 215, 170, 0.05);
    }

    body[data-theme="emerald"] .g-item::after,
    body[data-theme="emerald"] .video-card::after,
    body[data-theme="emerald"] .service-card::after,
    body[data-theme="emerald"] .experience-stage::after,
    body[data-theme="emerald"] .impression-note::after,
    body[data-theme="emerald"] .about-img-frame::after {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(226, 215, 170, 0.08);
      border-radius: calc(var(--gallery-inner-radius) + 2px);
      pointer-events: none;
    }

    body[data-theme="emerald"] .hero-divider,
    body[data-theme="emerald"] .service-line,
    body[data-theme="emerald"] .gold-rule {
      background: linear-gradient(90deg, transparent, #d5c48c, transparent);
    }

    body[data-theme="emerald"] .section-label {
      letter-spacing: 0.55em;
      text-shadow: 0 0 12px rgba(213, 196, 140, 0.06);
    }

    body[data-theme="emerald"] .hero-line-left,
    body[data-theme="emerald"] .hero-line-right,
    body[data-theme="emerald"] .scroll-line {
      background: linear-gradient(180deg, transparent, rgba(213, 196, 140, 0.88), transparent);
    }

    body[data-theme="emerald"] .btn-gold,
    body[data-theme="emerald"] .btn-whatsapp {
      background: linear-gradient(180deg, rgba(196, 178, 122, 0.08), rgba(196, 178, 122, 0.03));
      border-color: rgba(213, 196, 140, 0.68);
      color: #e8ddb7;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    }

    body[data-theme="emerald"] .btn-gold::before,
    body[data-theme="emerald"] .btn-whatsapp::before {
      background: #d3c18a;
    }

    body[data-theme="emerald"] .btn-gold:hover,
    body[data-theme="emerald"] .btn-whatsapp:hover {
      color: #14362f;
    }

    body[data-theme="emerald"] .g-num,
    body[data-theme="emerald"] .service-num {
      color: rgba(236, 229, 191, 0.3);
      text-shadow: 0 0 18px rgba(196, 178, 122, 0.08);
    }

    body[data-theme="emerald"] .g-item:hover,
    body[data-theme="emerald"] .video-card:hover,
    body[data-theme="emerald"] .service-card:hover,
    body[data-theme="emerald"] .experience-stage:hover,
    body[data-theme="emerald"] .impression-note:hover {
      border-color: rgba(226, 215, 170, 0.36);
      transform: translateY(-3px);
    }

    body[data-theme="emerald"] .section-title em,
    body[data-theme="emerald"] .experience-stage-index,
    body[data-theme="emerald"] .impression-tag,
    body[data-theme="emerald"] .impression-meta,
    body[data-theme="emerald"] .impression-stat-label,
    body[data-theme="emerald"] .footer-credit,
    body[data-theme="emerald"] .g-label,
    body[data-theme="emerald"] .video-label {
      color: #dece98;
    }

    body[data-theme="emerald"] .section-title,
    body[data-theme="emerald"] .experience-stage-title,
    body[data-theme="emerald"] .service-title,
    body[data-theme="emerald"] .video-caption h4,
    body[data-theme="emerald"] .impression-text,
    body[data-theme="emerald"] .impression-stat-value,
    body[data-theme="emerald"] .stat-num,
    body[data-theme="emerald"] .about-badge .num {
      color: #f5ecd0;
    }

    body[data-theme="emerald"] .about-badge {
      background: linear-gradient(180deg, #17453b, #0d3029);
      border-color: rgba(226, 215, 170, 0.48);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    }

    body[data-theme="emerald"] .about-badge .lbl {
      color: #d8cb98;
    }

    body[data-theme="emerald"] .gallery-launch-copy {
      color: rgba(233, 224, 191, 0.82);
    }

    body[data-theme="emerald"] .gallery-lightbox-media {
      background:
        radial-gradient(circle at top left, rgba(226, 215, 170, 0.08), transparent 26%),
        rgba(10, 39, 33, 0.96);
      border-color: rgba(226, 215, 170, 0.22);
    }

    body[data-theme="emerald"] .gallery-lightbox-media::after {
      border-color: rgba(226, 215, 170, 0.14);
    }

    body[data-theme="emerald"] .gallery-lightbox-caption {
      color: #efe6cc;
    }

    body[data-theme="emerald"] .gallery-lightbox-nav,
    body[data-theme="emerald"] .gallery-lightbox-close {
      background: rgba(8, 33, 28, 0.78);
      border-color: rgba(226, 215, 170, 0.24);
      color: #e5d7a5;
    }

    body[data-theme="emerald"] .g-inner::before {
      background:
        radial-gradient(ellipse at 50% 18%, rgba(226, 215, 170, 0.14) 0%, transparent 54%),
        linear-gradient(180deg, rgba(7, 28, 23, 0.04), rgba(7, 28, 23, 0.28));
    }

    body[data-theme="emerald"] .g-inner::after {
      border-color: rgba(226, 215, 170, 0.14);
    }

    body[data-theme="emerald"] .g-label {
      background: rgba(7, 30, 24, 0.32);
      border-color: rgba(226, 215, 170, 0.14);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
    }

    body[data-theme="emerald"] .g-num {
      background: linear-gradient(180deg, rgba(10, 37, 31, 0.26), rgba(8, 29, 24, 0.34));
      border-color: rgba(226, 215, 170, 0.16);
    }

    body[data-theme="emerald"] .contact-icon,
    body[data-theme="emerald"] .social-link,
    body[data-theme="emerald"] .play-btn {
      color: #e1d3a1;
      border-color: rgba(226, 215, 170, 0.56);
      background: rgba(12, 46, 39, 0.2);
    }

    body[data-theme="emerald"] .contact-sheet-panel {
      border-color: rgba(226, 215, 170, 0.2);
      background:
        radial-gradient(circle at top left, rgba(226, 215, 170, 0.08), transparent 36%),
        rgba(13, 48, 40, 0.96);
    }

    body[data-theme="emerald"] .contact-sheet-close,
    body[data-theme="emerald"] .contact-sheet-action {
      border-color: rgba(226, 215, 170, 0.2);
      color: #efe6ce;
      background: rgba(255, 255, 255, 0.03);
    }

    body[data-theme="emerald"] .contact-sheet-title,
    body[data-theme="emerald"] .contact-sheet-action-value {
      color: #f5ecd0;
    }

    body[data-theme="emerald"] .contact-sheet-action-label,
    body[data-theme="emerald"] .contact-sheet-eyebrow {
      color: #dece98;
    }

    body[data-theme="emerald"] .play-btn {
      box-shadow: 0 0 0 8px rgba(226, 215, 170, 0.04);
    }

    body[data-theme="emerald"] .theme-switcher {
      border-color: rgba(196, 178, 122, 0.22);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    }

    body[data-theme="emerald"] .theme-option.active {
      background: linear-gradient(180deg, rgba(196, 178, 122, 0.18), rgba(196, 178, 122, 0.1));
      color: #f4edd5;
      box-shadow: inset 0 0 0 1px rgba(226, 215, 170, 0.14);
    }

    body[data-theme="emerald"] .theme-option:hover {
      color: #f4edd5;
      background: rgba(196, 178, 122, 0.08);
    }

    body[data-theme="emerald"] .mobile-action-bar {
      background: rgba(9, 37, 31, 0.9);
      border-color: rgba(196, 178, 122, 0.2);
    }

    body[data-theme="emerald"] .mobile-action-pill-secondary {
      color: #efe6ce;
      background: rgba(226, 215, 170, 0.05);
      border-color: rgba(226, 215, 170, 0.16);
    }

    body[data-theme="emerald"] .mobile-action-pill-primary {
      color: #14362f;
      background: #d3c18a;
      border-color: #d3c18a;
    }

    @keyframes loaderIntro {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes loaderFrameIn {
      from {
        opacity: 0;
        transform: scale(1.02);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes loaderCrestReveal {
      from {
        opacity: 0;
        transform: translateY(18px) scale(1.015);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes loaderGlow {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes loaderTextRise {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes loaderDividerExpand {
      from {
        opacity: 0;
        transform: scaleX(0.2);
      }

      to {
        opacity: 1;
        transform: scaleX(1);
      }
    }

    @media (max-width: 1024px) {
      nav {
        padding: 20px 20px;
        gap: 12px;
      }

      nav.scrolled {
        padding: 14px 20px;
      }

      .nav-logo {
        font-size: 1.6rem;
        letter-spacing: 0.28em;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-meta {
        gap: 10px;
      }

      .lang-switcher {
        gap: 8px;
      }

      .language-gate-grid {
        grid-template-columns: 1fr;
      }

      .language-gate-panel {
        max-width: 680px;
      }

      .lang-btn {
        font-size: 0.7rem;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        background: var(--nav-bg-scrolled);
        backdrop-filter: blur(12px);
        border: 1px solid var(--surface-border);
        border-radius: 18px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
      }

      nav.menu-open .nav-links {
        display: flex;
      }

      .nav-links li+li {
        border-top: 1px solid rgba(201, 168, 76, 0.12);
      }

      .nav-links a {
        display: block;
        padding: 14px 6px;
      }

      section,
      #video-reel {
        padding: 80px 32px;
      }

      #about,
      #contact {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .experience-stage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .experience-stage:nth-child(n) {
        margin-top: 0;
      }

      .impression-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .impression-note-wide,
      .impression-note-tall,
      .impression-note-stat {
        grid-column: span 1;
        min-height: 260px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .video-grid {
        grid-template-columns: 1fr;
      }

      .video-card.featured {
        grid-column: span 1;
      }

      .video-badge {
        top: 16px;
        left: 16px;
        font-size: 0.48rem;
      }

      footer {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .g-item:nth-child(n) {
        grid-column: span 1;
        min-height: 220px;
      }

      .g-item:nth-child(1) {
        grid-column: span 2;
        min-height: 320px;
      }

      .gallery-launch {
        margin-top: 34px;
      }

      .gallery-launch-copy {
        max-width: 42ch;
        font-size: 0.74rem;
      }

      .gallery-lightbox {
        padding: 22px;
      }

      .gallery-lightbox-shell {
        gap: 12px;
      }

      .gallery-lightbox-nav {
        width: 52px;
        height: 52px;
      }

      .g-item {
        --gallery-shell-radius: 26px 10px 26px 10px;
        --gallery-inner-radius: 18px 8px 18px 8px;
      }

      .g-item:nth-child(even) {
        --gallery-shell-radius: 10px 26px 10px 26px;
        --gallery-inner-radius: 8px 18px 8px 18px;
      }

      .g-inner {
        padding: 20px 18px 18px;
      }

      .g-inner::after {
        inset: 12px;
      }

      .g-label {
        min-height: 30px;
        padding: 7px 11px 6px;
        font-size: 0.48rem;
      }

      .g-num {
        width: 68px;
        height: 68px;
        right: 14px;
        bottom: 14px;
        font-size: 2.3rem;
      }

      .cursor,
      .cursor-ring {
        display: none !important;
      }

      .hero-line-left,
      .hero-line-right {
        display: none;
      }

      .hero-content {
        width: min(100%, 540px);
        margin: 0 auto;
        transform: none;
      }

      .hero-eyebrow {
        font-size: 0.56rem;
        letter-spacing: 0.32em;
        line-height: 1.8;
        margin-bottom: 8px;
      }

      .hero-title {
        font-size: clamp(4.5rem, 20vw, 7rem);
        line-height: 0.94;
        letter-spacing: 0.08em;
      }

      .hero-subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.22em;
        margin-top: 18px;
        line-height: 1.7;
      }

      .hero-divider {
        margin: 22px auto;
      }

      .hero-tagline {
        max-width: 30ch;
        margin: 0 auto;
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 8px;
      }

      .hero-cta {
        margin-top: 34px;
      }

      .btn-gold {
        width: min(100%, 330px);
        text-align: center;
        padding: 16px 22px;
        font-size: 0.62rem;
        letter-spacing: 0.26em;
      }

      .scroll-indicator {
        bottom: 28px;
        gap: 6px;
        left: 0;
        right: 0;
        width: max-content;
        margin-inline: auto;
        transform: none;
      }

      .scroll-indicator span {
        font-size: 0.48rem;
        letter-spacing: 0.24em;
      }

      .scroll-line {
        height: 42px;
      }

      .scroll-indicator {
        display: none;
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-behavior: auto;
      }

      body {
        padding-bottom: 92px;
      }

      nav {
        padding: 14px 12px;
        gap: 8px;
      }

      nav.scrolled {
        padding: 10px 12px;
      }

      .nav-logo {
        font-size: 1.3rem;
        letter-spacing: 0.2em;
        flex: 0 1 auto;
        min-width: 0;
      }

      .nav-meta {
        gap: 8px;
        margin-left: auto;
      }

      .lang-switcher {
        gap: 5px;
        padding: 0 0 0 2px;
      }

      .menu-toggle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        border-width: 1.2px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
      }

      .theme-switcher {
        gap: 3px;
        min-height: 34px;
        padding: 3px;
        border-radius: 999px;
      }

      .theme-option {
        min-width: auto;
        height: 34px;
        padding: 0 8px;
        font-size: 0.52rem;
        letter-spacing: 0.14em;
        border-radius: 999px;
      }

      .theme-option-label {
        display: none;
      }

      .theme-swatch {
        width: 11px;
        height: 11px;
      }

      .lang-btn {
        font-size: 0.58rem;
        letter-spacing: 0.16em;
      }

      .nav-links {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        max-height: calc(var(--app-height) - 96px);
        padding: 14px;
        border-radius: 22px;
        overflow-y: auto;
        overscroll-behavior: contain;
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
      }

      .nav-links a {
        padding: 16px 10px;
        font-size: 0.72rem;
        letter-spacing: 0.22em;
      }

      .language-gate {
        padding: 14px;
        align-items: flex-start;
        overflow-y: auto;
      }

      .language-gate-panel {
        max-height: calc(var(--app-height) - 28px);
        padding: 22px 16px 14px;
        overflow-y: auto;
        overscroll-behavior: contain;
      }

      .language-gate-panel::before {
        inset: 10px;
      }

      .language-gate-panel::after {
        top: 18px;
        width: min(160px, 46vw);
      }

      .language-gate-eyebrow {
        margin-bottom: 10px;
        font-size: 0.5rem;
        letter-spacing: 0.32em;
      }

      .language-gate-title {
        font-size: clamp(1.7rem, 8.8vw, 2.55rem);
        line-height: 0.98;
        margin-bottom: 12px;
      }

      .language-gate-subtitle {
        max-width: 32ch;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
        line-height: 1.55;
        margin-bottom: 18px;
      }

      .language-gate-grid {
        gap: 10px;
      }

      .language-choice {
        padding: 16px 14px 14px;
      }

      .language-choice::before {
        inset: 8px;
      }

      .language-choice-lang {
        font-size: 1.45rem;
        margin-bottom: 8px;
      }

      .language-choice-native {
        font-size: 0.5rem;
        letter-spacing: 0.24em;
        margin-bottom: 12px;
      }

      .language-choice-desc {
        font-size: 0.66rem;
        line-height: 1.55;
      }

      #hero {
        min-height: var(--app-height);
        height: var(--app-height);
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 24px;
      }

      .hero-content {
        width: 100%;
        max-width: 340px;
      }

      .hero-eyebrow {
        display: inline-block;
        padding: 7px 12px 6px;
        font-size: 0.48rem;
        letter-spacing: 0.22em;
        line-height: 1.45;
        border: 1px solid rgba(201, 168, 76, 0.18);
        border-radius: 999px;
        background: rgba(10, 8, 7, 0.14);
      }

      .hero-title {
        font-size: clamp(4.25rem, 24vw, 6rem);
        letter-spacing: 0.04em;
        line-height: 0.9;
        margin-top: 14px;
      }

      .hero-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.24em;
        margin-top: 14px;
      }

      .gallery-launch {
        margin-top: 28px;
        padding: 0 6px;
      }

      .gallery-launch-copy {
        font-size: 0.72rem;
        line-height: 1.82;
        margin-bottom: 18px;
      }

      .gallery-launch-btn {
        width: 100%;
        min-width: 0;
        max-width: 320px;
      }

      .video-caption {
        padding: 18px 18px 20px;
      }

      .video-caption h4 {
        font-size: 1.06rem;
      }

      .video-caption p {
        font-size: 0.7rem;
        line-height: 1.75;
      }

      .video-badge {
        top: 14px;
        left: 14px;
        min-height: 28px;
        padding: 6px 10px 5px;
        font-size: 0.45rem;
        letter-spacing: 0.18em;
      }

      .play-btn {
        width: 58px;
        height: 58px;
        font-size: 1.08rem;
      }

      .video-label {
        font-size: 0.54rem;
        letter-spacing: 0.24em;
      }

      .gallery-lightbox {
        padding: 76px 14px 20px;
        align-items: flex-start;
      }

      .gallery-lightbox-shell {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .gallery-lightbox-stage {
        order: 1;
      }

      .gallery-lightbox-nav {
        position: fixed;
        bottom: max(26px, env(safe-area-inset-bottom) + 10px);
        width: 52px;
        height: 52px;
        z-index: 2;
      }

      .gallery-lightbox-nav-prev {
        left: 16px;
      }

      .gallery-lightbox-nav-next {
        right: 16px;
      }

      .gallery-lightbox-close {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
      }

      .gallery-lightbox-media {
        min-height: auto;
      }

      .gallery-lightbox-media img {
        height: auto;
        max-height: calc(var(--app-height) - 210px);
      }

      .gallery-lightbox-meta {
        margin-top: 12px;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .gallery-lightbox-caption {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
      }

      .gallery-lightbox-count {
        font-size: 1.15rem;
      }

      .g-item {
        --gallery-shell-radius: 24px 10px 24px 10px;
        --gallery-inner-radius: 16px 8px 16px 8px;
      }

      .g-item:nth-child(even) {
        --gallery-shell-radius: 10px 24px 10px 24px;
        --gallery-inner-radius: 8px 16px 8px 16px;
      }

      .g-inner {
        padding: 18px 16px 16px;
      }

      .g-inner::after {
        inset: 10px;
      }

      .g-label {
        min-height: 28px;
        padding: 6px 10px;
        font-size: 0.46rem;
        letter-spacing: 0.18em;
      }

      .g-num {
        width: 60px;
        height: 60px;
        right: 12px;
        bottom: 12px;
        font-size: 2rem;
      }

      .experience-header {
        margin-bottom: 44px;
      }

      .experience-intro {
        font-size: 0.78rem;
        line-height: 1.8;
        max-width: 30ch;
      }

      .experience-stage-grid {
        display: block;
        position: relative;
        padding: 12px 0 2px;
        margin: 0 auto;
      }

      .experience-stage-grid::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 14px;
        bottom: 18px;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.72) 8%, rgba(201, 168, 76, 0.32) 92%, transparent);
      }

      .experience-stage-grid::after {
        content: '';
        position: absolute;
        left: 10px;
        top: 12px;
        bottom: 16px;
        width: 9px;
        background: radial-gradient(circle at center, rgba(201, 168, 76, 0.22), transparent 72%);
        pointer-events: none;
      }

      .experience-stage {
        width: calc(100% - 32px);
        min-height: auto;
        padding: 24px 20px 22px;
        margin: 0 0 18px 30px;
        border-radius: 0 24px 0 24px;
        background:
          radial-gradient(circle at top left, rgba(201, 168, 76, 0.08) 0%, transparent 42%),
          linear-gradient(180deg, var(--dark-3), var(--dark-4));
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
      }

      .experience-stage:nth-child(1) {
        margin-top: 0;
        margin-left: 30px;
      }

      .experience-stage:nth-child(2) {
        width: calc(100% - 54px);
        margin-left: 54px;
        border-radius: 24px 0 24px 0;
      }

      .experience-stage:nth-child(3) {
        width: calc(100% - 38px);
        margin-left: 38px;
        border-radius: 0 26px 0 26px;
      }

      .experience-stage:nth-child(4) {
        width: calc(100% - 62px);
        margin-left: 62px;
        border-radius: 26px 0 26px 0;
      }

      .experience-stage::before {
        inset: auto 16px 12px auto;
        width: 94px;
        height: 94px;
        border-radius: 50%;
        background: radial-gradient(circle at center, rgba(201, 168, 76, 0.1) 0%, transparent 72%);
      }

      .experience-stage::after {
        content: '';
        position: absolute;
        inset: auto;
        left: -23px;
        top: 28px;
        width: 10px;
        height: 10px;
        border: none;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.08);
      }

      .experience-stage-index {
        position: absolute;
        top: 16px;
        right: 16px;
        margin-bottom: 0;
        font-size: 4.2rem;
        line-height: 0.8;
        color: rgba(201, 168, 76, 0.13);
      }

      .experience-stage-title {
        position: relative;
        z-index: 1;
        font-size: 1.6rem;
        margin-bottom: 14px;
        max-width: 6ch;
      }

      .experience-stage-copy {
        position: relative;
        z-index: 1;
        font-size: 0.74rem;
        line-height: 1.78;
        max-width: 24ch;
      }

      .impression-wall {
        display: flex;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 4px 0 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .impression-wall::-webkit-scrollbar {
        display: none;
      }

      .impression-note {
        flex: 0 0 100%;
        min-width: 100%;
        min-height: auto;
        padding: 22px 18px 18px;
        margin-bottom: 0;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
        overflow: hidden;
        width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 18px;
        transform: scale(0.972) !important;
        opacity: 0.74;
        transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      }

      .impression-note.is-current {
        transform: scale(1) !important;
        opacity: 1;
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
      }

      .impression-note::after {
        content: '“';
        position: absolute;
        inset: auto;
        top: 8px;
        right: 14px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.2rem;
        line-height: 0.8;
        border: none;
        color: rgba(201, 168, 76, 0.12);
        pointer-events: none;
      }

      .impression-note-wide:first-child {
        border-radius: 18px;
      }

      .impression-note-tall {
        border-radius: 18px;
      }

      .impression-note-wide:last-child {
        border-radius: 18px;
      }

      .impression-tag {
        font-size: 0.5rem;
        letter-spacing: 0.28em;
      }

      .impression-text {
        position: relative;
        z-index: 1;
        font-size: 1rem;
        line-height: 1.72;
        margin: 16px 0 18px;
        max-width: none;
      }

      .impression-meta {
        position: relative;
        z-index: 1;
        font-size: 0.5rem;
        letter-spacing: 0.22em;
      }

      .hero-tagline {
        font-size: 1rem;
        max-width: 30ch;
        line-height: 1.85;
        margin-top: 8px;
      }

      .btn-gold {
        width: 100%;
        max-width: none;
        letter-spacing: 0.18em;
        padding: 18px 22px;
        border-width: 1.2px;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
      }

      .hero-cta .btn-gold {
        border-radius: 999px;
      }

      .loader-crest {
        width: min(90vw, 1280px);
        max-height: 76vh;
      }

      #contact {
        gap: 28px;
        padding-bottom: 104px;
      }

      .contact-info,
      .contact-form {
        position: relative;
        padding: 22px 18px;
        border: 1px solid var(--surface-border);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 24px;
        overflow: hidden;
      }

      .contact-info::before,
      .contact-form::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.07), transparent 48%);
        pointer-events: none;
      }

      .contact-detail {
        gap: 14px;
        margin-bottom: 18px;
        padding: 14px 0;
      }

      .contact-detail + .contact-detail {
        border-top: 1px solid rgba(201, 168, 76, 0.1);
      }

      .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .form-group {
        margin-bottom: 18px;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        min-height: 52px;
        border-radius: 16px;
        padding: 15px 16px;
      }

      .form-group textarea {
        min-height: 132px;
      }

      .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        border-radius: 999px;
      }

      footer {
        gap: 18px;
        padding: 42px 24px 120px;
      }

      .footer-logo {
        font-size: 1.85rem;
        letter-spacing: 0.28em;
      }

      .footer-copy {
        font-size: 0.52rem;
        line-height: 2;
      }

      .footer-credit {
        margin-top: 2vh;
      }

      .footer-social {
        gap: 12px;
      }

      .social-link {
        width: 42px;
        height: 42px;
      }

      .mobile-action-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 120;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 10px;
        padding: 8px;
        border: 1px solid var(--surface-border);
        border-radius: 999px;
        background: var(--nav-bg-scrolled);
        backdrop-filter: blur(16px);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
      }

      .mobile-action-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 16px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 0.6rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        border: 1px solid rgba(201, 168, 76, 0.16);
        transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
      }

      .mobile-action-pill-secondary {
        color: var(--cream);
        background: rgba(255, 255, 255, 0.03);
      }

      .mobile-action-pill-primary {
        color: var(--dark);
        background: var(--gold);
        border-color: var(--gold);
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

