@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #f5f1ea;
  --ink: #1a1a1a;
  --muted: #6b6358;
  --rule: #d8d0c2;
  --accent: #8a6f3f;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.site {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
}

header.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 5rem;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand .dot { color: var(--accent); }

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

nav a {
  color: var(--muted);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav a:hover, nav a.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--muted);
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

p { margin-bottom: 1.25rem; max-width: 60ch; color: #2a2a2a; }
p.lede { font-size: 1.15rem; color: var(--muted); font-weight: 300; }

.hero {
  text-align: center;
  padding: 5rem 0 6rem;
}

.hero .est {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--muted);
  max-width: 32ch;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.btn:hover { background: var(--ink); color: var(--bg); }

.divider {
  text-align: center;
  margin: 4rem 0;
  color: var(--accent);
  letter-spacing: 0.4em;
}

.menu-section { max-width: 720px; margin: 0 auto; }

.menu-header {
  text-align: center;
  margin-bottom: 5rem;
}

.menu-header h1 { font-size: clamp(2.5rem, 6vw, 4rem); }

.course {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.course:last-child { border-bottom: none; }

.course-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.4rem;
}

.course-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.course-desc {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.pairing {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.75rem;
}

.price-block {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
}

.price-block .price {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price-block .note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.chef-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.chef-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #2a2826 0%, #4a443c 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.chef-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,240,200,0.08), transparent 60%);
}

.chef-photo .caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: rgba(245,241,234,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.quote {
  text-align: center;
  padding: 2rem 0;
}

.quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.quote cite {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.quote cite strong { color: var(--ink); font-weight: 500; }

form.reservation {
  max-width: 480px;
  margin: 0 auto;
}

.form-row { margin-bottom: 1.5rem; }

.form-row label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-row input, .form-row select {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.form-row input:focus, .form-row select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.notice {
  text-align: center;
  padding: 2rem;
  margin: 3rem 0;
  border: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
}

footer.foot {
  margin-top: 8rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  font-size: 0.85rem;
  color: var(--muted);
}

footer.foot h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
}

footer.foot p { font-size: 0.8rem; margin-bottom: 0.4rem; }

.legal {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.disclaimer {
  text-align: center;
  max-width: 60ch;
  margin: 1.5rem auto 0;
  font-size: 0.7rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--muted);
}

@media (max-width: 720px) {
  .site { padding: 1.5rem 1.25rem 3rem; }
  header.nav { flex-direction: column; gap: 1.5rem; padding-bottom: 1.5rem; margin-bottom: 3rem; }
  nav ul { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .chef-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  footer.foot { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .course { grid-template-columns: 1fr; gap: 0.5rem; }
}
