/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brass:       #c4a35a;
  --brass-dim:   #9c7f42;
  --brass-glow:  rgba(196, 163, 90, 0.15);
  --bg:          #0a0906;
  --bg-mid:      #0f0d0a;
  --bg-section:  #121009;
  --surface:     #1a1710;
  --text:        #e8e0d0;
  --text-muted:  #8a8070;
  --text-faint:  #4a443a;
  --line:        rgba(196, 163, 90, 0.18);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --nav-h:       72px;
  --section-pad: clamp(80px, 12vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.section-label.light { color: var(--brass); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--brass); }
.section-title.light { color: var(--text); }

.section-body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-body.light { color: rgba(232,224,208,0.7); }

.btn-primary {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--brass); color: var(--bg); }

.btn-secondary {
  display: inline-block;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--brass-dim);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.btn-secondary:hover { opacity: 0.7; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,9,6,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--brass);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover { background: var(--brass); color: var(--bg); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile menu ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: calc(var(--nav-h) + 40px) 40px 40px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--brass); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--text);
  line-height: 1;
  text-indent: 0.35em;
}

.hero-tagline {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Experience ───────────────────────────────────────────── */
.experience {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.pillar { }

.pillar-icon {
  font-size: 18px;
  color: var(--brass);
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Ritual ───────────────────────────────────────────────── */
.ritual {
  background: var(--bg-mid);
  padding: var(--section-pad) 0;
}

.ritual-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--line);
}

.menu-category {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
}
.menu-category:last-child { border-right: none; }

.menu-cat-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.menu-list { display: flex; flex-direction: column; gap: 28px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.item-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
}

.item-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brass);
  white-space: nowrap;
  margin-top: 2px;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 28px;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ── Space ────────────────────────────────────────────────── */
.space {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.space-block { }
.space-block--tall { grid-row: span 2; }

.space-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.space-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface) 0%, #201d16 100%);
}

/* Subtle texture patterns for placeholders */
.space-img-1 { min-height: 480px; }
.space-img-1::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 40% 60%, rgba(196,163,90,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 30%, rgba(196,163,90,0.04) 0%, transparent 60%);
}
.space-img-2::before, .space-img-3::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(196,163,90,0.04) 0%, transparent 70%);
}

.space-text {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.space-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── Reserve ──────────────────────────────────────────────── */
.reserve {
  padding: var(--section-pad) 0;
  background: var(--bg);
  text-align: center;
}

.reserve-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reserve-inner .section-body { text-align: center; max-width: 480px; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  padding: 18px 44px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
  border-radius: 2px;
}
.whatsapp-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

.reserve-hours {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--line);
  padding: 60px 0;
}

.footer-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--brass-dim);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brass); }

.footer-meta { text-align: right; }
.footer-meta p { font-size: 11px; color: var(--text-faint); line-height: 1.7; }

/* ── Reveal animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }

  .experience-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-category {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .menu-category:last-child { border-bottom: none; }

  .space-grid {
    grid-template-columns: 1fr;
  }
  .space-block--tall { grid-row: span 1; }
  .space-img-1 { min-height: 280px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-meta { text-align: center; }
}

@media (max-width: 600px) {
  .wordmark { letter-spacing: 0.2em; text-indent: 0.2em; }

  .menu-category { padding: 28px 20px; }

  .whatsapp-btn { padding: 16px 28px; font-size: 13px; }
}
