:root {
  --ink: #07070b;
  --espresso: #0c0c12;
  --panel: #14141c;
  --gold: #e0c36a;
  --gold-soft: #f0dc98;
  --cyan: #3ee0ff;
  --magenta: #ff3d9a;
  --neon-red: #ff4b3a;
  --cream: #f6efe2;
  --muted: #9a93a8;
  --line: rgba(224, 195, 106, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(255, 61, 154, 0.16), transparent 50%),
    radial-gradient(900px 500px at 100% 0%, rgba(62, 224, 255, 0.12), transparent 46%),
    var(--ink);
  color: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 11, 0.86);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--cream); }
.brand img {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: center 42%;
  border: 1px solid var(--gold);
  box-shadow: 0 0 18px rgba(224, 195, 106, 0.25);
  background: #000;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text span { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.25rem; color: var(--cream); font-size: 0.92rem; }
.nav-links a:hover { color: var(--cyan); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.2rem; border-radius: 999px; font-weight: 700;
  letter-spacing: 0.04em; border: 1px solid transparent; cursor: pointer;
}
.btn-gold {
  background: var(--gold); color: #14100a;
  box-shadow: 0 0 24px rgba(224, 195, 106, 0.28);
}
.btn-ghost {
  background: transparent; color: var(--cream);
  border-color: rgba(62, 224, 255, 0.45);
}
.btn-ghost:hover { border-color: var(--magenta); color: #fff; }
.btn-dark {
  background: linear-gradient(90deg, var(--magenta), #ff6a3d);
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 61, 154, 0.28);
}
.menu-toggle {
  display: none; background: none; border: 0; color: var(--cream); font-size: 1.4rem; cursor: pointer;
}

.hero {
  position: relative; min-height: 88vh;
  background:
    linear-gradient(180deg, rgba(7,7,11,0.28), rgba(7,7,11,0.88)),
    url("../images/hero.jpg") center 28%/cover no-repeat;
  color: var(--cream);
  display: grid; align-items: end;
}
.hero-inner { padding: 5rem 0 4rem; }
.kicker {
  color: var(--cyan); letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.78rem; margin-bottom: 0.75rem;
  text-shadow: 0 0 16px rgba(62, 224, 255, 0.35);
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.9; font-weight: 600; max-width: 12ch;
}
.hero p { max-width: 38ch; margin: 1.2rem 0 1.8rem; color: #efe4d0; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

section { padding: 5rem 0; }
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1;
}
.lede { color: var(--muted); max-width: 54ch; margin-top: 0.8rem; }

.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem;
}
.card {
  background: var(--panel); border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(224, 195, 106, 0.16);
  box-shadow: var(--shadow);
}
.card img { height: 220px; width: 100%; object-fit: cover; }
.card-body { padding: 1.2rem 1.25rem 1.4rem; }
.card h3 { font-size: 1.2rem; color: var(--gold-soft); }
.card p { color: var(--muted); font-size: 0.95rem; margin-top: 0.35rem; }
.item-list { margin-top: 1rem; display: grid; gap: 0.7rem; }
.item { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed rgba(224, 195, 106, 0.22); padding-bottom: 0.55rem; }
.item span { color: var(--cyan); font-size: 0.92rem; }
.note { margin-top: 1.4rem; color: var(--muted); font-size: 0.9rem; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center; }
.split img { border-radius: 28px; height: 460px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.6rem; }
.pill {
  border: 1px solid rgba(255, 61, 154, 0.35); background: rgba(255, 61, 154, 0.08);
  color: #ffd0e6; border-radius: 999px; padding: 0.4rem 0.75rem; font-size: 0.85rem;
}

.schedule {
  background: linear-gradient(180deg, #0a0a12, #120814);
  border-block: 1px solid var(--line);
}
.schedule .lede { color: #c9bba5; }
.spots { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.spot {
  border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem;
  background: rgba(255,255,255,0.03);
}
.spot strong { display: block; color: var(--gold-soft); margin-bottom: 0.3rem; }

form { display: grid; gap: 0.85rem; margin-top: 1.4rem; }
input, textarea, select {
  width: 100%; border: 1px solid rgba(224, 195, 106, 0.28);
  background: var(--panel); border-radius: 14px; padding: 0.85rem 1rem;
  font: inherit; color: var(--cream);
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-status { min-height: 1.4rem; font-size: 0.92rem; color: var(--gold-soft); }

footer {
  background: #050508; color: #cbbda8; padding: 2.2rem 0;
  font-size: 0.9rem; border-top: 1px solid var(--line);
}
.foot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
footer a:hover { color: var(--cyan); }

@media (max-width: 860px) {
  .nav-links, .nav .btn { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 84px;
    background: #0b0b12; padding: 1rem 1.2rem 1.4rem; gap: 0.9rem;
  }
  .menu-toggle { display: block; }
  .menu-grid, .split, .spots, .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; align-items: center; }
  .split img { height: 280px; }
}
