/* ============================================================
   PEAK SOCIETY — Luxury Ski Club
   ============================================================ */
:root {
  --navy-950: #060c1d;
  --navy-900: #0a1430;
  --navy-850: #0c193b;
  --navy-800: #0f2049;
  --navy-700: #15295c;
  --navy-line: rgba(160, 185, 230, 0.14);
  --ice: #aac1e8;
  --ice-soft: #7e96c4;
  --silver: #e9eefb;
  --gold: #cda75f;
  --gold-bright: #e3c789;
  --gold-soft: rgba(205, 167, 95, 0.14);
  --text: #e7ecf8;
  --muted: #94a4c4;
  --muted-dim: #6e7e9e;
  --night: #8a6cf0;
  --maxw: 1180px;
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--navy-950);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold-bright); }

/* ---------- decorative layers ---------- */
.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(138, 108, 240, 0.16), transparent 60%),
    radial-gradient(55% 45% at 15% 0%, rgba(120, 170, 255, 0.12), transparent 60%),
    radial-gradient(70% 60% at 50% 110%, rgba(205, 167, 95, 0.10), transparent 60%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}
@keyframes auroraShift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-2%, 1%, 0) scale(1.06); } }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.snow { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.snow .flake {
  position: absolute; top: -10px; border-radius: 50%;
  background: #fff; opacity: 0.5; filter: blur(0.3px);
  animation: fall linear infinite;
}
@keyframes fall {
  to { transform: translateY(110vh) translateX(var(--drift, 20px)); opacity: 0; }
}

main, .nav, .footer { position: relative; z-index: 2; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top, 0);
}
.nav.scrolled {
  background: rgba(8, 16, 38, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--navy-line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; }
.nav__wordmark {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  letter-spacing: .14em; color: var(--silver);
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--silver); }
.nav__cta {
  border: 1px solid var(--gold); color: var(--gold-bright) !important;
  padding: 9px 18px; border-radius: 999px;
  transition: background .2s, color .2s !important;
}
.nav__cta:hover { background: var(--gold); color: var(--navy-950) !important; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin: -10px; }
.nav__burger span {
  display: block; width: 24px; height: 2px; background: var(--silver);
  margin: 5px 0; border-radius: 2px; transition: .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  letter-spacing: .02em; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .3s ease, background .25s ease, color .25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(205, 167, 95, 0.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(205, 167, 95, 0.4); }
.btn--ghost { border-color: var(--navy-line); color: var(--silver); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--ice); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- scroll reveal (progressive enhancement: hidden only when JS adds .reveal-on) ---------- */
.reveal {
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
html.reveal-on .reveal {
  opacity: 0; transform: translateY(34px) perspective(900px) rotateX(6deg);
  transform-origin: center top;
}
html.reveal-on .reveal.in { opacity: 1; transform: none; }

/* ---------- HERO (3D parallax) ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 24px 90px; overflow: hidden;
  perspective: 1100px; perspective-origin: 50% 40%;
}
.hero__stage { position: absolute; inset: -10% -6%; z-index: 0; transform-style: preserve-3d; }
.hlayer {
  position: absolute; inset: 0; will-change: transform;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  background-repeat: no-repeat;
}
.hlayer--glow {
  background:
    radial-gradient(46% 40% at 50% 30%, rgba(138,108,240,0.20), transparent 70%),
    radial-gradient(40% 36% at 22% 24%, rgba(120,170,255,0.14), transparent 70%),
    radial-gradient(44% 40% at 80% 20%, rgba(205,167,95,0.12), transparent 70%);
}
.hlayer--stars {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='40' cy='60' r='1.2' opacity='.7'/%3E%3Ccircle cx='140' cy='120' r='.9' opacity='.5'/%3E%3Ccircle cx='250' cy='40' r='1.4' opacity='.8'/%3E%3Ccircle cx='330' cy='150' r='.8' opacity='.5'/%3E%3Ccircle cx='430' cy='70' r='1.1' opacity='.7'/%3E%3Ccircle cx='520' cy='30' r='.9' opacity='.6'/%3E%3Ccircle cx='600' cy='130' r='1.3' opacity='.75'/%3E%3Ccircle cx='700' cy='60' r='1' opacity='.6'/%3E%3Ccircle cx='760' cy='160' r='.8' opacity='.5'/%3E%3Ccircle cx='90' cy='210' r='1' opacity='.6'/%3E%3Ccircle cx='200' cy='250' r='.8' opacity='.45'/%3E%3Ccircle cx='370' cy='230' r='1.2' opacity='.7'/%3E%3Ccircle cx='480' cy='200' r='.9' opacity='.5'/%3E%3Ccircle cx='640' cy='240' r='1' opacity='.6'/%3E%3Ccircle cx='730' cy='280' r='.8' opacity='.45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px auto; background-position: top center; opacity: .9;
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .55; } to { opacity: .95; } }
.hlayer--ridge3, .hlayer--ridge2, .hlayer--ridge1 { background-position: bottom center; background-size: cover; }
.hlayer--ridge3 {
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='xMidYMax slice'%3E%3Cpath fill='%231a2d57' d='M0,240 L180,130 L300,210 L470,90 L640,200 L820,110 L1010,210 L1200,120 L1380,200 L1440,170 L1440,320 L0,320Z'/%3E%3C/svg%3E");
  opacity: .55;
}
.hlayer--ridge2 {
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='xMidYMax slice'%3E%3Cpath fill='%23122451' d='M0,270 L160,170 L360,260 L560,150 L760,250 L980,160 L1180,255 L1380,175 L1440,220 L1440,320 L0,320Z'/%3E%3C/svg%3E");
  opacity: .85;
}
.hlayer--ridge1 {
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='xMidYMax slice'%3E%3Cpath fill='%230b1733' d='M0,300 L220,180 L420,300 L640,160 L760,250 L900,300 L1080,190 L1280,300 L1440,210 L1440,320 L0,320Z'/%3E%3C/svg%3E");
}
.hlayer--fog {
  inset: auto 0 0 0; height: 46%;
  background: linear-gradient(to top, var(--navy-950) 12%, rgba(6,12,29,0.6) 50%, transparent);
}
.hero__content { position: relative; z-index: 2; max-width: 860px; transform-style: preserve-3d; }
.hero__eyebrow {
  font-size: .8rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; font-weight: 500;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 8rem); line-height: .94; letter-spacing: .03em;
  color: var(--silver);
  text-shadow: 0 6px 50px rgba(170, 193, 232, 0.18);
}
.hero__tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--gold-bright); margin-top: 6px; letter-spacing: .03em;
}
.hero__sub {
  max-width: 620px; margin: 26px auto 0; color: var(--muted);
  font-size: 1.05rem; font-weight: 300;
}
.hero__sub strong { color: var(--silver); font-weight: 600; }
.hero__facts {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin: 34px 0 6px;
}
.hero__facts li {
  display: flex; flex-direction: column; gap: 3px; align-items: center;
  padding: 12px 22px; border: 1px solid var(--navy-line); border-radius: 14px;
  background: rgba(255,255,255,0.02); backdrop-filter: blur(6px);
}
.hero__facts span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-dim); }
.hero__facts strong { font-size: .98rem; color: var(--silver); font-weight: 600; }

/* countdown */
.countdown {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 36px auto 8px;
}
.cd__item {
  display: flex; flex-direction: column; align-items: center; min-width: 78px;
  padding: 16px 8px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(21,41,92,0.6), rgba(10,20,48,0.6));
  border: 1px solid var(--navy-line);
}
.cd__num {
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 2.9rem); font-weight: 600;
  line-height: 1; color: var(--silver);
  font-variant-numeric: tabular-nums;
}
.cd__label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.cd__sep { font-family: var(--serif); font-size: 2rem; color: var(--gold); opacity: .5; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1px solid var(--ice-soft); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; border-radius: 3px;
  background: var(--gold-bright); transform: translateX(-50%);
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll { 0%{opacity:0;top:8px} 40%{opacity:1} 80%{opacity:0;top:22px} 100%{opacity:0} }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--navy-line); background: rgba(10,20,48,0.5); padding: 16px 0; }
.marquee__track { display: flex; gap: 28px; white-space: nowrap; width: max-content; animation: slide 26s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: .14em; color: var(--ice);
}
.marquee__track .dot { color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 110px 24px; }
.section--alt {
  max-width: none; padding-inline: 0;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-850));
  border-block: 1px solid var(--navy-line);
}
.section--alt > * { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker {
  font-size: .76rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.kicker--center { text-align: center; }
h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.08; color: var(--silver); letter-spacing: .01em;
}
.lead { color: var(--muted); font-size: 1.08rem; font-weight: 300; margin-top: 18px; }
.lead--center { max-width: 600px; margin-inline: auto; }
.lead strong { color: var(--silver); font-weight: 600; }

/* ---------- 3D TILT ---------- */
.tilt { transform-style: preserve-3d; transition: transform .25s cubic-bezier(.22,.61,.36,1); }
.tilt > * { transform: translateZ(0.01px); }

/* ---------- DUALITY ---------- */
.duality { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.duality__card { padding: 44px 38px; border-radius: var(--radius); position: relative; overflow: hidden; }
.duality__card--day {
  background: linear-gradient(160deg, rgba(120,160,230,0.12), rgba(205,167,95,0.06));
  border: 1px solid rgba(170,193,232,0.18);
}
.duality__card--night {
  background: linear-gradient(160deg, rgba(138,108,240,0.16), rgba(10,16,38,0.4));
  border: 1px solid rgba(138,108,240,0.22);
}
.duality__time { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.duality__card h3 { font-family: var(--serif); font-size: 2rem; color: var(--silver); margin-bottom: 12px; }
.duality__card--day h3 { color: var(--gold-bright); }
.duality__card--night h3 { color: #b9a8ff; }
.duality__card p { color: var(--muted); font-weight: 300; }
.duality__divider { display: flex; align-items: center; justify-content: center; padding: 0 22px; }
.duality__divider span {
  font-family: var(--serif); font-size: 1rem; letter-spacing: .1em; color: var(--muted-dim);
  width: 46px; height: 46px; border: 1px solid var(--navy-line); border-radius: 50%;
  display: grid; place-items: center; background: var(--navy-900);
}
.taglist { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.taglist li {
  font-size: .78rem; padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--navy-line); color: var(--ice); background: rgba(255,255,255,0.02);
}

/* ---------- SPLIT (helyszín) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split__text .kicker, .split__text h2 { text-align: left; }
.featlist { list-style: none; margin-top: 26px; display: grid; gap: 16px; }
.featlist li {
  padding-left: 22px; position: relative; color: var(--muted); font-weight: 300;
}
.featlist li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.featlist strong { color: var(--silver); font-weight: 600; }

.split__visual { perspective: 900px; }
.map-card {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius);
  border: 1px solid var(--navy-line); overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, rgba(21,41,92,0.7), var(--navy-950));
  display: grid; place-items: center;
}
.map-card__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--navy-line) 1px, transparent 1px), linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 38px 38px; mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
}
.map-card__pin { position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 22px; overflow: hidden; border: 1px solid var(--gold); box-shadow: 0 0 0 8px rgba(205,167,95,0.08), 0 20px 50px rgba(0,0,0,0.5); transform: translateZ(40px); }
.map-card__meta { position: absolute; bottom: 22px; left: 22px; z-index: 2; display: flex; flex-direction: column; }
.map-card__meta span { font-size: .72rem; letter-spacing: .12em; color: var(--muted); }
.map-card__meta strong { font-family: var(--serif); font-size: 1.3rem; color: var(--silver); }

/* ---------- TIMELINE ---------- */
.timeline { max-width: 760px; margin: 0 auto 60px; display: grid; gap: 2px; }
.tl__item {
  display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: start;
  padding: 20px 24px; border-radius: 14px; border: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.tl__item:hover { border-color: var(--navy-line); background: rgba(255,255,255,0.02); }
.tl__time { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
.tl__item h4 { font-size: 1.05rem; color: var(--silver); margin-bottom: 2px; }
.tl__item p { color: var(--muted); font-weight: 300; font-size: .94rem; }
.tl__item--night .tl__time { color: #b9a8ff; }

.optionals { text-align: center; }
.optionals__title { font-family: var(--serif); font-size: 1.7rem; color: var(--silver); margin-bottom: 28px; }
.opt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; perspective: 900px; }
.opt-card {
  padding: 28px 20px; border-radius: 16px; border: 1px solid var(--navy-line);
  background: rgba(255,255,255,0.02); text-align: center; transition: transform .25s, border-color .25s;
}
.opt-card:hover { border-color: var(--gold); }
.opt-card__ico { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.opt-card h4 { font-size: .98rem; color: var(--silver); margin-bottom: 4px; }
.opt-card p { font-size: .84rem; color: var(--muted); font-weight: 300; }
.optionals__note { margin-top: 26px; color: var(--muted-dim); font-size: .88rem; text-align: center; }

/* ---------- ROOMS (per-type video placeholders) ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; perspective: 1000px; }
.room-card {
  border-radius: var(--radius); border: 1px solid var(--navy-line); overflow: hidden;
  background: linear-gradient(165deg, rgba(21,41,92,0.35), rgba(10,20,48,0.35));
  transition: transform .25s, border-color .25s; display: flex; flex-direction: column;
}
.room-card:hover { border-color: var(--ice-soft); }
.room-card--mid { border-color: rgba(170,193,232,0.25); }
.room-card--top { border-color: var(--gold); background: linear-gradient(165deg, rgba(205,167,95,0.1), rgba(10,20,48,0.4)); }
.room-video {
  position: relative; aspect-ratio: 16 / 10; cursor: pointer;
  border-bottom: 1px solid var(--navy-line); overflow: hidden;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(21,41,92,0.85), transparent),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 12px, transparent 12px 24px), var(--navy-900);
  display: grid; place-items: center; transition: background .3s;
}
.room-video:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }
.room-video__play {
  width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--gold);
  display: grid; place-items: center; background: rgba(205,167,95,0.08);
  box-shadow: 0 0 0 0 rgba(205,167,95,0.4); animation: pulse 2.6s ease-out infinite;
}
.room-video__play span {
  width: 0; height: 0; border-left: 15px solid var(--gold-bright);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(205,167,95,0.35)} 70%{box-shadow:0 0 0 20px rgba(205,167,95,0)} 100%{box-shadow:0 0 0 0 rgba(205,167,95,0)} }
.room-video__tag {
  position: absolute; bottom: 12px; right: 12px; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ice); background: rgba(8,16,38,0.7);
  border: 1px solid var(--navy-line); padding: 4px 10px; border-radius: 999px;
}
.room-card__body { padding: 26px 26px 30px; }
.room-card__body h4 { font-family: var(--serif); font-size: 1.6rem; color: var(--silver); }
.room-card__beds { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 4px 0 14px; }
.room-card__body p { color: var(--muted); font-weight: 300; font-size: .95rem; }
.room-card__tag { display: inline-block; margin-top: 18px; font-size: .76rem; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--navy-line); color: var(--ice); }

/* ---------- PACKAGES ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; perspective: 1200px; }
.pkg {
  display: flex; flex-direction: column; padding: 36px 30px; border-radius: var(--radius);
  border: 1px solid var(--navy-line); background: linear-gradient(180deg, rgba(15,32,73,0.45), rgba(10,20,48,0.3));
  position: relative;
}
.pkg--featured {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(205,167,95,0.12), rgba(10,20,48,0.4));
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.pkg--vip { border-color: rgba(138,108,240,0.3); }
.pkg__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--navy-950);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.pkg__head h3 { font-family: var(--serif); font-size: 2rem; color: var(--silver); }
.pkg__pitch { color: var(--muted); font-weight: 300; font-size: .92rem; }
.pkg__price {
  font-family: var(--serif); font-size: 1.7rem; color: var(--gold-bright);
  margin: 20px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--navy-line);
  display: flex; flex-direction: column;
}
.pkg__price span { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dim); }
.pkg__list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.pkg__list li { position: relative; padding-left: 26px; color: var(--muted); font-weight: 300; font-size: .94rem; }
.pkg__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700;
}
.pkg__list li strong { color: var(--silver); font-weight: 600; }
.pkg__list li strong::before { content: ""; }

/* add-on + note */
.addon {
  display: flex; align-items: center; gap: 22px; margin-top: 30px; padding: 26px 30px;
  border-radius: var(--radius); border: 1px dashed var(--navy-line); background: rgba(255,255,255,0.02);
}
.addon__ico { font-size: 2.4rem; }
.addon__text h4 { font-size: 1.1rem; color: var(--silver); margin-bottom: 4px; }
.addon__text p { color: var(--muted); font-weight: 300; font-size: .95rem; }
.pkg-note { text-align: center; margin-top: 22px; color: var(--muted-dim); font-size: .88rem; }

/* ---------- MERCH ---------- */
.merch-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chip {
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em;
  padding: 12px 24px; border-radius: 999px; border: 1px solid var(--navy-line);
  color: var(--ice); background: rgba(255,255,255,0.02); transition: border-color .25s, color .25s, transform .25s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--navy-line); border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.faq__item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 500; color: var(--silver);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--serif); font-size: 1.6rem; color: var(--gold); transition: transform .25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-weight: 300; }

/* ---------- CTA / SIGNUP ---------- */
.section--cta { padding-top: 60px; }
.cta-box {
  max-width: 760px; margin: 0 auto; padding: 56px 48px; text-align: center;
  border-radius: 26px; border: 1px solid var(--gold);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(205,167,95,0.12), transparent 60%),
    linear-gradient(180deg, rgba(15,32,73,0.6), rgba(10,20,48,0.5));
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.cta-box h2 { margin-top: 4px; }
.signup { margin-top: 34px; text-align: left; }
.signup__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.signup label, .signup__full { display: flex; flex-direction: column; gap: 7px; font-size: .82rem; letter-spacing: .04em; color: var(--muted); font-weight: 500; }
.signup__full { margin-bottom: 18px; }
.signup input, .signup select, .signup textarea {
  font-family: var(--sans); font-size: 16px; color: var(--text);
  background: rgba(8,16,38,0.6); border: 1px solid var(--navy-line); border-radius: 11px;
  padding: 13px 15px; transition: border-color .2s; width: 100%;
}
.signup input:focus, .signup select:focus, .signup textarea:focus { outline: none; border-color: var(--gold); }
.signup select option { background: var(--navy-900); }
.signup textarea { resize: vertical; }
.signup .btn { margin-top: 6px; }
.signup__fine { text-align: center; margin-top: 14px; font-size: .8rem; color: var(--muted-dim); }
.signup--done { text-align: center; padding: 30px; color: var(--gold-bright); font-family: var(--serif); font-size: 1.5rem; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--navy-line); background: var(--navy-950); padding: 64px 24px 28px; padding-bottom: calc(28px + env(safe-area-inset-bottom, 0)); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.footer__brand img { width: 54px; height: 54px; border-radius: 12px; margin-bottom: 14px; }
.footer__brand p { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .16em; color: var(--silver); }
.footer__brand span { font-family: var(--serif); font-style: italic; color: var(--gold); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__cols h5 { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 16px; }
.footer__cols a { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer__cols a:hover { color: var(--gold-bright); }
.footer__bottom {
  max-width: var(--maxw); margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--navy-line);
  display: flex; justify-content: space-between; gap: 16px; font-size: .82rem; color: var(--muted-dim);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    background: rgba(8,16,38,0.97); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform .35s ease; border-left: 1px solid var(--navy-line);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__burger { display: block; }
  .duality { grid-template-columns: 1fr; gap: 16px; }
  .duality__divider { padding: 6px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__text .kicker, .split__text h2 { text-align: center; }
  .featlist { max-width: 520px; margin-inline: auto; }
  .opt-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid, .pkg-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .section { padding: 80px 20px; }
  .hero { padding-top: 120px; }
  .hero__title { font-size: clamp(2.8rem, 13.5vw, 4.6rem); letter-spacing: .02em; }
  .hero__sub { font-size: .98rem; }
  .hero__facts { gap: 10px; }
  .hero__facts li { padding: 10px 16px; flex: 1 1 100%; }
  .countdown { gap: 6px; }
  .cd__item { min-width: 0; flex: 1; padding: 12px 4px; }
  .cd__sep { font-size: 1.4rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .opt-grid { grid-template-columns: 1fr 1fr; }
  .opt-card { padding: 22px 12px; }
  .signup__row { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 22px; }
  .duality__card, .pkg { padding: 30px 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .marquee__track span { font-size: 1.1rem; }
  .tl__item { grid-template-columns: 64px 1fr; gap: 14px; padding: 16px 14px; }
}

/* touch devices: disable tilt/parallax transforms for performance & no hover jank */
@media (hover: none) {
  .tilt { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hlayer { transform: none !important; }
}
