:root {
  --ink: #101312;
  --paper: #f4f7f4;
  --white: #f7faf8;
  --aqua: #28c7c0;
  --tomato: #e84b35;
  --line: rgba(16, 19, 18, 0.18);
  --max: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Archivo", Arial, sans-serif;
  letter-spacing: 0;
}

img { display: block; width: 100%; }

a { color: inherit; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(247, 250, 248, 0.28);
}

.wordmark {
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
nav a { font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.nav-action { padding: 10px 15px; border: 1px solid rgba(247, 250, 248, 0.7); border-radius: 4px; }

.hero {
  position: relative;
  min-height: min(860px, 92dvh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  animation: hero-reveal 900ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.86) 0%, rgba(8, 10, 9, 0.52) 38%, rgba(8, 10, 9, 0.08) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: min(860px, 92dvh);
  padding: clamp(132px, 18vh, 190px) clamp(20px, 6vw, 90px) 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  max-width: 8ch;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 29ch;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button svg { width: 18px; height: 18px; stroke-width: 2; }
.button-primary { color: #fff; background: var(--tomato); }
.button-primary:hover, .button-primary:focus-visible { background: #c93624; }

.hero-map-link {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.hero-map-link svg { width: 20px; }

.food {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 150px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

.food-heading { grid-column: 1 / -1; max-width: 760px; margin-bottom: 28px; }
.food-heading h2, .location h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  font-weight: 900;
}
.food-heading p { max-width: 55ch; line-height: 1.65; font-size: 1.05rem; }

.food figure { margin: 0; }
.food-wide img { aspect-ratio: 16 / 9; object-fit: cover; }
.food-detail { transform: translateY(54px); }
.food-detail img { aspect-ratio: 4 / 5; object-fit: cover; }
.food-detail figcaption { margin-top: 12px; font-size: 0.75rem; color: #4b5451; }

.location {
  background: var(--aqua);
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.location-copy {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location address { margin-bottom: 30px; font-style: normal; font-size: 1.1rem; line-height: 1.6; }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.button-light { color: var(--white); background: var(--ink); }
.button-light:hover, .button-light:focus-visible { background: #27302d; }
.text-link { font-weight: 700; overflow-wrap: anywhere; }
.map-wrap { min-height: 600px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

footer {
  padding: 34px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { font-size: 0.9rem; }

a:focus-visible { outline: 3px solid var(--tomato); outline-offset: 4px; }

@keyframes hero-reveal {
  from { opacity: 0.5; filter: saturate(0.7); transform: scale(1.025); }
  to { opacity: 1; filter: saturate(1); transform: scale(1); }
}

@media (max-width: 760px) {
  .site-header { height: 64px; padding-inline: 18px; }
  nav a:not(.nav-action) { display: none; }
  .nav-action { padding: 8px 12px; }
  .hero { min-height: 760px; }
  .hero > img { object-position: 62% center; }
  .hero-scrim { background: linear-gradient(180deg, rgba(8, 10, 9, 0.55), rgba(8, 10, 9, 0.2) 38%, rgba(8, 10, 9, 0.88) 100%); }
  .hero-copy { min-height: 760px; justify-content: flex-end; padding: 110px 20px 116px; }
  h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-map-link { left: 20px; right: auto; bottom: 34px; }
  .food { grid-template-columns: 1fr; padding-bottom: 92px; }
  .food-heading { margin-bottom: 6px; }
  .food-detail { width: 78%; margin-left: auto !important; transform: none; }
  .location { grid-template-columns: 1fr; }
  .location-copy { padding-block: 72px; }
  .map-wrap { min-height: 420px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero > img { animation: none; }
}
