:root {
  --cream: #f7f2ea;
  --cream-2: #efe7d8;
  --ink: #1c1712;
  --ink-soft: #4a423a;
  --coffee: #6b4a34;
  --coffee-dark: #4a3122;
  --line: rgba(28, 23, 18, 0.15);
  --serif: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-line1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
}
.brand-rule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--coffee);
  margin-top: 0.3rem;
}
.brand-rule span { width: 18px; height: 1px; background: var(--coffee); display: block; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-order-btn {
  flex-shrink: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.55rem 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-order-btn:hover { background: transparent; color: var(--ink); }
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--coffee);
  margin: 0 0 1rem;
}
.hero-title {
  margin: 0;
  display: flex;
  justify-content: center;
}
.hero-logo {
  height: clamp(130px, 24vw, 240px);
  width: auto;
}
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem 0 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
}
.hero-rule span { width: 48px; height: 1px; background: var(--line); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 2.4rem;
}
.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 0.9rem 2.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn:hover { background: var(--ink); color: var(--cream); }

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: transparent; color: var(--ink); }

/* Section headings shared */
.section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--coffee);
  margin: 0 0 0.8rem;
}
.section-kicker.light { color: #cbb89a; }
.section-title {
  text-align: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 2.5rem;
}
.section-title.light { color: var(--cream); }
.section-title.small { font-size: 1.5rem; margin-bottom: 1.6rem; }

/* About */
.about { padding: 5rem 1.5rem; border-top: 1px solid var(--line); }
.about-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.about-text { font-size: 1.02rem; line-height: 1.85; color: var(--ink-soft); }

/* Menu */
.menu {
  background: var(--ink);
  color: var(--cream);
  padding: 5.5rem 1.5rem;
}
.menu-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}
.menu-category h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #d8c9a8;
  border-bottom: 1px solid rgba(247,242,234,0.18);
  padding-bottom: 0.6rem;
  margin: 0 0 1rem;
}
.menu-category h3:not(:first-child) { margin-top: 2.4rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
}
.item-name { white-space: nowrap; }
.item-variant {
  font-size: 0.75rem;
  color: #b8a988;
  font-style: italic;
  white-space: nowrap;
}
.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(247,242,234,0.28);
  margin-bottom: 0.3rem;
}
.item-price { white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-note {
  text-align: center;
  max-width: 1080px;
  margin: 3rem auto 0;
  font-size: 0.78rem;
  color: #a89878;
}

/* Hours */
.hours { padding: 5.5rem 1.5rem; }
.hours-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: center;
}
.hours-list { list-style: none; margin: 0 0 0.6rem; padding: 0; max-width: 280px; margin-inline: auto; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.address { font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft); }
.placeholder-note { font-size: 0.72rem; color: #a89878; font-style: italic; margin-top: 0.8rem; }

/* Footer */
.site-footer {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.5rem 2.5rem;
}
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; justify-content: center; margin: 0 auto 1.8rem; }
.footer-logo { height: 60px; width: auto; }
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  padding: 0;
  margin: 0 0 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-copy { font-size: 0.75rem; color: #a89878; margin: 0; }
.footer-copy + .footer-copy { margin-top: 0.35rem; }

/* Responsive */
@media (max-width: 800px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hours-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 1rem 1.5rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
}
