/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --bg-deepest: #050403;
  --bg-dark: #0D0B08;
  --bg-mid: #141008;
  --bg-warm: #1A1408;
  --bg-card: rgba(255,240,200,0.032);
  --bg-card2: rgba(255,220,150,0.055);
  --ink: #F5EDDA;
  --ink2: #C8B89A;
  --ink3: #8A7A65;
  --mist: #5A4E42;
  --gold: #D4A840;
  --gold2: #F0C060;
  --gold3: #B88820;
  --gold-glow: rgba(212,168,64,0.15);
  --amber: #E87C30;
  --amber2: #F09050;
  --rose: #C8504A;
  --rose2: #E07070;
  --jade: #4A9A70;
  --jade2: #6ABE8C;
  --cobalt: #4860B0;
  --cobalt2: #6880CC;
  --violet: #8050A0;
  --violet2: #A070C0;
  --teal: #20909A;
  --teal2: #40B0BA;
  --flutter: #027DFD;
  --flutter2: #54C5F8;
  --border: rgba(212,168,64,0.07);
  --border2: rgba(212,168,64,0.15);
  --border3: rgba(212,168,64,0.3);
  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease2: cubic-bezier(0.34,1.56,0.64,1);
  --ease3: cubic-bezier(0.25,0.46,0.45,0.94);
  --r: 20px;
  --r2: 12px;
  --r3: 8px;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', sans-serif;
  --font-m: 'DM Mono', monospace;
  --section-pad: clamp(60px, 8vw, 140px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BASE & RESET
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; overflow-x: hidden; text-size-adjust: 100%; -webkit-text-size-adjust: 100% }
body {
  background: var(--bg-dark);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(212,168,64,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(212,168,64,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  animation: gridShift 30s linear infinite;
}
@keyframes gridShift { 0% { background-position: 0 0 } 100% { background-position: 80px 80px } }

::-webkit-scrollbar { width: 3px }
::-webkit-scrollbar-track { background: var(--bg-deepest) }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold3),var(--gold)); border-radius: 3px }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px); position: relative; z-index: 2; width: 100%; }
section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }

#vfx-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.55 }
#aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(120px); animation: auroraFloat var(--dur,20s) ease-in-out infinite var(--del,0s); will-change: transform,opacity; }
@keyframes auroraFloat {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.4 }
  33% { transform: translate(var(--tx,40px),var(--ty,-30px)) scale(1.1); opacity: 0.6 }
  66% { transform: translate(calc(var(--tx,40px)*-0.5),var(--ty,-30px)) scale(0.9); opacity: 0.3 }
}
@media (max-width: 680px) {
  #aurora, .aurora-blob { display: none !important; }
}
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; z-index: 9998; background: linear-gradient(90deg,var(--gold3),var(--gold),var(--amber),var(--gold2)); background-size: 200% 100%; transform-origin: left; transform: scaleX(0); will-change: transform; box-shadow: 0 0 10px rgba(212,168,64,0.6); animation: progressShimmer 3s linear infinite; }
@keyframes progressShimmer { 0% { background-position: 0 0 } 100% { background-position: 200% 0 } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REVEAL ANIMATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.r-up { opacity: 0; transform: translateY(55px); transition: opacity .95s var(--ease),transform .95s var(--ease); will-change: opacity,transform }
.r-up.in { opacity: 1; transform: translateY(0) }
.r-left { opacity: 0; transform: translateX(-65px); transition: opacity .95s var(--ease),transform .95s var(--ease) }
.r-left.in { opacity: 1; transform: translateX(0) }
.r-right { opacity: 0; transform: translateX(65px); transition: opacity .95s var(--ease),transform .95s var(--ease) }
.r-right.in { opacity: 1; transform: translateX(0) }
.r-scale { opacity: 0; transform: scale(0.86); transition: opacity .85s var(--ease),transform .85s var(--ease2) }
.r-scale.in { opacity: 1; transform: scale(1) }
.r-fade { opacity: 0; transition: opacity 1.2s var(--ease) }
.r-fade.in { opacity: 1 }
.r-blur { opacity: 0; filter: blur(12px); transform: translateY(20px); transition: opacity .9s var(--ease),filter .9s var(--ease),transform .9s var(--ease) }
.r-blur.in { opacity: 1; filter: blur(0); transform: translateY(0) }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVIGATION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  width: min(1100px, 96vw);
  pointer-events: auto;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,11,8,0.9);
  backdrop-filter: blur(28px) saturate(2);
  -webkit-backdrop-filter: blur(28px) saturate(2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 0 10px 0 22px;
  gap: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all .5s var(--ease);
  height: 64px;
  overflow: visible;
}
nav.scrolled .nav-pill {
  background: rgba(13,11,8,0.97);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(212,168,64,0.04);
}
.logo {
  font-family: var(--font-d);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
  pointer-events: auto;
}
.logo span { color: var(--gold); font-style: normal }

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
  pointer-events: auto;
}
.nav-links li { display: flex; align-items: center; height: 100%; }
.nav-links a {
  text-decoration: none;
  color: var(--ink3);
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 100px;
  transition: all .3s var(--ease);
  letter-spacing: .01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(212,168,64,0.08) }

.nav-cta {
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  color: var(--bg-dark) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s var(--ease);
  box-shadow: 0 4px 20px rgba(212,168,64,0.3);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
}
.nav-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,var(--gold2),var(--amber2)); opacity: 0; transition: opacity .3s; border-radius: 100px; }
.nav-cta:hover::after { opacity: 1 }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,168,64,0.45) }
.nav-cta span { position: relative; z-index: 1 }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 5001;
  flex-shrink: 0;
  pointer-events: auto;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease),opacity .3s,background .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px) }
.hamburger.open span:nth-child(2) { opacity: 0 }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px) }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,4,3,0.85);
  backdrop-filter: blur(48px) saturate(1.8);
  -webkit-backdrop-filter: blur(48px) saturate(1.8);
  z-index: 4999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility .6s;
  pointer-events: none;
}
.mobile-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.mob-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 16px; width: 100%; }
.mob-links li { opacity: 0; transform: translateY(30px); transition: all .6s var(--ease); }
.mobile-overlay.active .mob-links li { opacity: 1; transform: translateY(0); transition-delay: calc(0.1s * var(--i)); }

.mob-links a { 
  font-family: var(--font-d); 
  font-size: clamp(2.4rem, 10vw, 3.2rem); 
  font-weight: 800; 
  font-style: italic; 
  text-decoration: none; 
  color: var(--ink); 
  transition: color .4s var(--ease);
}
.mob-links a:hover { color: var(--gold); }

.mob-cta-wrap { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: all .6s var(--ease); 
  transition-delay: 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mobile-overlay.active .mob-cta-wrap { opacity: 1; transform: translateY(0); }

.mob-cta { 
  background: linear-gradient(135deg, var(--gold), var(--amber)); 
  color: var(--bg-dark); 
  padding: 16px 42px; 
  border-radius: 100px; 
  font-weight: 700; 
  font-size: 1.1rem; 
  text-decoration: none; 
  box-shadow: 0 10px 32px rgba(212,168,64,0.3);
}

.mob-footer {
  position: absolute;
  bottom: 40px;
  color: var(--ink3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity .8s var(--ease) 0.8s;
}
.mobile-overlay.active .mob-footer { opacity: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,var(--gold),var(--amber)); color: var(--bg-dark); padding: 17px 42px; border-radius: 100px; font-family: var(--font-b); font-weight: 700; font-size: .92rem; text-decoration: none; cursor: pointer; transition: all .4s var(--ease); box-shadow: 0 8px 32px rgba(212,168,64,0.35),0 2px 8px rgba(0,0,0,0.2); position: relative; overflow: hidden; border: none; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,var(--gold2),var(--amber2)); opacity: 0; transition: opacity .4s }
.btn-primary:hover::before { opacity: 1 }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(212,168,64,0.5),0 4px 16px rgba(0,0,0,0.3) }
.btn-primary span { position: relative; z-index: 1 }

.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--ink); padding: 16px 42px; border-radius: 100px; font-family: var(--font-b); font-weight: 500; font-size: .92rem; text-decoration: none; border: 1.5px solid var(--border2); transition: all .4s var(--ease); cursor: pointer; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,64,0.07); transform: translateY(-5px); box-shadow: 0 10px 28px rgba(212,168,64,0.12) }

.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; padding: 16px 42px; border-radius: 100px; font-family: var(--font-b); font-weight: 600; font-size: .92rem; text-decoration: none; transition: all .4s var(--ease); box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
.btn-whatsapp:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(37,211,102,0.45) }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL SECTION ELEMENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sec-label { font-family: var(--font-m); font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); display: inline-block; margin-bottom: 18px; position: relative; padding-left: 20px; }
.sec-label::before { content: ''; position: absolute; left: 0; top: 50%; width: 12px; height: 1px; background: var(--gold); transform: translateY(-50%); }
.sec-title { font-family: var(--font-d); font-size: clamp(2rem,4.2vw,3.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px; color: var(--ink); }
.sec-sub { color: var(--ink2); font-size: 1rem; font-weight: 300; max-width: 520px; line-height: 1.85; }
.section-head { text-align: center; margin-bottom: clamp(48px,6vw,88px); }
.section-head .sec-sub { margin: 0 auto }
.section-head .sec-label { padding-left: 0 }
.section-head .sec-label::before { display: none }

.divider { border: none; height: 1px; background: linear-gradient(90deg,transparent,rgba(212,168,64,0.22),transparent); position: relative; overflow: hidden; margin: 0; }
.divider::after { content: ''; position: absolute; top: 0; left: -120px; width: 120px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold2),transparent); animation: divSweep 6s linear infinite; }
@keyframes divSweep { to { left: calc(100% + 120px) } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer { padding: clamp(48px,8vw,80px) 0 48px; background: var(--bg-deepest); border-top: 1px solid var(--border); position: relative; z-index: 2; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { display: block; margin-bottom: 14px; font-size: 1.2rem }
.footer-tagline { font-size: .88rem; color: var(--ink3); font-weight: 300; max-width: 280px; line-height: 1.8 }
.fn-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--ink2); margin-bottom: 16px; font-family: var(--font-m) }
.fn-links { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.fn-links a { text-decoration: none; color: var(--ink2); font-size: .88rem; transition: all .3s var(--ease); display: inline-block; opacity: 0.7; }
.fn-links a:hover { color: var(--gold); transform: translateX(8px); opacity: 1; }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .78rem; color: var(--mist) }
.footer-status { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--jade2); font-weight: 500; }
.status-dot { width: 7px; height: 7px; background: var(--jade2); border-radius: 50%; box-shadow: 0 0 10px var(--jade2); animation: blink 3s infinite; }
@keyframes blink { 0%,100% { opacity: 1; box-shadow: 0 0 10px var(--jade2) } 50% { opacity: 0.4; box-shadow: none } }

.footer-bottom-left { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--ink3); text-decoration: none; font-size: .75rem; transition: color .3s; }
.footer-legal-links a:hover { color: var(--gold); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUICK ACTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quick-actions { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 12px; z-index: 800; }
.qa-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.32); transition: all .4s var(--ease); position: relative; border: none; cursor: pointer; }
.qa-btn::before { content: attr(data-tooltip); position: absolute; right: calc(100% + 14px); background: rgba(13,11,8,0.96); border: 1px solid var(--border2); color: var(--ink); font-size: .72rem; font-family: var(--font-m); white-space: nowrap; padding: 7px 14px; border-radius: 100px; opacity: 0; pointer-events: none; transition: opacity .3s,transform .3s; transform: translateX(10px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.qa-btn:hover::before { opacity: 1; transform: translateX(0) }
.qa-btn:hover { transform: translateY(-6px) scale(1.1) }
.qa-wa { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; }
.qa-call { background: linear-gradient(135deg,var(--cobalt),var(--cobalt2)); color: #fff; }
.qa-mail { background: linear-gradient(135deg,var(--gold3),var(--gold)); color: var(--bg-dark); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODALS & COOKIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cookie-banner { position: fixed; bottom: -120px; left: 50%; transform: translateX(-50%); width: min(540px,92vw); background: rgba(20,16,8,0.94); backdrop-filter: blur(36px) saturate(2); border: 1px solid var(--border2); border-radius: 100px; padding: 12px 12px 12px 28px; z-index: 9997; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5),inset 0 1px 0 rgba(212,168,64,0.1); transition: bottom .9s var(--ease); }
.cookie-banner.active { bottom: 28px }
.cb-txt { font-size: .8rem; color: var(--ink3); flex: 1; min-width: 0 }
.cb-txt span { color: var(--gold); font-weight: 600 }
.cb-btns { display: flex; gap: 8px; flex-shrink: 0 }
.cb-btn { padding: 8px 20px; border-radius: 100px; font-size: .75rem; font-weight: 600; cursor: pointer; transition: all .35s; font-family: var(--font-b); border: none; }
.cb-allow { background: linear-gradient(135deg,var(--gold),var(--amber)); color: var(--bg-dark) }
.cb-allow:hover { box-shadow: 0 6px 20px rgba(212,168,64,0.45); transform: translateY(-2px) }
.cb-deny { background: transparent; color: var(--mist); border: 1px solid var(--border2) !important }
.cb-deny:hover { border-color: var(--mist) !important; color: var(--ink) }

.l-modal { position: fixed; inset: 0; z-index: 11000; display: none; align-items: center; justify-content: center; padding: 40px; }
.l-modal.active { display: flex }
.l-overlay { position: absolute; inset: 0; background: rgba(5,4,3,0.9); backdrop-filter: blur(14px); }
.l-content { position: relative; width: 100%; max-width: 820px; max-height: 88vh; background: var(--bg-mid); border: 1px solid var(--border2); border-radius: var(--r); padding: clamp(28px,4vw,52px); overflow-y: auto; box-shadow: 0 40px 100px rgba(0,0,0,0.65),inset 0 1px 0 rgba(212,168,64,0.12); animation: modalIn .6s var(--ease) both; }
.l-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.94) translateY(28px) } to { opacity: 1; transform: scale(1) translateY(0) } }
.l-close { position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink3); transition: all .35s; font-size: .85rem; }
.l-close:hover { background: rgba(200,80,74,0.15); color: var(--rose2); transform: rotate(90deg); border-color: rgba(200,80,74,0.3) }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE OVERRIDES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-pill { height: 56px; padding: 0 12px 0 18px; }
}

@media (max-width: 1024px) {
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
  .quick-actions { bottom: 20px; right: 16px; }
  .qa-btn { width: 48px; height: 48px; font-size: 1.15rem; }
  .qa-btn::before { display: none; }
  .cookie-banner { border-radius: 16px; flex-direction: column; padding: 20px; text-align: center; bottom: -200px; height: auto; }
  .cookie-banner.active { bottom: 20px; }
  .cb-btns { width: 100%; justify-content: center; margin-top: 10px; }
}

@media(prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; } }


/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */
.s-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.s-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 42px;
  text-align: left;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s-card:hover {
  background: var(--bg-card2);
  border-color: var(--gold-glow);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--gold);
  transition: height .4s var(--ease);
}
.s-card:hover::before { height: 100%; }
.s-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,168,64,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.s-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.s-desc {
  font-size: 0.92rem;
  color: var(--ink2);
  line-height: 1.7;
}
.s-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-list li {
  font-size: 0.85rem;
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-list li::before {
  content: '\2192';
  color: var(--gold);
  font-weight: 700;
}

/* SVG Icon Styling */
.s-icon svg, .cap-icon-wrap svg, .p-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform .3s, stroke .3s;
}
.s-card:hover .s-icon svg, .cap-card:hover .cap-icon-wrap svg {
  transform: scale(1.1);
  stroke: var(--gold);
}

/* ═══════════════════════════════════════════
   MOBILE & PERFORMANCE OVERRIDES
   ═══════════════════════════════════════════ */
@media (max-width: 680px) {
  body::after { animation: none; } /* Stop grid shift on mobile */
  :root { --section-pad: 60px; }
  .sec-title { font-size: 1.8rem; }
  #vfx-canvas { display: none !important; }
}

@media (max-width: 480px) {
  .nav-pill { padding: 0 8px 0 16px; height: 52px; gap: 4px; }
  .logo { font-size: 0.95rem; }
  .nav-cta { padding: 8px 16px; font-size: 0.75rem; }
  .s-grid { grid-template-columns: 1fr; }
  .s-card { padding: 28px; }
}

/* Fix iOS Auto-Zoom on form focus */
input, textarea, select {
  font-size: 16px !important;
}

