:root {
  --bg: #f4ece2;
  --bg-soft: #f3e8dc;
  --panel: #fffaf4;
  --panel-2: #f8efe3;
  --text: #4b3425;
  --muted: #7e6653;
  --brown: #6d4a36;
  --brown-dark: #573927;
  --olive: #7b7518;
  --olive-deep: #656111;
  --olive-soft: #9a9451;
  --border: #e5d2bf;
  --shadow: 0 18px 45px rgba(89, 61, 42, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 139, 0.18), transparent 25%),
    radial-gradient(circle at bottom left, rgba(109, 74, 54, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.8; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 245, 238, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: #fffdf9;
  padding: 6px;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label,
.mini-box span,
.badge,
.pill {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
}

.eyebrow,
.section-label,
.mini-box span {
  color: var(--olive-soft);
}

.brand-name {
  font-size: 1.95rem;
  color: var(--olive);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a,
.footer-links a,
.mobile-nav a {
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover,
.mobile-nav a:hover {
  color: var(--olive);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--olive);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 20px;
}
.mobile-nav.open { display: flex; }

.hero {
  padding: 26px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-block;
  border: 1px solid var(--border);
  background: #fff9f3;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--olive);
  margin-bottom: 20px;
}

.hero-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  max-width: 760px;
}

.hero-text {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.quick-facts {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.fact-card span {
  display: block;
  color: var(--olive-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.fact-card strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-dark {
  background: var(--olive);
  color: #fffaf4;
}

.btn-dark:hover { background: var(--olive-deep); }

.btn-light {
  background: #fffaf4;
  color: var(--brown);
  border-color: var(--border);
}

.btn-light:hover { background: #f3e6d8; }

.btn-outline {
  border-color: rgba(255, 250, 244, 0.35);
  color: #fffaf4;
}

.btn-outline:hover { background: rgba(255, 250, 244, 0.08); }

.hero-card,
.panel,
.info-card,
.menu-card,
.delivery-card,
.fact-card {
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.card-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.badge {
  padding: 8px 12px;
  background: var(--panel-2);
  border-radius: 999px;
  color: var(--olive);
}

.subtle {
  color: var(--olive-soft);
  font-size: 0.95rem;
}

.hero-card h3 {
  margin-top: 20px;
  font-size: 2.35rem;
  color: var(--olive-deep);
}

.hero-card p {
  margin-top: 14px;
  color: var(--muted);
}

.mini-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-box {
  background: var(--bg);
  border-radius: 20px;
  padding: 18px;
}

.mini-box strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  font-family: "Cormorant Garamond", serif;
}

.highlights { padding: 10px 0 30px; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }

.about-grid,
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.panel {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.light-panel {
  background: var(--panel);
  border: 1px solid var(--border);
}

.dark-panel {
  background: linear-gradient(135deg, #6e4b37, #5d3f2e);
  color: #fff8f2;
}

.dark-panel p,
.dark-panel li {
  color: #f1e6dd;
}

.section-label { margin-bottom: 16px; }
.section-label.light { color: #ead2be; }

.panel h3,
.section-head h3 {
  font-size: 2.7rem;
  line-height: 1;
}

.feature-list {
  margin: 22px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  line-height: 1.75;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 28px;
}

.section-copy {
  max-width: 500px;
  color: var(--muted);
}

.menu-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  background: #fffaf4;
  color: var(--olive);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--olive);
  color: #fffaf4;
  border-color: var(--olive);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-card.hidden { display: none; }
.menu-card:hover { transform: translateY(-4px); }

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

.menu-top h4 {
  font-size: 1.7rem;
  color: var(--olive-deep);
}

.menu-top span {
  background: var(--panel-2);
  color: var(--olive);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.visit-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.visit-info h4 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.status-box {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 250, 244, 0.1);
  border: 1px solid rgba(255, 250, 244, 0.18);
  padding: 12px 16px;
  border-radius: 999px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbb09a;
}

.status-dot.open { background: #89c37d; }
.status-dot.closed { background: #d88d7b; }

.map-panel h3 { margin-bottom: 18px; }

.map-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.delivery-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.delivery-card:hover {
  transform: translateY(-4px);
  border-color: var(--olive-soft);
}

.delivery-card h4 {
  font-size: 2rem;
  color: var(--olive-deep);
  margin-bottom: 8px;
}

.delivery-card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.delivery-card span {
  color: var(--olive);
  font-weight: 700;
}

.contact-section .light-panel {
  text-align: center;
}

.contact-copy {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(251, 245, 238, 0.95);
}

.footer-row {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.desktop-only { display: inline-flex; }

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .mobile-toggle { display: inline-flex; }

  .hero-grid,
  .about-grid,
  .visit-grid,
  .section-head,
  .grid-4,
  .menu-grid,
  .delivery-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .section-head { align-items: start; }
  .hero { padding-top: 28px; }
  .hero-copy h2 { font-size: 3rem; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1120px); }
  .nav { min-height: 74px; }
  .brand-name { font-size: 1.5rem; }
  .hero-copy h2 { font-size: 2.5rem; }

  .panel,
  .hero-card,
  .menu-card,
  .delivery-card {
    padding: 22px;
  }

  .mini-grid,
  .visit-info,
  .footer-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-row { padding: 18px 0; }
  .footer-links { gap: 16px; flex-wrap: wrap; }
  .map-wrap iframe { height: 300px; }
}
