:root {
  --background: oklch(0.18 0.02 50);
  --foreground: oklch(0.96 0.02 80);
  --card: oklch(0.22 0.025 45);
  --primary: oklch(0.78 0.16 65);
  --primary-foreground: oklch(0.18 0.02 50);
  --secondary: oklch(0.55 0.18 35);
  --muted-foreground: oklch(0.78 0.03 75);
  --border: oklch(0.32 0.02 50);
  --gradient-warm: linear-gradient(135deg, oklch(0.55 0.18 35), oklch(0.78 0.16 65));
  --gradient-night: linear-gradient(180deg, oklch(0.14 0.02 50 / 0.2), oklch(0.12 0.02 50 / 0.95));
  --shadow-glow: 0 20px 60px -20px oklch(0.78 0.16 65 / 0.45);
  --shadow-soft: 0 10px 40px -15px oklch(0 0 0 / 0.6);
}
* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.01em; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--background) 70%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark {
  width: 2.25rem; height: 2.25rem; border-radius: 999px;
  background: var(--gradient-warm); color: var(--primary-foreground);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.logo-text { font-family: "Playfair Display", serif; font-size: 1.25rem; letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 2rem; font-size: 0.875rem; }
.nav a { color: var(--muted-foreground); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.nav-mobile { display: none; border-top: 1px solid var(--border); padding: 1rem 1.25rem; flex-direction: column; gap: 0.75rem; }
.nav-mobile.open { display: flex; }
@media (max-width: 767px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero { position: relative; isolate: isolate; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; z-index: -1; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: var(--gradient-night); }
.hero-content { padding: 6rem 0 8rem; }
@media (min-width: 768px) { .hero-content { padding: 10rem 0 11rem; } }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); }
.eyebrow::before { content: ""; display: inline-block; width: 2rem; height: 1px; background: var(--primary); }
.eyebrow.no-line::before { display: none; }
.eyebrow-secondary { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--secondary); }

.h1 { margin-top: 1.25rem; font-size: 3rem; max-width: 48rem; text-wrap: balance; }
@media (min-width: 768px) { .h1 { font-size: 4.5rem; } }
.h1 .accent { color: var(--primary); }
.lead { margin-top: 1.5rem; max-width: 32rem; font-size: 1.125rem; color: var(--muted-foreground); }

.cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-block; border-radius: 999px; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 500; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-glow); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 1px solid var(--border); background: transparent; color: var(--foreground); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Sections */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card {
  border-radius: 1rem; background: var(--card); padding: 1.5rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  box-shadow: var(--shadow-soft);
}
.card .icon { color: var(--primary); width: 24px; height: 24px; }
.card h3 { margin-top: 1rem; font-size: 1.25rem; }
.card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

.story-img { border-radius: 1.5rem; box-shadow: var(--shadow-soft); object-fit: cover; width: 100%; height: 420px; }
.story h2 { margin-top: 0.75rem; font-size: 2.25rem; text-wrap: balance; }
.story p { margin-top: 1rem; color: var(--muted-foreground); }
.story .more { margin-top: 1.5rem; display: inline-block; color: var(--primary); }
.story .more:hover { text-decoration: underline; }

/* Page header */
.page-head { padding: 4rem 0 3rem; }
.page-head h1 { margin-top: 1rem; font-size: 3rem; text-wrap: balance; }
@media (min-width: 768px) { .page-head h1 { font-size: 3.75rem; } }
.page-head p { margin-top: 1rem; color: var(--muted-foreground); max-width: 42rem; }

/* Menu */
.menu-section { margin-top: 3.5rem; }
.menu-section:first-child { margin-top: 0; }
.menu-section h2 { font-size: 1.875rem; color: var(--primary); }
.menu-list { margin-top: 1.5rem; }
.menu-item { display: flex; gap: 1.5rem; align-items: baseline; padding: 1rem 0; border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); }
.menu-item:first-child { border-top: none; }
.menu-item .info { flex: 1; }
.menu-item .name { font-weight: 500; }
.menu-item .desc { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.menu-item .price { font-family: "Playfair Display", serif; color: var(--secondary); white-space: nowrap; }

/* Schedule */
.sched-row { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); align-items: baseline; }
.sched-row:first-child { border-top: none; }
.sched-row .day { font-family: "Playfair Display", serif; color: var(--secondary); }
.sched-row .title { font-weight: 500; }
.sched-row .text { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* Contact */
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: 1rem; background: var(--card); border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); }
.contact-card .ic-wrap { width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--gradient-warm); color: var(--primary-foreground); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); }
.contact-card .value { margin-top: 0.25rem; font-weight: 500; }

.form { border-radius: 1rem; background: var(--card); border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.form h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: block; font-size: 0.875rem; margin-bottom: 1rem; }
.field span { color: var(--muted-foreground); }
.field input, .field textarea {
  margin-top: 0.25rem; width: 100%;
  border-radius: 0.375rem; background: var(--background);
  border: 1px solid var(--border); padding: 0.5rem 0.75rem; outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--primary); }
.btn-block { width: 100%; padding: 0.875rem; }

/* Footer */
.footer { margin-top: 6rem; border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: color-mix(in oklab, var(--card) 40%, transparent); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding: 3rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer p.sub { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); max-width: 20rem; }
.footer .info-row { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer .info-row svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer h4 { font-family: "Inter", sans-serif; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.footer ul { list-style: none; font-size: 0.875rem; color: var(--muted-foreground); }
.footer ul li { margin-bottom: 0.25rem; }
.footer ul a:hover { color: var(--primary); }
.copy { border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); padding: 1.25rem 0; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }
