*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* colors */
:root {
  --bg:          #F5EFE4;
  --bg-deep:     #EDE4D3;
  --surface:     #FBF8F2;
  --surface-2:   #EFE7D8;
  --line:        #DCD0B8;
  --line-soft:   #E7DEC9;

  --ink:         #1E1730;
  --ink-dim:     #5C5470;
  --ink-faint:   #8B84A0;

  --purple:      #5B4FCF;
  --purple-deep: #443A9E;
  --purple-tint: #ECE9FB;

  --ember:       #D95D33;
  --ember-deep:  #B5461F;
  --ember-tint:  #FBE7DB;

  --nav-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
h1,h2,h3 { font-family: 'Rajdhani', sans-serif; text-wrap: balance; }
p { text-wrap: pretty; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--ember); color: #fff; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 52px; }

nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; padding: 0 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.logo:hover .logo-mark { transform: rotate(360deg); }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 0.18em; color: var(--ink); line-height: 1; }
.logo-sub { font-size: 8px; font-weight: 500; letter-spacing: 0.32em; color: var(--purple); text-transform: uppercase; }
.nav-links {
  display: flex; flex-direction: column; position: fixed; top: 58px; right: 16px;
  width: 210px; background: var(--surface); padding: 10px; gap: 2px; z-index: 200;
  border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(20,13,5,0.22);
  list-style: none; transform-origin: top right; transform: scale(0.85); opacity: 0;
  pointer-events: none;
}
.nav-links.is-open { pointer-events: auto; }
.nav-links li { width: 100%; }
.nav-links a {
  display: block; padding: 11px 11px; font-size: 14.5px; font-weight: 500;
  border-radius: 8px; color: var(--ink); transition: background 0.15s;
}
.nav-links a:hover, .nav-links a:active { background: var(--bg); }
.nav-links a.active { color: var(--ember-deep); }
.nav-links .nav-links-book {
  display: block; margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--line-soft);
}
.nav-links .nav-links-book a {
  background: var(--ember); color: #fff; text-align: center; font-weight: 600; padding: 11px;
}
.nav-links .nav-links-book a:hover { background: var(--ember-deep); }

.nav-drawer-backdrop {
  position: fixed; inset: 0; z-index: 95; background: transparent;
  opacity: 0; pointer-events: none;
}
.nav-drawer-backdrop.is-open { pointer-events: auto; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-btns { display: flex; gap: 12px; align-items: center; }
.nav-btns .btn-ghost, .nav-btns .btn-purple { height: 38px; border-radius: 8px; padding: 0 20px; }
.nav-btns .btn-ghost { background: var(--surface); border-color: var(--line); }
.nav-btns .btn-ghost:hover { background: var(--bg); border-color: var(--ink-faint); }
.nav-burger {
  display: flex; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; flex-direction: column; gap: 5px; position: relative; z-index: 201;
}
.burger-bar { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.32s cubic-bezier(.6,.05,.3,1), opacity 0.2s ease; transform-origin: center; }
.nav-burger.is-open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn-ghost { padding: 10px 24px; font-size: 14px; font-weight: 500; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; transition: border-color 0.18s, background 0.18s; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 9px; }
.btn-ghost:hover { border-color: var(--ink-faint); background: var(--surface-2); }
.btn-purple { display: flex; align-items: center; gap: 9px; padding: 10px 24px; font-size: 14px; font-weight: 600; color: #fff; background: var(--purple); border: none; border-radius: 5px; cursor: pointer; letter-spacing: 0.01em; transition: background 0.18s, transform 0.14s; }
.btn-purple:hover { background: var(--purple-deep); transform: translateY(-1px); }
.btn-purple .arr { transition: transform 0.18s; }
.btn-purple:hover .arr { transform: translateX(3px); }

nav { transition: padding 0.4s cubic-bezier(.4,0,.2,1), height 0.4s cubic-bezier(.4,0,.2,1), background 0.4s ease, box-shadow 0.4s ease; transform: translateY(-100%); }
nav.is-scrolled { padding: 0 52px; height: 64px; background: var(--bg); box-shadow: 0 10px 30px rgba(30,23,48,0.08); }
@media (max-width: 900px) { nav.is-scrolled { padding: 0 20px; } }

.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  will-change: transform;
  width: 9px; height: 9px; background: var(--ember); box-shadow: 0 0 10px 2px rgba(217,93,51,0.7);
  transition: width 0.2s ease, height 0.2s ease;
}
.cursor-dot.is-active { width: 14px; height: 14px; }

/* ---- magnetic buttons ---- */
.cta-fill, .cta-stroke, .btn-purple, .btn-ghost { will-change: transform; }

/* ---- tilt cards ---- */
.bento-item, .rig-card, .plan { transform-style: preserve-3d; will-change: transform; }

/* ---- cursor-tracked spotlight glow ---- */
.bento-item, .rig-card, .plan {
  position: relative; isolation: isolate;
}
.bento-item::after, .rig-card::after, .plan::after {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none;
  border-radius: inherit; transition: opacity 0.35s ease;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(217,93,51,0.14), transparent 62%);
}
.bento-item:hover::after, .rig-card:hover::after, .plan:hover::after { opacity: 1; }
.bento-item > *, .rig-card > *, .plan > * { position: relative; z-index: 1; }

/* ---- stat power-on flicker ---- */
.stat-val.is-counting { animation: powerFlicker 0.6s steps(6) 1; }
@keyframes powerFlicker {
  0%, 100% { opacity: 1; } 12% { opacity: 0.25; } 24% { opacity: 1; }
  36% { opacity: 0.4; } 48% { opacity: 1; } 60% { opacity: 0.55; } 72% { opacity: 1; }
}

/* ---- hero parallax layers ---- */
.hero-img img { will-change: transform; }

/* marquee position is driven by JS, not CSS animation */

@media (prefers-reduced-motion: reduce) {
  .cursor-dot { display: none; }
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none !important; }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.hero-img { position: absolute; inset: 0; z-index: 0; clip-path: inset(100% 0 0 0); }
.hero-img img {
  position: absolute; top: 0; right: 0; width: 60%; height: 100%;
  object-fit: cover; object-position: 0% center; display: block;
  filter: sepia(0.32) saturate(1.15) hue-rotate(-6deg) brightness(0.97) contrast(1.04);
}
/* warm tint overlay */
.hero-img .tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(217,93,51,0.16), rgba(91,79,207,0.14));
  mix-blend-mode: multiply;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right,
      rgba(245,239,228,1)    0%,
      rgba(245,239,228,0.97) 20%,
      rgba(245,239,228,0.86) 28%,
      rgba(245,239,228,0.62) 34%,
      rgba(245,239,228,0.34) 40%,
      rgba(245,239,228,0.14) 46%,
      rgba(245,239,228,0.04) 54%,
      rgba(245,239,228,0)    64%
    ),
    linear-gradient(to bottom, rgba(30,23,48,0.18) 0%, rgba(30,23,48,0) 16%, rgba(30,23,48,0) 76%, rgba(30,23,48,0.22) 100%);
}
.hero-body { position: relative; z-index: 3; flex: 0 0 auto; display: flex; flex-direction: column; padding: calc(var(--nav-h) + 20px) 52px 16px; width: 40%; max-width: 560px; }
h1 { font-weight: 800; font-size: clamp(46px, 5.4vw, 76px); line-height: 0.98; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 24px; color: var(--ink); }
.hl { display: block; opacity: 1; transform: translateX(-120%); }
.dot { display: inline-block; width: 8px; height: 8px; background: var(--ember); border-radius: 2px; margin-left: 4px; vertical-align: middle; position: relative; top: -10px; }
.hl-accent { color: var(--ember); }
.hero-desc { font-size: 15.5px; font-weight: 400; line-height: 1.6; color: var(--ink-dim); margin-bottom: 24px; max-width: 390px; opacity: 1; clip-path: inset(0 100% 0 0); }
.ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; opacity: 1; clip-path: inset(0 100% 0 0); }
.cta-fill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; font-size: 14.5px; font-weight: 600; color: #fff; background: var(--ember); border: none; border-radius: 6px; cursor: pointer; letter-spacing: 0.01em; transition: background 0.18s, transform 0.14s; }
.cta-fill:hover { background: var(--ember-deep); transform: translateY(-2px); }
.cta-fill .arr { transition: transform 0.18s; }
.cta-fill:hover .arr { transform: translateX(4px); }
.cta-stroke { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; font-size: 14.5px; font-weight: 500; color: var(--ink); background: transparent; border: 1px solid var(--ink-faint); border-radius: 6px; cursor: pointer; letter-spacing: 0.01em; transition: border-color 0.18s, background 0.18s, transform 0.14s; }
.cta-stroke:hover { border-color: var(--ink); background: var(--surface-2); transform: translateY(-2px); }
.cta-stroke .arr { transition: transform 0.18s; }
.cta-stroke:hover .arr { transform: translateX(4px); }

/* ---- button hover wave ---- */
.cta-fill, .cta-stroke, .btn-purple, .btn-ghost { position: relative; overflow: hidden; isolation: isolate; }

.cta-fill::before, .cta-fill::after,
.cta-stroke::before, .cta-stroke::after,
.btn-purple::before, .btn-purple::after,
.btn-ghost::before, .btn-ghost::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 10%; z-index: -1;
  transition: clip-path 0.2s ease, height 0.2s ease;
  clip-path: polygon(0% 74%,4% 75%,8% 76%,11% 77%,15% 78%,20% 78%,25% 77%,32% 77%,37% 75%,40% 74%,43% 74%,46% 73%,52% 72%,57% 72%,65% 74%,66% 75%,71% 78%,75% 82%,81% 86%,83% 88%,88% 91%,90% 94%,94% 96%,98% 98%,100% 100%,82% 100%,0 100%);
}
.cta-fill::before, .cta-stroke::before, .btn-purple::before, .btn-ghost::before { top: 0; transform: rotate(180deg); }
.cta-fill::after, .cta-stroke::after, .btn-purple::after, .btn-ghost::after { bottom: 0; }

/* filled buttons: white shine */
.cta-fill::before, .cta-fill::after, .btn-purple::before, .btn-purple::after { background: rgba(255,255,255,0.32); }
/* outline buttons: tinted wave */
.cta-stroke::before, .cta-stroke::after { background: rgba(217,93,51,0.22); }
.btn-ghost::before, .btn-ghost::after { background: rgba(91,79,207,0.18); }

.cta-fill:hover::before, .cta-fill:hover::after,
.cta-stroke:hover::before, .cta-stroke:hover::after,
.btn-purple:hover::before, .btn-purple:hover::after,
.btn-ghost:hover::before, .btn-ghost:hover::after {
  height: 80%;
  clip-path: polygon(0 30%,9% 34%,7% 39%,11% 43%,13% 33%,17% 30%,24% 34%,25% 35%,30% 31%,30% 38%,39% 33%,35% 43%,43% 45%,55% 46%,65% 74%,67% 66%,81% 57%,75% 82%,81% 86%,83% 88%,88% 91%,90% 94%,94% 96%,98% 98%,100% 100%,82% 100%,0 100%);
}

.trust-row { display: flex; align-items: center; gap: 28px; opacity: 1; clip-path: inset(0 100% 0 0); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-dim); }
.trust-item svg { flex-shrink: 0; }
.trust-item b { color: var(--ink); font-weight: 700; }
.trust-item .price-val { color: var(--ember-deep); font-weight: 700; }
.trust-divider { width: 1px; height: 16px; background: var(--ink-faint); opacity: 0.4; }

.stat-bar { position: relative; z-index: 3; flex-shrink: 0; display: grid; grid-template-columns: repeat(4, 1fr); margin: 24px 52px 24px; border: 1px solid rgba(255,255,255,0.35); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.16); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); box-shadow: 0 20px 44px rgba(30,23,48,0.14); opacity: 1; clip-path: inset(0 0 0 100%); }
.stat { display: flex; flex-direction: column; gap: 4px; padding: 16px 24px; border-right: 1px solid rgba(255,255,255,0.28); transition: background 0.2s; cursor: default; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(217,93,51,0.14); }
.stat-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.4); border-radius: 8px; background: rgba(255,255,255,0.25); color: var(--purple-deep); margin-bottom: 4px; }
.stat-val { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -0.01em; text-shadow: 0 1px 12px rgba(255,255,255,0.9), 0 1px 2px rgba(255,255,255,0.7); }
.stat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); text-shadow: 0 1px 10px rgba(255,255,255,0.85); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

section { padding: 120px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.eyebrow-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ember-deep); margin-bottom: 16px; }
.section-head h2 { font-weight: 500; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.9rem,4vw,3rem); color: var(--ink); }
.section-head p { color: var(--ink-dim); margin-top: 16px; font-size: 1.02rem; line-height: 1.65; max-width: 54ch; }
.testi-tap-hint { display: none; }
@media (hover: none) { .testi-tap-hint { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--ink-faint); font-style: italic; } }

.marquee-strip {
  position: relative; height: 66px; overflow: hidden;
  background:
    radial-gradient(120% 180% at 50% -20%, rgba(255,255,255,0.03), transparent 60%),
    #14100C;
}
/* fine brushed-metal grain */
.marquee-strip::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.6;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(25deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 4px);
}
/* vignette */
.marquee-strip::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to right, #14100C, transparent 12%, transparent 88%, #14100C);
}

.marquee-track { position: absolute; top: 50%; left: 0; display: flex; width: max-content; will-change: transform; }
.marquee-strip { cursor: grab; }
.marquee-strip:active { cursor: grabbing; }

.marquee-track span {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 1.05rem; white-space: nowrap; display: flex; align-items: center; gap: 22px; padding-right: 22px;
  user-select: none;
}

/* muted base text */
.mq-base { z-index: 3; }
.mq-base span { color: #4a3f36; }
.mq-base b {
  color: #6b5a4a; font-weight: 700;
  text-shadow: -1px -1px 0 rgba(0,0,0,0.7), 1px 1px 0 rgba(255,255,255,0.05);
}
.mq-base .mq-dot { width: 5px; height: 5px; border-radius: 50%; background: #4a3f36; flex-shrink: 0; box-shadow: inset 1px 1px 1px rgba(0,0,0,0.6); }

/* glow layer, revealed by cursor mask */
.mq-glow {
  z-index: 4; pointer-events: none;
  -webkit-mask-image: radial-gradient(150px circle at var(--mx, -999px) 50%, #000 0%, transparent 72%);
  mask-image: radial-gradient(150px circle at var(--mx, -999px) 50%, #000 0%, transparent 72%);
}
.mq-glow span { color: var(--ember); text-shadow: 0 0 14px rgba(217,93,51,0.9), 0 0 34px rgba(217,93,51,0.5); }
.mq-glow b { color: #fff; text-shadow: 0 0 12px rgba(255,255,255,0.85); }
.mq-glow .mq-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--ember); flex-shrink: 0;
  box-shadow: 0 0 10px 3px rgba(217,93,51,0.8);
}

.bento { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.bento-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; position: relative; overflow: hidden; transition: border-color .35s, transform .35s var(--ease), box-shadow .35s var(--ease); }
.bento-item:hover { border-color: var(--purple); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30,23,48,0.06); }
.bento-item.b1 { grid-column: span 4; min-height: 300px; display:flex; flex-direction:column; justify-content:flex-end; }
.bento-item.b2 { grid-column: span 2; }
.bento-item.b3 { grid-column: span 2; }
.bento-item.b4 { grid-column: span 4; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.bento-icon { width:44px; height:44px; border-radius:10px; background:var(--purple-tint); color:var(--purple); display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:1.1rem; }
.bento-item h3 { font-weight:500; text-transform:uppercase; letter-spacing:0.01em; font-size:1.3rem; margin-bottom:10px; color:var(--ink); }
.bento-item p { color: var(--ink-dim); font-size: 0.94rem; line-height: 1.6; }
.bento-item.b1 .glow { position:absolute; top:-30%; right:-15%; width:60%; height:60%; background: radial-gradient(circle, var(--ember-tint), transparent 65%); filter: blur(4px); }
.rig-line { display:flex; align-items:center; gap:12px; }
.rig-line b { font-size:2.2rem; font-weight:700; color:var(--purple); font-family:'Rajdhani',sans-serif; }

.rigs { background: var(--bg-deep); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.rig-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.rig-card { background: var(--surface); padding: 38px 32px; clip-path: inset(100% 0 0 0); }
.rig-card:nth-child(2) { clip-path: inset(0 0 100% 0); border-left: 1px solid var(--line); }
.rig-card:nth-child(3) { clip-path: inset(100% 0 0 0); border-left: 1px solid var(--line); }
.rig-card .tag { font-size:0.72rem; color: var(--ember-deep); text-transform:uppercase; letter-spacing:0.14em; font-weight:600; }
.rig-card h3 { font-weight:500; text-transform:uppercase; font-size:1.5rem; margin:14px 0 6px; color:var(--ink); }
.rig-card .price { font-size:0.95rem; color:var(--ink-dim); margin-bottom:22px; }
.rig-specs { list-style:none; display:flex; flex-direction:column; gap:10px; }
.rig-specs li { font-size:0.9rem; color:var(--ink-dim); display:flex; justify-content:space-between; border-bottom:1px dashed var(--line); padding-bottom:9px; }
.rig-specs li b { color: var(--ink); font-weight:500; }

.wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; height: 900px; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 6%, #000 94%, transparent); }
.wall-col { overflow: hidden; position: relative; touch-action: pan-x; cursor: grab; }
.wall-col.is-dragging { cursor: grabbing; }
.wall-track { display: flex; flex-direction: column; gap: 20px; will-change: transform; }
.wall-item { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface); border: 1px solid var(--line); flex-shrink: 0; user-select: none; }
.wall-item img, .wall-item video { width: 100%; display: block; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.wall-item.h-tall img, .wall-item.h-tall video { aspect-ratio: 3 / 4; }
.wall-item.h-med img, .wall-item.h-med video { aspect-ratio: 3 / 3.4; }
.wall-item.h-short img, .wall-item.h-short video { aspect-ratio: 3 / 2.3; }
.wall-item .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px 14px; background: linear-gradient(to top, rgba(20,15,35,0.72), transparent); }
.wall-item .cap span { font-size: 0.85rem; color: #fff; font-weight: 500; }
.wall-item .play-badge { position: absolute; top: 12px; right: 12px; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; }

/* ---- floating doodle art ---- */
.doodle { position: absolute; opacity: 0; pointer-events: none; z-index: 6; will-change: transform, opacity; }
@media (hover: hover) and (pointer: fine) {
  .doodle { pointer-events: auto; cursor: default; }
}
.doodle-controller { width: 200px; top: 9%;  left: 24%; }
.doodle-headphone  { width: 190px; top: 8%;  left: 2%; }
.doodle-gg         { width: 200px; top: 6%;  right: 3%; }
.doodle-cup        { width: 160px; top: 2%;  right: 8%; }
.doodle-heart      { width: 165px; top: 5%;  left: 3%; }
.doodle-bolt       { width: 140px; top: 3%; right: 4%; }
.doodle-gg2        { width: 150px; top: 8%;  left: 6%; }
.doodle-heart2     { width: 130px; bottom: 10%; right: 5%; }

@media (max-width: 900px) {
  .doodle { width: 64px !important; }
  .doodle-controller { top: 70px; left: 50%; right: auto; margin-left: -32px; }
  .doodle-headphone  { top: 4%; left: 4%; }
  .doodle-gg         { top: 4%; right: 4%; }
  .doodle-cup        { top: auto; bottom: 6%; right: 5%; }
  .doodle-heart      { top: 6%; left: 4%; }
  .doodle-bolt       { top: 4%; right: 4%; bottom: auto; }
  .doodle-gg2        { top: 6%; left: 5%; }
  .doodle-heart2     { bottom: 6%; right: 5%; }
}
@media (max-width: 520px) {
  .doodle { width: 46px !important; }
}

.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.plan { background: var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:40px 34px; display:flex; flex-direction:column; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.plan:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(30,23,48,0.07); }
.plan.featured { border-color: var(--ember); background: linear-gradient(160deg, var(--ember-tint), var(--surface) 55%); position:relative; }
.plan.featured::before { content:"Most Booked"; position:absolute; top:-13px; left:34px; background: var(--ember); color:#fff; font-size:0.7rem; font-weight:700; padding:5px 14px; border-radius:100px; letter-spacing:0.03em; }
.plan .p-name { font-size:0.85rem; color:var(--ink-dim); margin-bottom:14px; text-transform:uppercase; letter-spacing:0.08em; }
.plan .p-price { font-family:'Rajdhani',sans-serif; font-size:2.6rem; font-weight:700; letter-spacing:-0.01em; color:var(--ink); }
.plan .p-price span { font-family:'Inter',sans-serif; font-size:1rem; color:var(--ink-dim); font-weight:400; }
.plan .p-list { list-style:none; margin:30px 0; display:flex; flex-direction:column; gap:14px; flex-grow:1; }
.plan .p-list li { font-size:0.92rem; color:var(--ink-dim); display:flex; gap:10px; align-items:flex-start; }
.plan .p-list li b { color: var(--purple); font-weight:700; }
.plan .btn-ghost, .plan .btn-purple, .plan .cta-fill { width:100%; justify-content:center; }

.testi-marquee { display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
.testi-row { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.testi-track { display: flex; gap: 20px; width: max-content; }
.testi-row.dir-ltr .testi-track { animation: marqueeToLeft 42s linear infinite; }
.testi-row.dir-rtl .testi-track { animation: marqueeToRight 42s linear infinite; }
.testi-row.is-paused .testi-track { animation-play-state: paused; }
@keyframes marqueeToLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeToRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.testi { background: var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:32px; display:flex; flex-direction:column; gap:20px; width: 380px; flex-shrink: 0; }
.testi p { font-size:1rem; line-height:1.6; color: var(--ink); clip-path: inset(0 100% 0 0); }
.testi .who { display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi .avatar { width:38px; height:38px; border-radius:50%; background: var(--purple-tint); color: var(--purple-deep); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:0.85rem; font-family:'Rajdhani',sans-serif; }
.testi .who div span { display:block; font-size:0.8rem; color:var(--ink-dim); }

.cta-band {
  position:relative; border-radius:24px; overflow:hidden; padding:90px 60px; text-align:center;
  background: url('assets/lobby-booking.webp') center/cover no-repeat; border:1px solid var(--line);
}
.cta-band::before {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(245,239,228,0.55) 0%, rgba(245,239,228,0.3) 40%, rgba(245,239,228,0.6) 100%);
}
.cta-band > * { position:relative; z-index:1; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); transition: color 0.2s;
}
.faq-q:hover { color: var(--ember-deep); }
.faq-plus { flex-shrink: 0; color: var(--ember); transition: transform 0.3s ease; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.is-open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-dim); font-size: 0.94rem; line-height: 1.65; max-width: 68ch; }

.cta-band h2 { font-weight:500; text-transform:uppercase; font-size:clamp(1.9rem,4.2vw,3.2rem); max-width:22ch; margin:0 auto; color:var(--ink); }
.cta-band p { color:var(--ink-dim); margin:20px auto 36px; max-width:48ch; font-size:1.05rem; }
.cta-actions { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

footer {
  padding: calc(var(--nav-h) + 20px) 0 20px; background: #1a0d05; color: #fff; overflow: hidden; position: relative;
  background-image: url('assets/gradient.svg'); background-repeat: no-repeat;
  background-position: center; background-size: cover;
  height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh;
  display: flex; flex-direction: column;
}
footer::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(8,4,2,0.55) 0%, rgba(8,4,2,0.38) 22%, rgba(8,4,2,0.12) 42%,
    rgba(8,4,2,0.04) 60%, rgba(8,4,2,0.3) 84%, rgba(8,4,2,0.5) 100%);
}

/* footer top row */
.foot-main { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; flex-shrink: 0; align-items: flex-start; max-width: 1240px; margin: 0 auto; padding: 0 52px; width: 100%; }

.foot-brand-col { display: flex; flex-direction: column; gap: 16px; }
.foot-logo-mini { display: flex; align-items: center; gap: 10px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 28px; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.foot-logo-mark { width: 26px; height: 26px; filter: brightness(0) invert(1); flex-shrink: 0; }
.foot-brand-tag { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.5; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s, border-color 0.2s, transform 0.2s; background: rgba(0,0,0,0.2); }
.foot-socials a:hover { background: var(--ember); border-color: var(--ember); transform: translateY(-2px); }

.foot-nav-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ember); margin-bottom: 8px; }
.foot-nav-col .rule { width: 26px; height: 2px; background: var(--ember); margin-bottom: 16px; opacity: 0.8; }
.foot-nav-col { display: flex; flex-direction: column; }
.foot-nav-col a { font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-bottom: 11px; transition: color 0.2s, transform 0.2s; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.foot-nav-col a:hover { color: #fff; transform: translateX(3px); }
.foot-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.4; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.foot-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--ember); }
.foot-map { position: relative; width: 100%; max-width: 220px; height: 130px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.3); margin-top: 4px; filter: grayscale(0.35) sepia(0.18) hue-rotate(-8deg) saturate(1.1); }
.foot-map::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 55%; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(10,7,5,0.85));
}
.foot-map iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }
.foot-map-pin {
  position: absolute; bottom: 8px; left: 8px; display: flex; align-items: center; gap: 5px;
  background: rgba(20,10,4,0.75); backdrop-filter: blur(4px); color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); transition: background 0.2s;
}
.foot-map-pin:hover { background: var(--ember); }

.doodle-pit { position: relative; flex: 1 1 auto; min-height: 0; z-index: 1; overflow: hidden; margin-top: 16px; }
.pit-doodle {
  position: absolute; top: 0; left: 0; width: 240px; touch-action: none; cursor: grab;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4)); pointer-events: auto;
  user-select: none; -webkit-user-select: none; -webkit-user-drag: none;
  transition: filter 0.35s ease;
}
.pit-doodle:active { cursor: grabbing; }
.pit-doodle:hover { filter: drop-shadow(0 10px 22px rgba(0,0,0,0.5)) brightness(1.05); }

.foot-bottom { display:flex; justify-content:space-between; align-items: center; max-width: 1240px; margin: 0 auto; padding: 16px 52px 0; border-top:1px solid rgba(255,255,255,0.18); color:rgba(255,255,255,0.7); font-size:0.78rem; flex-wrap:wrap; gap:16px; position: relative; z-index: 2; flex-shrink: 0; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.foot-tagline-strip { font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.foot-tagline-strip b { color: var(--ember); font-weight: 700; }
.foot-credit { position: relative; display: inline-block; color: rgba(255,255,255,0.7); transition: color 0.25s ease; }
.foot-credit span { position: relative; }
.foot-credit span::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--ember); transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease);
}
.foot-credit:hover { color: #fff; }
.foot-credit:hover span { color: var(--ember); }
.foot-credit:hover span::after { transform: scaleX(1); transform-origin: left; }
.foot-back-top { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.35); background: rgba(0,0,0,0.2); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.foot-back-top:hover { background: var(--ember); border-color: var(--ember); }

@media (max-width: 900px) {
  .foot-main { flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 520px) {
  .foot-tagline-strip { display: none; }
}

.sticky-book { display:none; position:fixed; bottom:0; left:0; right:0; z-index:90; padding:14px 20px; background: var(--bg); border-top:1px solid var(--line); }
.sticky-book .cta-fill { width:100%; justify-content:center; }

@media (max-height: 820px) and (min-width: 901px) {
  .hero-body { padding: calc(var(--nav-h) + 10px) 52px 10px; }
  h1 { font-size: clamp(36px, 4.4vh, 62px); line-height: 0.98; margin-bottom: 14px; }
  .hero-desc { font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
  .ctas { margin-bottom: 16px; }
  .ctas a { padding: 11px 24px; font-size: 13.5px; }
  .trust-row { gap: 20px; }
  .stat-bar { margin: 14px 52px 14px; }
  .stat { padding: 11px 20px; gap: 3px; }
  .stat-icon { width: 30px; height: 30px; }
  .stat-val { font-size: 19px; }
}
@media (max-height: 680px) and (min-width: 901px) {
  .hero-body { padding: calc(var(--nav-h) + 4px) 52px 6px; }
  h1 { font-size: clamp(30px, 3.8vh, 50px); margin-bottom: 10px; }
  .hero-desc { display: none; }
  .ctas { margin-bottom: 12px; }
  .stat-bar { margin: 10px 52px 10px; }
  .stat { padding: 8px 16px; }
}
@media (max-width: 900px) {
  nav { padding: 0 16px; height: 64px; }
  .logo-name { font-size: 17px; letter-spacing: 0.1em; }
  .logo-mark { width: 30px; height: 30px; }
  .logo-sub { font-size: 7px; }
  .nav-btns { display: none; } /* hamburger takes over */
  .nav-burger { display: flex; }

  /* mobile footer needs full height, not 100vh */
  footer { height: auto; min-height: 0; max-height: none; overflow: visible; padding-bottom: calc(20px + 78px); }
  .doodle-pit { display: none; }

  /* hero grows with stacked content instead of clipping */
  .hero { height: auto; min-height: 0; max-height: none; overflow: visible; display: flex; flex-direction: column; }
  .hero-body {
    order: 1; position: relative; padding: calc(64px + 26px) 20px 0; width: 100%; max-width: 100%;
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  h1 { font-size: clamp(32px, 8.6vw, 44px); text-align: center; }
  .hero-desc { font-size: 14.5px; max-width: 34ch; text-align: center; }
  .ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 380px; }
  .ctas a { justify-content: center; }
  .trust-row { justify-content: center; gap: 10px 18px; }

  /* image becomes a block instead of a background */
  .hero-img {
    order: 2; position: relative; inset: auto; height: 220px; margin: 24px 20px 0;
    border-radius: var(--radius); overflow: hidden; clip-path: none !important;
  }
  .hero-img img { position: static; width: 100%; height: 100%; opacity: 1; object-position: center 35%; filter: none; }
  .hero-img .tint, .hero-img::after { display: none; }

  .stat-bar {
    order: 3; position: static; margin: 20px 20px 32px; grid-template-columns: repeat(2,1fr);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-right: none; border-top: 1px solid var(--line); }

  .wrap { padding: 0 20px; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bento-item.b1, .bento-item.b4 { grid-column: span 2; }
  .rig-grid { grid-template-columns: 1fr; }
  .rig-card:nth-child(2), .rig-card:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi { width: 280px; padding: 24px; }
  .foot-main, .foot-bottom { padding-left: 20px; padding-right: 20px; }
  section { padding: 64px 0; }
  .cta-band { padding: 60px 28px; }
  .sticky-book { display: block; }
  /* space for sticky-book lives on footer's own background */

  /* stack wall columns on mobile */
  .wall { display: flex; flex-direction: column; height: auto; gap: 14px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
  .wall-col { height: 200px; touch-action: pan-y; }
  .wall-track { flex-direction: row; height: 100%; gap: 14px; }
  .wall-item { width: 150px; height: 100%; flex-shrink: 0; }
  .wall-item img, .wall-item video { width: 100%; height: 100%; }
  .wall-item.h-tall img, .wall-item.h-tall video,
  .wall-item.h-med img, .wall-item.h-med video,
  .wall-item.h-short img, .wall-item.h-short video { aspect-ratio: auto; }
}
@media (max-width: 520px) { .foot-logo-mini { font-size: 22px; } }
@media (prefers-reduced-motion: reduce) {
  .hl, .hero-desc, .ctas, .trust-row, .stat-bar, .hero-img, .rig-card { animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
  nav { transform: none !important; }
  .marquee-track { animation: none; }
  .testi-track { animation: none !important; }
  .testi p { clip-path: none !important; }
  .doodle { opacity: 0.9 !important; transform: none !important; animation: none !important; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
/* ---- preloader ---- */
#preloader {
  position: fixed; inset: 0; z-index: 99999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.pl-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pl-mark { width: 56px; height: 56px; overflow: visible; }
.pl-mark path {
  fill: var(--ink); fill-opacity: 0;
  stroke: var(--ink); stroke-width: 46; stroke-linecap: round; stroke-linejoin: round;
}
.pl-logo {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 26px; letter-spacing: 0.14em; color: var(--ink);
  opacity: 0; transform: translateY(6px);
}
.pl-logo span { color: var(--ember); }
.pl-tag { font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.04em; opacity: 0; }
.pl-counter {
  position: absolute; right: 5vw; bottom: 2vh; line-height: 0.8;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(80px, 18vw, 260px); color: var(--ember); opacity: 0.16;
  pointer-events: none; user-select: none; font-variant-numeric: tabular-nums;
}
@media (max-width: 700px) { .pl-counter { font-size: clamp(60px, 26vw, 140px); right: 6vw; } }
@media (prefers-reduced-motion: reduce) {
  .pl-mark path { fill-opacity: 1; stroke-opacity: 0; }
  .pl-logo, .pl-tag { opacity: 1; transform: none; }
}

/* ---- booking modal ---- */
.booking-modal { position: fixed; inset: 0; z-index: 998; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; }
.booking-modal.is-open { opacity: 1; pointer-events: auto; }
.booking-backdrop { position: absolute; inset: 0; background: rgba(20,13,5,0.55); backdrop-filter: blur(3px); }
.booking-panel {
  position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; overflow-x: hidden;
  background: var(--surface); border-radius: 18px; padding: 34px 30px 28px; box-shadow: 0 30px 70px rgba(20,13,5,0.35);
  transform: scale(0.94) translateY(10px); opacity: 0;
}
.booking-modal.is-open .booking-panel { transform: none; opacity: 1; transition: transform 0.35s cubic-bezier(.2,.9,.25,1.2), opacity 0.3s ease; }
.booking-close { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); color: var(--ink-dim); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, color 0.2s; }
.booking-close:hover { background: var(--ember); color: #fff; border-color: var(--ember); }

.booking-form-state h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 28px; text-transform: uppercase; margin: 8px 0 6px; color: var(--ink); }
.booking-sub { font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 20px; line-height: 1.5; }

#bookingForm { display: flex; flex-direction: column; gap: 14px; }
.booking-row { display: flex; gap: 12px; min-width: 0; }
.booking-row label, .booking-full { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.03em; }
.booking-full span { text-transform: none; font-weight: 400; color: var(--ink-faint); letter-spacing: 0; }
#bookingForm input, #bookingForm select, #bookingForm textarea {
  font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; background: var(--bg); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; min-width: 0; max-width: 100%;
}
#bookingForm input:focus, #bookingForm select:focus, #bookingForm textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-tint); }
#bookingForm textarea { resize: vertical; min-height: 46px; }
.booking-submit { width: 100%; justify-content: center; margin-top: 6px; }
.booking-fallback { text-align: center; font-size: 0.8rem; color: var(--ink-faint); margin-top: 2px; }
.booking-fallback a { color: var(--ember-deep); text-decoration: underline; }

.booking-success-state { display: none; text-align: center; padding: 10px 0 6px; }
.booking-modal.is-success .booking-form-state { display: none; }
.booking-modal.is-success .booking-success-state { display: block; }
.booking-success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--ember-tint); color: var(--ember-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.booking-success-state h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; margin-bottom: 8px; }
.booking-success-state p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.5; margin-bottom: 20px; max-width: 34ch; margin-left: auto; margin-right: auto; }

@media (max-width: 520px) {
  .booking-row { flex-direction: column; }
  .booking-panel { padding: 28px 20px 22px; border-radius: 14px; }
}