/* Supper — structure stylesheet. Colors come ONLY from var(--m-*) set in seasoning.css. */

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

body {
  background: var(--m-bg);
  color: var(--m-text);
  font-family: var(--m-font-body), system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--m-font-display), Georgia, serif; font-weight: 600; }

a { color: inherit; text-decoration: none; transition: color 0.18s ease; }

.wrap { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ---- Centered nav ---- */
.nav { text-align: center; padding: 34px 20px 22px; }
.logo {
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 1.9rem; font-weight: 600; color: var(--m-heading);
}
.logo:hover { color: var(--m-accent); }
.nav-line { font-style: italic; font-size: 0.9rem; color: var(--m-faint); margin-top: 2px; }
.links { display: flex; justify-content: center; gap: 30px; margin-top: 16px; }
.links a { font-size: 0.92rem; color: var(--m-soft); }
.links a:hover { color: var(--m-accent); }
.links a[aria-current="page"] { color: var(--m-heading); border-bottom: 1px solid var(--m-accent); padding-bottom: 3px; }

/* ---- Hero: full-bleed photo, copy over scrim ---- */
.hero { position: relative; margin-top: 14px; }
.hero img { display: block; width: 100%; height: 62vh; min-height: 420px; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--m-bg) 97%);
}
.hero-copy {
  position: relative; margin-top: -150px; padding: 0 28px 10px;
  text-align: center;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3rem); color: var(--m-heading); line-height: 1.18;
  max-width: 680px; margin: 0 auto;
}
.hero-copy .intro { max-width: 520px; margin: 18px auto 0; color: var(--m-soft); }

/* ---- Tonight (menu teaser) ---- */
.tonight { padding: 76px 28px 70px; text-align: center; }
.sec-title { font-size: 1.7rem; color: var(--m-heading); }
.sec-note { font-size: 0.9rem; font-style: italic; color: var(--m-faint); margin-top: 6px; }
.dish-rows { max-width: 560px; margin: 26px auto 0; text-align: left; }
.dish {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 12px 0; border-bottom: 1px solid var(--m-line);
}
.dish .t { font-size: 1rem; color: var(--m-text); }
.dish .d { display: block; font-size: 0.82rem; font-style: italic; color: var(--m-faint); }
.dish .p { font-family: var(--m-font-display), Georgia, serif; font-size: 1.02rem; color: var(--m-accent); white-space: nowrap; }
.menu-link {
  display: inline-block; margin-top: 30px; padding: 12px 30px;
  border: 1px solid var(--m-accent); color: var(--m-accent);
  font-size: 0.9rem; letter-spacing: 0.04em;
}
.menu-link:hover { background: var(--m-accent); color: var(--m-bg); }

/* ---- Three features ---- */
.threes { background: var(--m-surface); padding: 64px 0; }
.threes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 960px; }
.threes h3 { font-size: 1.3rem; color: var(--m-heading); }
.threes p { margin-top: 10px; font-size: 0.92rem; color: var(--m-soft); }

/* ---- Reservations strip ---- */
.reserve { padding: 80px 28px; text-align: center; }
.reserve-phone {
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 2.5rem; color: var(--m-accent); margin-top: 12px;
}
.reserve-note { max-width: 460px; margin: 14px auto 0; font-size: 0.95rem; color: var(--m-soft); }

/* ---- Inner pages ---- */
.page { padding: 46px 0 80px; }
.menu-wrap { max-width: 640px; }
.page-title { font-size: 2.3rem; color: var(--m-heading); text-align: center; }
.page-note { text-align: center; font-style: italic; font-size: 0.92rem; color: var(--m-faint); margin-top: 10px; max-width: 480px; margin-left: auto; margin-right: auto; }

.course { margin-top: 54px; }
.course h2 {
  font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--m-accent); font-family: var(--m-font-body), sans-serif; font-weight: 600;
  text-align: center; margin-bottom: 14px;
}
.menu-fine { margin-top: 50px; text-align: center; font-size: 0.85rem; font-style: italic; color: var(--m-faint); }

/* ---- Prose (about) ---- */
.prose { max-width: 600px; margin: 0 auto; padding: 0 28px; }
.prose .page-title { margin-bottom: 36px; }
.prose p { margin-bottom: 24px; font-size: 1.02rem; color: var(--m-text); }
.pull {
  margin: 36px auto; max-width: 480px; text-align: center;
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 1.45rem; font-style: italic; line-height: 1.5; color: var(--m-heading);
}

/* ---- Visit rows ---- */
.visit-rows { margin-top: 46px; }
.vrow { padding: 24px 0; border-top: 1px solid var(--m-line); }
.vrow h3 { font-size: 1.2rem; color: var(--m-heading); margin-bottom: 6px; }
.vrow p { font-size: 0.95rem; color: var(--m-soft); }
.page .reserve-phone { text-align: center; display: block; margin-top: 26px; }

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--m-line);
  text-align: center; padding: 44px 28px 40px;
  font-size: 0.9rem; color: var(--m-soft);
}
.foot-hours { font-family: var(--m-font-display), Georgia, serif; font-size: 1.05rem; color: var(--m-heading); margin-bottom: 6px; }
.foot-name { margin-top: 18px; font-style: italic; color: var(--m-faint); }

@media (max-width: 720px) {
  .threes-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero img { height: 48vh; min-height: 320px; }
  .hero-copy { margin-top: -110px; }
  .links { gap: 18px; }
  .links a { font-size: 0.82rem; }
}

/* ---- Craft details: candle, script, menu paper, stamp, drop cap ---- */
.hand {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem; font-weight: 500;
  color: var(--m-soft);
}

.flame { display: inline-block; vertical-align: -3px; margin-right: 4px;
  animation: flicker 2.6s ease-in-out infinite; transform-origin: 50% 92%; }
@keyframes flicker {
  0%, 100% { transform: rotate(-2deg) scaleY(1); }
  28% { transform: rotate(2.5deg) scaleY(1.07); }
  52% { transform: rotate(-1deg) scaleY(0.96); }
  76% { transform: rotate(1.5deg) scaleY(1.03); }
}
@media (prefers-reduced-motion: reduce) { .flame { animation: none; } }

.swash { display: block; margin: 14px auto 0; }

/* paper-menu object: double rule frame */
.menu-card {
  border: 1px solid var(--m-accent);
  outline: 1px solid var(--m-line); outline-offset: 6px;
  padding: 26px 30px 30px; background: var(--m-surface);
}
.tonight .menu-card { margin-top: 30px; }
.tonight .dish:last-child { border-bottom: none; }
.menu-paper { margin-top: 40px; padding: 14px 38px 34px; }
.menu-paper .course:last-child .dish:last-child { border-bottom: none; }

/* course ornaments */
.course h2::before { content: "\2726\00a0\00a0"; color: var(--m-accent); }
.course h2::after { content: "\00a0\00a0\2726"; color: var(--m-accent); }

/* dish hover tick */
.dish { transition: padding-left 0.15s ease; }
.dish:hover { padding-left: 8px; border-left: 2px solid var(--m-accent); }

/* footer stamp + sign-off */
footer .stamp { display: block; margin: 0 auto 18px; transform: rotate(-8deg); opacity: 0.85; }
.foot-sign { margin-top: 14px; font-family: 'Caveat', cursive; font-size: 1.5rem; color: var(--m-accent); }

/* story page drop cap */
.prose > p:first-of-type::first-letter {
  font-family: var(--m-font-display), Georgia, serif;
  float: left; font-size: 3.6em; line-height: 0.82;
  padding: 4px 10px 0 0; color: var(--m-accent);
}
