:root {
  --green: #174c3a;
  --red: #b53a2d;
  --ink: #171916;
  --white: #f8faf6;
  --line: rgba(23, 25, 22, 0.18);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Source Sans 3", sans-serif; }
img { display: block; width: 100%; }
a { color: inherit; }
.site-header { position: absolute; z-index: 10; top: 0; left: 0; width: 100%; height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(20px, 4vw, 64px); color: white; border-bottom: 1px solid rgba(255,255,255,.35); }
.wordmark { font-family: "Archivo Black", sans-serif; font-size: 20px; text-decoration: none; }
nav { display: flex; gap: 30px; }
nav a { font-weight: 700; text-decoration: none; }
.icon-link { justify-self: end; display: grid; place-items: center; width: 42px; height: 42px; color: white; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.icon-link svg { width: 19px; }
.hero { position: relative; min-height: 88svh; color: white; overflow: hidden; }
.hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,18,13,.86) 0%, rgba(7,18,13,.35) 56%, rgba(7,18,13,.08) 100%); }
.hero-copy { position: absolute; z-index: 2; left: clamp(20px, 6vw, 90px); bottom: clamp(50px, 8vw, 96px); max-width: 820px; animation: hero-in .85s cubic-bezier(.16,1,.3,1) both; }
.location, .eyebrow { margin: 0 0 14px; color: inherit; font-size: 14px; font-weight: 700; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Archivo Black", sans-serif; line-height: .95; letter-spacing: 0; }
h1 { max-width: 14ch; font-size: clamp(46px, 7vw, 94px); }
h2 { font-size: clamp(34px, 5vw, 68px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; gap: 10px; padding: 0 20px; border: 1px solid transparent; border-radius: 4px; font-weight: 700; text-decoration: none; }
.button svg { width: 18px; }
.button-primary { background: var(--red); color: white; }
.button-secondary { color: white; border-color: rgba(255,255,255,.65); backdrop-filter: blur(7px); }
.button-light { margin-top: 28px; background: var(--white); color: var(--green); }
.photo-credit { position: absolute; z-index: 2; right: 18px; bottom: 14px; margin: 0; font-size: 12px; color: rgba(255,255,255,.84); }
.photo-credit.dark { color: rgba(23,25,22,.78); }
.storefront { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); align-items: center; background: #dce3d8; }
.storefront > img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; background: #20251f; }
.storefront-copy { align-self: center; padding: clamp(36px, 6vw, 90px); }
.storefront-copy h2 { max-width: 8ch; color: var(--green); }
.storefront-copy > p:last-child { margin: 28px 0 0; font-size: 21px; line-height: 1.45; }
.food { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 76px); }
.section-heading { max-width: var(--max); margin: 0 auto 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 60px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; color: var(--red); margin-bottom: -8px; }
.section-heading h2 { color: var(--ink); }
.section-heading > p:last-child { max-width: 44ch; margin: 0; font-size: 20px; line-height: 1.5; }
.food-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
figure { margin: 0; }
figure img { aspect-ratio: 4 / 3; object-fit: cover; }
figcaption { padding-top: 9px; font-size: 12px; color: #4c514c; }
.visit { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 650px; background: var(--green); color: white; }
.visit-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(48px, 7vw, 100px); }
.visit-copy h2 { max-width: 10ch; font-size: clamp(34px, 4vw, 58px); }
address { margin-top: 34px; font-size: 21px; font-style: normal; line-height: 1.5; }
.phone-number { margin-top: 8px; font-size: 21px; font-weight: 700; }
.map-wrap { min-height: 650px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 650px; border: 0; filter: saturate(.72) contrast(1.05); }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(20px, 5vw, 76px); color: #525852; font-size: 13px; border-top: 1px solid var(--line); }
.button:focus-visible, a:focus-visible { outline: 3px solid #f3c64f; outline-offset: 3px; }
.button:hover { filter: brightness(1.07); }
@keyframes hero-in { from { opacity: .2; filter: blur(8px); transform: translateY(18px); } to { opacity: 1; filter: blur(0); transform: translateY(0); } }

@media (max-width: 760px) {
  .site-header { height: 64px; grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 84svh; }
  .hero > img { object-position: 56% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,18,13,.9) 0%, rgba(7,18,13,.2) 78%); }
  .hero-copy { left: 20px; right: 20px; bottom: 48px; }
  h1 { font-size: 46px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .photo-credit { right: 12px; bottom: 8px; }
  .storefront { grid-template-columns: 1fr; }
  .storefront > img { height: auto; aspect-ratio: 4 / 3; object-fit: contain; }
  .storefront-copy { padding: 42px 20px 58px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow { grid-column: 1; }
  .food-grid { grid-template-columns: 1fr; gap: 30px; }
  .visit { grid-template-columns: 1fr; }
  .visit-copy { padding: 60px 20px; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  footer { flex-direction: column; }
}

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