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

/* === Tokens === */
:root {
  --bg:          #0D0B09;
  --surface:     #181411;
  --surface-2:   #231E1A;
  --accent:      #7CB26A;
  --accent-dark: #5A8A4E;
  --text:        #F4EFE4;
  --muted:       #9B8E83;
  --border:      #3E362F;
  --display:     'Cormorant Garamond', serif;
  --body:        'Inter', sans-serif;
  --mono:        'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* === Shared === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

h1 { font-size: clamp(3.8rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }

.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

/* === Navbar === */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(13, 11, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  color: var(--text);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--accent-dark) !important; }

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

/* === Mobile menu === */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#mobile-menu[hidden] { display: none; }
#mobile-menu ul { list-style: none; text-align: center; }
#mobile-menu li + li { margin-top: 2rem; }
#mobile-menu a {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--text); }

/* === Hero === */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 178, 106, 0.1);
}
.ring-1 {
  width: 640px;
  height: 640px;
  top: calc(50% - 320px);
  right: -180px;
  animation: spin 45s linear infinite;
}
.ring-1::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: -4px;
  left: calc(50% - 4px);
}
.ring-2 {
  width: 420px;
  height: 420px;
  top: calc(50% - 210px);
  right: 30px;
  border-color: rgba(124, 178, 106, 0.06);
  animation: spin 28s linear infinite reverse;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-content {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-content h1 { margin-bottom: 1.4rem; }
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--muted); color: var(--muted); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--border);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 44px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: slide 2.2s ease-in-out infinite;
}
@keyframes slide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* === Menu === */
#menu {
  padding: 8rem 0;
  background: var(--surface);
}
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { color: var(--text); }

.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.tab:hover { color: var(--text); }
.tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.menu-item {
  background: var(--surface);
  padding: 1.6rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.2s;
}
.menu-item:hover { background: var(--surface-2); }
.menu-item h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.menu-item p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  max-width: 220px;
}
.item-price {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
  white-space: nowrap;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* === About === */
#about { padding: 8rem 0; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5.5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-card svg { width: 55%; height: auto; }
.about-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--accent);
  color: var(--bg);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badge-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.badge-lbl {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  font-weight: 500;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === Visit === */
#visit {
  padding: 8rem 0;
  background: var(--surface);
}
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.visit-info h2 { margin-bottom: 2rem; }
.address-block { margin-bottom: 2.5rem; }
.address-line {
  color: var(--text);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.email-link {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.email-link:hover { color: var(--text); }
.hours { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.day {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}
.time {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
}

.visit-map {
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 11 / 8;
}
.visit-map svg { width: 100%; height: 100%; display: block; }

/* === Footer === */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.footer-tagline {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.copyright {
  color: var(--border);
  font-size: 0.72rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-rings { display: none; }
  .hero-sub br { display: none; }

  .about-layout,
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-badge { bottom: -0.75rem; right: 0.5rem; }
  .about-visual { margin-bottom: 1.5rem; }

  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 3.2rem; }
  .container { padding: 0 1.25rem; }
  #hero { padding: 7rem 1.25rem 4rem; }
  #menu, #about, #visit { padding: 5rem 0; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  .ring, .scroll-line::after { animation: none; }
  .reveal { transition: none; }
  html { scroll-behavior: auto; }
}

/* === Focus === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
