:root {
  --red: #c83c2e;
  --green: #1c5b3e;
  --ink: #161716;
  --white: #fbfbf7;
  --muted: #d9ded7;
}
* { 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,.34); }
.wordmark { font-family: "Archivo Black", sans-serif; 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; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; }
.icon-link svg, .button svg { width: 18px; }
.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(12,10,8,.84), rgba(12,10,8,.26) 68%, rgba(12,10,8,.08)); }
.hero-copy { position: absolute; z-index: 2; left: clamp(20px, 6vw, 90px); bottom: clamp(48px, 8vw, 94px); max-width: 900px; animation: reveal .85s cubic-bezier(.16,1,.3,1) both; }
.eyebrow { margin: 0 0 14px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Archivo Black", sans-serif; line-height: .94; letter-spacing: 0; }
h1 { max-width: 14ch; font-size: clamp(48px, 7.3vw, 100px); }
h2 { font-size: clamp(38px, 5vw, 70px); }
.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.red { color: white; background: var(--red); }
.button.outline { color: white; border-color: rgba(255,255,255,.72); backdrop-filter: blur(7px); }
.button.light { margin-top: 28px; color: var(--green); background: white; }
.credit { position: absolute; z-index: 2; right: 16px; bottom: 12px; margin: 0; color: rgba(255,255,255,.88); font-size: 12px; }
.place { background: var(--ink); color: white; }
.place-intro { display: grid; grid-template-columns: .65fr 1fr 1fr; gap: 40px; align-items: end; padding: clamp(54px, 7vw, 100px) clamp(20px, 6vw, 90px); }
.place-intro .eyebrow { color: #91cfaa; }
.place-intro > p:last-child { max-width: 43ch; margin: 0; font-size: 20px; line-height: 1.5; color: #d9dfda; }
.venue-photo { position: relative; margin: 0; }
.venue-photo img { width: 100%; height: auto; aspect-ratio: 2.09 / 1; object-fit: contain; background: #080908; }
figcaption { position: absolute; right: 16px; bottom: 12px; color: rgba(255,255,255,.86); font-size: 12px; }
.pizza { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 700px; background: var(--muted); }
.pizza-image { position: relative; min-width: 0; }
.pizza-image img { height: 100%; min-height: 700px; object-fit: cover; }
.pizza-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 7vw, 100px); }
.pizza-copy .eyebrow { color: var(--red); }
.pizza-copy h2 { color: var(--green); }
.pizza-copy > p:last-child { max-width: 35ch; margin: 28px 0 0; font-size: 20px; line-height: 1.5; }
.visit { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 650px; color: white; background: var(--red); }
.visit-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(48px, 7vw, 100px); }
.visit-copy h2 { font-size: clamp(36px, 4vw, 60px); }
address { margin-top: 34px; font-size: 21px; font-style: normal; line-height: 1.5; }
.phone { margin-top: 8px; font-size: 21px; font-weight: 700; }
.map-wrap, .map-wrap iframe { min-height: 650px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.76) contrast(1.04); }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(20px, 5vw, 76px); color: #565b56; font-size: 13px; }
.button:focus-visible, a:focus-visible { outline: 3px solid #f5c64d; outline-offset: 3px; }
.button:hover { filter: brightness(1.07); }
@keyframes reveal { 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: 55% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(12,10,8,.9), rgba(12,10,8,.12) 82%); }
  .hero-copy { left: 20px; right: 20px; bottom: 48px; }
  h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .place-intro { grid-template-columns: 1fr; gap: 18px; padding: 58px 20px 42px; }
  .venue-photo img { aspect-ratio: 2.09 / 1; object-fit: contain; }
  .pizza { grid-template-columns: 1fr; }
  .pizza-image img { min-height: 420px; height: 420px; }
  .pizza-copy { padding: 56px 20px 68px; }
  .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; }
}
