*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, form { margin: 0; padding: 0; }
li { list-style: none; }
button, input, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --cream: #f7f0e6;
  --panel: #efe4d2;
  --ink: #2b2420;
  --muted: color-mix(in srgb, var(--ink) 66%, transparent);
  --copper: #b5651d;
  --copper-deep: #8f4f16;
  --fig: #5b3a56;
  --line: #e3d7c4;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Mulish", sans-serif;
  --max: 900px;
  --gutter: clamp(20px, 5vw, 56px);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }

.nav, main > section { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- nav ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 24px; }
.nav__mark { width: 28px; height: 28px; border-radius: 999px; background: var(--fig); position: relative; flex: none; }
.nav__mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--cream);
  clip-path: path("M8 0C12 3 14 7 12 10 10.5 12 6.5 12 5 10 3 7 5 3 8 0z");
}
.nav__links { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); font-weight: 500; font-size: 15px; }
.nav__links a:not(.btn):hover { color: var(--copper-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--primary { background: var(--copper); color: var(--cream); }
.btn--primary:hover { background: var(--copper-deep); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--copper); }
.btn:active { transform: translateY(1px); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(56px, 9vw, 110px); text-align: center; }
.hero__eyebrow { color: var(--copper); font-weight: 600; font-size: 14px; letter-spacing: 0.03em; margin-bottom: 18px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--fig); font-weight: 500; }
.hero__sub { margin: 22px auto 0; font-size: 17px; color: var(--muted); max-width: 46ch; }
.hero__actions { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ---------- section shared ---------- */
.section-eyebrow { color: var(--copper); font-weight: 600; font-size: 14px; margin-bottom: 8px; text-align: center; }
.menu h2, .about h2, .reserve__intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 42px);
}
.menu h2 { text-align: center; margin-bottom: 44px; }

/* ---------- menu ---------- */
.menu { padding-block: clamp(48px, 7vw, 88px); }
.menu__group { max-width: 620px; margin: 0 auto 40px; }
.menu__group h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--fig);
  margin-bottom: 16px;
  text-align: center;
}
.menu__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
}
.menu__name { font-weight: 600; font-size: 16px; }
.menu__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu__price { font-weight: 700; color: var(--copper-deep); font-size: 15px; }

/* ---------- about ---------- */
.about { padding-block: clamp(40px, 6vw, 72px); text-align: center; max-width: 640px; }
.about h2 { margin-bottom: 20px; }
.about p { color: var(--muted); font-size: 17px; }

/* ---------- reserve ---------- */
.reserve { padding-block: clamp(48px, 7vw, 88px); }
.reserve__intro { text-align: center; margin-bottom: 32px; }
.reserve__intro p:last-child { margin-top: 12px; color: var(--muted); }
.reserve-card { background: var(--panel); border-radius: 20px; padding: clamp(24px, 4vw, 40px); max-width: 560px; margin: 0 auto; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row .field { margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field select {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
}
.field input:focus, .field select:focus { border-color: var(--copper); }
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.time-slot.is-selected { background: var(--fig); border-color: var(--fig); color: var(--cream); }
.field-error { color: var(--copper-deep); font-size: 13px; margin-top: 8px; }
.reserve-card__submit { width: 100%; margin-top: 6px; }
.reserve-card__note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }

.reserve-confirm { text-align: center; padding: 12px 0; }
.reserve-confirm__mark {
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--fig); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 18px;
}
.reserve-confirm h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin-bottom: 10px; }
.reserve-confirm p { color: var(--muted); margin-bottom: 20px; }

/* ---------- hours ---------- */
.hours {
  padding-block: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.hours__block h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 8px; }
.hours__block p { color: var(--muted); font-size: 15px; }

/* ---------- footer ---------- */
.footer { padding: 26px var(--gutter) 40px; border-top: 1px solid var(--line); text-align: center; }
.footer p { max-width: 64ch; margin: 0 auto; font-size: 14px; color: var(--muted); }
.footer a { color: var(--copper-deep); text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .nav__links a:not(.btn) { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .hours { grid-template-columns: 1fr; }
}
