/* ============================================================
   The Pizza Shoppe -- tpsroc.com
   Palette sampled from the brand logo. Type/space/radius scales
   follow the house design system.
   ============================================================ */

:root {
  /* Brand */
  --red:        #D60439;
  --red-hot:    #F01248;
  --red-deep:   #820222;
  --red-ink:    #4A0114;
  --basil:      #9ECD81;
  /* --red-hot lands at 4.39:1 on --ink-900 -- fine for display sizes, short
     of AA for anything under 18.66px bold. Small red text uses this instead
     (5.7:1 on --ink-900, 5.5:1 on --surface). */
  --red-text:   #FF456B;

  /* Neutrals -- warm, not blue */
  --ink-950:    #100D0C;
  --ink-900:    #16110F;
  --ink-850:    #1C1614;
  --ink-800:    #251D1A;
  --ink-700:    #382C28;
  --ink-600:    #55443E;

  --cream:      #FFF7F0;
  --cream-dim:  #E8DAD0;
  --cream-mute: #B6A49A;

  /* Semantic */
  --bg:         var(--ink-900);
  --surface:    var(--ink-850);
  --text:       var(--cream);
  --text-mute:  var(--cream-mute);
  --line:       rgba(255, 247, 240, .12);

  /* Shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --font: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* -- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; }
a { color: inherit; }

:where(a, button, [role="tab"]):focus-visible {
  outline: 3px solid var(--basil);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff;
  padding: .85rem 1.4rem; font-weight: 700;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* -- Type -------------------------------------------------------- */
h1, h2, h3 { line-height: 1.03; letter-spacing: -.025em; font-weight: 900; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.2rem; font-weight: 800; line-height: 1.25; letter-spacing: -.015em; }

em { font-style: italic; color: var(--red-hot); font-weight: 900; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.1rem;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 4px rgba(240, 18, 72, .18);
  flex: none;
}

.sec-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.sec-head--center { max-width: 48rem; margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head__sub {
  font-size: 1.12rem; color: var(--text-mute);
  margin-top: 1.1rem; max-width: 36rem;
}
.sec-head--center .sec-head__sub { margin-inline: auto; }
.sec-head--center .btn { margin-top: 2rem; }

/* -- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-weight: 800; font-size: .95rem;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 22px -8px rgba(214, 4, 57, .85);
}
.btn--primary:hover { background: var(--red-hot); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255, 247, 240, .07);
  border-color: rgba(255, 247, 240, .28);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 247, 240, .15); border-color: var(--cream); transform: translateY(-2px); }
.btn--outline {
  border-color: rgba(255, 247, 240, .3);
  color: var(--cream);
}
.btn--outline:hover { border-color: var(--red-text); color: var(--red-text); }
.btn--lg { min-height: 54px; padding: .9rem 2rem; font-size: 1.02rem; }
.btn--sm { min-height: 44px; padding: .55rem 1.15rem; font-size: .87rem; }

/* -- Nav --------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: .85rem var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav.is-stuck {
  background: rgba(22, 17, 15, .88);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px #000;
}

.nav__brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; flex: none;
}
.nav__logo { width: 44px; height: 44px; }
.nav__brandtext {
  font-weight: 900; font-size: 1.02rem;
  letter-spacing: -.02em; white-space: nowrap;
}

.nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-weight: 600; font-size: .93rem;
  color: var(--cream-dim);
  /* Padded to a 44px hit target; the underline is offset off the bottom
     edge so the extra padding doesn't push it away from the text. */
  display: flex; align-items: center;
  min-height: 44px;
  position: relative;
  transition: color .18s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 9px;
  height: 2px; background: var(--red-hot);
  transition: right .25s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: .75rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer;
  padding: 12px 10px;
  flex-direction: column; justify-content: space-between;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink-950);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column; gap: 2rem;
  overflow-y: auto;
}
.mobilemenu[hidden] { display: none; }
.mobilemenu nav { display: flex; flex-direction: column; }
.mobilemenu nav a {
  text-decoration: none;
  font-size: 1.9rem; font-weight: 900; letter-spacing: -.03em;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.mobilemenu__call { color: var(--red-hot) !important; }
.mobilemenu .btn { width: 100%; }

/* -- Hero -------------------------------------------------------- */
/* Split layout. The only high-res hero photo is portrait and its sharp
   subject sits left-of-centre -- full-bleed would bury it under the
   headline scrim, so the photo gets its own column at native aspect. */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: stretch;
  overflow: hidden;
}
/* Grid (not just position:relative) so the image gets a definite height to
   fill -- a percentage height inside an auto-height block resolves to auto. */
.hero__media { position: relative; display: grid; }
.hero__media > picture { grid-area: 1 / 1; display: block; min-height: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 42% 62%;
}
/* Feather the photo's inner edge into the dark panel instead of a hard
   seam. Only the right edge -- the left is full-bleed and stays bright. */
.hero__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to left, var(--ink-900) 0%, rgba(22,17,15,.45) 9%, rgba(22,17,15,0) 26%),
    linear-gradient(to top, rgba(22,17,15,.35) 0%, rgba(22,17,15,0) 22%);
}
.hero__content {
  align-self: center;
  padding-block: 7rem clamp(3rem, 6vw, 4.5rem);
  padding-inline: clamp(2rem, 4.5vw, 4rem) var(--gutter);
  /* Keep the right edge on the .wrap gridline at wide widths. */
  padding-right: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  position: relative; z-index: 1;
}
/* Sized against the column, not the viewport -- the split gives the
   headline roughly half the width a full-bleed hero would. */
.hero__title { font-size: clamp(2.5rem, 3.95vw, 3.9rem); text-wrap: balance; }
.hero__sub {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  color: var(--cream-dim);
  max-width: 44ch;
  margin-top: 1.6rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }
.hero__status {
  margin-top: 1.8rem;
  font-size: .92rem; font-weight: 600;
  color: var(--cream-dim);
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
}
.hero__status .pip {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--cream-mute);
}
.hero__status.is-open .pip { background: var(--basil); box-shadow: 0 0 0 4px rgba(158,205,129,.2); }
.hero__status.is-closed .pip { background: var(--red-hot); box-shadow: 0 0 0 4px rgba(240,18,72,.2); }

/* -- Ticker ------------------------------------------------------ */
.ticker {
  background: var(--red);
  color: #fff;
  padding: .85rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,.2);
}
.ticker__track {
  display: flex; align-items: center; gap: 1.6rem;
  width: max-content;
  animation: slide 42s linear infinite;
}
.ticker__track span {
  font-weight: 900; font-size: 1rem;
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track i { font-style: normal; opacity: .55; font-size: .8rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* -- Story ------------------------------------------------------- */
.story { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  width: 100%; border-radius: var(--r-xl);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.story__tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(16,13,12,.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: .45rem .9rem;
  border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--cream-dim);
}
.story__body h2 { margin-bottom: 1.6rem; text-wrap: balance; }
.story__body p {
  color: var(--text-mute);
  font-size: 1.06rem;
  max-width: 46ch;
  margin-bottom: 1.1rem;
}
.story__body p em { color: var(--cream); font-weight: 700; font-style: italic; }

.story__facts {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 2.2rem;
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.story__facts li { display: flex; flex-direction: column; gap: .2rem; }
.story__facts strong {
  font-size: 1.32rem; font-weight: 900;
  letter-spacing: -.02em;
  color: var(--red-hot);
}
.story__facts span { font-size: .85rem; color: var(--text-mute); }

/* -- Signatures -------------------------------------------------- */
.sigs {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--ink-950);
  border-block: 1px solid var(--line);
}
.sigs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sig {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.sig:hover { transform: translateY(-5px); border-color: rgba(240,18,72,.45); }
.sig__img { overflow: hidden; aspect-ratio: 1; }
.sig__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.sig:hover .sig__img img { transform: scale(1.05); }
.sig__txt { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.sig__txt h3 {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
}
.sig__price { font-size: .95rem; font-weight: 800; color: var(--red-text); flex: none; }
.sig__txt p { font-size: .95rem; color: var(--text-mute); }
.sig__kicker {
  font-size: .74rem !important; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--basil) !important;
}
.sig--typo {
  background: linear-gradient(150deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: transparent;
}
.sig--typo .sig__txt { padding: 2rem 1.75rem; justify-content: center; gap: .8rem; }
.sig--typo .sig__txt p, .sig--typo .sig__price { color: rgba(255,255,255,.9); }
.sig--typo .sig__kicker { color: rgba(255,255,255,.72) !important; }
.sig--typo h3 { font-size: 1.75rem; font-weight: 900; }
/* Underline drawn as a pseudo-element so the link can carry a 44px hit
   target without the rule drifting away from the text. */
.sig__link {
  margin-top: .3rem;
  font-weight: 800; font-size: .9rem;
  text-decoration: none;
  color: #fff;
  align-self: flex-start;
  display: inline-flex; align-items: center;
  min-height: 44px;
  position: relative;
  transition: color .2s ease;
}
.sig__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 12px;
  height: 2px; background: rgba(255,255,255,.4);
  transition: background-color .2s ease;
}
.sig__link:hover::after { background: #fff; }

/* -- Menu -------------------------------------------------------- */
.menu { padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* Wrap-and-centre rather than a horizontal scroller: a centred flex row
   that overflows clips its own first item, and off-screen categories are
   easy to miss. Seven pills wrap to two or three tidy rows on a phone. */
.tabs__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.tab {
  flex: none;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: .6rem 1.25rem;
  min-height: 44px;
  font-weight: 700; font-size: .92rem;
  color: var(--text-mute);
  cursor: pointer;
  transition: all .2s ease;
}
.tab:hover { color: var(--cream); border-color: rgba(255,247,240,.35); }
.tab[aria-selected="true"] {
  background: var(--red); border-color: var(--red);
  color: #fff;
}

.panel { animation: fade .35s ease; }
.panel[hidden] { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } }

.panel__note {
  font-size: .93rem; color: var(--text-mute);
  margin-bottom: 1.75rem;
  padding-left: .9rem;
  border-left: 3px solid var(--red);
}

.items {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.6rem 3rem;
}
.items--tight { grid-template-columns: 1fr; gap: 1.15rem; }
.items > li { padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.items--tight > li { padding-bottom: 1rem; }
.item__head {
  display: flex; align-items: baseline; gap: .75rem;
  margin-bottom: .35rem;
}
.item__head h3 { flex: 1; }
.item__head::after {
  content: ''; flex: 1;
  order: 1;
  border-bottom: 1px dotted rgba(255,247,240,.22);
  transform: translateY(-4px);
  min-width: 1rem;
}
.item__head h3 { flex: none; order: 0; max-width: 75%; }
.item__price {
  order: 2; flex: none;
  font-weight: 800; font-size: .98rem;
  color: var(--red-text);
  font-variant-numeric: tabular-nums;
}
.items p { font-size: .92rem; color: var(--text-mute); max-width: 52ch; }

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.col__head {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--basil);
  margin-bottom: 1.35rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}
.col__head--gap { margin-top: 2.5rem; }
.drinks { font-size: .95rem; color: var(--text-mute); }
.drinks strong { color: var(--red-text); display: block; margin-top: .5rem; }

.disclaimer {
  font-size: .8rem; color: var(--cream-mute);
  opacity: .75; margin-top: 1.75rem;
  max-width: 60ch;
}

.mealpack {
  margin-top: 2.5rem;
  background: linear-gradient(120deg, var(--red-ink), var(--ink-850));
  border: 1px solid rgba(240,18,72,.35);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.mealpack h3 { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .45rem; }
.mealpack p { font-size: .95rem; color: var(--text-mute); max-width: 46ch; }

/* -- Visit ------------------------------------------------------- */
.visit {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--ink-950);
  border-top: 1px solid var(--line);
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.visit__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}
.visit__card h3 {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--basil);
  margin-bottom: 1.25rem;
}

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { padding: .55rem 0; text-align: left; }
.hours th { font-weight: 600; color: var(--text-mute); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.hours tr + tr { border-top: 1px solid rgba(255,247,240,.07); }
.hours .closed { color: var(--cream-mute); font-weight: 500; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--red-text); font-weight: 800; }

.visit__status {
  margin-top: 1.35rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; gap: .55rem;
}
.visit__status .pip { width: 9px; height: 9px; border-radius: 50%; flex: none; background: var(--cream-mute); }
.visit__status.is-open .pip { background: var(--basil); box-shadow: 0 0 0 4px rgba(158,205,129,.2); }
.visit__status.is-closed .pip { background: var(--red-hot); box-shadow: 0 0 0 4px rgba(240,18,72,.2); }

.visit address {
  font-style: normal; font-size: 1.12rem;
  font-weight: 700; line-height: 1.45;
  margin-bottom: 1.35rem;
}
.visit__links { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.5rem; }
.visit__links .btn { flex: 1; min-width: 140px; }
.visit__photo { border-radius: var(--r-lg); overflow: hidden; }
.visit__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 38%; }

.map { border-radius: var(--r-lg); overflow: hidden; background: var(--ink-800); }
/* Google's embed has no dark theme. Inverting and rotating the hue back
   gives a dark map that keeps roads and labels legible. */
.map iframe {
  width: 100%; height: 340px; border: 0;
  filter: invert(1) hue-rotate(180deg) saturate(.75) brightness(.92) contrast(1.05);
}

/* -- CTA --------------------------------------------------------- */
.cta { padding: 0 0 clamp(4rem, 8vw, 7rem); }
.cta__inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  min-height: 400px;
  display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%;
}
/* Dark ink under the copy, brand red only as a wash -- a flat red overlay
   turns the pizza magenta and reads as a colour cast, not a photo. */
.cta__inner::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(20,2,10,.93) 0%, rgba(30,4,14,.78) 38%, rgba(16,13,12,.28) 72%, rgba(16,13,12,.1) 100%),
    linear-gradient(100deg, rgba(214,4,57,.5) 0%, rgba(214,4,57,.12) 55%, transparent 85%);
}
.cta__content { max-width: 34rem; }
.cta__content h2 { text-wrap: balance; }
.cta__content p { margin-top: 1.1rem; font-size: 1.12rem; color: rgba(255,255,255,.88); }
.cta__btns { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.cta .btn--primary { background: var(--cream); color: var(--red-deep); box-shadow: 0 8px 26px -10px rgba(0,0,0,.6); }
.cta .btn--primary:hover { background: #fff; }

/* -- Footer ------------------------------------------------------ */
.foot { background: var(--ink-950); border-top: 1px solid var(--line); }
.foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.75rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.foot__brand img { width: 78px; height: 78px; margin-bottom: 1.1rem; }
.foot__brand p { font-size: .9rem; color: var(--text-mute); line-height: 1.6; }
.foot h3 {
  font-size: .76rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--basil);
  margin-bottom: 1.15rem;
}
.foot__nav { display: flex; flex-direction: column; gap: .65rem; align-items: flex-start; }
.foot__nav a, .foot__col > a {
  text-decoration: none; font-size: .93rem;
  color: var(--text-mute);
  transition: color .18s ease;
}
.foot__nav a:hover, .foot__col > a:hover { color: var(--red-text); }
.foot__col address {
  font-style: normal; font-size: .93rem;
  color: var(--text-mute); line-height: 1.6;
  margin-bottom: .65rem;
}
.foot__col > a { display: inline-block; font-weight: 700; color: var(--cream); }
.foot__hours { font-size: .84rem; color: var(--cream-mute); margin-top: .85rem; }
.foot__social { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.5rem; }
.foot__social a {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; font-size: .92rem; font-weight: 600;
  color: var(--text-mute);
  transition: color .18s ease;
}
.foot__social a:hover { color: var(--red-text); }

.foot__bar { border-top: 1px solid var(--line); }
.foot__bar-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .75rem; padding-block: 1.5rem;
}
.foot__bar p { font-size: .82rem; color: var(--cream-mute); }

/* -- Responsive -------------------------------------------------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  /* Collapse the split: photo goes full-bleed behind the copy. */
  .hero {
    grid-template-columns: 1fr;
    min-height: 92svh;
    isolation: isolate;
  }
  .hero__media { grid-area: 1 / 1; z-index: -1; }
  .hero__media img { object-position: 50% 30%; }
  .hero__media::after {
    background:
      linear-gradient(to top, var(--ink-900) 3%, rgba(22,17,15,.9) 46%, rgba(22,17,15,.5) 100%),
      linear-gradient(rgba(16,13,12,.28), rgba(16,13,12,.28));
  }
  .hero__content {
    grid-area: 1 / 1;
    align-self: end;
    padding: 7rem var(--gutter) clamp(2.5rem, 8vw, 4rem);
  }

  .story__grid { grid-template-columns: 1fr; }
  .story__media img { aspect-ratio: 16 / 11; }
  .story__body p { max-width: none; }
  .hero__title { max-width: none; }
  .items { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  .hero__cta .btn, .cta__btns .btn { flex: 1; min-width: 100%; }
  .nav__brandtext { display: none; }
  .story__facts { gap: 1.5rem; }
  .story__facts li { min-width: 45%; }
  .mealpack { flex-direction: column; align-items: flex-start; }
  .mealpack .btn { width: 100%; }
  .foot__bar-inner { flex-direction: column; }
  .item__head h3 { max-width: 68%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ticker__track { animation: none; transform: none; }
  .sig:hover, .btn:hover { transform: none; }
}

