/* Self-hosted fonts — latin subset only, served same-origin.
   Archivo is variable (wght 100-900), so one file covers 400/500/600/700/800.
   Instrument Serif ships italic only; the roman face is never used. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/archivo-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrument-serif-italic.woff2') format('woff2');
}

:root {
  --red: #D93B22;
  --red-dark: #C3311B;
  --butter: #F0B93E;
  --paper: #FFF8EC;
  --ink: #191410;
  --clay: #E4DFD4;
  --steel: #C9CDD0;
  --muted: #A8907A;
  --body: #4A3F35;
  --dim: #8C8078;
  --on-red: #FFD9C2;
  --hairline: #E0D4C2;
  --pad: clamp(18px, 4vw, 56px);
  --font: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--ink); }

img { display: block; max-width: 100%; height: auto; }

.wrap { max-width: 1180px; margin: 0 auto; }

/* ---------- wordmark ---------- */
.wm { display: flex; align-items: flex-end; gap: 4px; font-weight: 800; letter-spacing: -0.045em; }
.wm .amp { font-family: var(--serif); font-style: italic; font-weight: 400; line-height: 0.9; }

/* ---------- buttons: min 44px hit target ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 14px 26px;
  font-size: 16px; font-weight: 800; letter-spacing: -0.01em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}
.btn--red { background: var(--red); color: var(--paper); }
.btn--red:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--butter); color: var(--ink); }
.btn--outline-paper { border-color: var(--paper); color: var(--paper); font-weight: 700; }
.btn--outline-paper:hover { background: var(--paper); color: var(--ink); }
.btn--outline-ink { border-color: var(--ink); color: var(--ink); font-weight: 700; }
.btn--outline-ink:hover { background: var(--ink); color: var(--paper); }

/* ---------- sticky bar ---------- */
.bar {
  position: sticky; top: 0; z-index: 20;
  background: var(--ink);
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bar .wm { color: var(--paper); font-size: clamp(17px, 2.4vw, 22px); }
.bar .wm .amp { color: var(--butter); font-size: clamp(19px, 2.6vw, 24px); }
.bar .btn { padding: 11px 20px; font-size: clamp(13px, 1.6vw, 15px); font-weight: 700; }

/* ---------- hero ---------- */
.hero { background: var(--red); padding: clamp(32px, 6vw, 72px) var(--pad) clamp(28px, 5vw, 56px); }
.hero__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero__copy { container-type: inline-size; min-width: 0; }
.hero__word { display: block; font-size: clamp(44px, 21cqw, 116px); font-weight: 800; letter-spacing: -0.055em; line-height: 0.84; color: var(--paper); }
.hero__row { display: flex; align-items: flex-end; gap: clamp(6px, 2cqw, 18px); }
.hero__amp { font-family: var(--serif); font-style: italic; font-size: clamp(46px, 22cqw, 120px); line-height: 0.8; color: var(--butter); }
.hero__line { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3.6vw, 40px); color: var(--paper); margin-top: clamp(18px, 2.4vw, 28px); line-height: 1.15; }
.hero__sub { font-size: clamp(15px, 1.8vw, 18px); color: var(--on-red); line-height: 1.6; margin-top: 18px; max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(22px, 3vw, 32px); }

/* ---------- photo placeholders (replace with <img>) ---------- */
.photo {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 22px; line-height: 1.7;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background-color: var(--clay);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.6) 0 7px, rgba(0,0,0,0) 7px 14px);
  color: #55483B;
}
.photo--red {
  background-color: var(--red-dark);
  background-image: repeating-linear-gradient(135deg, rgba(255,248,236,0.16) 0 7px, rgba(0,0,0,0) 7px 14px);
  color: #FFE9D2;
}
.photo--hero { min-height: clamp(280px, 40vw, 460px); }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--map { min-height: 300px; }

/* ---------- facts strip ---------- */
.strip { background: var(--butter); padding: clamp(22px, 3vw, 34px) var(--pad); }
.strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(18px, 3vw, 40px); }
.strip__item { display: flex; flex-direction: column; gap: 6px; }
.strip__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #6B4A12; }
.strip__text { font-size: clamp(15px, 1.7vw, 17px); font-weight: 500; line-height: 1.5; }

/* ---------- generic section ---------- */
.section { padding: clamp(44px, 7vw, 88px) var(--pad); }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin: 0; text-wrap: pretty; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 2vw, 20px); }
.card { display: flex; flex-direction: column; gap: 12px; }
.card p { margin: 0; font-size: clamp(15px, 1.7vw, 17px); line-height: 1.5; color: var(--body); }
.card strong { font-weight: 700; color: var(--ink); }

/* ---------- menu ---------- */
.menu { background: var(--ink); padding: clamp(44px, 7vw, 88px) var(--pad); }
.menu__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 16px; border-bottom: 2px solid #3A322B; padding-bottom: 18px;
}
.menu__title { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.04em; color: var(--paper); margin: 0; }
.menu__note { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.menu__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(26px, 4vw, 48px); margin-top: clamp(26px, 4vw, 44px); }
.menu__col { display: flex; flex-direction: column; gap: 30px; }
.group { display: flex; flex-direction: column; gap: 10px; }
.group__name { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.item { display: flex; justify-content: space-between; gap: 16px; }
.item dt { font-size: 17px; font-weight: 500; color: var(--paper); margin: 0; }
.item dd { font-size: 17px; font-weight: 700; color: var(--paper); margin: 0; }
.group--platters { background: var(--red); padding: 24px; gap: 12px; }
.group--platters .group__name { color: var(--on-red); }
.group--platters dt { font-weight: 600; }
.group--platters dd { font-weight: 800; }
.group__foot { font-size: 14px; color: var(--on-red); line-height: 1.5; }
dl { margin: 0; display: contents; }

/* ---------- find us ---------- */
.find__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.find__col { display: flex; flex-direction: column; gap: 22px; }
.find__address { font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin: 0; }
.facts { display: flex; flex-direction: column; gap: 14px; }
.facts > div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--hairline); padding-bottom: 12px; }
.facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts span:first-child { font-size: 16px; font-weight: 500; color: var(--body); }
.facts span:last-child { font-size: 16px; font-weight: 700; }

/* ---------- footer ---------- */
.foot { background: var(--ink); padding: clamp(32px, 5vw, 56px) var(--pad); }
.foot__inner { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.foot .wm { color: var(--paper); font-size: clamp(22px, 3vw, 28px); }
.foot .wm .amp { color: var(--butter); font-size: clamp(24px, 3.2vw, 30px); }
.foot__meta { font-size: 14px; color: var(--dim); line-height: 1.6; margin: 12px 0 0; }
.foot__line { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.6vw, 26px); color: var(--butter); }

/* ---------- menu.html only: fixed call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--red); padding: 12px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.callbar__text { font-size: 14px; font-weight: 700; color: var(--on-red); }
.callbar .btn { background: var(--paper); color: var(--ink); }
.has-callbar { padding-bottom: 88px; }

@media print {
  .bar, .callbar { position: static; }
}
