:root {
  --paper: #f2f1ed;
  --ink: #111111;
  --muted: #6b6b66;
  --line: #b9b9b2;
  --accent: #d93824;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max));
  height: 78px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.brand { font-weight: 900; text-transform: uppercase; font-size: 15px; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
nav a:not(.nav-action):hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-action { padding: 11px 16px; border: 1px solid #fff; border-radius: 3px; }
.nav-action:hover { color: var(--ink); background: #fff; }

.hero {
  position: relative;
  min-height: min(82dvh, 790px);
  height: 790px;
  max-height: 82dvh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-shade { position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.hero-content {
  position: absolute;
  left: 50%;
  bottom: 72px;
  width: min(calc(100% - 48px), var(--max));
  transform: translateX(-50%);
}
.eyebrow, .section-index { margin: 0 0 18px; font: 700 13px/1 Arial, sans-serif; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Arial Black", "Arial Narrow", Arial, sans-serif; letter-spacing: 0; text-transform: uppercase; }
h1 { max-width: 850px; font-size: 96px; line-height: .86; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 48px; display: inline-flex; align-items: center; gap: 18px; padding: 0 20px; border: 1px solid #fff; border-radius: 3px; font-size: 14px; font-weight: 800; }
.button-accent { background: var(--accent); border-color: var(--accent); }
.button-ghost { background: rgba(17,17,17,.32); }
.button:hover { transform: translateY(-2px); }
.hero-credit { position: absolute; right: 24px; bottom: 18px; margin: 0; font-size: 11px; color: rgba(255,255,255,.78); }

.food-section { max-width: var(--max); margin: 0 auto; padding: 112px 24px 128px; }
.section-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 28px; align-items: start; margin-bottom: 72px; }
.section-intro .section-index { grid-column: 1; }
.section-intro h2 { grid-column: 2; grid-row: 1 / span 2; font-size: 72px; line-height: .92; }
.section-copy { grid-column: 1; max-width: 38ch; margin: 48px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.food-grid { display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: auto auto; gap: 24px; align-items: start; }
figure { margin: 0; }
.food-primary { grid-row: 1 / span 2; }
.food-primary img { height: 760px; object-fit: cover; }
.food-secondary img { height: 410px; object-fit: cover; }
figcaption { padding-top: 10px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.food-note { align-self: end; max-width: 42ch; margin: 24px 0 0; padding-top: 24px; border-top: 2px solid var(--ink); font-size: 22px; font-weight: 700; line-height: 1.25; }

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--accent);
  color: #fff;
}
.contact-label { font-size: 13px; font-weight: 800; text-transform: uppercase; }
address { font-style: normal; font-size: 28px; font-weight: 800; line-height: 1.18; }
.contact-links { display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; font-size: 17px; font-weight: 800; }
.contact-links a { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.6); }

.location-section { display: grid; grid-template-columns: minmax(300px, .7fr) 1.3fr; min-height: 580px; background: var(--ink); color: #fff; }
.location-heading { padding: 88px max(24px, calc((100vw - var(--max)) / 2)); padding-right: 48px; }
.location-heading h2 { font-size: 62px; line-height: .94; }
.location-heading a { display: inline-block; margin-top: 42px; color: #fff; font-weight: 800; border-bottom: 2px solid var(--accent); padding-bottom: 8px; }
.map-frame { min-height: 580px; border-left: 1px solid #333; }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 580px; border: 0; filter: grayscale(.2) contrast(1.05); }

footer { max-width: var(--max); margin: 0 auto; padding: 34px 24px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .site-header { width: calc(100% - 32px); height: 68px; }
  nav { gap: 14px; }
  nav a[href="#food"] { display: none; }
  .hero { height: 78dvh; max-height: 720px; min-height: 620px; }
  .hero-content { width: calc(100% - 32px); bottom: 58px; }
  h1 { font-size: 58px; line-height: .9; }
  .hero-credit { left: 16px; right: auto; bottom: 14px; }
  .food-section { padding: 82px 16px 92px; }
  .section-intro { display: block; margin-bottom: 44px; }
  .section-intro h2 { font-size: 48px; }
  .section-copy { margin-top: 28px; }
  .food-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 28px; }
  .food-primary { grid-row: auto; }
  .food-primary img { height: 560px; }
  .food-secondary img { height: 310px; }
  .food-note { margin-top: 0; font-size: 19px; }
  .contact-band { grid-template-columns: 1fr; padding: 54px 20px; gap: 30px; }
  address { font-size: 25px; }
  .location-section { grid-template-columns: 1fr; }
  .location-heading { padding: 70px 20px; }
  .location-heading h2 { font-size: 50px; }
  .map-frame, .map-frame iframe { min-height: 360px; }
  .map-frame { border-left: 0; border-top: 1px solid #333; }
  footer { padding: 28px 16px; flex-direction: column; }
}

@media (max-width: 430px) {
  .brand { max-width: 116px; line-height: 1.05; }
  nav { font-size: 12px; }
  .nav-action { padding: 9px 11px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .button { width: 100%; justify-content: space-between; }
  h1 { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
