/* ===== Base & Variables ===== */
:root {
  --bg: #1a1512;
  --bg-elevated: #221c17;
  --bg-card: #251e18;
  --amber: #c17f4a;
  --amber-light: #e8a05c;
  --amber-glow: #f0a85c;
  --cream: #f5efe6;
  --cream-muted: #b6a897;
  --cream-dim: #8c8073;
  --border: rgba(193, 127, 74, 0.18);
  --border-strong: rgba(232, 160, 92, 0.4);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle wood-grain texture overlay across the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-linear-gradient(92deg,
      rgba(193,127,74,0.022) 0 2px,
      transparent 2px 6px),
    radial-gradient(120% 80% at 50% -10%, rgba(193,127,74,0.06), transparent 60%);
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

section { scroll-margin-top: 84px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--cream-muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.1rem;
}
.eyebrow.center { text-align: center; }

.amp, .amp-hero { color: var(--amber); font-style: italic; font-weight: 500; }

em { color: var(--cream); font-style: italic; }
strong { color: var(--amber-light); font-weight: 600; }

/* ===== Layout ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 760px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(20, 16, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--cream); }
.logo-mark { color: var(--amber-light); display: flex; }
.logo-text { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.01em; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.25s ease;
  padding: 0.3rem 0;
}
.nav a:hover { color: var(--cream); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--amber-light);
  transition: width 0.3s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--amber);
  color: var(--bg) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 55% at 50% 100%, rgba(193,127,74,0.28), transparent 70%),
    radial-gradient(50% 40% at 30% 95%, rgba(232,160,92,0.18), transparent 70%),
    radial-gradient(60% 45% at 75% 92%, rgba(193,127,74,0.16), transparent 70%),
    linear-gradient(180deg, #1a1512 0%, #201813 60%, #261b14 100%);
}
/* Warm ember horizon glow at base */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 40%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(240,168,92,0.22), transparent 75%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { margin-bottom: 1.1rem; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--cream);
  margin-bottom: 2.6rem;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: var(--amber);
  color: var(--bg);
  box-shadow: 0 8px 30px -10px rgba(232,160,92,0.6);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 12px 36px -10px rgba(232,160,92,0.7); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--amber-light); color: var(--amber-light); transform: translateY(-2px); }

/* Floating embers */
.hero-embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-embers span {
  position: absolute;
  bottom: -10px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber-glow);
  box-shadow: 0 0 8px 2px rgba(240,168,92,0.6);
  opacity: 0;
  animation: rise 9s linear infinite;
}
.hero-embers span:nth-child(1) { left: 12%; animation-delay: 0s; animation-duration: 10s; }
.hero-embers span:nth-child(2) { left: 25%; animation-delay: 2.5s; animation-duration: 12s; width: 3px; height: 3px; }
.hero-embers span:nth-child(3) { left: 40%; animation-delay: 5s; animation-duration: 9s; }
.hero-embers span:nth-child(4) { left: 55%; animation-delay: 1.2s; animation-duration: 11s; width: 5px; height: 5px; }
.hero-embers span:nth-child(5) { left: 66%; animation-delay: 4s; animation-duration: 13s; }
.hero-embers span:nth-child(6) { left: 78%; animation-delay: 6.5s; animation-duration: 10s; width: 3px; height: 3px; }
.hero-embers span:nth-child(7) { left: 88%; animation-delay: 3s; animation-duration: 12s; }
.hero-embers span:nth-child(8) { left: 95%; animation-delay: 7s; animation-duration: 9s; width: 5px; height: 5px; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.9; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue span {
  width: 3px; height: 8px;
  background: var(--amber-light);
  border-radius: 3px;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }

/* ===== About ===== */
.about { padding: 7rem 0 6rem; text-align: center; }
.about h2 { margin-bottom: 2.2rem; }
.about-body { text-align: left; }
.about-body p { font-size: 1.07rem; margin-bottom: 1.3rem; }
.about-body p:last-child { margin-bottom: 0; }

/* ===== Section head ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-sub { font-size: 1rem; }

/* ===== Menu ===== */
.menu { padding: 6rem 0; background: linear-gradient(180deg, transparent, rgba(193,127,74,0.04) 40%, transparent); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.7rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.menu-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: #2a2118; }
.menu-card:hover::before { opacity: 1; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; }
.card-top h3 { color: var(--cream); }
.price { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--amber-light); white-space: nowrap; }
.menu-card p { font-size: 0.95rem; }

/* ===== Visit / Hours ===== */
.visit { padding: 7rem 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.visit-col h2 { margin-bottom: 1.8rem; }
.address, .phone { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.1rem; color: var(--amber-light); }
.address p, .phone p { color: var(--cream); font-size: 1.05rem; }
.addr-line { margin: 0; line-height: 1.5; }

.hours {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 2rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:first-of-type { padding-top: 0; }
.hours-row:last-of-type { border-bottom: none; padding-bottom: 1.2rem; }
.day { color: var(--cream); font-weight: 500; }
.time { color: var(--amber-light); font-weight: 500; }
.hours-note {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--cream-dim);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.25));
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--cream); }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--cream-muted); margin-top: 0.3rem; font-size: 0.98rem; }
.footer-social { display: flex; gap: 0.8rem; }
.social {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.social:hover { color: var(--amber-light); border-color: var(--border-strong); background: rgba(193,127,74,0.08); transform: translateY(-2px); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.85rem; color: var(--cream-dim); text-align: center; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::after, .hero-embers span, .scroll-cue span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    background: rgba(20, 16, 14, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5rem 2.5rem 2rem;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; }
  .nav-cta { align-self: flex-start; }

  .visit-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 560px) {
  .hero { padding-top: 6rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .btn { width: 100%; text-align: center; }
  .about, .menu, .visit { padding-top: 5rem; padding-bottom: 5rem; }
  .hours { padding: 1.5rem 1.4rem; }
  .hours-row { flex-direction: column; align-items: flex-start; gap: 0.15rem; padding: 0.8rem 0; }
}

/* Lock scroll when mobile menu open */
body.nav-locked { overflow: hidden; }
