:root {
  color-scheme: dark;
  --bg: #0E0B08;
  --bg-2: #14100A;
  --panel: #171208;
  --panel-2: #1C1610;
  --cream: #F0E7D6;
  --cream-dim: #CDBFA6;
  --muted: #90826A;
  --line: rgba(200, 162, 76, 0.22);
  --line-soft: rgba(200, 162, 76, 0.12);
  --gold: #C8A24C;
  --gold-light: #F6E5AE;
  --gold-deep: #9C7A30;
  --gold-grad: linear-gradient(135deg, #F6E5AE 0%, #DCBD6E 38%, #C8A24C 56%, #9C7A30 100%);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --deco: "Cinzel", Georgia, serif;
  --sans: "Jost", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--cream); font-family: var(--sans); font-weight: 300;
  line-height: 1.7; letter-spacing: 0.01em; background: var(--bg);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site { position: relative; z-index: 1; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; color: var(--cream); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); position: relative; }
.eyebrow { font-family: var(--deco); font-size: 12px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.gold-line::before { content: ""; display: inline-block; width: 40px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 14px; }
.section-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4.4vw, 48px); line-height: 1.1; }
.lead { font-family: var(--serif); font-size: clamp(16px, 2vw, 20px); color: var(--cream-dim); }

/* gold-foil text */
.brand, .price, .amt, .idx, .num { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-title {
  background: linear-gradient(100deg, #9C7A30 0%, #F6E5AE 30%, #DCBD6E 50%, #C8A24C 65%, #9C7A30 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--deco); font-size: 12.5px; font-weight: 500; cursor: pointer;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 14px 28px; border-radius: 999px;
  border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center;
  transition: transform .18s ease, box-shadow .25s ease, background .25s, color .25s, border-color .25s;
}
.btn-primary { background: var(--gold-grad); color: #241905; box-shadow: 0 10px 26px -10px rgba(200, 162, 76, 0.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(200, 162, 76, 0.6); filter: brightness(1.05); }
.btn-ghost { background: rgba(14, 11, 8, 0.3); color: var(--gold-light); border-color: rgba(200, 162, 76, 0.55); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(200, 162, 76, 0.1); transform: translateY(-2px); }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: var(--bg); transition: opacity .8s ease, visibility .8s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-mark { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); position: relative; animation: plpulse 1.6s ease-in-out infinite; }
.pl-mark::after { content: ""; position: absolute; inset: 11px; background: var(--bg); transform: rotate(45deg); }
.pl-text { font-family: var(--deco); font-size: 18px; letter-spacing: 0.3em; text-transform: uppercase; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s; }
.nav.scrolled { background: rgba(10, 8, 6, 0.82); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-soft); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--deco); font-size: 20px; font-weight: 600; letter-spacing: 0.05em; display: flex; align-items: center; gap: 11px; }
.mark { width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--gold-grad); position: relative; -webkit-mask: radial-gradient(circle at 50% 50%, transparent 39%, #000 40%); mask: radial-gradient(circle at 50% 50%, transparent 39%, #000 40%); }
.mark::after { content: ""; position: absolute; inset: 7px; background: var(--gold-grad); transform: rotate(45deg); border-radius: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; color: var(--cream-dim); transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--gold-light); }
.nav .btn { padding: 10px 20px; }

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 80; }
.burger span { width: 26px; height: 2px; background: var(--gold); transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.overlay-menu {
  position: fixed; inset: 0; z-index: 70; background: rgba(9, 7, 5, 0.97); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.overlay-menu.open { opacity: 1; visibility: visible; }
.overlay-menu nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.overlay-menu a { font-family: var(--serif); font-size: 30px; color: var(--cream); }
.overlay-menu a:hover { color: var(--gold); }
.overlay-note { font-family: var(--deco); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; left: 0; top: -15%; width: 100%; height: 130%; object-fit: cover; z-index: 0; animation: kenburns 24s ease-in-out infinite alternate; will-change: transform, scale; }
.hero-veil { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(10, 8, 6, 0.55) 0%, rgba(10, 8, 6, 0.2) 34%, rgba(10, 8, 6, 0.82) 100%),
  linear-gradient(90deg, rgba(10, 8, 6, 0.72), transparent 62%); }
.hero-in { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; max-width: 660px; padding: 120px 0 90px; }
.hero-title { font-family: var(--deco); font-weight: 700; font-size: clamp(48px, 9vw, 104px); line-height: 0.98; letter-spacing: 0.01em; }
.hero-sub { font-family: var(--serif); font-size: clamp(17px, 2.2vw, 22px); color: var(--cream-dim); max-width: 44ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; translate: -50% 0; z-index: 3; width: 26px; height: 42px; border: 1px solid rgba(200, 162, 76, 0.5); border-radius: 13px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-cue span { width: 3px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s ease infinite; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: #0b0906; padding: 15px 0; position: relative; z-index: 2; }
.marquee-track { display: flex; width: max-content; animation: marq 30s linear infinite; }
.marquee-track span { font-family: var(--deco); font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

/* ---------- sections ---------- */
.band { padding: clamp(64px, 9vw, 120px) 0; position: relative; z-index: 2; background: var(--bg); }
.sec-head { display: flex; flex-direction: column; gap: 13px; max-width: 60ch; }
.sec-head.center { align-items: center; text-align: center; margin: 0 auto; }
.sec-head p { color: var(--cream-dim); font-family: var(--serif); font-size: clamp(15px, 1.9vw, 18px); }

/* image frame */
.frame { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9); }
.frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4); pointer-events: none; border-radius: 14px; }
.frame img { width: 100%; height: 116%; margin-top: -8%; object-fit: cover; will-change: transform; }
.frame.tall { aspect-ratio: 4 / 5; }
.frame.tall img { height: 116%; }
.reveal-ready .frame img { opacity: 0; scale: 1.16; clip-path: inset(0 0 100% 0); transition: opacity 1s ease, scale 1.5s ease, clip-path 1.2s ease; }
.reveal-ready .frame.in img { opacity: 1; scale: 1; clip-path: inset(0 0 0 0); }
.frame:hover img { scale: 1.05; transition: scale .8s ease; }

/* craft */
.craft-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 54px; align-items: center; }
.craft .frame { aspect-ratio: 5 / 4; }
.craft-copy { display: flex; flex-direction: column; gap: 16px; }
.craft-copy .lead { margin-bottom: 8px; }
.feature-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic { width: 32px; height: 32px; color: var(--gold); flex: none; }
.feature-list h3 { font-size: 18px; margin-bottom: 2px; }
.feature-list p { font-size: 13.5px; color: var(--cream-dim); }
.stats { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--line-soft); }
.stat { display: flex; flex-direction: column; gap: 6px; }
.num { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4vw, 46px); line-height: 1; }
.num.nightly { font-size: clamp(28px, 3.4vw, 38px); }
.lbl { font-family: var(--deco); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* cocktails */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 70px; }
.feature-row.reverse .frame { order: 2; }
.feature-copy { display: flex; flex-direction: column; gap: 12px; }
.feature-copy .idx { font-family: var(--deco); font-weight: 700; font-size: 40px; line-height: 1; }
.feature-copy h3 { font-size: clamp(28px, 3.6vw, 40px); }
.feature-copy .notes { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold); }
.feature-copy .line { color: var(--cream-dim); max-width: 42ch; }
.feature-copy .price { font-family: var(--deco); font-weight: 700; font-size: 26px; margin-top: 6px; }

.menu-panel { position: relative; margin-top: 74px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(27, 22, 14, 0.5), rgba(14, 11, 8, 0.4)); padding: clamp(28px, 5vw, 52px); border-radius: 14px; }
.menu-panel::before { content: ""; position: absolute; inset: 11px; border: 1px solid var(--line-soft); pointer-events: none; border-radius: 10px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 56px; position: relative; }
.entry { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.entry .name { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--cream); }
.entry .dots { border-bottom: 1px dotted rgba(200, 162, 76, 0.4); transform: translateY(-4px); }
.entry .p { font-family: var(--deco); font-weight: 600; font-size: 16px; color: var(--gold-light); }
.entry .d { grid-column: 1 / -1; margin: 4px 0 0; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--muted); }

/* parallax testimonial */
.parallax { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; z-index: 2; }
.parallax-bg { position: absolute; left: 0; top: -16%; width: 100%; height: 132%; object-fit: cover; object-position: center 60%; z-index: 0; will-change: transform; }
.parallax-veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 50%, rgba(10, 8, 6, 0.55), rgba(8, 6, 4, 0.9)); }
.parallax-in { z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; padding: 70px 0; }
.parallax blockquote { margin: 18px auto 0; font-family: var(--serif); font-style: italic; font-size: clamp(26px, 4.6vw, 46px); line-height: 1.2; color: var(--cream); max-width: 20ch; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6); }
.parallax .cite { margin-top: 22px; font-size: 14px; color: var(--cream-dim); letter-spacing: 0.04em; }
.parallax .cite b { color: var(--gold-light); font-weight: 600; font-style: normal; }

/* experiences */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; align-items: stretch; }
.plan { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 18px; padding: 34px 28px; display: flex; flex-direction: column; gap: 17px; box-shadow: 0 16px 34px -26px rgba(0, 0, 0, 0.8); }
.plan.feature { border-color: rgba(200, 162, 76, 0.7); box-shadow: 0 30px 54px -28px rgba(200, 162, 76, 0.3); transform: translateY(-8px); background: linear-gradient(180deg, #221a0d, #14100a); }
.plan .tag { font-family: var(--deco); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.plan .name { font-family: var(--serif); font-weight: 600; font-size: 25px; }
.plan .amt { font-family: var(--deco); font-weight: 700; font-size: 40px; line-height: 1; }
.plan .amt span { font-family: var(--sans); font-size: 15px; color: var(--muted); font-weight: 400; -webkit-text-fill-color: var(--muted); }
.plan .desc { font-family: var(--serif); font-size: 15px; color: var(--cream-dim); }
.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { font-size: 14px; color: var(--cream-dim); display: flex; align-items: flex-start; gap: 10px; }
.plan li svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; }
.badge-top { display: inline-block; align-self: flex-start; background: var(--gold-grad); color: #241905; font-family: var(--deco); font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; margin-bottom: -4px; }

/* cta */
.cta { background: var(--gold-grad); color: #2a1d08; position: relative; overflow: hidden; }
.cta .glow2 { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 720px; height: 500px; background: radial-gradient(circle, rgba(255, 246, 220, 0.5), transparent 62%); pointer-events: none; }
.cta-in { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta .eyebrow { color: #5a3f12; }
.cta h2 { font-family: var(--deco); font-weight: 700; font-size: clamp(28px, 5vw, 50px); color: #241905; }
.cta p { color: #4a350f; font-family: var(--serif); font-size: 18px; max-width: 44ch; }
.signup { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; width: 100%; max-width: 470px; }
.signup input { flex: 1 1 220px; min-width: 0; font-family: var(--sans); font-size: 15px; padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(90, 63, 18, 0.35); background: rgba(255, 251, 242, 0.95); color: #2a1d08; }
.signup input::placeholder { color: #8a7038; }
.signup input:focus { outline: none; border-color: #2a1d08; box-shadow: 0 0 0 3px rgba(42, 29, 8, 0.18); }
.signup .btn { background: #17110a; color: var(--gold-light); border: none; }
.signup .btn:hover { background: #0c0805; transform: translateY(-2px); }
.form-msg { min-height: 18px; margin: 2px 0 0; font-family: var(--serif); font-style: italic; font-size: 16px; color: #2a1d08; opacity: 0; transition: opacity .4s ease; }
.form-msg.show { opacity: 1; }
.cta small { color: #4a350f; font-size: 12.5px; }

/* footer */
footer { background: #080604; color: var(--muted); border-top: 1px solid var(--line-soft); position: relative; z-index: 2; }
.foot-in { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; padding: 44px 0; }
.foot-brand { font-family: var(--deco); font-size: 20px; font-weight: 600; color: var(--cream); display: flex; align-items: center; gap: 11px; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-size: 14px; color: var(--cream-dim); transition: color .2s; }
.foot-links a:hover { color: var(--gold); }
.foot-legal { width: 100%; border-top: 1px solid rgba(200, 162, 76, 0.1); padding: 18px 0 8px; font-size: 12.5px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; letter-spacing: 0.03em; }

/* reveal */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(26px); }
[data-reveal] { transition: opacity .9s ease, transform .9s ease; }
.reveal-ready [data-reveal].in { opacity: 1; transform: none; }

/* keyframes */
@keyframes shimmer { to { background-position: 220% center; } }
@keyframes kenburns { from { scale: 1; } to { scale: 1.09; } }
@keyframes marq { to { transform: translateX(-50%); } }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } }
@keyframes plpulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.85); opacity: 0.7; } }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .craft-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .prices { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .plan.feature { transform: none; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse .frame { order: 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .stats { gap: 22px 30px; }
  .stat { flex: 1 1 40%; }
}
@media (max-width: 520px) {
  .feature-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .preloader { display: none; }
  .hero-title, .hero-bg, .marquee-track, .scroll-cue span, .pl-mark { animation: none; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
  .reveal-ready .frame img { opacity: 1; scale: 1; clip-path: none; }
  [data-parallax] { transform: none !important; }
  * { transition-duration: 0.001ms !important; }
}
