/* ============================================
   FSA ENTERPRISES — DESIGN SYSTEM v2
   Pure Black • Royal Gold • Premium Animations
   ============================================ */

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

:root {
  /* ── Black Spectrum — pure warm black, gold-tinted, ZERO blue ── */
  --void:      #060503;
  --black:     #0A0805;
  --carbon:    #0E0B07;
  --carbon-2:  #14100A;
  --carbon-3:  #1C1610;
  --carbon-4:  #261E14;
  --line:      rgba(212,175,55,.10);
  --line-2:    rgba(212,175,55,.20);
  --line-3:    rgba(212,175,55,.40);

  /* ── Royal Gold Spectrum ── */
  --gold:      #D4AF37;
  --gold-hi:   #F5D77E;
  --gold-mid:  #E2C158;
  --gold-lo:   #B5912A;
  --gold-deep: #826419;
  --gold-glow: rgba(212,175,55,.45);

  /* ── Type Tones ── */
  --snow:  #F4F1E6;
  --paper: #E5DEC8;
  --fog:   #9B9580;
  --steel: #6A6552;
  --rose:  #FF8A65;
  --mint:  #6FE0B4;

  /* ── Radii ── */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* ── Shadows ── */
  --sh-soft: 0 4px 14px rgba(0,0,0,.35);
  --sh-card: 0 14px 40px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.3);
  --sh-gold: 0 12px 36px rgba(212,175,55,.28), 0 0 0 1px rgba(212,175,55,.18) inset;
  --sh-glow: 0 0 60px rgba(212,175,55,.18);

  /* ── Easing ── */
  --t-fast:  .25s cubic-bezier(.4,0,.2,1);
  --t-base:  .45s cubic-bezier(.2,.8,.2,1);
  --t-slow:  .8s  cubic-bezier(.16,1,.3,1);
}

/* ════════════════ BASE ════════════════ */
html { scroll-behavior: smooth; }
body {
  background:
    /* gold light bleeds — 30% golden glow */
    radial-gradient(ellipse 60% 50% at 12% 10%, rgba(212,175,55,.10) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 35%, rgba(245,215,126,.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(181,145,42,.09) 0%, transparent 60%),
    /* rough rock layer */
    var(--void);
  color: var(--snow);
  font-family: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
  position: relative;
}
/* Rough textured rock backdrop — pebble/asphalt feel */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='3' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 .05  0 0 0 0 .04  0 0 0 0 .06  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23r)'/></svg>");
  background-size: 380px 380px;
  opacity: .85;
  mix-blend-mode: overlay;
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='r2'><feTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='2' stitchTiles='stitch' seed='2'/><feColorMatrix values='0 0 0 0 .65  0 0 0 0 .5  0 0 0 0 .15  0 0 0 .12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23r2)'/></svg>");
  background-size: 580px 580px;
  opacity: .7;
  mix-blend-mode: soft-light;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--void); }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold), var(--gold-deep));
  border-radius: var(--r-pill);
}

/* ════════════════ AMBIENT BACKDROP ════════════════ */
#particles-canvas {
  position: fixed; inset: 0; pointer-events: none;
  z-index: 0; width: 100%; height: 100%;
}

.amb { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.amb::before, .amb::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(120px); will-change: transform; opacity: .26;
}
.amb::before {
  top: -15%; left: -10%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(212,175,55,.32) 0%, transparent 65%);
  animation: drift 28s ease-in-out infinite alternate;
}
.amb::after {
  bottom: -15%; right: -10%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(130,100,25,.28) 0%, transparent 65%);
  animation: drift2 34s ease-in-out infinite alternate;
}
@keyframes drift  { 0%{transform:translate(0,0) scale(1);} 100%{transform:translate(8vw,5vw) scale(1.1);} }
@keyframes drift2 { 0%{transform:translate(0,0) scale(1);} 100%{transform:translate(-7vw,-6vw) scale(1.08);} }

/* Animated lattice rays — diagonal gold sweeps drifting across viewport */
.amb-lines {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden; opacity: .35;
}
.amb-lines::before, .amb-lines::after {
  content: ''; position: absolute;
  width: 200%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  filter: blur(.4px);
  opacity: .22;
}
.amb-lines::before {
  top: 28%; left: -50%;
  transform: rotate(-8deg);
  animation: rayslide 22s linear infinite;
}
.amb-lines::after {
  top: 64%; left: -50%;
  transform: rotate(6deg);
  animation: rayslide 28s linear infinite reverse;
  background: linear-gradient(90deg, transparent, var(--gold-hi) 50%, transparent);
}
@keyframes rayslide { 0%{transform:translateX(-30%) rotate(-8deg);} 100%{transform:translateX(30%) rotate(-8deg);} }

/* Floating decorative orbs — geometric shapes dropping subtle motion */
.amb-orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.amb-orbs span {
  position: absolute; display: block;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  opacity: .35;
  animation: orbit 18s ease-in-out infinite;
}
.amb-orbs span:nth-child(1) { top: 18%;  left:  4%;  width: 56px; height: 56px; transform: rotate(20deg); animation-duration: 22s; }
.amb-orbs span:nth-child(2) { top: 64%;  left:  8%;  width: 38px; height: 38px; border-radius: 50%; animation-duration: 26s; animation-delay: -4s; }
.amb-orbs span:nth-child(3) { top: 28%;  right: 6%;  width: 72px; height: 72px; border-radius: 50%; animation-duration: 30s; animation-delay: -8s; }
.amb-orbs span:nth-child(4) { top: 78%;  right: 10%; width: 44px; height: 44px; transform: rotate(45deg); animation-duration: 24s; animation-delay: -12s; }
.amb-orbs span:nth-child(5) { top: 48%;  left: 50%;  width: 30px; height: 30px; border-radius: 50%; animation-duration: 28s; animation-delay: -2s; opacity: .25; }
@keyframes orbit {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(40px,-30px) rotate(180deg); }
}
@media (max-width: 800px) { .amb-orbs span { display: none; } }

.grid-veil {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, #000 30%, transparent 80%);
  animation: gridpulse 9s ease-in-out infinite;
}
@keyframes gridpulse {
  0%,100% { opacity: .35; background-position: 0 0, 0 0; }
  50%     { opacity: .55; background-position: 8px 0, 0 8px; }
}

.grain { position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: .04; mix-blend-mode: overlay; }
.grain::before {
  content: ''; position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.cursor-glow {
  position: fixed; width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 60%);
  pointer-events: none; z-index: 3;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out;
  will-change: transform;
  mix-blend-mode: screen;
}
@media (max-width: 900px) { .cursor-glow { display: none; } }

/* ════════════════ LOADER ════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 36px;
  transition: opacity .9s cubic-bezier(.7,0,.3,1), visibility .9s;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
#loader::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,.10), transparent 60%);
  animation: lglow 3s ease-in-out infinite;
}
@keyframes lglow { 0%,100%{opacity:.3;} 50%{opacity:.7;} }

.loader-stage { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
.loader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold-hi);
  border-right-color: var(--gold);
  animation: lspin 1.8s cubic-bezier(.5,.1,.5,.9) infinite;
}
.loader-ring.r2 { inset: 16px; border-top-color: transparent; border-right-color: transparent; border-bottom-color: var(--gold-mid); border-left-color: var(--gold-hi); animation-duration: 2.4s; animation-direction: reverse; }
.loader-ring.r3 { inset: 32px; border: 1px dashed rgba(212,175,55,.35); animation-duration: 8s; }
.loader-ring.r4 { inset: 48px; border: 1px solid transparent; border-top-color: var(--gold); animation-duration: 1.2s; }
@keyframes lspin { to { transform: rotate(360deg); } }
.loader-logo {
  width: 100px; height: 100px;
  background: url('../logo-mark.png') center/contain no-repeat;
  filter: drop-shadow(0 0 24px var(--gold-glow)) drop-shadow(0 0 8px rgba(245,215,126,.4));
  animation: lpulse 2.4s cubic-bezier(.4,0,.2,1) infinite;
  position: relative; z-index: 2;
}
@keyframes lpulse { 0%,100%{transform:scale(1) rotate(0);} 50%{transform:scale(1.06) rotate(-2deg);opacity:.9;} }
.loader-text {
  font-family: 'Syne','Sora',sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 10px; text-transform: uppercase;
  color: var(--paper); display: flex; gap: 6px;
}
.loader-text span { display: inline-block; animation: lletter 1.4s ease-in-out infinite; }
.loader-text span:nth-child(1){animation-delay:0s} .loader-text span:nth-child(2){animation-delay:.08s}
.loader-text span:nth-child(3){animation-delay:.16s} .loader-text span:nth-child(4){animation-delay:.24s}
.loader-text span:nth-child(5){animation-delay:.32s} .loader-text span:nth-child(6){animation-delay:.40s}
.loader-text span:nth-child(7){animation-delay:.48s} .loader-text span:nth-child(8){animation-delay:.56s}
.loader-text span:nth-child(9){animation-delay:.64s} .loader-text span:nth-child(10){animation-delay:.72s}
.loader-text span:nth-child(11){animation-delay:.80s}
.loader-text span:nth-child(12){animation-delay:.88s}
.loader-text span:nth-child(13){animation-delay:.96s}
.loader-text span:nth-child(14){animation-delay:1.04s}
.loader-text span:nth-child(15){animation-delay:1.12s}
@keyframes lletter { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(-4px);opacity:.5;} }
.loader-bar { width: 280px; height: 2px; background: rgba(212,175,55,.10); border-radius: var(--r-pill); overflow: hidden; position: relative; }
.loader-bar::before {
  content:''; position: absolute; inset: 0; width: 35%;
  background: linear-gradient(90deg, transparent, var(--gold-hi), var(--gold), transparent);
  animation: lbar 1.6s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes lbar { 0%{transform:translateX(-130%);} 100%{transform:translateX(380%);} }
.loader-tag { font-family: 'IBM Plex Mono','Sora',monospace; font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--steel); }

@media (max-width: 600px) {
  #loader { gap: 28px; padding: 0 16px; box-sizing: border-box; }
  .loader-stage { width: 180px; height: 180px; }
  .loader-logo { width: 80px; height: 80px; }
  .loader-text {
    font-size: 9px;
    letter-spacing: 2px;
    gap: 1px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    line-height: 1.6;
  }
  .loader-tag {
    font-size: 8.5px;
    letter-spacing: 1.2px;
    line-height: 1.55;
    max-width: 18em;
    text-align: center;
    text-wrap: balance;
  }
  .loader-bar { width: min(280px, 86vw); }
}

/* ════════════════ TYPOGRAPHY ════════════════ */
.font-d { font-family: 'Syne','Sora', sans-serif; font-weight: 800; }
.font-b { font-family: 'DM Sans','Inter', sans-serif; }
.font-m { font-family: 'IBM Plex Mono', monospace; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 500;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.center::before { content: none; }

.h-x {
  font-family: 'Syne', 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(48px, 8.4vw, 120px); line-height: .92;
  letter-spacing: -.04em;
}
.h-1 {
  font-family: 'Syne','Sora', sans-serif; font-weight: 800;
  font-size: clamp(38px, 5.4vw, 72px); line-height: 1.0;
  letter-spacing: -.03em;
}
.h-2 {
  font-family: 'Syne','Sora', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05;
  letter-spacing: -.022em;
}
.h-3 {
  font-family: 'Syne','Sora', sans-serif; font-weight: 700;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.2;
  letter-spacing: -.012em;
}
.lead { font-size: clamp(15.5px,1.25vw,18px); color: var(--fog); font-weight: 300; line-height: 1.7; }
.tiny { font-size: 13px; color: var(--fog); }
.label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--steel);
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gold-shimmer {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold), var(--gold-lo), var(--gold), var(--gold-hi));
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shim 6s ease-in-out infinite;
}
@keyframes shim { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }

.outline-text {
  -webkit-text-stroke: 1.5px var(--gold);
  -webkit-text-fill-color: transparent; color: transparent;
}

.gold { color: var(--gold); }
.snow { color: var(--snow); }
.fog { color: var(--fog); }
.center { text-align: center; }

/* ════════════════ BUTTONS ════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--r-md); border: none;
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.btn i { font-size: 11px; }
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-110%); transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.btn:hover::before { transform: translateX(110%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  color: #1C1408;
  box-shadow: 0 10px 30px rgba(212,175,55,.32),
              0 1px 0 rgba(255,255,255,.4) inset,
              0 -1px 0 rgba(0,0,0,.15) inset;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(212,175,55,.5),
              0 1px 0 rgba(255,255,255,.5) inset,
              0 -1px 0 rgba(0,0,0,.15) inset;
}

.btn-ghost {
  background: rgba(212,175,55,.05);
  color: var(--gold-hi);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(212,175,55,.12);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,.15);
}

.btn-mint {
  background: rgba(111,224,180,.08);
  color: var(--mint);
  border: 1px solid rgba(111,224,180,.3);
}
.btn-mint:hover {
  background: rgba(111,224,180,.18);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(111,224,180,.2);
}

.btn-sm { padding: 10px 18px; font-size: 11px; }

/* ════════════════ PROMO BAR ════════════════ */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  min-height: 38px; height: auto; padding: 7px 16px;
  box-sizing: border-box; max-width: 100vw;
  background: linear-gradient(90deg, #826419, var(--gold), var(--gold-hi), var(--gold), #826419);
  background-size: 300% 100%;
  animation: shimmer-bar 6s linear infinite;
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: #1C1408; font-weight: 500; letter-spacing: .5px;
}
@keyframes shimmer-bar { 0%{background-position:100% 0;} 100%{background-position:-100% 0;} }
.promo-bar .pb-tag {
  background: var(--void); color: var(--gold-hi);
  padding: 2px 8px; border-radius: 4px;
  font-weight: 600; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-right: 10px;
}
.promo-bar a { color: #1C1408; font-weight: 700; text-decoration: underline; margin-left: 6px; }
.promo-bar a:hover { color: var(--void); }
.promo-bar .pb-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #1C1408; font-size: 16px;
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.promo-bar .pb-close:hover { background: rgba(0,0,0,.1); }
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: min(100%, calc(100vw - 52px));
  min-width: 0;
  text-align: center;
  line-height: 1.35;
}
@media (max-width: 700px) {
  .promo-bar { font-size: 10.5px; padding: 8px 40px 8px 12px; }
  .promo-bar .pb-tag { font-size: 9px; padding: 1px 6px; }
}
body.promo-on { padding-top: 38px; }
body.promo-off .promo-bar { display: none; }

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed; left: 0; right: 0; top: 38px; z-index: 90;
  background: rgba(8,7,10,.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--t-base), background .35s var(--t-base), top .25s var(--t-base);
}
body.promo-off .nav { top: 0; }
.nav.scrolled {
  padding: 4px 0;
  background: rgba(8,7,10,.94);
  border-bottom-color: var(--line-2);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  background: url('../logo-mark.png') center/contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(212,175,55,.35));
  flex-shrink: 0;
  transition: transform var(--t-base), filter var(--t-base);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); filter: drop-shadow(0 0 18px rgba(245,215,126,.5)); }
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 18px;
  color: var(--snow); letter-spacing: -.5px;
}
.brand-text .name b { color: var(--gold); font-weight: 800; }
.brand-text .sub {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--steel); margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  position: relative;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--fog); transition: color var(--t-fast);
}
.nav-link:hover { color: var(--snow); }
.nav-link.active { color: var(--gold); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -8px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold));
  transition: width var(--t-base);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none; background: rgba(212,175,55,.08); border: 1px solid var(--line-2);
  color: var(--gold); width: 40px; height: 40px; border-radius: var(--r-md);
  font-size: 16px; cursor: pointer; align-items: center; justify-content: center;
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-cta .btn-primary { display: none; }
}

/* Mobile menu */
.mmenu {
  position: fixed; inset: 0 0 0 auto; width: min(400px, 94vw);
  background: var(--carbon); border-left: 1px solid var(--line-2);
  z-index: 120; padding: max(20px, env(safe-area-inset-top, 0px) + 12px) 24px 28px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
  box-shadow: -24px 0 60px rgba(0,0,0,.55);
}
.mmenu.open { transform: translateX(0); }
body.mmenu-open { overflow: hidden; }
.mmenu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.mmenu-head .brand { min-width: 0; flex: 1; padding-right: 8px; }
.mmenu-head .menu-btn { flex-shrink: 0; margin-top: 2px; }
.mmenu nav a {
  display: block; padding: 16px 0; border-bottom: 1px solid var(--line);
  color: var(--fog);
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 1.6px; text-transform: uppercase;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mmenu nav a:hover, .mmenu nav a.active { color: var(--gold); padding-left: 10px; }

.mmenu-services {
  border-bottom: 1px solid var(--line);
  margin-bottom: 2px;
}
.mmenu-services-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--snow);
  font-family: 'Syne', 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
}
.mmenu-services-btn i {
  color: var(--gold);
  font-size: 11px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  flex-shrink: 0;
}
.mmenu-services-btn.is-open i { transform: rotate(-180deg); }
.mmenu-services-list { padding: 8px 4px 16px 0; display: flex; flex-direction: column; gap: 10px; }
.mmenu-services-list[hidden] { display: none !important; }
.mmenu-svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, .07);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background .25s, border-color .25s, transform .25s cubic-bezier(.16, 1, .3, 1);
  min-width: 0;
}
.mmenu-svc:hover {
  background: rgba(212, 175, 55, .14);
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.mmenu-svc > i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 0;
  width: auto;
  text-align: center;
  flex-shrink: 0;
}
.mmenu-svc > div {
  min-width: 0;
  width: 100%;
  flex: none;
  text-align: center;
}
.mmenu-svc strong {
  font-family: 'Syne', 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--snow);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
  text-align: center;
}
.mmenu-svc span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: var(--fog);
  line-height: 1.45;
  letter-spacing: 0.02em;
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
}
.mmenu-svc-featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, .2), rgba(212, 175, 55, .06));
  border-color: var(--line-2);
}
.mmenu-svc-all {
  display: block;
  margin-top: 4px;
  padding: 11px 14px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.mmenu-svc-all:hover { background: rgba(212, 175, 55, .12); color: var(--gold-hi); }

.mmenu .actions { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }

/* ════════════════ LAYOUT ════════════════ */
section { position: relative; z-index: 5; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; position: relative; }
.section-pad-sm { padding: 70px 0; position: relative; }

/* Subtle section dividers — golden hairline + corner glints */
.section-pad::before,
.section-pad-sm::before {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 100px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-hi), transparent);
  opacity: .55;
}
.section-pad::after,
.section-pad-sm::after {
  content: ''; position: absolute; left: 50%; top: -3px;
  width: 6px; height: 6px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
}
@media (max-width: 700px) {
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 50px 0; }
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 22px; justify-content: center; }
.section-head .eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-head p { color: var(--fog); margin-top: 18px; font-size: 17px; font-weight: 300; line-height: 1.65; }
.section-head.left { text-align: left; margin: 0 0 56px; max-width: 880px; }
.section-head.left .eyebrow { justify-content: flex-start; }
.section-head.left .eyebrow::after { content: none; }

/* ════════════════ CARDS — 3D DEPTH ════════════════ */
.card {
  background:
    /* gold corner sheen */
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(245,215,126,.07) 0%, transparent 55%),
    /* warm black gradient, NO blue/purple */
    linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1200px) translateZ(0);
  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    border-color var(--t-base),
    box-shadow var(--t-base),
    background var(--t-base);
  box-shadow:
    0 1px 0 rgba(245,215,126,.05) inset,
    0 -1px 0 rgba(0,0,0,.55) inset,
    0 4px 14px rgba(0,0,0,.45),
    0 18px 38px rgba(0,0,0,.40);
}
/* Top edge gold beam */
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
/* Inner mesh sheen layer (3D feel) */
.card::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% -10%, rgba(245,215,126,.14), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 110%, rgba(212,175,55,.06), transparent 55%);
  opacity: 0; transition: opacity var(--t-base);
  pointer-events: none;
}
.card:hover {
  transform: perspective(1200px) translateY(-10px) rotateX(2.4deg) rotateY(-2.4deg) translateZ(8px);
  border-color: var(--line-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 -1px 0 rgba(0,0,0,.5) inset,
    0 0 0 1px var(--line-2),
    0 28px 70px rgba(0,0,0,.55),
    0 8px 28px rgba(212,175,55,.18);
}
.card:hover::before { opacity: .9; }
.card:hover::after  { opacity: 1; }
/* keep contents above pseudo layers */
.card > *  { position: relative; z-index: 2; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(212,175,55,.18) 0%, rgba(212,175,55,.04) 100%);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 21px;
  transition: all var(--t-base);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #1C1408;
  transform: rotate(-8deg) scale(1.08);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(212,175,55,.4);
}

.card-num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 2px; color: var(--steel);
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
}
.badge-gold { background: rgba(212,175,55,.12); border: 1px solid var(--line-2); color: var(--gold); }
.badge-mint { background: rgba(111,224,180,.1); border: 1px solid rgba(111,224,180,.3); color: var(--mint); }
.badge-rose { background: rgba(255,138,101,.12); border: 1px solid rgba(255,138,101,.3); color: var(--rose); }

/* ════════════════ FORMS ════════════════ */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 2.5px; color: var(--fog); text-transform: uppercase; font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--carbon-2);
  border: 1px solid var(--line);
  color: var(--snow); font-family: inherit; font-size: 14px;
  padding: 14px 16px; border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--steel); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.1);
  background: var(--carbon-3);
}
.field select option { background: var(--carbon-2); color: var(--snow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ════════════════ FOOTER ════════════════ */
footer {
  background: var(--void);
  border-top: 1px solid var(--line);
  padding: 90px 0 28px;
  position: relative; z-index: 5;
}
.foot-grid {
  display: grid; grid-template-columns: 4fr 2fr 2fr 4fr;
  gap: 40px; margin-bottom: 56px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
footer h4 {
  font-family: 'Syne','Sora',sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--snow); margin-bottom: 22px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer a { color: var(--fog); font-size: 13.5px; transition: color var(--t-fast), padding-left var(--t-fast); display: inline-block; }
footer a:hover { color: var(--gold); padding-left: 4px; }
.foot-about p { color: var(--fog); font-size: 13.5px; font-weight: 300; line-height: 1.7; max-width: 360px; margin: 18px 0 22px; }
.foot-bottom {
  padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot-bottom p { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 1px; color: var(--steel); }

.socials { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--carbon-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); transition: all var(--t-base);
}
.social-btn:hover {
  color: var(--gold); border-color: var(--gold-lo);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,.18);
}

/* ════════════════ BACK-TO-TOP & TOAST ════════════════ */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #1C1408; border: none; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all var(--t-base);
  z-index: 80;
  box-shadow: 0 12px 30px rgba(212,175,55,.4), 0 0 0 1px rgba(255,255,255,.1) inset;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(212,175,55,.55); }

.wa-float {
  position: fixed; bottom: 28px; left: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border: none; cursor: pointer;
  z-index: 80;
  box-shadow: 0 14px 38px rgba(37,211,102,.45), 0 0 0 1px rgba(255,255,255,.1) inset;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  animation: wa-pulse 2.4s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 14px 38px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.6); }
  50%     { box-shadow: 0 14px 38px rgba(37,211,102,.55), 0 0 0 14px rgba(37,211,102,0); }
}

.toast {
  position: fixed; top: 110px; right: 28px;
  background: var(--carbon-2); border: 1px solid var(--gold);
  border-radius: var(--r-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  transform: translateX(140%); transition: transform var(--t-base);
  z-index: 1100; max-width: 340px;
  box-shadow: 0 22px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,55,.2);
}
.toast.show { transform: translateX(0); }
.toast .ic {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(111,224,180,.15);
  display: flex; align-items: center; justify-content: center; color: var(--mint);
  flex-shrink: 0;
}
.toast h5 { font-family: 'Syne','Sora',sans-serif; font-size: 13px; color: var(--snow); font-weight: 600; }
.toast p { font-size: 11.5px; color: var(--fog); margin-top: 3px; }

/* ════════════════ ANIMATIONS ════════════════ */
/* (scroll reveals defined below — blur removed so text never stays illegible if JS/IO fails) */

.lift { transition: transform var(--t-base), box-shadow var(--t-base); }
.lift:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }

/* Float */
@keyframes float-y { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
.float-anim { animation: float-y 6s ease-in-out infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 14s linear infinite; }

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0; overflow: hidden;
  background: linear-gradient(90deg, var(--carbon), var(--void), var(--carbon));
}
.marquee-track {
  display: flex; gap: 72px; white-space: nowrap;
  animation: marq 42s linear infinite;
  will-change: transform;
}
.marquee-track > * {
  flex-shrink: 0;
  font-family: 'Syne','Sora',sans-serif; font-weight: 800;
  font-size: clamp(40px, 6vw, 80px); letter-spacing: -2px; line-height: 1;
}
@keyframes marq { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* CTA banner */
.cta-banner {
  padding: 110px 0; position: relative; overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--void), var(--carbon));
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,.08) 0%, transparent 30%);
  animation: ctapulse 8s ease-in-out infinite;
}
@keyframes ctapulse { 0%,100%{opacity:1;} 50%{opacity:.5;} }

/* Pulse dot */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%; background: var(--mint); opacity: .3;
  animation: ping 2s ease-out infinite;
}
@keyframes ping { 0%{transform:scale(.8);opacity:.5;} 100%{transform:scale(2.4);opacity:0;} }

/* ════════════════ Z-INDEX REIGN ════════════════ */
footer, .toast, .back-top, .wa-float, #loader { position: relative; }
.nav      { z-index: 90; position: fixed; }
.toast    { z-index: 1100; position: fixed; }
.back-top { z-index: 80; position: fixed; }
.wa-float { z-index: 80; position: fixed; }
#loader   { z-index: 9999; position: fixed; }
.mmenu    { z-index: 120; position: fixed; }
.promo-bar { z-index: 100; position: fixed; }

/* ════════════════ REDUCE MOTION ════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .hero .hero-badge,.hero h1,.hero p.lead,.hero .hero-ctas,.hero .trust-row,.hero .stats-row,
  .page-hero .bread,.page-hero .eyebrow,.page-hero h1,.page-hero p,.page-hero .trust-row,.page-hero .hero-ctas {
    animation: none !important; opacity: 1;
  }
  .reveal,
  .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════════
   NAV DROPDOWN — Services mega-menu
   ════════════════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-link-drop {
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.nav-link-drop i { font-size: 9px; transition: transform var(--t-fast); }
.nav-dropdown:hover .nav-link-drop i,
.nav-dropdown.open .nav-link-drop i { transform: rotate(180deg); }

.nav-dropmenu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(.96);
  width: 460px;
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s cubic-bezier(.16,1,.3,1),
              transform .35s cubic-bezier(.16,1,.3,1),
              visibility .35s;
  box-shadow: 0 30px 70px rgba(0,0,0,.7), 0 0 0 1px rgba(212,175,55,.08);
  z-index: 100;
}
.nav-dropmenu::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #1A140C;
  border-left: 1px solid var(--line-2);
  border-top: 1px solid var(--line-2);
}
.nav-dropdown:hover .nav-dropmenu,
.nav-dropdown.open .nav-dropmenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-dropmenu a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-sm);
  transition: all var(--t-fast);
  text-transform: none; letter-spacing: 0;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid transparent;
}
.nav-dropmenu a::after { display: none; }
.nav-dropmenu a:hover {
  background: rgba(212,175,55,.08);
  border-color: var(--line-2);
  padding-left: 16px;
}
.nav-dropmenu a > i {
  color: var(--gold); font-size: 18px; margin-top: 2px;
  flex-shrink: 0; width: 22px; text-align: center;
}
.nav-dropmenu a h6 {
  font-family: 'Syne','Sora',sans-serif; font-size: 13.5px;
  color: var(--snow); font-weight: 700; margin-bottom: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.22;
}
.nav-dropmenu a span {
  font-size: 12px; color: var(--fog);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .04em;
  line-height: 1.5;
  font-weight: 400;
}
.nav-dropmenu a.featured {
  background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(212,175,55,.04));
  border-color: var(--line-2);
  grid-column: span 2;
}
.nav-dropmenu a.featured h6 {
  text-transform: none;
  letter-spacing: -.03em;
  font-size: 14.5px;
}
.nav-dropmenu a.featured:hover {
  background: linear-gradient(135deg, rgba(212,175,55,.26), rgba(212,175,55,.08));
}
.nav-dropmenu a.featured > i {
  font-size: 22px; color: var(--gold-hi);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}
.nav-dropmenu .hot {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #1C1408;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px; font-weight: 700;
  letter-spacing: 1.4px;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  animation: hotpulse 1.6s ease-in-out infinite;
}
@keyframes hotpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,215,126,.6); }
  50%     { box-shadow: 0 0 0 6px rgba(245,215,126,0); }
}

/* Standalone Shopify pill in nav */
.nav-shopify {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 50%, var(--gold-lo));
  color: #1C1408 !important;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 14px rgba(212,175,55,.32);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-shopify::after { display: none !important; }
.nav-shopify:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212,175,55,.5);
  color: #1C1408 !important;
}
.nav-shopify i { font-size: 13px; }

@media (max-width: 1100px) {
  .nav-dropmenu { display: none; }
  .nav-shopify { display: none; }
}

/* ════════════════════════════════════════════════
   ENHANCED ENTRANCE ANIMATIONS (no filter blur — avoids stuck “fuzzy” text)
   ════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1),
    transform 1s cubic-bezier(.16, 1, .3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.reveal.fx-fade  { transform: none; }
.reveal.fx-left  { transform: translateX(-32px) translateY(0); }
.reveal.fx-right { transform: translateX(32px) translateY(0); }
.reveal.fx-scale { transform: scale(.94); }
.reveal.fx-zoom  { transform: scale(1.06); }
/* Deeper luxury entrance — use sparingly on key sections */
.reveal.fx-lux {
  transform: translateY(40px) scale(0.985);
  transition:
    opacity 1.15s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s cubic-bezier(.16, 1, .3, 1);
}

.reveal.d-1 { transition-delay: .08s; }
.reveal.d-2 { transition-delay: .16s; }
.reveal.d-3 { transition-delay: .24s; }
.reveal.d-4 { transition-delay: .32s; }
.reveal.d-5 { transition-delay: .40s; }
.reveal.d-6 { transition-delay: .48s; }
.reveal.d-7 { transition-delay: .56s; }
.reveal.d-8 { transition-delay: .64s; }

/* First-paint hero entrance — no scroll trigger needed */
@keyframes heroIn {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero .hero-badge   { animation: heroIn .9s cubic-bezier(.16,1,.3,1) .3s both; opacity: 0; }
.hero h1            { animation: heroIn 1.0s cubic-bezier(.16,1,.3,1) .45s both; opacity: 0; }
.hero p.lead        { animation: heroIn .9s cubic-bezier(.16,1,.3,1) .6s both; opacity: 0; }
.hero .hero-ctas    { animation: heroIn .9s cubic-bezier(.16,1,.3,1) .75s both; opacity: 0; }
.hero .trust-row    { animation: heroIn .9s cubic-bezier(.16,1,.3,1) .85s both; opacity: 0; }
.hero .stats-row    { animation: heroIn .9s cubic-bezier(.16,1,.3,1) .95s both; opacity: 0; }

/* When page-hero (about/services/etc) loads, animate in */
.page-hero .bread,
.page-hero .eyebrow,
.page-hero h1,
.page-hero p,
.page-hero .trust-row,
.page-hero .hero-ctas {
  animation: heroIn .9s cubic-bezier(.16,1,.3,1) both;
  opacity: 0;
}
.page-hero .bread     { animation-delay: .15s; }
.page-hero .eyebrow   { animation-delay: .25s; }
.page-hero h1         { animation-delay: .35s; }
.page-hero p          { animation-delay: .5s; }
.page-hero .trust-row { animation-delay: .6s; }
.page-hero .hero-ctas { animation-delay: .55s; }

/* ════════════════════════════════════════════════
   BACKGROUND CLEANUP — particles only, no shapes
   ════════════════════════════════════════════════ */
.amb,
.amb-lines,
.amb-orbs,
.grid-veil,
.hero-shape,
.scroll-hint { display: none !important; }

/* Remove section-pad gold-diamond seams (was extra noise) */
.section-pad::before, .section-pad::after,
.section-pad-sm::before, .section-pad-sm::after { display: none !important; }

/* Particles canvas — stays */
#particles-canvas { display: block !important; }
