@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: oklch(72% 0.13 82);
  --gold-light: oklch(85% 0.10 82);
  --red: oklch(32% 0.13 25);
  --red-mid: oklch(40% 0.15 25);
  --cream: oklch(97% 0.015 80);
  --cream-dark: oklch(93% 0.02 78);
  --text: oklch(18% 0.02 50);
  --text-mid: oklch(45% 0.02 50);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-order {
  background: var(--gold);
  color: var(--red) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-order:hover {
  background: var(--gold-light) !important;
  color: var(--red) !important;
}

/* ─── HERO ─── */
.hero {
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 72px;
  gap: 16px;
}

.hero-logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--gold);
  line-height: 1;
  text-wrap: nowrap;
}

.hero-logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-style: italic;
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(85% 0.04 80);
  margin-top: 8px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
  margin: 8px auto;
}

.hero-info {
  color: oklch(90% 0.02 80);
  font-size: 0.95rem;
  line-height: 2;
}

.hero-info a {
  color: oklch(90% 0.02 80);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-info a:hover { color: var(--gold-light); }

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--red);
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--red);
}

/* ─── MEAL BANDS ─── */
.meal-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.meal-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 32px;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  transition: filter 0.2s;
}

.meal-band:nth-child(1) { background: var(--cream-dark); }
.meal-band:nth-child(2) { background: var(--cream); }
.meal-band:nth-child(3) { background: var(--cream-dark); }

.meal-band:hover { filter: brightness(0.96); }

.meal-band-icon {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.meal-band h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 600;
}

.meal-band p {
  font-size: 0.88rem;
  color: var(--text-mid);
  max-width: 220px;
  line-height: 1.5;
}

.meal-band .band-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ─── IMAGE PLACEHOLDER ─── */
.img-placeholder {
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    oklch(90% 0.02 78),
    oklch(90% 0.02 78) 10px,
    oklch(87% 0.025 78) 10px,
    oklch(87% 0.025 78) 20px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-mid);
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
}

/* ─── INFO STRIP ─── */
.info-strip {
  background: var(--red);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.info-cell {
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.info-cell h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
}

.info-cell p, .info-cell a {
  color: oklch(88% 0.02 80);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.8;
}

.info-cell a:hover { color: var(--gold-light); }

/* ─── FOOTER ─── */
footer {
  background: oklch(14% 0.02 50);
  color: oklch(60% 0.02 80);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ─── MENU PAGE ─── */
.page-header {
  background: var(--red);
  padding: 52px 24px 48px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
}

.page-header p {
  color: oklch(85% 0.03 80);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--cream-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 64px;
  z-index: 10;
}

.menu-tab {
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.menu-tab:hover { color: var(--red); }

.menu-tab.active {
  color: var(--red);
  border-bottom-color: var(--gold);
}

.menu-section {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.menu-section.visible { display: block; }

.menu-category {
  margin-bottom: 48px;
}

.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid oklch(90% 0.015 80);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-left { flex: 1; }

.menu-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.menu-item-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.4;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--red-mid);
  white-space: nowrap;
  font-weight: 600;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.contact-block p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
}

.contact-block a {
  color: var(--red-mid);
  text-decoration: none;
}

.contact-block a:hover { text-decoration: underline; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid oklch(90% 0.015 80);
  vertical-align: top;
}

.hours-table td:first-child {
  font-weight: 700;
  width: 55%;
  color: var(--text);
}

.hours-table td:last-child { color: var(--text-mid); }

.map-placeholder {
  margin-top: 32px;
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
}

.photo-strip-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 700px) {
  nav { padding: 0 16px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 0.06em; }
  .nav-order { padding: 7px 12px; font-size: 0.75rem; }
  .meal-bands { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-tab { padding: 14px 18px; font-size: 0.75rem; }

  .photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-strip-img {
    height: 220px;
    width: 100%;
  }
}
