:root {
  --bg: #0b0907;
  --bg-2: #120f0c;
  --bg-3: #1a1510;
  --ink: #f6efe4;
  --muted: #b9ab96;
  --gold: #c9a56a;
  --gold-2: #e3c58a;
  --line: rgba(201, 165, 106, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --font: "Outfit", sans-serif;
  --serif: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--serif);
  font-size: 42px; letter-spacing: .4em;
  display: block; text-align: center; margin-bottom: 18px;
}
.preloader-bar {
  width: 180px; height: 1px; background: #2a231c; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0; background: var(--gold);
  animation: load 1.4s ease forwards;
}
@keyframes load { to { width: 100%; } }

.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  transition: width .2s, height .2s, background .2s;
}
.cursor.grow { width: 70px; height: 70px; background: rgba(201,165,106,.12); }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .3s, backdrop-filter .3s, border .3s;
}
.header.scrolled {
  background: rgba(11,9,7,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px; border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--gold);
}
.logo-text { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 13px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; background: none; border: 0; width: 32px; height: 20px; position: relative;
}
.menu-toggle span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ink);
}
.menu-toggle span:first-child { top: 4px; }
.menu-toggle span:last-child { bottom: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 999px;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: .25s ease;
}
.btn-gold { background: var(--gold); color: #1a130b; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(201,165,106,.12); }
.btn-ghost { color: var(--muted); }
.btn-lg { padding: 16px 28px; }
.btn-block { width: 100%; }

.hero { position: relative; min-height: 100vh; display: grid; place-items: end start; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: ken 18s ease-in-out infinite alternate; }
@keyframes ken { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,9,7,.35) 0%, rgba(11,9,7,.55) 40%, rgba(11,9,7,.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 8vw 14vh; max-width: 980px; }
.eyebrow {
  color: var(--gold); letter-spacing: .28em; text-transform: uppercase;
  font-size: 12px; margin-bottom: 16px;
}
.hero-title {
  font-family: var(--serif); font-weight: 500; line-height: .92;
  font-size: clamp(48px, 8vw, 118px); margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span, .hero-title .line em {
  display: inline-block; animation: rise 1.1s cubic-bezier(.16,1,.3,1) both;
}
.hero-title .line:nth-child(2) em { animation-delay: .12s; font-style: italic; color: var(--gold-2); }
.hero-title .line:nth-child(3) span { animation-delay: .22s; }
@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }
.hero-lead { max-width: 520px; color: var(--muted); margin-bottom: 28px; font-size: 17px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-meta { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta strong { display: block; font-size: 14px; }
.hero-meta span { color: var(--muted); font-size: 13px; }
.scroll-hint {
  position: absolute; right: 40px; bottom: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.scroll-hint i {
  width: 1px; height: 56px; background: linear-gradient(var(--gold), transparent);
  animation: drip 1.6s ease infinite;
}
@keyframes drip { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 16px 0; }
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: slide 28s linear infinite;
  font-family: var(--serif); font-size: 22px; color: var(--gold);
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.experience { padding: 110px 0; }
.section-head { margin-bottom: 48px; }
.section-head h2, .story-copy h2, .reserve-copy h2, .visit h2, .proof-copy h2 {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 64px); font-weight: 500; line-height: 1.05;
}
.section-head.split { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.section-head.center { text-align: center; }
.section-lead { max-width: 360px; color: var(--muted); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card {
  padding: 32px 28px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .35s ease, border-color .35s;
}
.exp-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.exp-num { color: var(--gold); font-family: var(--serif); font-size: 28px; margin-bottom: 18px; }
.exp-card h3 { font-size: 20px; margin-bottom: 10px; }
.exp-card p { color: var(--muted); }

.story {
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px;
}
.story-media { position: relative; overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute; left: 28px; bottom: 28px;
  background: rgba(11,9,7,.8); backdrop-filter: blur(10px);
  padding: 16px 20px; border: 1px solid var(--line);
}
.story-badge strong { display: block; font-family: var(--serif); font-size: 24px; }
.story-copy { padding: 80px 64px; background: var(--bg-2); display: flex; flex-direction: column; justify-content: center; }
.story-copy p { color: var(--muted); margin-bottom: 16px; }
.story-list { list-style: none; margin: 16px 0 28px; }
.story-list li { padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid var(--line); }
.story-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

.signature, .menu, .proof, .visit { padding: 110px 0; }
.signature-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px;
}
.sig-card { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 240px; }
.sig-card.featured { grid-row: span 2; min-height: 520px; }
.sig-img { position: absolute; inset: 0; }
.sig-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.sig-card:hover img { transform: scale(1.08); }
.sig-body {
  position: absolute; inset: auto 0 0; padding: 28px;
  background: linear-gradient(transparent, rgba(11,9,7,.92));
}
.tag {
  display: inline-block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.sig-body h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.sig-body p { color: var(--muted); margin-top: 6px; }

.menu { background: var(--bg-2); }
.menu-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.tab {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 10px 18px; border-radius: 999px; cursor: pointer; letter-spacing: .1em; text-transform: uppercase; font-size: 12px;
}
.tab.is-active { border-color: var(--gold); color: var(--gold); }
.menu-panel { display: none; max-width: 760px; margin: 0 auto; }
.menu-panel.is-active { display: block; }
.menu-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.menu-item h4 { font-size: 20px; font-family: var(--serif); font-weight: 500; }
.menu-item p { color: var(--muted); }
.menu-cta { display: flex; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.gallery { overflow: hidden; padding: 0 0 40px; }
.gallery-track { display: flex; gap: 16px; padding: 0 20px; }
.gallery figure { min-width: 280px; flex: 1; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery img { width: 100%; height: 360px; object-fit: cover; filter: saturate(.9); transition: transform .6s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 16px; bottom: 16px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}

.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.stats { display: flex; gap: 32px; margin-top: 32px; }
.stat strong { display: block; font-family: var(--serif); font-size: 48px; color: var(--gold); line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.quotes blockquote {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 16px;
}
.quotes p { font-family: var(--serif); font-size: 24px; font-style: italic; line-height: 1.35; }
.quotes cite { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-style: normal; }

.reserve { position: relative; padding: 110px 0; }
.reserve-bg { position: absolute; inset: 0; }
.reserve-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.28); }
.reserve-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.reserve-copy p { color: var(--muted); margin: 16px 0 24px; }
.reserve-perks { list-style: none; }
.reserve-perks li { padding: 8px 0 8px 18px; position: relative; }
.reserve-perks li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.reserve-form {
  background: rgba(18,15,12,.88); border: 1px solid var(--line);
  border-radius: 24px; padding: 32px; backdrop-filter: blur(12px);
  display: grid; gap: 14px;
}
.reserve-form label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: grid; gap: 8px; }
.reserve-form input, .reserve-form select, .reserve-form textarea {
  background: #0e0c0a; border: 1px solid var(--line); color: var(--ink);
  padding: 14px 14px; border-radius: 12px; outline: none;
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; }

.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; }
address { font-style: normal; color: var(--muted); margin: 16px 0 24px; }
.visit-meta { display: grid; gap: 14px; margin-bottom: 28px; }
.visit-meta strong { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.visit-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.map-wrap { min-height: 420px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(1) contrast(1.1) brightness(.85); }

.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 36px; }
.footer p, .footer a { color: var(--muted); display: block; margin: 6px 0; }
.footer h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.copy { text-align: center; color: #6f6454; font-size: 12px; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  animation: pulse 2.4s ease infinite;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .cursor, .cursor-dot { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: #120f0c; flex-direction: column; padding: 90px 32px;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav.open { transform: none; }
  .menu-toggle { display: block; }
  .experience-grid, .signature-grid, .story, .proof-grid, .reserve-wrap, .visit-grid, .footer-grid, .form-row, .section-head.split {
    grid-template-columns: 1fr;
  }
  .sig-card.featured { grid-row: auto; min-height: 380px; }
  .story-copy { padding: 48px 24px; }
  .hero-content { padding: 0 24px 110px; }
  .header { padding: 14px 18px; }
  .btn-ghost { display: none; }
}
