:root {
  --bg: #171310;
  --gold: #D6D8DC;
  --gold-bright: #F4F5F7;
  --gold-deep: #9CA0A8;
  --line: rgba(214,216,220,0.16);
  --text: #ece7dd;
  --muted: rgba(236,231,221,0.55);
  --faint: rgba(236,231,221,0.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--text);
  font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.grad {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.btn-primary { background: linear-gradient(135deg, #F0DCB0, var(--gold-deep)); color: #17130a; box-shadow: 0 0 24px rgba(214,216,220,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(214,216,220,0.45); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: rgba(214,216,220,0.5); background: rgba(214,216,220,0.06); }
.tag { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: rgba(214,216,220,0.08); border: 1px solid var(--line); }

/* SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal-stagger].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: .12s; }
[data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: .19s; }
[data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: .26s; }
[data-reveal-stagger].in-view > *:nth-child(5) { transition-delay: .33s; }
[data-reveal-stagger].in-view > *:nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1!important; transform: none!important; transition: none!important; }
  .faq .a-wrap { transition: none; }
}

/* NAV */
header { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; pointer-events: none; }
nav { pointer-events: auto; display: flex; align-items: center; gap: 6px; padding: 8px 8px 8px 18px; border-radius: 999px; background: rgba(10,9,6,0.8); backdrop-filter: blur(20px); border: 1px solid var(--line); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
nav .brand { display: flex; align-items: center; gap: 10px; margin-right: 8px; }
nav .brand svg { width: 30px; height: 20px; }
nav .brand span { font-family: 'Space Grotesk'; font-weight: 500; letter-spacing: 0.28em; font-size: 13px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
nav a.lnk { padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--muted); transition: color .2s, background .2s; }
nav a.lnk:hover, nav a.lnk.active { color: var(--text); }
nav a.lnk.active { background: rgba(214,216,220,0.12); }
nav .book { border: 1px solid rgba(214,216,220,0.35); color: var(--gold); padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; }
nav .book:hover { background: rgba(214,216,220,0.08); }

/* Mobile nav toggle (injected by script.js) */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 38px; height: 38px; border: none; background: transparent; color: var(--text); cursor: pointer; border-radius: 999px; }
.nav-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.mobile-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: min(320px, calc(100vw - 32px));
  background: rgba(10,9,6,0.96); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 22px; padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  display: none; flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 18px; border-radius: 14px; font-size: 15px; color: var(--muted); transition: color .2s, background .2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); background: rgba(214,216,220,0.1); }
.mobile-menu .mm-book { margin-top: 6px; text-align: center; color: var(--gold); border: 1px solid rgba(214,216,220,0.35); font-weight: 600; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 160px 24px 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 90% 55% at 50% 115%, rgba(120,90,45,0.35) 0%, transparent 62%), radial-gradient(circle at 50% 38%, rgba(214,216,220,0.14) 0%, transparent 60%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%); }
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero h1 { font-size: clamp(52px, 10vw, 118px); font-weight: 700; margin-bottom: 26px; text-shadow: 0 4px 30px rgba(0,0,0,0.55); }
.hero .kws { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; font-family: 'Space Grotesk'; font-size: clamp(18px, 2.4vw, 26px); font-weight: 600; }
.hero .kws span { color: var(--faint); transition: color .4s, filter .4s; filter: blur(3px); }
.hero .kws span.on { color: var(--gold); filter: blur(0); }
.hero p.sub { max-width: 620px; margin: 0 auto 36px; color: var(--muted); font-size: 18px; }
.hero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.stats { display: flex; gap: clamp(28px, 6vw, 68px); justify-content: center; flex-wrap: wrap; margin-top: 72px; }
.stats .s p.v { font-family: 'Space Grotesk'; font-size: 40px; font-weight: 700; }
.stats .s p.l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-top: 4px; }

/* PAGE HERO (inner pages) */
.page-hero { position: relative; text-align: center; padding: 180px 24px 70px; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(214,216,220,0.14) 0%, transparent 65%); }
.page-hero .inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(40px, 7vw, 78px); font-weight: 700; margin: 18px 0 18px; text-shadow: 0 4px 26px rgba(0,0,0,0.5); }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 18px; }

/* SECTIONS */
section.blk { padding: 90px 0; position: relative; }
.head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.head h2 { font-size: clamp(34px, 5.5vw, 56px); font-weight: 700; margin: 18px 0 14px; }
.head p { color: var(--muted); }
.grid { display: grid; gap: 16px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 26px; transition: border-color .3s, box-shadow .3s, transform .3s; }
.card:hover { border-color: rgba(214,216,220,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.4); transform: translateY(-3px); }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity .35s; background: radial-gradient(280px circle at var(--x,50%) var(--y,50%), rgba(214,216,220,0.14), transparent 70%); pointer-events: none; }
.card:hover::before { opacity: 1; }
.card .ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: rgba(214,216,220,0.1); border: 1px solid rgba(214,216,220,0.25); }
.card .ico svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.card .kick { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 8px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--muted); }
.card .more { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--gold); }

/* PRICING */
.plan { position: relative; display: flex; flex-direction: column; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 28px; }
.plan.pop { border-color: rgba(214,216,220,0.4); background: linear-gradient(135deg, rgba(214,216,220,0.09), rgba(156,160,168,0.04)); }
.badge-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 5px 16px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; background: linear-gradient(135deg, #F0DCB0, var(--gold-deep)); color: #17130a; box-shadow: 0 4px 16px rgba(214,216,220,0.35); }
.plan h4 { font-size: 20px; margin-bottom: 2px; }
.plan .pr { font-family: 'Space Grotesk'; font-size: 30px; font-weight: 700; margin: 2px 0; }
.plan .pr small { font-size: 15px; }
.plan .subl { font-size: 12px; color: var(--faint); margin-bottom: 18px; }
.plan ul { list-style: none; flex: 1; margin-bottom: 22px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(236,231,221,0.72); padding: 5px 0; }
.plan li svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2.2; flex-shrink: 0; margin-top: 4px; }
.plan .btn { justify-content: center; }
.mono { display: flex; align-items: baseline; gap: 8px; }
.subrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.note { margin-top: 28px; padding: 14px 20px; border-radius: 12px; font-size: 13px; font-style: italic; color: var(--gold); background: rgba(214,216,220,0.06); border-left: 3px solid var(--gold); line-height: 1.6; }

/* ABOUT / CONTACT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid p { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.methods { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.method { padding: 22px; text-align: left; }
.method .ml { font-size: 12px; color: var(--faint); margin-bottom: 3px; }
.method .mv { font-weight: 600; font-size: 14px; }

/* FAQ ACCORDION */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 4px 22px; transition: border-color .3s; }
.faq details[open] { border-color: rgba(214,216,220,0.35); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; padding: 18px 0; font-family: 'Space Grotesk'; font-size: 16px; line-height: 1.4; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 8px; }
.faq summary .chev { flex-shrink: 0; display: inline-flex; transition: transform .3s; }
.faq summary .chev svg { display: block; width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq details[open] .a-wrap { grid-template-rows: 1fr; }
.faq .a-inner { overflow: hidden; }
.faq .a-inner p { color: var(--muted); font-size: 14.5px; line-height: 1.65; padding: 0 0 20px; max-width: 620px; }

/* Native CSS scroll-driven reveal for FAQ items — zero JS, runs on the compositor thread.
   Progressive enhancement only: browsers without animation-timeline support just render the
   items in their normal static state (no @supports match = no animation, nothing missing). */
@supports (animation-timeline: view()) {
  @keyframes faqScrollReveal {
    0%   { opacity: 0; transform: translateY(28px) scale(0.97); filter: blur(4px); }
    18%  { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    82%  { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    100% { opacity: 0; transform: translateY(-28px) scale(0.97); filter: blur(4px); }
  }
  .faq details {
    animation: faqScrollReveal linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @media (prefers-reduced-motion: reduce) {
    .faq details { animation: none; }
  }
}

@media (max-width: 900px) {
  .faq { gap: 10px; }
  .faq details { padding: 2px 18px; border-radius: 14px; }
  .faq summary { padding: 16px 0; font-size: 15px; gap: 14px; }
}
@media (max-width: 480px) {
  .faq details { padding: 2px 14px; border-radius: 12px; }
  .faq summary { padding: 15px 0; font-size: 14.5px; gap: 10px; }
  .faq summary .chev svg { width: 17px; height: 17px; }
  .faq .a-inner p { font-size: 13.5px; padding-bottom: 16px; }
}

/* DECORATIVE PAGE ART */
.hero-art { position: absolute; top: 50%; right: -40px; transform: translateY(-50%); width: 320px; height: 320px; opacity: 0.14; pointer-events: none; z-index: 0; }
@media (max-width: 1100px) and (min-width: 641px) {
  .hero-art { width: 220px; height: 220px; right: -60px; opacity: 0.12; }
}
@media (max-width: 640px) {
  .hero-art { width: 150px; height: 150px; right: -46px; top: 40%; opacity: 0.1; }
}

/* IMMERSIVE HERO BACKGROUND */
.velaris-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.38; }
.hero-scrim { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 50% 38%, rgba(23,19,16,0.42) 0%, rgba(23,19,16,0.74) 70%, rgba(23,19,16,0.86) 100%); }
@media (prefers-reduced-motion: reduce) { .velaris-bg { opacity: 0.28; } }

/* AMBIENT SECTION GLOW (lightweight CSS-only, for sections without the WebGL canvas) */
.blk-glow { position: relative; overflow: hidden; }
.blk-glow > .wrap { position: relative; z-index: 1; }
.ambient-glow { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.ambient-glow::before, .ambient-glow::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); }
.ambient-glow::before { width: 460px; height: 460px; opacity: 0.3; background: radial-gradient(circle, #D6D8DC, transparent 70%); top: -160px; left: -100px; animation: driftA 24s ease-in-out infinite alternate; }
.ambient-glow::after { width: 420px; height: 420px; opacity: 0.22; background: radial-gradient(circle, #D8D8D8, transparent 70%); bottom: -180px; right: -80px; animation: driftB 28s ease-in-out infinite alternate; }
@keyframes driftA { from { transform: translate(0,0) scale(1); } to { transform: translate(50px, 34px) scale(1.08); } }
@keyframes driftB { from { transform: translate(0,0) scale(1); } to { transform: translate(-36px,-46px) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .ambient-glow::before, .ambient-glow::after { animation: none; } }

/* HERO INTRO ANIMATION — replays every load */
.hero-inner > * { opacity: 0; transform: translateY(24px); animation: heroIntro .85s cubic-bezier(.16,.8,.24,1) forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .1s; }
.hero-inner > *:nth-child(2) { animation-delay: .38s; }
.hero-inner > *:nth-child(3) { animation-delay: .56s; }
.hero-inner > *:nth-child(4) { animation-delay: .72s; }
.hero-inner > *:nth-child(5) { animation-delay: .88s; }
@keyframes heroIntro { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * { opacity: 1; transform: none; animation: none; }
}

/* TINTED PHOTO (real photography, dark-gold treated to match the palette) */
.tinted-photo { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid rgba(255,255,255,0.08); }
.tinted-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(50%) contrast(1.05) brightness(0.78); }
.tinted-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(214,216,220,0.26) 0%, rgba(23,19,16,0.1) 45%, rgba(23,19,16,0.72) 100%); pointer-events: none; }
.tinted-photo.wide { aspect-ratio: 16 / 10; }
@media (max-width: 900px) { .tinted-photo { aspect-ratio: 16 / 10; } }

/* MISSION / VISION ICON LIST */
.mv-list { display: flex; flex-direction: column; gap: 22px; margin: 24px 0 22px; }
.mv-item { display: flex; gap: 16px; align-items: flex-start; }
.mv-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(214,216,220,0.1); border: 1px solid rgba(214,216,220,0.25); }
.mv-ico svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.mv-item h3 { font-size: 17px; margin-bottom: 5px; }
.mv-item p { font-size: 14px; color: var(--muted); }

/* SCROLL-LINKED EFFECTS */
[data-scroll-fx="tilt3d"] { transform-box: fill-box; transform-origin: 50% 100%; }
[data-scroll-fx="rise3d"] { transform-origin: 50% 100%; }
[data-scroll-fx="clip-reveal"] { will-change: clip-path; }
[data-scroll-fx="split-lines"] > span.grad { display: inline-block; }
@media (prefers-reduced-motion: reduce) {
  [data-scroll-fx] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  [data-scroll-fx="split-lines"] > span.grad { transform: none !important; opacity: 1 !important; }
}

/* ZOOM-PARALLAX GALLERY (sticky-pinned collage) */
.zoom-pin-wrap { position: relative; height: 300vh; }
.zoom-pin-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.zoom-pin-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; will-change: transform; }
.zoom-pin-img .frame { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.zoom-pin-img .frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(30%) contrast(1.05) brightness(0.86); }
.zoom-pin-img.p0 .frame { width: 32vw; height: 42vh; }
.zoom-pin-img.p1 .frame { position: absolute; top: -30vh; left: 6vw; width: 22vw; height: 22vh; }
.zoom-pin-img.p2 .frame { position: absolute; top: -8vh; left: -26vw; width: 16vw; height: 30vh; }
.zoom-pin-img.p3 .frame { position: absolute; left: 28vw; width: 20vw; height: 18vh; }
.zoom-pin-img.p4 .frame { position: absolute; top: 27vh; left: 6vw; width: 16vw; height: 18vh; }
.zoom-pin-img.p5 .frame { position: absolute; top: 27vh; left: -23vw; width: 22vw; height: 18vh; }
.zoom-pin-img.p6 .frame { position: absolute; top: 22vh; left: 26vw; width: 12vw; height: 12vh; }
@media (max-width: 900px) {
  .zoom-pin-wrap { height: 180vh; }
  .zoom-pin-img.p1 .frame, .zoom-pin-img.p2 .frame, .zoom-pin-img.p5 .frame, .zoom-pin-img.p6 .frame { display: none; }
  .zoom-pin-img.p0 .frame { width: 60vw; height: 34vh; }
  .zoom-pin-img.p3 .frame { left: 8vw; top: -22vh; width: 40vw; height: 20vh; }
  .zoom-pin-img.p4 .frame { left: 46vw; top: -22vh; width: 40vw; height: 20vh; }
}
@media (prefers-reduced-motion: reduce) {
  .zoom-pin-wrap { height: auto; }
  .zoom-pin-sticky { position: relative; height: auto; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; padding: 40px 0; }
  .zoom-pin-img { position: relative; inset: auto; }
  .zoom-pin-img .frame { position: relative !important; top: auto !important; left: auto !important; width: 200px !important; height: 200px !important; }
}

/* CAROUSEL (Spotify-style horizontal slider) */
.carousel-wrap { position: relative; }
.carousel-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 4px 4px 14px; margin: 0 -4px; scrollbar-width: none; cursor: grab; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 auto; width: min(300px, 72vw); }
.carousel-fade-l, .carousel-fade-r { position: absolute; top: 0; bottom: 14px; width: 56px; z-index: 2; pointer-events: none; transition: opacity .25s; opacity: 0; }
.carousel-fade-l { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.carousel-fade-r { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
.carousel-arrows { display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px; }
.carousel-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s, background .2s, opacity .2s; flex-shrink: 0; }
.carousel-arrow:hover { border-color: rgba(214,216,220,0.5); background: rgba(214,216,220,0.08); }
.carousel-arrow svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2.2; }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

/* PACKAGE STACK — stacked-card selector for pricing plans, inspired by animated testimonial
   carousels: the active card sits forward and flat, the others tilt back behind it, and the
   description's key line blurs in word by word when you switch. */
.pkg-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 980px; margin: 0 auto; }
.pkg-stack-visual { position: relative; height: 320px; overflow: hidden; border-radius: 20px; }
.pkg-card-face {
  position: absolute; inset: 0; border-radius: 20px; padding: 32px;
  background:
    radial-gradient(circle at 26% 18%, rgba(214,216,220,0.16), transparent 55%),
    linear-gradient(150deg, #211d16 0%, #16130d 55%, #0c0a07 100%);
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .45s cubic-bezier(.16,.8,.24,1), opacity .45s ease, box-shadow .45s ease, filter .45s ease;
  transform-origin: bottom center; cursor: pointer; overflow: hidden;
}
.pkg-card-face::after {
  content: attr(data-face-index); position: absolute; right: 10px; bottom: -34px;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 148px; line-height: 1;
  color: rgba(255,255,255,0.05); pointer-events: none; user-select: none;
}
.pkg-stack-visual .pkg-card-face:nth-of-type(3n+2) { background:
    radial-gradient(circle at 26% 18%, rgba(214,216,220,0.14), transparent 55%),
    linear-gradient(150deg, #1c1f21 0%, #121417 55%, #08090a 100%); }
.pkg-stack-visual .pkg-card-face:nth-of-type(3n+3) { background:
    radial-gradient(circle at 26% 18%, rgba(214,216,220,0.14), transparent 55%),
    linear-gradient(150deg, #201a17 0%, #16110e 55%, #0b0806 100%); }
.pkg-card-face .pkg-face-num { position: relative; z-index: 1; font-family: 'Space Grotesk'; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; transition: opacity .3s ease; }
.pkg-card-face h3 { position: relative; z-index: 1; font-size: clamp(24px, 3vw, 30px); margin-bottom: 6px; transition: opacity .3s ease; }
.pkg-card-face .pkg-face-sub { position: relative; z-index: 1; color: var(--muted); font-size: 14px; transition: opacity .3s ease; }
.pkg-card-face.active { transform: none; opacity: 1; z-index: 50; filter: none; box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(214,216,220,0.3); cursor: default; }
.pkg-card-face.behind { opacity: 1; z-index: 1; filter: brightness(0.5) saturate(0.75); }
.pkg-card-face.behind:hover { filter: brightness(0.68) saturate(0.85); }
.pkg-card-face.behind h3, .pkg-card-face.behind .pkg-face-sub { opacity: 0; }
.pkg-card-face .pkg-face-badge { position: absolute; top: 20px; right: 20px; z-index: 1; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, #F0DCB0, var(--gold-deep)); color: #17130a; }

.pkg-stack-content { display: flex; flex-direction: column; min-height: 320px; }
.pkg-content-panel { display: none; }
.pkg-content-panel.active { display: flex; flex-direction: column; height: 100%; }
.pkg-content-panel h4 { font-size: 22px; margin-bottom: 6px; }
.pkg-content-panel .pkg-price { font-family: 'Space Grotesk'; color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.pkg-content-panel .pkg-features { list-style: none; margin-bottom: 22px; }
.pkg-content-panel .pkg-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(236,231,221,0.72); padding: 5px 0; }
.pkg-content-panel .pkg-features li svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2.2; flex-shrink: 0; margin-top: 4px; }
.pkg-word { display: inline-block; }

.pkg-stack-nav { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; }
.pkg-dots { display: flex; gap: 8px; align-items: center; margin-right: auto; }
.pkg-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); cursor: pointer; transition: background .2s, transform .2s; border: none; padding: 0; }
.pkg-dot.active { background: var(--gold); transform: scale(1.35); }
.pkg-nav-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s, background .2s; flex-shrink: 0; }
.pkg-nav-btn:hover { border-color: rgba(214,216,220,0.5); background: rgba(214,216,220,0.08); }
.pkg-nav-btn svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2.2; }

@media (max-width: 900px) {
  .pkg-stack { grid-template-columns: 1fr; gap: 40px; }
  .pkg-stack-visual { height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  .pkg-card-face { transition: none; }
  .pkg-word { filter: none !important; opacity: 1 !important; transition: none !important; }
}

/* ROADMAP CONNECTOR (4-step process) */
.roadmap { position: relative; }
.roadmap .road-line { position: absolute; top: 43px; left: 0; right: 0; height: 2px; background-image: repeating-linear-gradient(90deg, rgba(214,216,220,0.45) 0 10px, transparent 10px 20px); z-index: 0; pointer-events: none; }
.roadmap .step { position: relative; z-index: 1; }
.roadmap .step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid rgba(214,216,220,0.55); background: #211c15; font-family: 'Space Grotesk'; font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
@media (max-width: 900px) {
  .roadmap .road-line { display: none; }
}

/* INTERACTIVE 3D GLOBE */
.globe-wrap { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.globe-3d { width: min(280px, 100%); aspect-ratio: 1 / 1; height: auto; }

/* FOOTER */
footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 54px 0 40px; margin-top: 40px; }
.foot-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.foot-brand { max-width: 280px; }
.foot-brand .fb { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand p { color: var(--muted); font-size: 14px; }
.foot-col h5 { font-size: 14px; margin-bottom: 14px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; }
.foot-col a:hover { color: var(--gold); }
.foot-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: var(--faint); }

@media (max-width: 900px) {
  .nav-links, nav .book { display: none; }
  .nav-toggle { display: flex; }
  nav { padding: 8px 10px 8px 16px; }
  section.blk { padding: 64px 0; }
  .subrow { grid-template-columns: 1fr; }
  .hero { padding: 130px 22px 60px; min-height: auto; }
  .page-hero { padding: 130px 22px 56px; }
  .stats { margin-top: 48px; gap: clamp(24px, 8vw, 48px); }
  .head { margin-bottom: 40px; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .methods { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .g3, .g4, .g2, .about-grid, .methods { grid-template-columns: 1fr; }
  .about-grid { gap: 36px; }
  .hero { padding: 118px 20px 50px; }
  .page-hero { padding: 116px 20px 44px; }
  .stats { margin-top: 38px; }
}
