    /* ══════════════════════════════════════
       ROOT — pure white base + royal navy
    ══════════════════════════════════════ */
    :root {
      --navy:        #0c1528;
      --navy-mid:    #122040;
      --navy-light:  #1b3060;
      --gold:        #c9a84c;
      --gold-light:  #e8cc80;
      --gold-pale:   #f5e9c8;
      --white:       #F8F8FF;   /* supreme white — used everywhere */
      --text-soft:   #4a5568;
      --ease-expo:   cubic-bezier(0.16,1,0.3,1);
    }

    *,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--white);
      color: var(--navy);
      /* overflow-x: hidden removed from body — it breaks position:fixed on mobile iOS/Android.
         Horizontal overflow is now controlled per-section instead. */
    }

    ::-webkit-scrollbar { width:5px; }
    ::-webkit-scrollbar-track { background: var(--white); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* Hide ALL scrollbars when product modal is open */
    body.modal-open ::-webkit-scrollbar { display: none !important; }
    body.modal-open { scrollbar-width: none !important; overflow: hidden !important; }

    /* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
    header {
      position: fixed; width: 100%; padding: 18px 80px;
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(248,248,255,0.96);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      z-index: 1000;
      overflow: visible; /* ensure ham-btn is never clipped */
    }

    /* ── SVG LOGO ── */
    .logo-svg-wrap { display: flex; align-items: center; }

    nav { display: flex; align-items: center; gap: 38px; }
    nav a {
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
      text-decoration: none; color: var(--navy); text-transform: uppercase;
      position: relative; padding-bottom: 4px; transition: color .3s;
    }
    nav a::after {
      content: ''; position: absolute; width: 0; height: 1px;
      background: var(--gold); bottom: 0; left: 50%;
      transform: translateX(-50%); transition: width .4s ease;
    }
    nav a:hover::after { width: 100%; }
    nav a:hover { color: var(--gold); }

    /* ══════════════════════════════════════
       HERO — no radial/gradient effects, clean
    ══════════════════════════════════════ */
    .hero {
      height: 96vh; position: relative;
      display: flex; align-items: center; justify-content: center;
      text-align: center; background: var(--navy); overflow: hidden;
    }

    /* Simple dark veil — NO radial glow effect */
    .hero-veil {
      position: absolute; inset: 0; z-index: 1;
      background: rgba(7,15,29,0.52);
    }

    .hero-img { position: absolute; inset: 0; will-change: transform; }
    .hero-img img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center; display: block;
      opacity: 0.80;
    }

    /* Corner ornaments */
    .hero-ornament { position: absolute; z-index: 2; width: 100px; height: 100px; border-color: rgba(201,168,76,0.3); border-style: solid; }
    .hero-ornament.tl { top: 80px; left: 80px; border-width: 1px 0 0 1px; }
    .hero-ornament.tr { top: 80px; right: 80px; border-width: 1px 1px 0 0; }
    .hero-ornament.bl { bottom: 60px; left: 80px; border-width: 0 0 1px 1px; }
    .hero-ornament.br { bottom: 60px; right: 80px; border-width: 0 1px 1px 0; }

    .hero-content {
      position: relative; z-index: 3;
      display: flex; flex-direction: column; align-items: center;
      /* Hidden until loader exits — prevents dark flash when panels part */
      visibility: hidden;
    }

    .hero-pre {
      font-family: 'Cinzel', serif;
      font-size: clamp(9px, 2.8vw, 15.91px);
      letter-spacing: clamp(3px, 1.5vw, 8px);
      color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
      margin-top: 10vh;
      opacity: 0; animation: fadeUp 0.25s ease 0.075s forwards;
      animation-play-state: paused;
      white-space: nowrap;
      max-width: 100%;
    }
    .hero h2 {
      font-family: 'Cormorant Garamond', serif; font-size: 105.26px;
      font-weight: 300; line-height: 1.0; color: var(--white);
      letter-spacing: 2px; opacity: 0; animation: fadeUp 0.25s ease 0.15s forwards;
      animation-play-state: paused;
    }
    .hero h2 em { font-style: italic; color: var(--gold-light); display: block; font-size: 117.50px; }

    .hero-divider {
      width: 80px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 28px auto; opacity: 0; animation: fadeUp 0.25s ease 0.225s forwards;
      animation-play-state: paused;
    }
    /* ── Product tagline — glowing chips ── */
    .hero-sub {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12.5px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.25s ease 0.275s forwards;
      animation-play-state: paused;
    }

    .hs-chip {
      font-family: 'Jost', sans-serif;
      font-size: 13.92px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
      padding: 7px 18px;
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(8px);
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    }

    /* inner shimmer sweep */
    .hs-chip::before {
      content: '';
      position: absolute;
      top: 0; left: -80%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: skewX(-20deg);
      transition: left 0.55s ease;
    }
    .hs-chip:hover::before { left: 130%; }

    .hs-chip:hover {
      border-color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.12);
      color: #fff;
      box-shadow: 0 0 18px rgba(255,255,255,0.12), inset 0 0 12px rgba(255,255,255,0.05);
    }

    /* stagger each chip in with a tiny delay */
    .hs-chip:nth-child(1) { animation-delay: 0.00s; }
    .hs-chip:nth-child(2) { animation-delay: 0.06s; }
    .hs-chip:nth-child(3) { animation-delay: 0.12s; }
    .hs-chip:nth-child(4) { animation-delay: 0.18s; }
    .hs-chip:nth-child(5) { animation-delay: 0.24s; }

    .hs-sep { display: none; }
    .hs-word { display: none; }
    .hero-sub-rule, .hero-sub-words, .hero-sub-diamond { display: none; }
    .hero-btn {
      margin-top: 44px; padding: 16px 48px; background: transparent;
      border: 1px solid var(--gold); color: var(--gold);
      font-family: 'Cinzel', serif; font-size: 15.6px; letter-spacing: 4px;
      text-transform: uppercase; cursor: pointer; position: relative;
      overflow: hidden; transition: color .4s;
      opacity: 0; animation: fadeUp 0.25s ease 0.35s forwards;
      animation-play-state: paused;
    }
    .hero-btn::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: var(--gold); transition: left .4s ease; z-index: -1;
    }
    .hero-btn:hover::before { left: 0; }
    .hero-btn:hover { color: var(--navy); }

    /* ══════════════════════════════════════
       SECTION COMMONS
    ══════════════════════════════════════ */
    section { padding: 110px 80px; overflow-x: hidden; }
    .section-label {
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 6px;
      color: var(--gold); text-transform: uppercase; text-align: center; margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400;
      color: var(--navy); text-align: center; margin-bottom: 12px; line-height: 1.1;
    }
    .section-rule {
      width: 60px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 0 auto 60px;
    }

    /* ══════════════════════════════════════
       PRODUCTS — 3D CINEMATIC CAROUSEL
    ══════════════════════════════════════ */
    #products {
      background: var(--white);
      padding-bottom: 140px;
      position: relative;
      overflow: hidden;
    }
    #products::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201,168,76,0.03) 0%, transparent 60%);
    }
    #products::after { display: none; }
    #products .section-label { color: var(--gold); }
    #products .section-title { color: var(--navy); }
    #products .section-rule { background: linear-gradient(to right, transparent, var(--gold), transparent); }

    /* ── Category Slides (used in main carousel) ── */
    .cat-tile {
      position: relative;
      height: 420px;
      overflow: hidden;
      cursor: pointer;
      border: none; background: none; padding: 0;
      display: block;
    }

    /* BG image */
    .cat-tile-img {
      position: absolute; inset: 0;
    }
    .cat-tile-img img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
      transition: transform 1.3s cubic-bezier(0.16,1,0.3,1), filter 0.8s ease;
      filter: brightness(0.45) saturate(1.1);
    }
    .cat-tile:hover .cat-tile-img img {
      transform: scale(1.08);
      filter: brightness(0.62) saturate(1.0);
    }

    /* Dark-to-white veil */
    .cat-tile-veil {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to top,
        rgba(7,15,29,0.92) 0%,
        rgba(7,15,29,0.40) 50%,
        rgba(7,15,29,0.06) 100%);
      transition: background 0.7s ease;
    }
    .cat-tile:hover .cat-tile-veil {
      background: linear-gradient(to top,
        rgba(255,255,255,0.90) 0%,
        rgba(255,255,255,0.46) 48%,
        rgba(255,255,255,0.08) 100%);
    }

    /* White wash diagonal */
    .cat-tile-wash {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(135deg,
        rgba(255,255,255,0.50) 0%,
        rgba(255,255,255,0.16) 55%,
        rgba(255,255,255,0.02) 100%);
      opacity: 0; transition: opacity 0.7s ease;
    }
    .cat-tile:hover .cat-tile-wash { opacity: 1; }

    /* Spotlight orb */
    .cat-tile-orb {
      position: absolute; z-index: 2; pointer-events: none;
      width: 340px; height: 340px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.07) 50%, transparent 70%);
      top: -220px; left: 50%; transform: translateX(-50%);
      opacity: 0;
      transition: top 0.9s cubic-bezier(0.16,1,0.3,1), opacity 0.6s ease;
    }
    .cat-tile:hover .cat-tile-orb { top: -60px; opacity: 1; }

    /* Gold letterbox bars */
    .cat-tile::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      z-index: 6; transform: scaleX(0); transform-origin: center;
      transition: transform 0.65s cubic-bezier(0.16,1,0.3,1) 0.05s;
    }
    .cat-tile::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      z-index: 6; transform: scaleX(0); transform-origin: center;
      transition: transform 0.65s cubic-bezier(0.16,1,0.3,1) 0.05s;
    }
    .cat-tile:hover::before,
    .cat-tile:hover::after { transform: scaleX(1); }
    /* active tile — keep bars visible */
    .cat-tile.active::before,
    .cat-tile.active::after { transform: scaleX(1); }

    /* Gold inset glow */
    .cat-tile-edge {
      position: absolute; inset: 0; z-index: 5; pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(201,168,76,0);
      transition: box-shadow 0.5s ease;
    }
    .cat-tile:hover .cat-tile-edge,
    .cat-tile.active .cat-tile-edge {
      box-shadow: inset 0 0 0 1px rgba(201,168,76,0.32);
    }

    /* Right divider between tiles */
    .cat-tile + .cat-tile { border-left: 1px solid rgba(201,168,76,0.12); }

    /* Text body */
    .cat-tile-body {
      position: absolute; inset: 0; z-index: 4;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 36px 32px 40px;
      text-align: left;
    }

    .cat-tile-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 10px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 10px; opacity: 0.75;
      transform: translateY(8px);
      transition: transform 0.5s ease, opacity 0.5s ease, color 0.6s ease;
    }
    .cat-tile:hover .cat-tile-eyebrow,
    .cat-tile.active .cat-tile-eyebrow {
      transform: translateY(0); opacity: 1; color: var(--navy-mid);
    }

    .cat-tile-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px; font-weight: 400; line-height: 1.08;
      color: var(--white);
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.6s ease;
    }
    .cat-tile:hover .cat-tile-name,
    .cat-tile.active .cat-tile-name {
      transform: translateY(-5px); color: var(--navy);
    }

    .cat-tile-rule {
      width: 34px; height: 1px; background: var(--gold);
      margin: 16px 0 12px;
      transition: width 0.55s ease 0.1s;
    }
    .cat-tile:hover .cat-tile-rule,
    .cat-tile.active .cat-tile-rule { width: 62px; }

    .cat-tile-sub {
      font-family: 'Jost', sans-serif; font-size: 12px; line-height: 1.85;
      color: rgba(255,255,255,0.65); font-weight: 300;
      max-height: 0; overflow: hidden; opacity: 0;
      transition: max-height 0.55s ease, opacity 0.5s ease 0.1s, color 0.6s ease;
    }
    .cat-tile:hover .cat-tile-sub,
    .cat-tile.active .cat-tile-sub {
      max-height: 80px; opacity: 1; color: rgba(7,15,29,0.75);
    }

    .cat-tile-cta {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px;
      color: var(--gold); text-transform: uppercase; margin-top: 16px;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.4s ease 0.22s, transform 0.4s ease 0.22s, color 0.6s ease;
    }
    .cat-tile-cta::after { content: '→'; font-size: 13px; }
    .cat-tile:hover .cat-tile-cta,
    .cat-tile.active .cat-tile-cta {
      opacity: 1; transform: translateY(0); color: var(--navy);
    }

    /* Active-state overlay tint (selected) */
    .cat-tile.active .cat-tile-veil {
      background: linear-gradient(to top,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.42) 48%,
        rgba(255,255,255,0.06) 100%);
    }
    .cat-tile.active .cat-tile-wash { opacity: 1; }
    .cat-tile.active .cat-tile-img img { transform: scale(1.05); filter: brightness(0.60) saturate(1.0); }

    /* Tile entrance animation */
    @keyframes tileReveal {
      0%   { opacity: 0; clip-path: inset(100% 0 0 0); transform: translateY(24px); }
      50%  { clip-path: inset(0% 0 0 0); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .cat-tiles-grid .cat-tile {
      animation: tileReveal 0.8s cubic-bezier(0.16,1,0.3,1) both;
    }
    .cat-tiles-grid .cat-tile:nth-child(1) { animation-delay: 0.00s; }
    .cat-tiles-grid .cat-tile:nth-child(2) { animation-delay: 0.10s; }
    .cat-tiles-grid .cat-tile:nth-child(3) { animation-delay: 0.20s; }
    .cat-tiles-grid .cat-tile:nth-child(4) { animation-delay: 0.30s; }
    .cat-tiles-grid .cat-tile:nth-child(5) { animation-delay: 0.40s; }

    /* ── Carousel wrapper placeholder (kept for compat) ── */

    /* ── Carousel stage ── */
    .carousel-stage {
      position: relative; max-width: 1340px; margin: 0 auto;
      perspective: 1400px;
      perspective-origin: 50% 40%;
      height: 520px;
      z-index: 2;
    }

    /* The actual track holding all slides */
    .carousel-track {
      position: absolute; inset: 0;
      transform-style: preserve-3d;
      transition: none; /* JS-driven */
    }

    /* Individual slide */
    .c-slide {
      position: absolute;
      width: 400px; height: 520px;
      top: 0;
      left: 50%;
      transform-origin: center center;
      transform-style: preserve-3d;
      cursor: pointer;
      transition:
        transform  0.92s cubic-bezier(0.16,1,0.3,1),
        opacity    0.92s cubic-bezier(0.16,1,0.3,1),
        filter     0.92s ease,
        box-shadow 0.92s ease;
      will-change: transform, opacity, filter;
      border: 1px solid rgba(201,168,76,0.0);
    }

    /* ── States ── */
    /* centre — hero */
    .c-slide[data-pos="0"] {
      transform: translateX(-50%) translateZ(0px) rotateY(0deg) scale(1);
      opacity: 1; filter: brightness(1);
      box-shadow: 0 40px 100px rgba(0,0,0,0.22), 0 0 0 1px rgba(201,168,76,0.28);
      z-index: 10; border-color: rgba(201,168,76,0.28);
    }
    /* immediate left */
    .c-slide[data-pos="-1"] {
      transform: translateX(calc(-50% - 340px)) translateZ(-260px) rotateY(28deg) scale(0.88);
      opacity: 0.72; filter: brightness(0.65);
      z-index: 8; box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }
    /* immediate right */
    .c-slide[data-pos="1"] {
      transform: translateX(calc(-50% + 340px)) translateZ(-260px) rotateY(-28deg) scale(0.88);
      opacity: 0.72; filter: brightness(0.65);
      z-index: 8; box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }
    /* far left */
    .c-slide[data-pos="-2"] {
      transform: translateX(calc(-50% - 590px)) translateZ(-540px) rotateY(44deg) scale(0.72);
      opacity: 0.28; filter: brightness(0.45);
      z-index: 6;
    }
    /* far right */
    .c-slide[data-pos="2"] {
      transform: translateX(calc(-50% + 590px)) translateZ(-540px) rotateY(-44deg) scale(0.72);
      opacity: 0.28; filter: brightness(0.45);
      z-index: 6;
    }
    /* hidden — beyond visible range */
    .c-slide[data-pos="-3"],
    .c-slide[data-pos="3"],
    .c-slide[data-pos="hidden"] {
      opacity: 0; pointer-events: none; z-index: 1;
      transform: translateX(-50%) translateZ(-800px) scale(0.5);
    }

    /* ── Slide image ── */
    .c-slide-img {
      position: absolute; inset: 0; overflow: hidden;
    }
    .c-slide-img img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
      transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
      filter: brightness(0.5) saturate(1.05);
    }
    .c-slide[data-pos="0"]:hover .c-slide-img img {
      transform: scale(1.06);
    }

    /* Depth gradient */
    .c-slide-veil {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to top,
        rgba(7,15,29,0.96) 0%,
        rgba(7,15,29,0.50) 40%,
        rgba(7,15,29,0.04) 75%,
        transparent 100%);
      transition: background 0.7s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-veil {
      background: linear-gradient(to top,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.56) 42%,
        rgba(255,255,255,0.10) 70%,
        transparent 100%);
    }

    /* White colour wash on centre hover */
    .c-slide-wash {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(135deg,
        rgba(255,255,255,0.52) 0%,
        rgba(255,255,255,0.18) 55%,
        rgba(255,255,255,0.04) 100%);
      opacity: 0; transition: opacity 0.7s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-wash { opacity: 1; }

    /* Spotlight orb */
    .c-slide-orb {
      position: absolute; z-index: 2; pointer-events: none;
      width: 320px; height: 320px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.08) 50%, transparent 70%);
      top: -200px; left: 50%; transform: translateX(-50%);
      opacity: 0; transition: top 0.9s cubic-bezier(0.16,1,0.3,1), opacity 0.6s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-orb { top: -50px; opacity: 1; }

    /* Gold border letterbox bars */
    .c-slide::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      z-index: 6; transform: scaleX(0); transform-origin: center;
      transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s;
    }
    .c-slide::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      z-index: 6; transform: scaleX(0); transform-origin: center;
      transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s;
    }
    .c-slide[data-pos="0"]:hover::before,
    .c-slide[data-pos="0"]:hover::after { transform: scaleX(1); }

    /* Gold inset edge glow */
    .c-slide-edge {
      position: absolute; inset: 0; z-index: 5; pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(201,168,76,0);
      transition: box-shadow 0.5s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-edge {
      box-shadow: inset 0 0 0 1px rgba(201,168,76,0.32);
    }

    /* Text content */
    .c-slide-body {
      position: absolute; inset: 0; z-index: 4;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 40px 36px 44px;
    }
    .c-slide-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 10px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 10px; opacity: 0.75;
      transform: translateY(8px);
      transition: transform 0.5s ease, opacity 0.5s ease, color 0.6s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-num {
      transform: translateY(0); opacity: 1; color: var(--navy-mid);
    }
    .c-slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px; font-weight: 400; line-height: 1.1;
      color: var(--white);
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.6s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-title {
      transform: translateY(-5px); color: var(--navy);
    }
    .c-slide-rule {
      width: 34px; height: 1px; background: var(--gold);
      margin: 16px 0 14px;
      transition: width 0.55s ease 0.1s;
    }
    .c-slide[data-pos="0"]:hover .c-slide-rule { width: 64px; }

    .c-slide-desc {
      font-family: 'Jost', sans-serif; font-size: 13px; line-height: 1.9;
      color: rgba(255,255,255,0.68); font-weight: 300;
      max-height: 0; overflow: hidden; opacity: 0;
      transition: max-height 0.55s ease, opacity 0.5s ease 0.1s, color 0.6s ease;
    }
    .c-slide[data-pos="0"]:hover .c-slide-desc {
      max-height: 120px; opacity: 1; color: rgba(7,15,29,0.78);
    }
    .c-slide-cta {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px;
      color: var(--gold); text-transform: uppercase; margin-top: 18px;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.4s ease 0.22s, transform 0.4s ease 0.22s, color 0.6s ease;
    }
    .c-slide-cta::after { content: '→'; font-size: 13px; }
    .c-slide[data-pos="0"]:hover .c-slide-cta {
      opacity: 1; transform: translateY(0); color: var(--navy);
    }

    /* ── Arrow controls ── */
    .carousel-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px;
      border: 1px solid rgba(201,168,76,0.45);
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px);
      color: var(--gold); font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 20;
      transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .carousel-arrow:hover {
      background: var(--gold); color: var(--white);
      border-color: var(--gold);
      box-shadow: 0 8px 32px rgba(201,168,76,0.35);
    }
    .carousel-arrow.prev { left: clamp(8px, calc(50% - 720px), calc(50% - 680px)); }
    .carousel-arrow.next { right: clamp(8px, calc(50% - 720px), calc(50% - 680px)); }
    .carousel-arrow:hover { transform: translateY(-50%) scale(1.08); }

    /* ── Main carousel stage (categories) ── */
    .main-carousel-stage {
      position: relative; max-width: 1340px; margin: 0 auto;
      perspective: 1400px;
      height: 520px;
      z-index: 2;
    }
    .main-carousel-stage .carousel-arrow.prev { left: clamp(8px, calc(50% - 720px), calc(50% - 680px)); }
    .main-carousel-stage .carousel-arrow.next { right: clamp(8px, calc(50% - 720px), calc(50% - 680px)); }

    .main-carousel-hint {
      text-align: center; margin-top: 28px;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px;
      color: rgba(201,168,76,0.7); text-transform: uppercase;
    }

    /* ═══════════════════════════════════════
       IN-SECTION VIEW SWITCHING
    ═══════════════════════════════════════ */

    /* Main view */
    #productsMainView {
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
    }

    /* Sub view — hidden by default, slides up into place */
    #productsSubView {
      display: none;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
      position: relative; /* positioning context for modal overlay */
    }
    #productsSubView.visible {
      display: block;
      opacity: 1;
      transform: translateY(0);
      background: var(--white);
    }

    .csp-top-bar {
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
      margin-bottom: 0;
    }

    .csp-header {
      display: flex; align-items: center; gap: 40px;
      padding: 36px 0 32px;
      border-bottom: 1px solid rgba(201,168,76,0.2);
      margin-bottom: 0;
    }

    .csp-back {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
      color: var(--navy); text-transform: uppercase; border: none; background: none;
      cursor: pointer; padding: 10px 18px;
      border: 1px solid rgba(12,21,40,0.25);
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      white-space: nowrap; flex-shrink: 0;
    }
    .csp-back:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .csp-back svg { transition: transform 0.3s; }
    .csp-back:hover svg { transform: translateX(-3px); }

    .csp-header-title-wrap { flex: 1; }
    .csp-header-label {
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 6px;
    }
    .csp-header-name {
      font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300;
      color: var(--navy); line-height: 1;
    }

    /* Hero strip */
    .csp-hero {
      position: relative; height: 260px; overflow: hidden;
      margin: 0 -80px; /* bleed to section edges */
    }
    .csp-hero-img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.45) saturate(1.2);
    }
    .csp-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 20%, var(--white) 100%);
    }
    .csp-hero-scan {
      position: absolute; top:0; bottom:0; width:100px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent);
      animation: modalScan 1.2s ease 0.1s both;
      pointer-events: none;
    }

    /* Sub-carousel section */
    .csp-carousel-section {
      padding-top: 56px;
    }
    .csp-cat-label {
      text-align: center;
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 6px;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 44px;
    }
    .csp-stage {
      max-width: 1200px; margin: 0 auto;
      height: 520px;
      position: relative;
      perspective: 1400px;
      perspective-origin: 50% 40%;
    }
    .csp-stage .carousel-arrow.prev { left: clamp(8px, calc(50% - 640px), calc(50% - 600px)); }
    .csp-stage .carousel-arrow.next { right: clamp(8px, calc(50% - 640px), calc(50% - 600px)); }

    @media (max-width: 900px) {
      .csp-header { gap: 16px; }
      .csp-hero { margin: 0 -24px; }
      .csp-stage .carousel-arrow.prev { left: 8px; }
      .csp-stage .carousel-arrow.next { right: 8px; }
      .main-carousel-stage .carousel-arrow.prev { left: 8px; }
      .main-carousel-stage .carousel-arrow.next { right: 8px; }
    }

    /* ── Dot indicators ── */
    .carousel-dots {
      display: flex; justify-content: center; gap: 10px;
      margin-top: 52px; position: relative; z-index: 2;
    }
    .c-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(201,168,76,0.3);
      cursor: pointer;
      transition: background 0.4s, transform 0.4s, width 0.4s;
      border-radius: 3px;
    }
    .c-dot.active {
      background: var(--gold); width: 28px;
    }

    /* ── Entrance animation ── */
    @keyframes carouselIn {
      0%   { opacity: 0; transform: translateX(-50%) translateZ(-300px) scale(0.8); }
      100% { opacity: 1; transform: translateX(-50%) translateZ(0) scale(1); }
    }
    .carousel-stage.init-done .c-slide[data-pos="0"] {
      animation: carouselIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .cat-tiles-grid { grid-template-columns: repeat(2, 1fr); }
      .cat-tile { height: 280px; }
      .carousel-stage { height: 420px; }
      .c-slide { width: 300px; height: 420px; }
      .c-slide[data-pos="-1"] { transform: translateX(calc(-50% - 240px)) translateZ(-200px) rotateY(28deg) scale(0.85); }
      .c-slide[data-pos="1"]  { transform: translateX(calc(-50% + 240px)) translateZ(-200px) rotateY(-28deg) scale(0.85); }
      .c-slide[data-pos="-2"],
      .c-slide[data-pos="2"]  { opacity: 0; pointer-events: none; }
      .carousel-arrow.prev { left: 8px; }
      .carousel-arrow.next { right: 8px; }
    }
    @media (max-width: 540px) {
      .cat-tiles-grid { grid-template-columns: 1fr 1fr; }
      .cat-tile { height: 220px; }
      .cat-tile-name { font-size: 24px; }
    }

    /* ══════════════════════════════════════
       WHY NIRYAANI — CINEMATIC 3D SQUARES
    ══════════════════════════════════════ */
    #why { background: var(--white); position: relative; overflow: hidden; }

    .why-grid {
      display: grid; grid-template-columns: 1fr;
      grid-auto-rows: 148px;
      gap: 18px; max-width: 780px; margin: 0 auto;
      perspective: 1200px;
    }

    @keyframes whyBoxIn {
      0%   { opacity:0; transform: rotateY(-25deg) translateY(40px) scale(0.9); }
      60%  { transform: rotateY(3deg) translateY(-4px) scale(1.01); }
      100% { opacity:1; transform: rotateY(0deg) translateY(0) scale(1); }
    }
    @keyframes whyShimmer {
      0%   { left: -80%; }
      100% { left: 130%; }
    }
    @keyframes whyIconPop {
      0%,100% { transform: scale(1) translateY(0); }
      50%      { transform: scale(1.18) translateY(-4px); }
    }
    @keyframes whyGoldLine {
      from { width: 0; }
      to   { width: 40px; }
    }
    @keyframes whyCornerGlow {
      0%,100% { opacity:0.3; }
      50%      { opacity:0.9; }
    }

    .why-item {
      position: relative; overflow: hidden;
      background: linear-gradient(148deg, #0e1d35 0%, #0c1528 55%, #080f1e 100%);
      border: 1px solid rgba(201,168,76,0.28);
      padding: 20px 32px 20px 36px;
      opacity: 0;
      transform-style: preserve-3d;
      transform: rotateY(-25deg) translateY(40px) scale(0.9);
      transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
                  transform 0.8s cubic-bezier(0.16,1,0.3,1),
                  box-shadow 0.5s ease,
                  border-color 0.4s ease;
      cursor: default;
      box-shadow:
        0 8px 60px rgba(0,0,0,0.22),
        0 0 0 1px rgba(201,168,76,0.06);
      /* Horizontal rectangle layout */
      display: grid;
      grid-template-columns: 80px 1fr;
      grid-template-rows: auto 1fr auto auto;
      column-gap: 28px;
      align-items: start;
      height: 100%;
      box-sizing: border-box;
    }
    .why-item.visible {
      opacity: 1;
      transform: rotateY(0deg) translateY(0) scale(1);
    }
    .why-item:nth-child(1) { transition-delay: 0s; }
    .why-item:nth-child(2) { transition-delay: 0.12s; }
    .why-item:nth-child(3) { transition-delay: 0.24s; }
    .why-item:nth-child(4) { transition-delay: 0.08s; }
    .why-item:nth-child(5) { transition-delay: 0.20s; }
    .why-item:nth-child(6) { transition-delay: 0.32s; }

    /* Gold shimmer sweep on hover */
    .why-item::before {
      content: ''; position: absolute; top: 0; left: -80%;
      width: 55%; height: 100%;
      background: linear-gradient(120deg, transparent, rgba(201,168,76,0.07), transparent);
      pointer-events: none; z-index: 1; transition: none;
    }
    .why-item:hover::before {
      animation: whyShimmer 0.8s ease forwards;
    }

    /* Top-left gold corner bracket (mirrors lux-info-card::before) */
    .why-item::after {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 36px; height: 36px;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
      pointer-events: none; z-index: 3;
      opacity: 0.7;
      transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
    }
    .why-item:hover::after { opacity: 1; width: 44px; height: 44px; }

    .why-item:hover {
      border-color: rgba(201,168,76,0.45);
      box-shadow:
        0 32px 70px rgba(7,15,29,0.45),
        0 0 0 1px rgba(201,168,76,0.18),
        0 0 40px rgba(201,168,76,0.08);
      transform: translateY(-10px) rotateX(3deg) rotateY(-1deg) scale(1.02) !important;
    }

    /* Bottom-right gold corner bracket (mirrors lux-info-card::after) */
    .why-corner-br-bracket {
      position: absolute; bottom: 0; right: 0;
      width: 36px; height: 36px;
      border-bottom: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
      pointer-events: none; z-index: 3;
      opacity: 0.7;
      transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
    }
    .why-item:hover .why-corner-br-bracket { opacity: 1; width: 44px; height: 44px; }

    /* Top gold rule — spans full width above the two-column content */
    .why-top-rule {
      width: 0; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold), transparent);
      margin-bottom: 20px; position: relative; z-index: 2;
      transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
      grid-column: 1 / -1; /* span both columns */
    }
    .why-item.visible .why-top-rule { width: 100%; }

    /* Icon eyebrow row — left column, vertically centred */
    .why-eyebrow-row {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 9px;
      font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase;
      position: relative; z-index: 2;
      grid-column: 1;
      grid-row: 2 / 5; /* spans title, rule, and paragraph rows */
      border-right: 1px solid rgba(201,168,76,0.18);
      padding-right: 20px;
      min-height: 100%;
      align-self: stretch;
    }
    .why-eyebrow-row .why-icon {
      font-size: 28px; display: inline-block; margin: 0;
      transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
    }
    .why-item:hover .why-eyebrow-row .why-icon { animation: whyIconPop 2s ease-in-out infinite; }
    .why-eyebrow-line {
      display: inline-block; width: 18px; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
    }
    .why-eyebrow-line.right {
      background: linear-gradient(to left, var(--gold), var(--gold-light));
    }

    /* Title — right column row 2 */
    .why-item h4 {
      font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
      color: var(--white); line-height: 1.1; margin-bottom: 0;
      position: relative; z-index: 2;
      transition: color 0.4s ease;
      grid-column: 2; grid-row: 2;
    }
    .why-item:hover h4 { color: var(--gold-light); }

    /* Divider — right column row 3 */
    .why-rule {
      width: 0; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
      margin: 12px 0 10px; position: relative; z-index: 2;
      transition: width 0.55s ease;
      grid-column: 2; grid-row: 3;
    }
    .why-item.visible .why-rule { width: 31px; }
    .why-item:hover .why-rule { width: 49px; }

    /* Description — right column row 4 */
    .why-item p {
      font-family: 'Cormorant Garamond', serif; font-size: 13px; line-height: 1.75;
      color: rgba(255,255,255,0.52); font-weight: 400; font-style: italic;
      border-left: 2px solid rgba(201,168,76,0.35); padding-left: 10px;
      position: relative; z-index: 2;
      transition: color 0.4s ease, border-color 0.4s ease;
      grid-column: 2; grid-row: 4;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .why-item:hover p { color: rgba(255,255,255,0.78); border-color: rgba(201,168,76,0.6); }

    /* Ambient inner glow on hover */
    .why-glow {
      position: absolute; inset: 0; border-radius: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 65%);
      opacity: 0; transition: opacity 0.6s ease; pointer-events: none; z-index: 0;
      grid-column: 1 / -1;
    }
    .why-item:hover .why-glow { opacity: 1; }

    /* Legacy corner dots — hidden now */
    .why-corner { display: none; }
    .why-icon { font-size: 17px; display: inline-block; margin-bottom: 0; }

        /* ══════════════════════════════════════
       ABOUT
    ══════════════════════════════════════ */
    /* ══════════════════════════════════════
       ABOUT
    ══════════════════════════════════════ */
    #about { background: #F8F8FF; position: relative; overflow: hidden; }
    .about-inner {
      max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
    }
    .about-inner p {
      font-family: 'Cormorant Garamond', serif; font-size: 22px;
      font-weight: 400; line-height: 1.85; color: var(--navy-mid);
    }
    .about-inner em { color: var(--gold); font-style: italic; }

    /* ══════════════════════════════════════
       PROCESS
    ══════════════════════════════════════ */
    #process { background: #F8F8FF; position: relative; overflow: hidden; border-top: 1px solid #F8F8FF; }
    #process .section-label { color: var(--gold); }
    #process .section-title { color: var(--navy) !important; }
    #process .section-rule { background: linear-gradient(to right, transparent, var(--gold), transparent); }

    .process-track { max-width: 1000px; margin: 0 auto; position: relative; }
    .process-track::before {
      content: ''; position: absolute;
      left: 40px; top: 40px; bottom: 40px; width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), rgba(201,168,76,0.3), transparent);
    }

    .process-step {
      display: flex; align-items: flex-start; gap: 48px;
      padding: 36px 0; border-bottom: 1px solid rgba(201,168,76,0.15);
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      position: relative;
    }
    .process-step:last-child { border-bottom: none; }
    .process-step.visible { opacity: 1; transform: translateX(0); }
    .process-step:nth-child(1) { transition-delay: 0s; }
    .process-step:nth-child(2) { transition-delay: 0.15s; }
    .process-step:nth-child(3) { transition-delay: 0.3s; }
    .process-step:nth-child(4) { transition-delay: 0.45s; }

    .process-num {
      min-width: 80px; height: 80px;
      border: 1px solid var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
      color: var(--gold); flex-shrink: 0; background: var(--white);
      position: relative; z-index: 1;
      transition: background 0.4s, color 0.4s, box-shadow 0.4s;
    }
    .process-step:hover .process-num {
      background: var(--gold); color: var(--white);
      box-shadow: 0 0 30px rgba(201,168,76,0.3);
    }
    .process-content { padding-top: 16px; }
    .process-content h4 {
      font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 3px;
      color: var(--navy); text-transform: uppercase; margin-bottom: 12px;
    }
    .process-content p {
      font-family: 'Jost', sans-serif; font-size: 15px;
      color: var(--text-soft); line-height: 1.8; font-weight: 300; max-width: 700px;
    }

    /* ══════════════════════════════════════
       CERTIFICATIONS — 3D flip-in
    ══════════════════════════════════════ */
    #certifications { background: var(--white); position: relative; overflow: hidden; }

    .cert-grid {
      display: flex; flex-wrap: nowrap; justify-content: center;
      gap: 16px; max-width: 100%; margin: 0 auto; overflow-x: auto;
      padding-bottom: 8px;
    }

    .cert-item {
      width: 140px; min-width: 130px; height: 110px;
      background: rgba(248,248,255,0.92);
      border: 1px solid rgba(201,168,76,0.28);
      display: flex; align-items: center; justify-content: center;
      padding: 16px 14px; position: relative; overflow: hidden;
      opacity: 0; transform: scale(0.7) rotateX(30deg);
      transition:
        opacity 0.6s ease,
        transform 0.6s var(--ease-expo),
        box-shadow 0.4s,
        border-color 0.4s;
      cursor: default;
      perspective: 600px;
      transform-style: preserve-3d;
      box-shadow:
        0 4px 32px rgba(0,0,0,0.07),
        0 2px 0 rgba(255,255,255,0.95) inset,
        0 0 0 1px rgba(201,168,76,0.06);
    }

    /* Top-left gold corner bracket (lux-info-card::before style) */
    .cert-item::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 20px; height: 20px;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
      pointer-events: none; z-index: 3;
      opacity: 0.8;
      transition: opacity 0.3s, width 0.3s, height 0.3s;
    }
    .cert-item:hover::before { opacity: 1; width: 26px; height: 26px; }

    /* Bottom-right gold corner bracket (lux-info-card::after style) */
    .cert-item::after {
      content: '';
      position: absolute; bottom: 0; right: 0;
      width: 20px; height: 20px;
      border-bottom: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
      pointer-events: none; z-index: 3;
      opacity: 0.8;
      transition: opacity 0.3s, width 0.3s, height 0.3s;
    }
    .cert-item:hover::after { opacity: 1; width: 26px; height: 26px; }

    .cert-item:nth-child(1) { transition-delay: 0.05s; }
    .cert-item:nth-child(2) { transition-delay: 0.12s; }
    .cert-item:nth-child(3) { transition-delay: 0.19s; }
    .cert-item:nth-child(4) { transition-delay: 0.26s; }
    .cert-item:nth-child(5) { transition-delay: 0.33s; }
    .cert-item:nth-child(6) { transition-delay: 0.40s; }
    .cert-item:nth-child(7) { transition-delay: 0.47s; }

    .cert-item.visible { opacity: 1; transform: scale(1) rotateX(0deg); }

    /* Gold top rule — animates in on visible (lux-info-top-rule style) */
    .cert-item-rule {
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold), transparent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
      z-index: 4;
    }
    .cert-item.visible .cert-item-rule { transform: scaleX(1); }

    @keyframes certShimmer { 0%{left:-75%} 55%{left:150%} 100%{left:150%} }

    .cert-item:hover {
      box-shadow:
        0 12px 40px rgba(201,168,76,0.22),
        0 2px 0 rgba(255,255,255,0.95) inset,
        0 0 0 1px rgba(201,168,76,0.1);
      border-color: rgba(201,168,76,0.55);
      transform: translateY(-6px) rotateX(5deg) scale(1.05);
    }

    .cert-badge { display: flex; flex-direction: column; align-items: center; gap: 5px; }
    .cert-icon { font-size: 22px; }
    .cert-label {
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
      color: var(--navy); text-transform: uppercase; text-align: center;
      font-weight: 700; line-height: 1.3;
    }
    .cert-sub {
      font-family: 'Jost', sans-serif; font-size: 8px; letter-spacing: 1px;
      color: var(--gold); text-transform: uppercase; text-align: center;
    }

    /* ══════════════════════════════════════
       CONTACT
    ══════════════════════════════════════ */
    #contact { background: var(--navy); position: relative; overflow: hidden; }
    #contact::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
    }
    .contact-ornament { position: absolute; z-index: 1; border-color: rgba(201,168,76,0.12); border-style: solid; width: 200px; height: 200px; }
    .contact-ornament.tl { top: 40px; left: 40px; border-width: 1px 0 0 1px; }
    .contact-ornament.br { bottom: 40px; right: 40px; border-width: 0 1px 1px 0; }
    .contact-inner { position: relative; z-index: 2; text-align: center; }
    #contact .section-label { color: var(--gold-light); }
    #contact .section-title { color: var(--white); }
    #contact .section-rule { background: linear-gradient(to right, transparent, var(--gold-light), transparent); }
    #contact > .contact-inner > p { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 0; }
    .contact-form { max-width: 580px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .contact-form input, .contact-form textarea {
      padding: 16px 20px; background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.25); color: var(--white);
      font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300;
      letter-spacing: 1px; border-radius: 0;
      transition: border-color .3s, background .3s; outline: none;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder {
      color: rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      border-color: var(--gold); background: rgba(201,168,76,0.05);
    }
    .contact-form textarea { resize: vertical; min-height: 120px; }
    .submit-btn {
      padding: 18px 60px; background: transparent;
      border: 1px solid var(--gold); color: var(--gold);
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 5px;
      text-transform: uppercase; cursor: pointer; position: relative; overflow: hidden;
      transition: color .4s; align-self: center; margin-top: 10px;
    }
    .submit-btn::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: var(--gold); transition: left .4s ease; z-index: -1;
    }
    .submit-btn:hover::before { left: 0; }
    .submit-btn:hover { color: var(--navy); }

    /* ── SOCIAL SPEED-DIAL ── */
    .social-speed-dial {
      position: fixed; bottom: 28px; right: 28px;
      display: flex; flex-direction: column; align-items: center;
      z-index: 99999; gap: 0;
    }
    .social-speed-dial-icons {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      max-height: 0; overflow: hidden;
      padding-bottom: 0;
      transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease, padding-bottom 0.3s ease;
      opacity: 0;
      pointer-events: none;
    }
    .social-speed-dial:hover .social-speed-dial-icons,
    .social-speed-dial.open .social-speed-dial-icons {
      max-height: 400px; opacity: 1;
      pointer-events: all;
      padding-bottom: 10px;
    }
    .social-btn {
      width: 46px; height: 46px; border-radius: 50%;
      background: transparent;
      border: none;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: none;
      transition: transform .3s cubic-bezier(0.34,1.56,0.64,1), filter .3s;
      position: relative;
      flex-shrink: 0;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55));
    }
    .social-btn svg { display: block; }
    .social-btn svg path,
    .social-btn svg rect,
    .social-btn svg circle,
    .social-btn svg polygon { fill: #ffffff !important; }
    .social-btn:hover {
      transform: scale(1.18) translateY(-2px);
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.65));
    }
    .social-btn-tooltip {
      position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
      background: rgba(12,21,40,0.92); color: #fff;
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px;
      padding: 5px 10px; white-space: nowrap; border-radius: 3px;
      border: 1px solid rgba(201,168,76,0.2);
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .social-btn:hover .social-btn-tooltip { opacity: 1; }
    /* Main WhatsApp trigger — slightly larger, green accent */
    .social-btn.wa-main {
      width: 46px; height: 46px;
      background: #25D366;
      border-color: #25D366;
      box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    }
    .social-btn.wa-main svg path { fill: #ffffff; }
    .social-btn.wa-main:hover {
      background: #20bd5a;
      border-color: #20bd5a;
      box-shadow: 0 12px 36px rgba(37,211,102,0.55);
    }
    .social-btn.wa-main:hover svg path { fill: #ffffff; }

    /* ── SCROLL TO TOP ── */
    #scrollTop { display: none; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: var(--navy); color: rgba(255,255,255,0.4);
      padding: 60px 80px 28px; font-family: 'Jost', sans-serif;
      border-top: 1px solid rgba(201,168,76,0.12);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 60px; max-width: 1100px; margin: 0 auto 48px;
    }
    .footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.4); font-weight: 300; margin-top: 16px; }
    .footer-col h5 { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
    .footer-col { display: flex; flex-direction: column; gap: 2px; }
    .footer-col p, .footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.9; font-weight: 300; display: block; text-decoration: none; transition: color 0.3s; }
    .footer-col a:hover { color: var(--gold); }
    .footer-divider { height: 1px; background: rgba(201,168,76,0.1); max-width: 1100px; margin: 0 auto 24px; }
    .footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.3); }
    .footer-bottom span { color: var(--gold); }
    .footer-socials {
      display: flex; align-items: center; gap: 14px; margin-top: 32px;
    }
    .footer-social-link {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; border: 1px solid rgba(201,168,76,0.22);
      background: rgba(255,255,255,0.04);
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
    }
    .footer-social-link:hover {
      border-color: var(--gold); background: rgba(201,168,76,0.12);
      transform: translateY(-3px);
    }
    .footer-social-link svg { display: block; }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

    /* ══ CINEMATIC HERO ANIMATIONS ══ */

    /* Name drops in from above with elastic settle */
    @keyframes nameDrop {
      0%   { opacity:0; transform: translateY(-60px) scaleX(0.85); filter: blur(14px); }
      55%  { filter: blur(0); }
      75%  { transform: translateY(6px) scaleX(1.01); }
      90%  { transform: translateY(-3px) scaleX(0.995); }
      100% { opacity:1; transform: translateY(0) scaleX(1); filter: blur(0); }
    }
    /* Continuous gold-white shimmer sweep */
    @keyframes shimmerGold {
      0%   { background-position: -300% center; }
      100% { background-position: 300% center; }
    }
    /* Horizontal lines draw outward from centre */
    @keyframes lineDraw {
      from { width: 0; opacity:0; }
      to   { width: 160px; opacity:1; }
    }
    /* Tagline expands letter-spacing in */
    @keyframes taglineReveal {
      0%   { opacity:0; letter-spacing:20px; filter:blur(4px); }
      100% { opacity:1; letter-spacing:7px;  filter:blur(0); }
    }
    /* Badge border continuously pulses */
    @keyframes borderGlow {
      0%,100% { box-shadow: 0 0 0 1px rgba(201,168,76,0.25); }
      50%      { box-shadow: 0 0 20px 3px rgba(201,168,76,0.4), 0 0 0 1px rgba(201,168,76,0.6); }
    }
    /* Ambient orb breathes */
    @keyframes orbBreathe {
      0%,100% { transform: translate(-50%,-50%) scale(1);   opacity:0.18; }
      50%      { transform: translate(-50%,-50%) scale(1.22); opacity:0.32; }
    }
    /* Second wider orb counter-breathes for depth */
    @keyframes orbBreathe2 {
      0%,100% { transform: translate(-50%,-50%) scale(1.1); opacity:0.10; }
      50%      { transform: translate(-50%,-50%) scale(0.9); opacity:0.20; }
    }
    /* Particles drift upward in varied paths */
    @keyframes drift1 {
      0%   { transform:translate(0,0) rotate(0deg);   opacity:0; }
      15%  { opacity:0.8; }
      100% { transform:translate(18px,-90px) rotate(40deg); opacity:0; }
    }
    @keyframes drift2 {
      0%   { transform:translate(0,0);              opacity:0; }
      20%  { opacity:0.6; }
      100% { transform:translate(-22px,-75px);      opacity:0; }
    }
    @keyframes drift3 {
      0%   { transform:translate(0,0) scale(1);   opacity:0; }
      25%  { opacity:1; }
      100% { transform:translate(8px,-100px) scale(0.3); opacity:0; }
    }
    /* Horizontal scan line sweeps across name once */
    @keyframes scanLine {
      0%   { left:-100%; opacity:0.7; }
      100% { left:110%;  opacity:0; }
    }
    /* Diamond rotates into view */
    @keyframes diamondSpin {
      0%   { opacity:0; transform: rotate(0deg) scale(0); }
      100% { opacity:1; transform: rotate(45deg) scale(1); }
    }
    /* Slow Ken-Burns on hero image */
    @keyframes kenBurns {
      0%   { transform: scale(1)    translate(0,0); }
      50%  { transform: scale(1.05) translate(-0.8%, 0.4%); }
      100% { transform: scale(1)    translate(0,0); }
    }
    /* Fade up utility */
    @keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

    /* ── Ken-Burns on hero image ── */
    .hero-img img { animation: none; }
    .hero-img { animation: kenBurns 18s ease-in-out infinite; }

    /* ── Hero name wrap ── */
    .hero-name-wrap {
      position: relative; display: flex; flex-direction: column; align-items: center;
      margin: 10px 0 4px;
    }

    /* Two layered ambient orbs */
    .hero-orb {
      position: absolute; width: 600px; height: 240px; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(201,168,76,0.22) 0%, transparent 68%);
      top: 50%; left: 50%;
      animation: orbBreathe 4.5s ease-in-out 1s infinite;
      pointer-events: none; z-index: 0;
    }
    .hero-orb-2 {
      position: absolute; width: 800px; height: 180px; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 65%);
      top: 50%; left: 50%;
      animation: orbBreathe2 6s ease-in-out 2s infinite;
      pointer-events: none; z-index: 0;
    }

    /* Scan line that sweeps once on load */
    .hero-scan {
      position: absolute; top: 50%; width: 40%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.7), transparent);
      transform: translateY(-50%);
      animation: scanLine 0.7s cubic-bezier(0.4,0,0.2,1) 0.4s both;
      animation-play-state: paused;
      z-index: 2; pointer-events: none;
    }

    /* Main company name — cinematic per-letter reveal */
    .hero-company-name {
      position: relative; z-index: 1;
      font-family: 'Cinzel', serif;
      font-size: 75.89px; font-weight: 700;
      letter-spacing: 14px; text-transform: uppercase;
      color: #F8F8FF;
      -webkit-text-fill-color: #F8F8FF;
      opacity: 1;
      animation: none;
      display: flex; align-items: baseline; justify-content: center;
    }

    /* Each letter span injected by JS */
    .hero-company-name .hcn-letter {
      display: inline-block;
      opacity: 0;
      transform: translateX(12px);
      filter: blur(14px);
      animation: hcnLetterIn 1.4s cubic-bezier(0.25,1,0.5,1) forwards;
      animation-play-state: paused;
      transform-origin: center center;
      color: rgba(248,248,255,0.55);
    }
    .hero-company-name .hcn-letter.hcn-settled {
      text-shadow: none;
    }

    @keyframes hcnLetterIn {
      0%   {
        opacity: 0;
        transform: translateX(12px);
        filter: blur(14px);
        color: rgba(248,248,255,0.4);
      }
      30%  {
        opacity: 1;
        filter: blur(6px);
        transform: translateX(4px);
        color: rgba(248,248,255,0.75);
      }
      70%  {
        filter: blur(1.5px);
        transform: translateX(-1px);
        color: rgba(248,248,255,0.92);
      }
      88%  {
        filter: blur(0.3px);
        transform: translateX(0.5px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
        color: #F8F8FF;
        text-shadow: none;
      }
    }

    /* Cinematic gold streak after all letters land */
    .hero-company-name-streak {
      position: absolute;
      top: 50%; left: -10%;
      width: 120%; height: 2px;
      background: linear-gradient(to right,
        transparent 0%,
        rgba(201,168,76,0) 15%,
        rgba(248,248,255,0.95) 47%,
        rgba(232,204,128,0.9) 50%,
        rgba(248,248,255,0.95) 53%,
        rgba(201,168,76,0) 85%,
        transparent 100%);
      transform: translateY(-50%) scaleX(0);
      transform-origin: left center;
      animation: hcnStreak 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
      animation-play-state: paused;
      pointer-events: none; z-index: 3;
      filter: blur(0.5px);
    }
    @keyframes hcnStreak {
      0%   { transform: translateY(-50%) scaleX(0); opacity: 1; }
      55%  { transform: translateY(-50%) scaleX(1); opacity: 1; }
      100% { transform: translateY(-50%) scaleX(1); opacity: 0; }
    }

    /* Rule with lines + diamond */
    .hero-name-rule {
      display: flex; align-items: center; gap: 14px;
      opacity: 0; animation: fadeUp 0.35s ease 0.85s forwards;
      animation-play-state: paused;
      margin-top: 6px; position: relative; z-index: 1;
    }
    .hero-name-rule-line {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.9), transparent);
      animation: lineDraw 0.55s cubic-bezier(0.16,1,0.3,1) 0.95s both;
      animation-play-state: paused;
      width: 0;
    }
    .hero-name-rule-diamond {
      width: 7px; height: 7px; background: var(--gold); flex-shrink: 0;
      animation: diamondSpin 0.3s cubic-bezier(0.16,1,0.3,1) 1.05s both;
      animation-play-state: paused;
    }

    /* Italic tagline */
    .hero-company-tagline {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: 22.44px; color: rgba(232,204,128,0.9); letter-spacing: 7px;
      opacity: 0; position: relative; z-index: 1; margin-top: 10px;
      animation: taglineReveal 0.65s cubic-bezier(0.16,1,0.3,1) 1.05s forwards;
      animation-play-state: paused;
    }

    /* Floating gold particles */
    .hero-particles {
      position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
    }
    .hero-particle {
      position: absolute; border-radius: 50%; background: var(--gold); opacity: 0;
    }
    .hero-particle:nth-child(1) { width:3px; height:3px; left:18%; bottom:32%; animation: drift1 5s ease-in-out 1.0s infinite; }
    .hero-particle:nth-child(2) { width:2px; height:2px; left:28%; bottom:26%; animation: drift2 4.5s ease-in-out 2.2s infinite; }
    .hero-particle:nth-child(3) { width:4px; height:4px; left:40%; bottom:20%; animation: drift3 6s ease-in-out 0.6s infinite; }
    .hero-particle:nth-child(4) { width:2px; height:2px; left:52%; bottom:28%; animation: drift1 5.5s ease-in-out 1.8s infinite; }
    .hero-particle:nth-child(5) { width:3px; height:3px; left:63%; bottom:22%; animation: drift2 4.8s ease-in-out 0.3s infinite; }
    .hero-particle:nth-child(6) { width:2px; height:2px; left:74%; bottom:35%; animation: drift3 5.2s ease-in-out 2.8s infinite; }
    .hero-particle:nth-child(7) { width:3px; height:3px; left:82%; bottom:30%; animation: drift1 4.2s ease-in-out 1.4s infinite; }
    .hero-particle:nth-child(8) { width:2px; height:2px; left:35%; bottom:44%; animation: drift2 5.8s ease-in-out 3.2s infinite; }
    .hero-particle:nth-child(9) { width:2px; height:2px; left:58%; bottom:40%; animation: drift3 4.6s ease-in-out 0.9s infinite; }
    .hero-particle:nth-child(10){ width:3px; height:3px; left:46%; bottom:50%; animation: drift1 6.5s ease-in-out 1.6s infinite; }

    /* Badge */
    .hero-badge {
      display: flex; align-items: center; gap: 12px;
      border: 1px solid rgba(201,168,76,0.35); padding: 9px 24px;
      font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 5px;
      color: rgba(255,255,255,0.65); text-transform: uppercase;
      opacity: 0; position: relative; z-index:1; margin-top: 8px;
      animation: fadeUp 0.45s ease 1.3s forwards, borderGlow 3.5s ease-in-out 1.83s infinite;
      animation-play-state: paused;
      backdrop-filter: blur(6px);
      background: rgba(255,255,255,0.04);
    }
    .hero-badge-dot {
      width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0;
      animation: orbBreathe 1.8s ease-in-out infinite;
    }

    /* ══════════════════════════════════════════════════════
       LUXURY PRODUCT SUB-SECTION
    ══════════════════════════════════════════════════════ */

    /* Sub view container */
    #productsSubView {
      display: none;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
      position: relative;
      background: #F8F8FF;
      min-height: 100vh;
    }
    #productsSubView.visible {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* Particles canvas */
    #luxParticles {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 1;
    }

    /* ── Light beams ── */
    .lux-beams {
      position: absolute; inset: 0;
      pointer-events: none; z-index: 1; overflow: hidden;
    }
    .lux-beam {
      position: absolute;
      width: 2px; height: 120%;
      top: -10%; opacity: 0;
      background: linear-gradient(to bottom,
        transparent,
        rgba(201,168,76,0.18) 30%,
        rgba(201,168,76,0.28) 50%,
        rgba(201,168,76,0.18) 70%,
        transparent);
      filter: blur(8px);
      animation: beamDrift 8s ease-in-out infinite;
    }
    .lux-beam-1 { left: 15%; animation-delay: 0s;   animation-duration: 9s;  width: 3px; }
    .lux-beam-2 { left: 50%; animation-delay: 2.5s; animation-duration: 11s; width: 2px; }
    .lux-beam-3 { left: 80%; animation-delay: 5s;   animation-duration: 8s;  width: 4px; }

    @keyframes beamDrift {
      0%,100% { opacity: 0; transform: translateX(-40px) rotate(-2deg); }
      30%,70% { opacity: 1; }
      50%      { opacity: 0.7; transform: translateX(40px) rotate(2deg); }
    }

    /* ── Ambient orbs ── */
    .lux-orb {
      position: absolute; border-radius: 50%;
      pointer-events: none; z-index: 1;
      filter: blur(80px);
      animation: orbFloat 10s ease-in-out infinite;
    }
    .lux-orb-1 {
      width: 500px; height: 500px; top: -100px; left: -100px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
      animation-duration: 12s;
    }
    .lux-orb-2 {
      width: 400px; height: 400px; bottom: -80px; right: -80px;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
      animation-duration: 15s; animation-delay: 3s;
    }
    .lux-orb-3 {
      width: 300px; height: 300px; top: 50%; left: 60%;
      background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
      animation-duration: 9s; animation-delay: 1.5s;
    }
    @keyframes orbFloat {
      0%,100% { transform: translate(0, 0) scale(1); }
      33%      { transform: translate(30px, -20px) scale(1.05); }
      66%      { transform: translate(-20px, 15px) scale(0.96); }
    }

    /* ── Glassmorphism nav bar ── */
    .lux-nav {
      position: relative; z-index: 20;
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 80px 20px;
      background: rgba(248,248,255,0.7);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      gap: 20px;
    }

    .lux-back {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
      color: var(--navy); text-transform: uppercase;
      border: 1px solid rgba(12,21,40,0.2); background: rgba(248,248,255,0.6);
      backdrop-filter: blur(12px);
      cursor: pointer; padding: 10px 20px;
      transition: all 0.35s ease;
      white-space: nowrap; flex-shrink: 0;
    }
    .lux-back:hover {
      background: var(--navy); color: var(--white);
      border-color: var(--navy);
      transform: translateX(-3px);
    }
    .lux-back svg { transition: transform 0.3s; flex-shrink: 0; }
    .lux-back:hover svg { transform: translateX(-3px); }

    .lux-nav-center { text-align: center; flex: 1; }
    .lux-nav-label {
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 4px;
      opacity: 0; animation: none;
    }
    .lux-nav-label.animate { animation: luxFadeUp 0.6s ease forwards; }
    .lux-nav-title {
      font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
      color: var(--navy); line-height: 1;
      opacity: 0; animation: none;
    }
    .lux-nav-title.animate { animation: luxFadeUp 0.7s ease 0.1s forwards; }

    .lux-nav-index {
      font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
      color: var(--gold); flex-shrink: 0; letter-spacing: 2px;
      opacity: 0.7;
    }

    /* ── Main stage ── */
    .lux-stage {
      position: relative;
      min-height: calc(100vh - 80px);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

    /* Parallax background */
    .lux-bg-wrap {
      position: absolute; inset: -60px;
      will-change: transform; z-index: 0;
      transition: transform 0.1s linear;
    }
    .lux-bg-img {
      width: 100%; height: 100%; object-fit: cover;
      filter: blur(28px) brightness(0.08) saturate(0.6);
      transform: scale(1.15);
    }
    .lux-bg-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg,
        rgba(248,248,255,0.97) 0%,
        rgba(248,248,255,0.88) 40%,
        rgba(248,248,255,0.82) 60%,
        rgba(248,248,255,0.95) 100%);
    }

    /* Spotlight ring system — premium rotated square frames */
    .lux-ring-wrap {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      z-index: 2; pointer-events: none;
    }
    .lux-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
    }
    .lux-ring-outer {
      width: 600px; height: 600px;
      border: 1px solid rgba(201,168,76,0.10);
      animation: ringRotateCW 18s linear infinite;
    }
    .lux-ring-mid {
      width: 480px; height: 480px;
      border: 1px solid rgba(201,168,76,0.16);
      animation: ringRotateCCW 14s linear infinite;
    }
    .lux-ring-inner {
      width: 390px; height: 390px;
      border: 1px solid rgba(201,168,76,0.22);
      animation: ringRotateCW 22s linear infinite;
    }
    @keyframes ringRotateCW  { from { transform: translate(-50%,-50%) rotate(45deg);  } to { transform: translate(-50%,-50%) rotate(405deg);  } }
    @keyframes ringRotateCCW { from { transform: translate(-50%,-50%) rotate(-45deg); } to { transform: translate(-50%,-50%) rotate(-405deg); } }

    /* Gold corner diamonds on the rings */
    .lux-ring-outer::before, .lux-ring-outer::after,
    .lux-ring-mid::before,   .lux-ring-mid::after {
      content: '';
      position: absolute; background: var(--gold);
      width: 5px; height: 5px;
    }
    .lux-ring-outer::before { top: -3px; left: 50%; margin-left: -2.5px; box-shadow: 0 0 8px 2px rgba(201,168,76,0.6); }
    .lux-ring-outer::after  { bottom: -3px; left: 50%; margin-left: -2.5px; box-shadow: 0 0 8px 2px rgba(201,168,76,0.6); }
    .lux-ring-mid::before   { top: -3px; left: 50%; margin-left: -2.5px; }
    .lux-ring-mid::after    { bottom: -3px; left: 50%; margin-left: -2.5px; }

    .lux-ring-dot {
      position: absolute; width: 8px; height: 8px;
      background: var(--gold);
      top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg);
      box-shadow: 0 0 20px 6px rgba(201,168,76,0.45);
      animation: dotPulse 2s ease-in-out infinite;
    }
    @keyframes ringBreath {
      0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
      50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.03); }
    }
    @keyframes dotPulse {
      0%,100% { box-shadow: 0 0 12px 4px rgba(201,168,76,0.4); }
      50%      { box-shadow: 0 0 28px 10px rgba(201,168,76,0.25); }
    }

    /* ── Product frame ── */
    .lux-product-frame {
      position: relative; z-index: 10;
      width: 420px; height: 420px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-right: 40px;
      animation: luxProductEntry 1.2s cubic-bezier(0.16,1,0.3,1) both;
    }
    @keyframes luxProductEntry {
      0%   { opacity:0; transform: scale(0.86) translateY(28px); filter: blur(10px); }
      60%  { filter: blur(0); }
      100% { opacity:1; transform: scale(1) translateY(0); }
    }

    /* Outer glow */
    .lux-product-glow {
      position: absolute; inset: -60px; border-radius: 50%;
      background: radial-gradient(circle,
        rgba(201,168,76,0.22) 0%,
        rgba(201,168,76,0.08) 40%,
        transparent 70%);
      animation: glowPulse 3.5s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes glowPulse {
      0%,100% { opacity: 0.7; transform: scale(1); }
      50%      { opacity: 1;   transform: scale(1.08); }
    }

    /* Reflective ground plane */
    .lux-product-reflect {
      position: absolute; bottom: -50px; left: 10%; right: 10%;
      height: 60px;
      background: linear-gradient(to bottom,
        rgba(201,168,76,0.12) 0%,
        transparent 100%);
      filter: blur(12px);
      transform: scaleY(-1);
      pointer-events: none; border-radius: 50%;
    }

    /* Product image — premium square with clipped corners */
    .lux-product-img {
      width: 340px; height: 340px;
      object-fit: cover;
      clip-path: polygon(18px 0%, calc(100% - 18px) 0%, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0% calc(100% - 18px), 0% 18px);
      position: relative; z-index: 2;
      box-shadow:
        0 0 0 0px rgba(201,168,76,0),
        0 40px 100px rgba(0,0,0,0.22),
        0 80px 160px rgba(0,0,0,0.12);
      animation: luxImgFloat 6s ease-in-out infinite;
      will-change: transform;
      transition: filter 0.6s ease;
    }
    .lux-product-img:hover {
      filter: brightness(1.06) saturate(1.08);
    }
    @keyframes luxImgFloat {
      0%,100% { transform: translateY(0px) scale(1); }
      50%      { transform: translateY(-10px) scale(1.012); }
    }

    /* Corner accent brackets around product image */
    .lux-product-frame::before,
    .lux-product-frame::after {
      content: '';
      position: absolute;
      z-index: 8;
      pointer-events: none;
    }
    .lux-product-frame::before {
      top: 20px; left: 20px;
      width: 56px; height: 56px;
      border-top: 1px solid rgba(201,168,76,0.7);
      border-left: 1px solid rgba(201,168,76,0.7);
      animation: cornerPulse 3s ease-in-out infinite;
    }
    .lux-product-frame::after {
      bottom: 36px; right: 20px;
      width: 56px; height: 56px;
      border-bottom: 1px solid rgba(201,168,76,0.7);
      border-right: 1px solid rgba(201,168,76,0.7);
      animation: cornerPulse 3s ease-in-out 1.5s infinite;
    }
    @keyframes cornerPulse {
      0%,100% { opacity: 0.5; }
      50%      { opacity: 1; }
    }

    /* Additional corner brackets (top-right, bottom-left) via extra elements */
    .lux-corner-tr {
      position: absolute; top: 20px; right: 20px;
      width: 56px; height: 56px; z-index: 8; pointer-events: none;
      border-top: 1px solid rgba(201,168,76,0.7);
      border-right: 1px solid rgba(201,168,76,0.7);
      animation: cornerPulse 3s ease-in-out 0.75s infinite;
    }
    .lux-corner-bl {
      position: absolute; bottom: 36px; left: 20px;
      width: 56px; height: 56px; z-index: 8; pointer-events: none;
      border-bottom: 1px solid rgba(201,168,76,0.7);
      border-left: 1px solid rgba(201,168,76,0.7);
      animation: cornerPulse 3s ease-in-out 2.25s infinite;
    }

    /* Gold diamond overlay at center-top */
    .lux-product-diamond {
      position: absolute; top: -10px; left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px; height: 12px;
      background: var(--gold);
      z-index: 9;
      box-shadow: 0 0 16px 4px rgba(201,168,76,0.5);
      animation: diamondGlow 2.5s ease-in-out infinite;
    }
    @keyframes diamondGlow {
      0%,100% { box-shadow: 0 0 10px 2px rgba(201,168,76,0.4); }
      50%      { box-shadow: 0 0 26px 8px rgba(201,168,76,0.7); }
    }

    /* Gold horizontal scan line across image */
    .lux-product-scanline {
      position: absolute; z-index: 7; pointer-events: none;
      left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), rgba(232,204,128,0.9), rgba(201,168,76,0.6), transparent);
      animation: scanFloat 5s ease-in-out infinite;
      top: 50%;
    }
    @keyframes scanFloat {
      0%   { top: 20%; opacity: 0; }
      10%  { opacity: 1; }
      50%  { top: 80%; opacity: 0.6; }
      90%  { opacity: 1; }
      100% { top: 20%; opacity: 0; }
    }

    /* Metallic sheen sweep — now a diagonal light streak */
    .lux-product-sheen {
      position: absolute; z-index: 3;
      width: 340px; height: 340px;
      clip-path: polygon(18px 0%, calc(100% - 18px) 0%, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0% calc(100% - 18px), 0% 18px);
      overflow: hidden; pointer-events: none;
      background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 30%,
        rgba(255,255,255,0.18) 45%,
        rgba(255,255,255,0.38) 50%,
        rgba(255,255,255,0.18) 55%,
        transparent 70%,
        transparent 100%
      );
      animation: sheenDiag 5s ease-in-out infinite;
      mix-blend-mode: overlay;
    }
    @keyframes sheenDiag {
      0%,100% { background-position: -200% -200%; opacity: 0; transform: translate(-60%, -60%); }
      30%      { opacity: 0; }
      50%      { opacity: 1; transform: translate(0%, 0%); }
      70%      { opacity: 0; transform: translate(60%, 60%); }
    }

    /* Drop shadow */
    .lux-product-shadow {
      position: absolute; bottom: -24px; left: 50%;
      transform: translateX(-50%);
      width: 260px; height: 24px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
      filter: blur(8px); pointer-events: none;
    }

    /* ── Info card (ultra-premium glassmorphism) ── */
    .lux-info-card {
      position: relative; z-index: 10;
      width: 440px; max-width: 90vw;
      background: rgba(248,248,255,0.68);
      backdrop-filter: blur(40px);
      border: 1px solid rgba(201,168,76,0.28);
      padding: 52px 48px 48px;
      box-shadow:
        0 8px 80px rgba(0,0,0,0.08),
        0 2px 0 rgba(255,255,255,0.95) inset,
        0 -1px 0 rgba(201,168,76,0.15) inset,
        0 0 0 1px rgba(201,168,76,0.06);
      animation: luxCardEntry 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
    }
    /* Gold corner accents on card */
    .lux-info-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 40px; height: 40px;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
      pointer-events: none;
    }
    .lux-info-card::after {
      content: '';
      position: absolute; bottom: 0; right: 0;
      width: 40px; height: 40px;
      border-bottom: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
      pointer-events: none;
    }
    @keyframes luxCardEntry {
      0%   { opacity:0; transform: translateX(40px) translateY(10px); }
      100% { opacity:1; transform: translateX(0) translateY(0); }
    }

    .lux-info-top-rule {
      width: 0; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold), transparent);
      margin-bottom: 32px;
      animation: ruleGrow 1s cubic-bezier(0.16,1,0.3,1) 0.6s both;
    }
    @keyframes ruleGrow { from { width:0; } to { width: 100%; } }

    .lux-info-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 18px;
      opacity: 0; animation: luxFadeUp 0.6s ease 0.7s forwards;
    }
    .lux-info-eyebrow::before {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
    }
    .lux-info-eyebrow::after {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: linear-gradient(to left, var(--gold), var(--gold-light));
    }
    .lux-info-title {
      font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300;
      color: var(--navy); line-height: 1.0; margin-bottom: 0;
      opacity: 0; animation: luxFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
    }
    .lux-info-divider {
      width: 44px; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
      margin: 24px 0 22px;
      opacity: 0; animation: luxFadeUp 0.6s ease 1s forwards;
    }
    .lux-info-desc {
      font-family: 'Cormorant Garamond', serif; font-size: 17px; line-height: 1.85;
      color: rgba(12,21,40,0.62); font-weight: 400; font-style: italic;
      border-left: 2px solid rgba(201,168,76,0.4); padding-left: 16px;
      opacity: 0; animation: luxFadeUp 0.7s ease 1.05s forwards;
    }
    .lux-info-cta {
      display: flex; align-items: center; gap: 14px;
      justify-content: space-between;
      margin-top: 36px;
      width: calc(100% + 0px);
      margin-right: 0;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
      color: var(--navy); text-transform: uppercase;
      border: 1px solid rgba(12,21,40,0.3); background: transparent;
      cursor: pointer; padding: 14px 32px;
      position: relative; overflow: hidden;
      opacity: 0; animation: luxFadeUp 0.6s ease 1.2s forwards;
      transition: color 0.4s ease, border-color 0.4s ease;
    }
    .lux-info-cta::before {
      content: '';
      position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: var(--navy);
      transition: left 0.45s cubic-bezier(0.16,1,0.3,1); z-index: -1;
    }
    .lux-info-cta:hover { color: var(--white); border-color: var(--navy); gap: 20px; }
    .lux-info-cta:hover::before { left: 0; }
    .lux-info-cta span {
      display: inline-block;
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    }
    .lux-info-cta:hover span { transform: translateX(4px); }

    /* WhatsApp + Email action buttons below Explore Details */
    .lux-action-row {
      display: flex; gap: 12px;
      margin-top: 10px;
      opacity: 0; animation: luxFadeUp 0.6s ease 1.3s forwards;
    }
    .lux-action-btn {
      flex: 1;
      display: inline-flex; align-items: center; justify-content: center; gap: 14px;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
      text-transform: uppercase; cursor: pointer;
      border: 1px solid rgba(12,21,40,0.3); color: var(--navy);
      background: transparent; padding: 14px 16px;
      position: relative; overflow: hidden;
      transition: color 0.4s ease, border-color 0.4s ease;
    }
    .lux-action-btn::before {
      content: '';
      position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: var(--navy);
      transition: left 0.45s cubic-bezier(0.16,1,0.3,1); z-index: -1;
    }
    .lux-action-btn:hover { color: var(--white); border-color: var(--navy); }
    .lux-action-btn:hover::before { left: 0; }
    .lux-action-btn svg {
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    }
    .lux-action-btn:hover svg { transform: translateX(3px); }
    .lux-action-btn span {
      display: inline-block;
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    }
    .lux-action-btn:hover span { transform: translateX(4px); }

    .lux-info-bottom-rule {
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
      margin-top: 36px;
    }

    /* ── Arrows ── */
    .lux-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 20; cursor: pointer;
      width: 56px; height: 56px;
      background: rgba(248,248,255,0.7);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold); display: flex; align-items: center; justify-content: center;
      transition: all 0.3s ease;
      border-radius: 0;
    }
    .lux-arrow:hover {
      background: var(--gold); color: var(--white);
      border-color: var(--gold);
      box-shadow: 0 8px 30px rgba(201,168,76,0.35);
    }
    .lux-arrow-prev { left: 40px; }
    .lux-arrow-next { right: 40px; }
    .lux-arrow-prev:hover { transform: translateY(-50%) translateX(-3px); }
    .lux-arrow-next:hover { transform: translateY(-50%) translateX(3px); }

    /* ── Dots ── */
    .lux-dots {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 10px; z-index: 20;
    }
    .lux-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(201,168,76,0.25);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
      border: 1px solid rgba(201,168,76,0.3);
    }
    .lux-dot.active {
      background: var(--gold);
      width: 24px; border-radius: 3px;
      box-shadow: 0 0 12px rgba(201,168,76,0.5);
    }

    /* ── Global sheen sweep ── */
    .lux-sheen-global {
      position: absolute; inset: 0; z-index: 15; pointer-events: none;
      background: linear-gradient(105deg,
        transparent 30%,
        rgba(255,255,255,0.55) 50%,
        transparent 70%);
      animation: globalSheen 8s ease-in-out infinite;
      opacity: 0;
    }
    @keyframes globalSheen {
      0%,85%,100% { opacity: 0; transform: translateX(-100%); }
      88%          { opacity: 1; transform: translateX(0); }
      94%          { opacity: 0; transform: translateX(100%); }
    }

    /* ── Keyframes shared ── */
    @keyframes luxFadeUp {
      from { opacity:0; transform: translateY(16px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* Layout: side-by-side on desktop */
    .lux-stage {
      display: flex; align-items: center; justify-content: center;
      gap: 0; padding: 80px;
      flex-wrap: wrap;
    }

    /* Transition class for product swap */
    .lux-product-frame.transitioning { animation: luxProductOut 0.4s ease forwards; }
    .lux-info-card.transitioning { animation: luxCardOut 0.3s ease forwards; }
    @keyframes luxProductOut {
      to { opacity:0; transform: scale(0.92) translateY(-16px); filter: blur(6px); }
    }
    @keyframes luxCardOut {
      to { opacity:0; transform: translateX(20px); }
    }
    .lux-product-frame.entering { animation: luxProductEntry 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
    .lux-info-card.entering     { animation: luxCardEntry 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s forwards; }

    @media (max-width: 900px) {
      .lux-stage { flex-direction: column; padding: 40px 20px 80px; gap: 40px; }
      .lux-product-frame { margin-right: 0; width: 280px; height: 310px; }
      .lux-product-img { width: 240px; height: 240px; }
      .lux-product-sheen { width: 240px; height: 240px; }
      .lux-ring-outer { width: 340px; height: 340px; }
      .lux-ring-mid   { width: 270px; height: 270px; }
      .lux-ring-inner { width: 200px; height: 200px; }
      .lux-info-card  { width: 100%; max-width: 460px; padding: 36px 28px; }
      .lux-action-row { flex-direction: column; }
      .lux-action-btn { justify-content: center; }
      .lux-nav { padding: 16px 20px; }
      .lux-arrow-prev { left: 10px; }
      .lux-arrow-next { right: 10px; }
    }
  
    @media (max-width: 900px) {
      .why-grid { gap: 14px; grid-auto-rows: 140px; }
      .why-item { grid-template-columns: 64px 1fr; column-gap: 18px; padding: 16px 20px 16px 22px; }
      .why-eyebrow-row .why-icon { font-size: 22px; }
    }
    @media (max-width: 768px) {
      header { padding: 16px 24px; }
      section { padding: 80px 24px; }
      .hero h2 { font-size: 57.6px; }
      .hero h2 em { font-size: 64.8px; }
      .hero-ornament { width: 60px; height: 60px; }
      .hero-ornament.tl, .hero-ornament.bl { left: 24px; }
      .hero-ornament.tr, .hero-ornament.br { right: 24px; }
      .form-row { grid-template-columns: 1fr; }
      nav { gap: 18px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      footer { padding: 40px 24px 24px; }
    }

    /* ══════════════════════════════════════════════════════
       ULTRA LUXURY LAYER — SINGLE AUTHORITATIVE BLOCK
    ══════════════════════════════════════════════════════ */

    /* ── Scroll reveal base — all reveal targets start hidden ── */
    .lux-reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                  transform 0.9s cubic-bezier(0.16,1,0.3,1);
    }
    .lux-reveal.from-left  { transform: translateX(-48px); }
    .lux-reveal.from-right { transform: translateX(48px); }
    .lux-reveal.scale-in   { transform: scale(0.92); }
    .lux-reveal.visible {
      opacity: 1 !important;
      transform: none !important;
    }
    .lux-reveal.d1 { transition-delay: 0.10s; }
    .lux-reveal.d2 { transition-delay: 0.20s; }
    .lux-reveal.d3 { transition-delay: 0.30s; }
    .lux-reveal.d4 { transition-delay: 0.40s; }
    .lux-reveal.d5 { transition-delay: 0.50s; }
    .lux-reveal.d6 { transition-delay: 0.60s; }

    /* ── Ornate gold divider between white sections ── */
    .lux-sep {
      display: flex; align-items: center;
      padding: 0 80px; height: 48px;
      background: #F8F8FF; position: relative; z-index: 5;
      overflow: visible;
    }
    .lux-sep::before,
    .lux-sep::after {
      content: '';
      flex: 1; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.55));
    }
    .lux-sep::after {
      background: linear-gradient(to left, transparent, rgba(201,168,76,0.55));
    }
    .lux-sep-inner {
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0; padding: 0 20px;
    }
    .lux-sep-line {
      width: 28px; height: 1px;
      background: var(--gold); opacity: 0.6;
    }
    .lux-sep-diamond {
      width: 8px; height: 8px;
      background: var(--gold);
      transform: rotate(45deg);
      box-shadow: 0 0 14px rgba(201,168,76,0.8), 0 0 28px rgba(201,168,76,0.3);
      animation: sepDiamondPulse 2.8s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes sepDiamondPulse {
      0%,100% { box-shadow: 0 0 8px rgba(201,168,76,0.6); transform: rotate(45deg) scale(1); }
      50%      { box-shadow: 0 0 22px rgba(201,168,76,1), 0 0 40px rgba(201,168,76,0.4); transform: rotate(45deg) scale(1.35); }
    }

    /* ── Header — elevated on scroll ── */
    header {
      transition: box-shadow 0.5s ease, background 0.4s ease;
    }
    header.lux-scrolled {
      background: rgba(248,248,255,0.98) !important;
      box-shadow:
        0 1px 0 rgba(201,168,76,0.2),
        0 4px 60px rgba(12,21,40,0.09);
    }

    /* ── Horizontal gold shimmer line below header on scroll ── */
    header::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(201,168,76,0) 20%, rgba(201,168,76,0.35) 50%, rgba(201,168,76,0) 80%, transparent 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    header.lux-scrolled::after { opacity: 1; }

    /* ── Nav link lift ── */
    nav a { display: inline-block; will-change: transform; }
    nav a:hover { transform: translateY(-2px); }

    /* ── About section quote mark ── */
    #about { position: relative; overflow: hidden; }
    #about .about-inner { position: relative; }
    #about .about-inner > * { position: relative; z-index: 1; }
    #about .about-inner em::after {
      content: '';
      display: block; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin-top: 1px;
    }

    /* ── Process step hover glow ── */
    .process-step {
      position: relative; overflow: hidden;
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .process-step .ps-glow {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(201,168,76,0.06) 0%, transparent 55%);
      opacity: 0; pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .process-step:hover .ps-glow { opacity: 1; }
    .process-content h4 {
      transition: color 0.35s ease, letter-spacing 0.35s ease;
    }
    .process-step:hover .process-content h4 {
      color: var(--gold); letter-spacing: 4px;
    }
    .process-step:hover .process-num {
      box-shadow: 0 0 0 8px rgba(201,168,76,0.1), 0 0 32px rgba(201,168,76,0.28);
    }

    /* ── Why items — deeper gradient handled in main .why-item rule ── */

    /* ── Cert items — lux-info-card style (white glassmorphism) ── */
    .cert-item {
      background: rgba(248,248,255,0.92) !important;
      box-shadow:
        0 4px 32px rgba(0,0,0,0.07),
        0 2px 0 rgba(255,255,255,0.95) inset,
        0 0 0 1px rgba(201,168,76,0.06) !important;
    }

    /* ── Footer gold bar ── */
    footer {
      border-top: none !important;
      position: relative;
      overflow-x: hidden;
    }
    footer::before {
      content: ''; display: block; height: 2px;
      background: linear-gradient(to right,
        transparent 0%, var(--gold) 25%,
        var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
      margin: 0 -80px 60px;
    }
    .footer-col a { position: relative; display: inline-block; }
    .footer-col a::after {
      content: ''; position: absolute;
      bottom: -1px; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width 0.35s ease;
    }
    .footer-col a:hover::after { width: 100%; }

    /* ── Section number watermark — removed ── */

    /* ── Line progress indicator on scroll ── */
    #lux-progress {
      position: fixed; top: 0; left: 0; height: 1.5px; z-index: 9999;
      background: linear-gradient(to right, var(--gold-pale), var(--gold), var(--gold-light), var(--gold));
      width: 0%;
      transition: width 0.08s linear;
      box-shadow: 0 0 6px rgba(201,168,76,0.5), 0 0 1px rgba(255,220,120,0.8);
    }



  /* ════════════════════════════════════════════
     MOTION LAYER — smooth scroll · parallax ·
     magnetic cursor · text reveals · page loader
  ════════════════════════════════════════════ */

  /* ── Page loader ── */
  #nldr {
    position: fixed; inset: 0; z-index: 999999;
    background: #ffffff;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0;
    transition: clip-path 0.5s cubic-bezier(0.76,0,0.24,1), opacity 0.3s ease;
    overflow: hidden;
    /* Fix 3: Ensure loader fits screen on mobile — clips oversized rings */
    width: 100vw; max-width: 100%; box-sizing: border-box;
  }

  /* ── Loader: Particles canvas ── */
  #nldr-particles {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
  }

  /* ── Loader: Light beams ── */
  .nldr-beams {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1; overflow: hidden;
  }
  .nldr-beam {
    position: absolute;
    width: 2px; height: 120%;
    top: -10%; opacity: 0;
    background: linear-gradient(to bottom,
      transparent,
      rgba(201,168,76,0.18) 30%,
      rgba(201,168,76,0.28) 50%,
      rgba(201,168,76,0.18) 70%,
      transparent);
    filter: blur(8px);
    animation: nldrBeamDrift 8s ease-in-out infinite;
  }
  .nldr-beam-1 { left: 15%; animation-delay: 0s;   animation-duration: 9s;  width: 3px; }
  .nldr-beam-2 { left: 50%; animation-delay: 2.5s; animation-duration: 11s; width: 2px; }
  .nldr-beam-3 { left: 80%; animation-delay: 5s;   animation-duration: 8s;  width: 4px; }
  @keyframes nldrBeamDrift {
    0%,100% { opacity: 0; transform: translateX(-40px) rotate(-2deg); }
    30%,70% { opacity: 1; }
    50%      { opacity: 0.7; transform: translateX(40px) rotate(2deg); }
  }

  /* ── Loader: Ambient orbs ── */
  .nldr-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 1;
    filter: blur(80px);
    animation: nldrOrbFloat 10s ease-in-out infinite;
  }
  .nldr-orb-1 {
    width: 500px; height: 500px; top: -100px; left: -100px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    animation-duration: 12s;
  }
  .nldr-orb-2 {
    width: 400px; height: 400px; bottom: -80px; right: -80px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    animation-duration: 15s; animation-delay: 3s;
  }
  .nldr-orb-3 {
    width: 300px; height: 300px; top: 50%; left: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    animation-duration: 9s; animation-delay: 1.5s;
  }
  @keyframes nldrOrbFloat {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -20px) scale(1.05); }
    66%      { transform: translate(-20px, 15px) scale(0.96); }
  }

  /* ── Loader: Rotating concentric rings ── */
  .nldr-ring-wrap {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; pointer-events: none;
  }
  .nldr-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nldr-ring-outer {
    width: min(600px, 88vw); height: min(600px, 88vw);
    border: 1px solid rgba(201,168,76,0.10);
    animation: nldrRingCW 18s linear infinite;
  }
  .nldr-ring-mid {
    width: min(480px, 70vw); height: min(480px, 70vw);
    border: 1px solid rgba(201,168,76,0.16);
    animation: nldrRingCCW 14s linear infinite;
  }
  .nldr-ring-inner {
    width: min(390px, 57vw); height: min(390px, 57vw);
    border: 1px solid rgba(201,168,76,0.22);
    animation: nldrRingCW 22s linear infinite;
  }
  @keyframes nldrRingCW  { from { transform: translate(-50%,-50%) rotate(45deg);  } to { transform: translate(-50%,-50%) rotate(405deg);  } }
  @keyframes nldrRingCCW { from { transform: translate(-50%,-50%) rotate(-45deg); } to { transform: translate(-50%,-50%) rotate(-405deg); } }

  .nldr-ring-outer::before, .nldr-ring-outer::after,
  .nldr-ring-mid::before,   .nldr-ring-mid::after {
    content: '';
    position: absolute; background: var(--gold);
    width: 5px; height: 5px;
  }
  .nldr-ring-outer::before { top: -3px; left: 50%; margin-left: -2.5px; box-shadow: 0 0 8px 2px rgba(201,168,76,0.6); }
  .nldr-ring-outer::after  { bottom: -3px; left: 50%; margin-left: -2.5px; box-shadow: 0 0 8px 2px rgba(201,168,76,0.6); }
  .nldr-ring-mid::before   { top: -3px; left: 50%; margin-left: -2.5px; }
  .nldr-ring-mid::after    { bottom: -3px; left: 50%; margin-left: -2.5px; }

  .nldr-ring-dot {
    position: absolute; width: 8px; height: 8px;
    background: var(--gold);
    top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 20px 6px rgba(201,168,76,0.45);
    animation: nldrDotPulse 2s ease-in-out infinite;
  }
  @keyframes nldrDotPulse {
    0%,100% { box-shadow: 0 0 12px 4px rgba(201,168,76,0.4); }
    50%      { box-shadow: 0 0 28px 10px rgba(201,168,76,0.25); }
  }

  /* ── Loader: Global metallic sheen sweep ── */
  .nldr-sheen-global {
    position: absolute; inset: 0; z-index: 15; pointer-events: none;
    background: linear-gradient(105deg,
      transparent 30%,
      rgba(255,255,255,0.55) 50%,
      transparent 70%);
    animation: nldrGlobalSheen 8s ease-in-out infinite;
    opacity: 0;
  }
  @keyframes nldrGlobalSheen {
    0%,85%,100% { opacity: 0; transform: translateX(-100%); }
    88%          { opacity: 1; transform: translateX(0); }
    94%          { opacity: 0; transform: translateX(100%); }
  }

  /* Animated corner ornaments */
  #nldr::before {
    content: '';
    position: absolute;
    top: clamp(16px, 4vw, 48px); left: clamp(16px, 4vw, 48px);
    width: clamp(32px, 8vw, 72px); height: clamp(32px, 8vw, 72px);
    border-top: 1px solid rgba(201,168,76,0.45);
    border-left: 1px solid rgba(201,168,76,0.45);
    animation: nldrCornerIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    pointer-events: none;
  }
  #nldr::after {
    content: '';
    position: absolute;
    bottom: clamp(16px, 4vw, 48px); right: clamp(16px, 4vw, 48px);
    width: clamp(32px, 8vw, 72px); height: clamp(32px, 8vw, 72px);
    border-bottom: 1px solid rgba(201,168,76,0.45);
    border-right: 1px solid rgba(201,168,76,0.45);
    animation: nldrCornerIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    pointer-events: none;
  }
  @keyframes nldrCornerIn {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Subtle central ambient glow */
  #nldr-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(560px, 90vw); height: min(280px, 45vw); border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
    animation: nldrGlowPulse 2.4s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes nldrGlowPulse {
    0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.14); }
  }

  /* Top and bottom horizontal gold rules */
  #nldr-rule-top, #nldr-rule-bot {
    position: absolute; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    animation: nldrLineFade 0.9s ease 0.25s both;
  }
  #nldr-rule-top { top: 18%; }
  #nldr-rule-bot { bottom: 18%; }
  @keyframes nldrLineFade {
    from { opacity: 0; transform: scaleX(0.3); }
    to   { opacity: 1; transform: scaleX(1); }
  }

  /* Two extra corner ornaments (tr + bl) via sibling divs */
  #nldr-corner-tr {
    position: absolute;
    top: clamp(16px, 4vw, 48px); right: clamp(16px, 4vw, 48px);
    width: clamp(32px, 8vw, 72px); height: clamp(32px, 8vw, 72px);
    border-top: 1px solid rgba(201,168,76,0.45);
    border-right: 1px solid rgba(201,168,76,0.45);
    animation: nldrCornerIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    pointer-events: none;
  }
  #nldr-corner-bl {
    position: absolute;
    bottom: clamp(16px, 4vw, 48px); left: clamp(16px, 4vw, 48px);
    width: clamp(32px, 8vw, 72px); height: clamp(32px, 8vw, 72px);
    border-bottom: 1px solid rgba(201,168,76,0.45);
    border-left: 1px solid rgba(201,168,76,0.45);
    animation: nldrCornerIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    pointer-events: none;
  }

  /* Gold wing ornament lines flanking the logo */
  #nldr-wings {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 18px;
    opacity: 0; animation: nldrFadeIn 0.6s ease 0.3s forwards;
  }
  #nldr-wings::before, #nldr-wings::after {
    content: '';
    display: block; width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.7));
  }
  #nldr-wings::after {
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.7));
  }
  .nldr-diamond {
    width: 7px; height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px 3px rgba(201,168,76,0.35);
    animation: nldrDiamondPulse 2s ease-in-out infinite;
  }
  @keyframes nldrDiamondPulse {
    0%,100% { box-shadow: 0 0 8px 2px rgba(201,168,76,0.3); }
    50%      { box-shadow: 0 0 18px 6px rgba(201,168,76,0.6); }
  }
  @keyframes nldrFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── Elegant iris-shutter exit — replaced with split-door ── */
  #nldr-curtain-l, #nldr-curtain-r { display: none; }

  /* Loader fades bg once panels take over */
  /* Loader dissolve — content fades with the whole loader */
  #nldr.dissolve {
    pointer-events: none;
  }
  /* Legacy .hide — keep pointer-events off if ever triggered */
  #nldr.hide { pointer-events: none; }


  /* ══════════════════════════════════════
     LIQUID WHITE DISSOLVE TRANSITION
     Loader melts away — pure white blooms
     from the centre, evaporating into the
     hero like mist on water.
  ══════════════════════════════════════ */

  /* The loader itself becomes the transition surface */
  #nldr.dissolve {
    pointer-events: none;
    animation: ldrDissolve 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  @keyframes ldrDissolve {
    0%   { opacity: 1; filter: brightness(1)    blur(0px);  }
    35%  { opacity: 1; filter: brightness(1.15) blur(0px);  }
    65%  { opacity: 0.5; filter: brightness(1.4) blur(5px); }
    100% { opacity: 0; filter: brightness(2)    blur(20px); }
  }

  /* White bloom that expands from centre as loader dissolves */
  #nldr-gold-bloom {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
      #ffffff                 0%,
      rgba(255,255,255,0.92) 20%,
      rgba(255,255,255,0.60) 45%,
      rgba(255,255,255,0.15) 70%,
      transparent            100%);
    z-index: 999997;
    pointer-events: none;
    display: none;
  }
  body.dissolving #nldr-gold-bloom { display: block; }

  /* NIRYAANI — Cinematic letter-by-letter reveal */
  #nldr-logo {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 10vw, 88px);
    font-weight: 700;
    letter-spacing: clamp(6px, 2.5vw, 20px);
    /* transparent so the raw text node is invisible — only JS spans show */
    color: transparent;
    position: relative; z-index: 1;
    margin-bottom: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
  }

  /* Each letter is a span injected by JS — flame-forge cinematic entrance */
  #nldr-logo .nldr-letter {
    display: inline-block;
    opacity: 0;
    color: rgba(10,25,49,1);
    animation: nldrLetterForge 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
    transform-origin: bottom center;
  }

  @keyframes nldrLetterForge {
    0%   {
      opacity: 0;
      color: #ffffff;
      text-shadow:
        0 0 2px #fff,
        0 0 12px rgba(255,220,100,1),
        0 0 40px rgba(201,168,76,1),
        0 0 80px rgba(201,168,76,0.7);
      transform: scaleY(1.5) scaleX(0.7) translateY(-10px);
      filter: blur(4px);
    }
    18%  {
      opacity: 1;
      color: #f5e9c8;
      text-shadow:
        0 0 8px rgba(255,220,100,0.9),
        0 0 30px rgba(201,168,76,0.8),
        0 0 60px rgba(201,168,76,0.4);
      transform: scaleY(1.12) scaleX(0.92) translateY(-3px);
      filter: blur(1px);
    }
    45%  {
      color: #c9a84c;
      text-shadow:
        0 0 4px rgba(201,168,76,0.5),
        0 0 16px rgba(201,168,76,0.25);
      transform: scaleY(0.96) scaleX(1.02) translateY(2px);
      filter: blur(0);
    }
    68%  {
      color: #6a7c9a;
      text-shadow: 0 0 6px rgba(201,168,76,0.1);
      transform: scaleY(1.01) scaleX(0.99) translateY(0);
    }
    100% {
      opacity: 1;
      color: rgba(10,25,49,1);
      text-shadow: none;
      transform: scaleY(1) scaleX(1) translateY(0);
      filter: blur(0);
    }
  }

  /* After letter settles — no extra state needed, animation handles full transition */
  #nldr-logo .nldr-letter.nldr-settled {
    text-shadow: none;
  }

  /* Horizontal cinematic light-streak that sweeps across after letters land */
  #nldr-logo-streak {
    position: absolute;
    top: 50%; left: -20%;
    width: 140%; height: 2px;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(201,168,76,0) 20%,
      rgba(248,248,255,0.9) 48%,
      rgba(201,168,76,0.8) 50%,
      rgba(248,248,255,0.9) 52%,
      rgba(201,168,76,0) 80%,
      transparent 100%);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    animation: nldrStreak 0.45s cubic-bezier(0.16,1,0.3,1) 1.15s forwards;
    pointer-events: none; z-index: 3;
    filter: blur(0.5px);
  }
  @keyframes nldrStreak {
    0%   { transform: translateY(-50%) scaleX(0); opacity: 1; }
    55%  { transform: translateY(-50%) scaleX(1); opacity: 1; }
    100% { transform: translateY(-50%) scaleX(1); opacity: 0; }
  }

  /* Vertical bloom pulse once streak fires */
  #nldr-logo-bloom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scaleX(0) scaleY(0);
    width: 700px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.28) 0%, transparent 65%);
    animation: nldrBloom 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
    pointer-events: none; z-index: 0;
  }
  @keyframes nldrBloom {
    0%   { transform: translate(-50%,-50%) scale(0.2); opacity: 0; }
    40%  { opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
  }

  /* Gold divider rule with diamond — matches SVG logo rule */
  #nldr-divider {
    display: flex; align-items: center;
    width: 240px; margin: 14px 0 12px;
    opacity: 0; animation: nldrFadeIn 0.6s ease 0.55s forwards;
    position: relative; z-index: 1;
  }
  #nldr-divider-line {
    flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  }
  #nldr-divider-dot {
    width: 6px; height: 6px; background: var(--gold);
    transform: rotate(45deg);
    margin: 0 8px; flex-shrink: 0;
    box-shadow: 0 0 8px 2px rgba(201,168,76,0.4);
  }

  /* The Export Co. — Cormorant Garamond italic, gold, matches SVG tagline exactly */
  #nldr-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 4vw, 28px);
    letter-spacing: clamp(2px, 1vw, 5px);
    color: rgba(201,168,76,0);
    animation: nldrTag 0.7s ease 0.65s forwards;
    position: relative; z-index: 1;
    margin-bottom: 32px;
  }
  @keyframes nldrTag { to { color: rgba(201,168,76,0.85); } }

  /* Loading progress track */
  #nldr-track {
    width: 200px; height: 1px;
    background: rgba(201,168,76,0.15); overflow: hidden;
    position: relative; z-index: 1;
  }
  #nldr-bar {
    position: absolute; top:0; left:-100%; width:100%; height:100%;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold));
    animation: nldrBar 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
    box-shadow: 0 0 8px rgba(201,168,76,0.5);
  }
  @keyframes nldrBar { to { left: 0; } }

  /* Est. badge below the bar */
  #nldr-est {
    font-family: 'Cinzel', serif;
    font-size: 14.04px; letter-spacing: 5px;
    font-weight: 700;
    color: rgba(12,21,40,0.3); text-transform: uppercase;
    margin-top: 18px;
    opacity: 0; animation: nldrFadeIn 0.6s ease 0.9s forwards;
    position: relative; z-index: 1;
  }

  /* ── Magnetic cursor ── */
  #ncur, #ncur-ring {
    position: fixed; border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%,-50%);
  }
  #ncur {
    width: 10px; height: 10px; background: var(--gold);
    transition: width .25s ease, height .25s ease, opacity .3s;
    mix-blend-mode: multiply;
  }
  #ncur-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.5);
    transition: width .5s cubic-bezier(0.16,1,0.3,1),
                height .5s cubic-bezier(0.16,1,0.3,1),
                border-color .4s;
  }
  #ncur.big { width: 6px; height: 6px; }
  #ncur-ring.big { width: 56px; height: 56px; border-color: rgba(201,168,76,0.9); }

  /* ── GSAP reveal base ── */
  .gr { opacity: 0; }

  /* ── Word-split inline spans ── */
  .ws-word {
    display: inline-block; overflow: hidden; vertical-align: bottom;
    line-height: 1.15;
  }
  .ws-inner { display: inline-block; transform: translateY(108%); }

  /* ── Section gold entry sweep ── */
  .sec-sweep {
    position: absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.65), transparent);
    transform: scaleX(0); transform-origin: left; pointer-events: none; z-index:8;
  }

  /* ── Hero canvas particles ── */
  #hcv {
    position: absolute; inset:0; pointer-events:none; z-index:2; opacity:.65;
  }

  /* ── Parallax container ── */
  .hero-img { will-change: transform; }

  /* ── Smooth scroll html override ── */
  html { scroll-behavior: auto !important; overflow-x: hidden; }

  /* ── Why items GSAP start state (override CSS) ── */
  .why-item {
    opacity: 0 !important;
    transform: translateY(55px) rotateX(-10deg) !important;
  }
  .why-item.w-done {
    opacity: 1 !important;
    transform: translateY(0) rotateX(0deg) !important;
  }

  /* ── Process step GSAP override ── */
  .process-step { opacity: 0; transform: translateX(-50px); }
  .process-step.p-done { opacity: 1; transform: translateX(0); }

  /* ── Cert items GSAP override ── */
  .cert-item { opacity: 0; transform: scale(0.75) rotateY(-40deg); }
  .cert-item.c-done { opacity: 1; transform: scale(1) rotateY(0deg); }

  /* ── lux-reveal GSAP override ── */
  .lux-reveal {
    opacity: 0;
    transform: translateY(30px);
  }

    /* ── Modal animations ── */
    /* ══════════════════════════════════════
       PRODUCT MODAL — mirrors lux sub-section
    ══════════════════════════════════════ */

    @keyframes modalBackdropIn {
      from { opacity:0; } to { opacity:1; }
    }
    @keyframes modalCardEntry {
      0%   { opacity:0; transform: translateX(40px) translateY(10px); }
      100% { opacity:1; transform: translateX(0) translateY(0); }
    }
    @keyframes modalCardEntryMobile {
      0%   { opacity:0; transform: translateY(60px) scale(0.97); }
      100% { opacity:1; transform: translateY(0) scale(1); }
    }
    @keyframes modalRuleGrow {
      from { width:0; } to { width:100%; }
    }
    @keyframes modalFadeUp {
      from { opacity:0; transform: translateY(16px); }
      to   { opacity:1; transform: translateY(0); }
    }
    @keyframes modalScanLine {
      0%   { top: 20%; opacity: 0; }
      10%  { opacity: 1; }
      50%  { top: 80%; opacity: 0.6; }
      90%  { opacity: 1; }
      100% { top: 20%; opacity: 0; }
    }
    @keyframes modalDiamondGlow {
      0%,100% { box-shadow: 0 0 10px 2px rgba(201,168,76,0.4); }
      50%      { box-shadow: 0 0 26px 8px rgba(201,168,76,0.7); }
    }
    @keyframes modalCornerPulse {
      0%,100% { opacity: 0.5; } 50% { opacity: 1; }
    }
    @keyframes modalGlobalSheen {
      0%,85%,100% { opacity: 0; transform: translateX(-100%); }
      88%          { opacity: 1; transform: translateX(0); }
      94%          { opacity: 0; transform: translateX(100%); }
    }
    @keyframes modalBeamDrift {
      0%,100% { opacity: 0; transform: translateX(-40px) rotate(-2deg); }
      30%,70% { opacity: 1; }
      50%      { opacity: 0.7; transform: translateX(40px) rotate(2deg); }
    }
    @keyframes modalOrbFloat {
      0%,100% { transform: translate(0,0) scale(1); }
      33%      { transform: translate(30px,-20px) scale(1.05); }
      66%      { transform: translate(-20px,15px) scale(0.96); }
    }

    /* ── Backdrop — true fixed overlay, GPU-composited, zero layout shift ── */
    #prod-modal {
      /* Always in DOM as flex, hidden via opacity only — no display toggle */
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      inset: 0;
      z-index: 9500;
      /* Separate tint from blur so mobile GPU can composite independently */
      background: rgba(8, 14, 28, 0.52);
      cursor: pointer;
      padding: clamp(12px, 4vw, 24px);
      padding-top: clamp(60px, 12vh, 100px);
      box-sizing: border-box;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      /* Hidden: opacity + transform only — compositor-friendly, NO layout reflow */
      opacity: 0;
      pointer-events: none;
      transform: translateZ(0); /* Force GPU layer */
      will-change: opacity;
      transition: opacity 0.28s cubic-bezier(0.22,1,0.36,1);
    }
    #prod-modal::-webkit-scrollbar { display: none; }
    #prod-modal.open {
      opacity: 1;
      pointer-events: all;
    }

    /* Beam pseudo-elements removed — caused GPU thrash on mobile */

    /* Ambient orbs */
    #modal-orb-1, #modal-orb-2 {
      position: absolute; border-radius: 50%;
      pointer-events: none; filter: blur(80px);
      animation: modalOrbFloat 12s ease-in-out infinite;
    }
    #modal-orb-1 {
      width: 500px; height: 500px; top: -150px; left: -150px;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    }
    #modal-orb-2 {
      width: 400px; height: 400px; bottom: -100px; right: -100px;
      background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
      animation-delay: 3s; animation-duration: 15s;
    }

    /* ── Card ── */
    .modal-panel {
      position: relative; z-index: 10;
      width: 648px; max-width: calc(100vw - 24px);
      background: #F8F8FF;
      /* No backdrop-filter on panel — causes double-blur jank on mobile */
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: 1px solid rgba(201,168,76,0.28);
      padding: 36px 48px 31px;
      box-shadow:
        0 8px 80px rgba(201,168,76,0.08),
        0 2px 0 rgba(255,255,255,1) inset,
        0 -1px 0 rgba(201,168,76,0.15) inset,
        0 0 0 1px rgba(201,168,76,0.06);
      cursor: default;
      /* GPU-composited slide-up — opacity + translateY only, no scale/blur */
      opacity: 0;
      transform: translateY(32px) translateZ(0);
      will-change: transform, opacity;
      transition:
        opacity  0.42s cubic-bezier(0.22,1,0.36,1) 0.06s,
        transform 0.42s cubic-bezier(0.22,1,0.36,1) 0.06s;
      overflow: visible;
      isolation: isolate;
    }
    /* When modal opens, panel slides smoothly into place */
    #prod-modal.open .modal-panel {
      opacity: 1;
      transform: translateY(0) translateZ(0);
    }

    /* Gold corner brackets — mirrors lux-info-card::before / ::after */
    .modal-panel::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 40px; height: 40px;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
      pointer-events: none;
    }
    .modal-panel::after {
      content: '';
      position: absolute; bottom: 0; right: 0;
      width: 40px; height: 40px;
      pointer-events: none;
    }

    /* Top gold rule */
    .modal-top-rule {
      width: 0; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold), transparent);
      margin-bottom: 28px;
      transition: width 0.7s cubic-bezier(0.22,1,0.36,1) 0.18s;
    }
    #prod-modal.open .modal-top-rule { width: 100%; }

    /* Close button */
    .modal-close {
      position: absolute; top: 14px; right: 14px; z-index: 20;
      width: 30px; height: 30px;
      border: 1px solid rgba(201,168,76,0.4);
      background: rgba(248,248,255,0.6);
      backdrop-filter: blur(12px);
      color: var(--gold); font-size: 14px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s, transform 0.35s;
      display: flex; align-items: center; justify-content: center;
      border-radius: 0;
    }
    .modal-close:hover {
      background: var(--navy); color: var(--white);
      border-color: var(--navy); transform: rotate(90deg);
    }

    /* Eyebrow */
    .modal-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
      opacity: 0; transform: translateY(10px) translateZ(0);
      transition: opacity 0.38s ease 0.22s, transform 0.38s cubic-bezier(0.22,1,0.36,1) 0.22s;
    }
    #prod-modal.open .modal-eyebrow { opacity: 1; transform: translateY(0) translateZ(0); }
    .modal-eyebrow::before, .modal-eyebrow::after {
      content: '';
      display: inline-block; width: 20px; height: 1px;
    }
    .modal-eyebrow::before { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
    .modal-eyebrow::after  { background: linear-gradient(to left,  var(--gold), var(--gold-light)); }

    /* Title */
    .modal-title-el {
      font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300;
      color: var(--navy); line-height: 1.0; margin-bottom: 0;
      opacity: 0; transform: translateY(12px) translateZ(0);
      transition: opacity 0.42s ease 0.29s, transform 0.42s cubic-bezier(0.22,1,0.36,1) 0.29s;
    }
    #prod-modal.open .modal-title-el { opacity: 1; transform: translateY(0) translateZ(0); }

    /* Divider */
    .modal-divider {
      width: 44px; height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
      margin: 20px 0 18px;
      opacity: 0; transform: translateZ(0);
      transition: opacity 0.38s ease 0.36s;
    }
    #prod-modal.open .modal-divider { opacity: 1; }

    /* Description */
    .modal-desc {
      font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.85;
      color: rgba(12,21,40,0.62); font-weight: 400; font-style: italic;
      border-left: 2px solid rgba(201,168,76,0.4); padding-left: 16px;
      margin-bottom: 22px;
      opacity: 0; transform: translateY(8px) translateZ(0);
      transition: opacity 0.4s ease 0.40s, transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.40s;
    }
    #prod-modal.open .modal-desc { opacity: 1; transform: translateY(0) translateZ(0); }

    /* Specs grid */
    .modal-specs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.18);
      border: 1px solid rgba(201,168,76,0.18);
      margin-bottom: 0;
      opacity: 0;
      transition: opacity 0.4s ease 0.46s;
    }
    #prod-modal.open .modal-specs-grid { opacity: 1; }
    .modal-spec {
      background: #F8F8FF;
      padding: 10px 12px;
      transition: background 0.25s;
    }
    /* Empty spec cell — fills with same white so no ivory bleed-through */
    .modal-spec:empty {
      background: #F8F8FF;
    }
    .modal-spec:hover { background: rgba(201,168,76,0.10); }
    .modal-spec-label {
      font-family: 'Cinzel', serif; font-size: 7px; letter-spacing: 3px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 3px;
    }
    .modal-spec-value {
      font-family: 'Jost', sans-serif; font-size: 11px;
      color: rgba(7,15,29,0.78); font-weight: 300; line-height: 1.45;
    }

    /* Bottom rule — mirrors lux-info-bottom-rule */
    .modal-bottom-rule {
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
      margin: 28px 0 24px;
    }

    /* CTA row */
    .modal-cta-row {
      display: flex; gap: 12px;
      opacity: 0; transform: translateY(8px) translateZ(0);
      transition: opacity 0.38s ease 0.52s, transform 0.38s cubic-bezier(0.22,1,0.36,1) 0.52s;
    }
    #prod-modal.open .modal-cta-row { opacity: 1; transform: translateY(0) translateZ(0); }
    .modal-cta-btn {
      display: inline-flex; align-items: center; gap: 14px;
      font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
      text-transform: uppercase; cursor: pointer;
      border: 1px solid rgba(12,21,40,0.3); color: var(--navy);
      background: transparent; padding: 14px 28px;
      position: relative; overflow: hidden;
      transition: color 0.4s ease, border-color 0.4s ease;
    }
    .modal-cta-btn::before {
      content: '';
      position: absolute; top:0; left:-100%; width:100%; height:100%;
      background: var(--navy);
      transition: left 0.45s cubic-bezier(0.16,1,0.3,1); z-index: -1;
    }
    .modal-cta-btn:hover { color: var(--white); border-color: var(--navy); }
    .modal-cta-btn:hover::before { left: 0; }

    /* WhatsApp primary — gold fill */
    .modal-cta-btn.primary {
      border-color: var(--gold); color: var(--gold);
    }
    .modal-cta-btn.primary::before { background: var(--gold); }
    .modal-cta-btn.primary:hover { color: var(--navy); border-color: var(--gold); }

    /* Global sheen sweep — mirrors lux-sheen-global */
    .modal-sheen {
      position: absolute; inset: 0; z-index: 25; pointer-events: none;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
      animation: modalGlobalSheen 8s ease-in-out infinite;
      opacity: 0;
    }

    /* Scan line */
    .modal-scanline {
      position: absolute; z-index: 26; pointer-events: none;
      left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.5), rgba(232,204,128,0.8), rgba(201,168,76,0.5), transparent);
      animation: modalScanLine 5s ease-in-out infinite;
      top: 50%;
    }

    /* ── Responsive ── */
    @media (max-width: 620px) {
      .modal-panel { padding: 36px 24px 32px; }
      .modal-title-el { font-size: 32px; }
      .modal-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .modal-cta-row { flex-direction: column; }
      .modal-cta-btn { justify-content: center; }
    }

    /* ════════════════════════════════════════════════════════════
       MOBILE & TABLET — FULL RESPONSIVE SYSTEM
       Strategy: fluid clamp() values + layout pivots at key breaks
       Breakpoints: 1080px tablet · 768px mobile · 480px small mobile
    ════════════════════════════════════════════════════════════ */

    /* ── Hamburger button (hidden on desktop) ── */
    .ham-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none;
      border: 1px solid rgba(201,168,76,0.35);
      cursor: pointer;
      flex-shrink: 0;
      z-index: 1100;
      padding: 0;
      /* Ensure it's always within viewport on mobile */
      position: relative;
      -webkit-tap-highlight-color: transparent;
    }
    .ham-btn span {
      display: block; width: 20px; height: 1px;
      background: var(--navy);
      transition: transform 0.32s ease, opacity 0.22s ease;
      transform-origin: center;
    }
    .ham-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .ham-btn.open span:nth-child(2) { opacity: 0; }
    .ham-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* ── Mobile nav overlay ── */
    #mob-nav {
      position: fixed; inset: 0;
      background: rgba(248,248,255,0.97);
      backdrop-filter: blur(28px);
      z-index: 1090;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0;
      opacity: 0; pointer-events: none;
      transition: opacity 0.35s ease;
    }
    #mob-nav.open { opacity: 1; pointer-events: all; }
    #mob-nav a {
      font-family: 'Cinzel', serif; font-size: 12px;
      letter-spacing: 5px; text-transform: uppercase;
      text-decoration: none; color: var(--navy);
      padding: 18px 0; width: 240px; text-align: center;
      border-bottom: 1px solid rgba(201,168,76,0.12);
      transition: color 0.3s, letter-spacing 0.3s;
    }
    #mob-nav a:first-of-type { border-top: 1px solid rgba(201,168,76,0.12); }
    #mob-nav a:hover, #mob-nav a:active { color: var(--gold); letter-spacing: 7px; }
    #mob-nav-close {
      position: absolute; top: 18px; right: 18px;
      width: 38px; height: 38px; background: none;
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--navy); font-size: 14px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
    }

    /* ══════════════════════════════
       TABLET  ≤ 1080px
    ══════════════════════════════ */
    @media (max-width: 1080px) {
      header  { padding: 16px 32px; }
      nav     { gap: 20px; }
      nav a   { font-size: 9px; letter-spacing: 2px; }
      section { padding: 80px 32px; }

      /* Hero */
      .hero-company-name  { font-size: clamp(38px, 6vw, 76px); letter-spacing: clamp(6px, 1.2vw, 14px); }
      .hero-company-tagline { font-size: clamp(13px, 1.8vw, 22px); }
      .hero h2            { font-size: clamp(48px, 8vw, 105px); }
      .hero h2 em         { font-size: clamp(54px, 9vw, 117px); }

      /* Carousel — shrink slides so they fit */
      .carousel-stage, .main-carousel-stage, .csp-stage { height: 460px; }
      .c-slide { width: 320px; height: 460px; }
      .c-slide[data-pos="-1"] { transform: translateX(calc(-50% - 260px)) translateZ(-220px) rotateY(28deg) scale(0.87); }
      .c-slide[data-pos="1"]  { transform: translateX(calc(-50% + 260px)) translateZ(-220px) rotateY(-28deg) scale(0.87); }
      .c-slide[data-pos="-2"],
      .c-slide[data-pos="2"]  { opacity: 0; pointer-events: none; }
      .carousel-arrow.prev,
      .main-carousel-stage .carousel-arrow.prev,
      .csp-stage .carousel-arrow.prev { left: 6px; }
      .carousel-arrow.next,
      .main-carousel-stage .carousel-arrow.next,
      .csp-stage .carousel-arrow.next { right: 6px; }

      /* Why grid 2-col */
      .why-grid { grid-template-columns: repeat(2, 1fr); }

      /* Lux stage */
      .lux-stage    { padding: 60px 32px; }
      .lux-nav      { padding: 18px 32px; }
      .lux-info-card { padding: 40px 32px; }

      /* Footer */
      footer { padding: 48px 32px 24px; }
      .lux-sep { padding: 0 32px; }
    }

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

      /* ── Header & Nav ── */
      header { padding: 14px 16px; }
      header nav { display: none; }
      .ham-btn { display: flex; }
      /* Ensure logo doesn't overflow and push button off-screen */
      .logo-svg-wrap { flex-shrink: 1; overflow: hidden; max-width: calc(100% - 56px); }

      /* ── Hero ── */
      .hero { height: 100svh; min-height: 580px; }
      .hero-pre { font-size: clamp(8px, 2.4vw, 11px); letter-spacing: clamp(2px, 1vw, 5px); }
      .hero-company-name { font-size: clamp(30px, 8vw, 54px); letter-spacing: clamp(4px, 1.2vw, 10px); }
      .hero-company-tagline { font-size: clamp(11px, 3vw, 18px); letter-spacing: 4px; }
      .hero h2   { font-size: clamp(36px, 10vw, 70px); }
      .hero h2 em { font-size: clamp(40px, 11vw, 78px); }
      .hero-sub  { gap: 8.75px; }
      .hs-chip   { font-size: 11.39px; letter-spacing: 1.5px; padding: 5px 12px; }
      .hero-btn  { padding: 13px 32px; font-size: 10px; letter-spacing: 3px; margin-top: 28px; }
      .hero-badge { font-size: 8px; letter-spacing: 2px; padding: 7px 14px; }
      .hero-ornament { width: 46px; height: 46px; }
      .hero-ornament.tl { top: 56px; left: 16px; }
      .hero-ornament.tr { top: 56px; right: 16px; }
      .hero-ornament.bl { bottom: 32px; left: 16px; }
      .hero-ornament.br { bottom: 32px; right: 16px; }
      /* Contain ambient orbs so they don't cause scroll */
      .hero-orb   { width: min(300px, 80vw); height: 110px; }
      .hero-orb-2 { width: min(380px, 95vw); height: 90px; }

      /* ── General sections ── */
      section { padding: 64px 18px; }
      .section-title { font-size: clamp(26px, 7vw, 46px); }
      .section-rule  { margin-bottom: 40px; }

      /* ── Why grid ── */
      .why-grid { grid-template-columns: 1fr; max-width: 100%; }

      /* ── Process ── */
      .process-track::before { left: 28px; }
      .process-step  { gap: 20px; padding: 22px 0; }
      .process-num   { min-width: 56px; height: 56px; font-size: 20px; flex-shrink: 0; }
      .process-content h4 { font-size: 11px; }
      .process-content p  { font-size: 14px; }

      /* ── Certifications ── */
      .cert-grid { gap: 8px; flex-wrap: wrap; justify-content: center; }
      .cert-item { width: 110px; min-width: 100px; height: 90px; }

      /* ── Contact ── */
      .contact-ornament { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form { margin-top: 28px; }

      /* ── Footer ── */
      footer { padding: 36px 18px 18px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

      /* ── Ornate separator ── */
      .lux-sep { padding: 0 18px; }

      /* ── Main product carousel ── */
      .carousel-stage, .main-carousel-stage, .csp-stage {
        height: clamp(300px, 65vw, 420px);
      }
      .c-slide {
        width: clamp(220px, 55vw, 300px);
        height: clamp(300px, 65vw, 420px);
      }
      .c-slide[data-pos="-1"] {
        transform: translateX(calc(-50% - clamp(160px, 40vw, 240px))) translateZ(-160px) rotateY(24deg) scale(0.84);
      }
      .c-slide[data-pos="1"] {
        transform: translateX(calc(-50% + clamp(160px, 40vw, 240px))) translateZ(-160px) rotateY(-24deg) scale(0.84);
      }
      .c-slide[data-pos="-2"],
      .c-slide[data-pos="2"]  { opacity: 0; pointer-events: none; }
      .carousel-arrow.prev,
      .main-carousel-stage .carousel-arrow.prev,
      .csp-stage .carousel-arrow.prev { left: 2px; }
      .carousel-arrow.next,
      .main-carousel-stage .carousel-arrow.next,
      .csp-stage .carousel-arrow.next { right: 2px; }
      .carousel-arrow { width: 42px; height: 42px; font-size: 15px; }

      /* ── Category tiles ── */
      .cat-tiles-grid { grid-template-columns: repeat(2, 1fr); }
      .cat-tile { height: clamp(180px, 45vw, 260px); }
      .cat-tile-name { font-size: clamp(18px, 5vw, 30px); }
      .cat-tile-body { padding: 20px 16px 24px; }

      /* ── CSP sub view ── */
      .csp-hero { margin: 0 -18px; height: 180px; }
      .csp-header { padding: 20px 0 18px; gap: 12px; flex-wrap: wrap; }
      .csp-header-name { font-size: clamp(22px, 6vw, 36px); }

      /* ── Lux sub view ── */
      .lux-stage {
        flex-direction: column;
        padding: 32px 18px 64px;
        gap: 28px;
        min-height: auto;
      }
      .lux-nav { padding: 12px 14px; gap: 8px; }
      .lux-nav-title { font-size: clamp(18px, 5vw, 30px); }
      .lux-nav-index { font-size: 18px; }
      .lux-back { padding: 8px 12px; font-size: 8px; letter-spacing: 2px; }

      /* Product frame — fluid width */
      .lux-product-frame {
        margin-right: 0;
        width: min(320px, 80vw);
        height: min(320px, 80vw);
      }
      .lux-product-img {
        width: min(260px, 66vw);
        height: min(260px, 66vw);
      }
      .lux-product-sheen {
        width: min(260px, 66vw);
        height: min(260px, 66vw);
      }
      /* Rings — contain to viewport */
      .lux-ring-outer { width: min(340px, 88vw); height: min(340px, 88vw); }
      .lux-ring-mid   { width: min(270px, 70vw); height: min(270px, 70vw); }
      .lux-ring-inner { width: min(200px, 52vw); height: min(200px, 52vw); }

      .lux-info-card {
        width: 100%; max-width: 100%;
        padding: 28px 20px 24px;
      }
      .lux-info-title { font-size: clamp(26px, 7vw, 44px); }
      .lux-info-desc  { font-size: 14px; }
      .lux-info-cta   { padding: 12px 20px; font-size: 9px; letter-spacing: 3px; }
      .lux-action-row { flex-direction: column; }
      .lux-action-btn { justify-content: center; padding: 12px 16px; font-size: 9px; letter-spacing: 3px; }
      .lux-arrow-prev { left: 6px; }
      .lux-arrow-next { right: 6px; }
      .lux-arrow { width: 42px; height: 42px; }
      .lux-dots { bottom: 16px; }

      /* WhatsApp */
      .social-speed-dial { bottom: 14px; right: 14px; }
      .social-btn.wa-main { width: 48px; height: 48px; }
      .social-btn { width: 40px; height: 40px; }
      .social-btn-tooltip { display: none; }
      #scrollTop { bottom: 14px; left: 14px; width: 46px; height: 46px; }
      .social-btn-tooltip { display: none; }

      /* Modal panel — fluid width on mobile */
      .modal-panel { padding: 28px 18px 24px; }
      .modal-title-el { font-size: clamp(24px, 6.5vw, 36px); }
      .modal-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .modal-cta-row { flex-direction: column; }
      .modal-cta-btn { justify-content: center; padding: 12px 16px; font-size: 9px; }

      /* Loader — fluid sizing now handled in base CSS via clamp()/min() */

      /* About */
      .about-inner p { font-size: clamp(16px, 4vw, 22px); }
    }

    /* ══════════════════════════════
       SMALL MOBILE  ≤ 480px
    ══════════════════════════════ */
    @media (max-width: 480px) {
      header { padding: 12px 12px; }
      .logo-svg-wrap svg { width: 160px; height: 39px; }

      .hero-company-name  { font-size: clamp(24px, 7.5vw, 40px); letter-spacing: clamp(3px, 1vw, 7px); }
      .hero h2            { font-size: clamp(28px, 8.5vw, 48px); }
      .hero h2 em         { font-size: clamp(32px, 9.5vw, 54px); }
      .hero-badge         { display: none; }
      .hero-btn           { padding: 11px 24px; font-size: 9px; letter-spacing: 2px; }

      section { padding: 52px 14px; }
      .section-title { font-size: clamp(22px, 6.5vw, 34px); }

      .why-item { padding: 24px 18px 22px; }
      .process-num { min-width: 48px; height: 48px; font-size: 17px; }
      .process-track::before { left: 24px; }

      .cert-item { width: 100px; min-width: 96px; height: 84px; }
      .cert-icon { font-size: 18px; }
      .cert-label { font-size: 8px; }

      .cat-tile { height: clamp(160px, 42vw, 220px); }
      .cat-tile-name { font-size: clamp(16px, 4.5vw, 24px); }

      .c-slide {
        width: clamp(200px, 52vw, 260px);
        height: clamp(270px, 60vw, 340px);
      }
      .carousel-stage, .main-carousel-stage, .csp-stage {
        height: clamp(270px, 60vw, 340px);
      }

      .lux-product-frame { width: min(260px, 75vw); height: min(260px, 75vw); }
      .lux-product-img   { width: min(210px, 60vw); height: min(210px, 60vw); }
      .lux-product-sheen { width: min(210px, 60vw); height: min(210px, 60vw); }
      .lux-ring-outer { width: min(280px, 78vw) !important; height: min(280px, 78vw) !important; }
      .lux-ring-mid   { width: min(220px, 61vw) !important; height: min(220px, 61vw) !important; }
      .lux-ring-inner { width: min(165px, 46vw) !important; height: min(165px, 46vw) !important; }
      .lux-info-title { font-size: clamp(22px, 6vw, 34px); }
      .lux-nav-title  { font-size: clamp(16px, 4.5vw, 24px); }

      footer { padding: 28px 14px 16px; }
    }

    /* ── Touch devices: remove hover side-effects that get stuck ── */
    @media (hover: none) and (pointer: coarse) {
      .cat-tile:hover .cat-tile-img img  { transform: none; }
      .cat-tile:hover .cat-tile-veil     { background: linear-gradient(to top, rgba(7,15,29,0.92) 0%, rgba(7,15,29,0.40) 50%, rgba(7,15,29,0.06) 100%); }
      .cat-tile:hover .cat-tile-wash     { opacity: 0; }
      .cat-tile:hover::before,
      .cat-tile:hover::after             { transform: scaleX(0); }
      .why-item:hover                    { transform: translateY(0) rotateX(0) scale(1) !important; box-shadow: 0 8px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(201,168,76,0.06) !important; }
      .cert-item:hover                   { transform: scale(1) rotateX(0) !important; }
      nav a:hover                        { transform: none; }
    }
