:root {
  --red: #a82922;
  --red-bright: #d84a38;
  --ink: #171411;
  --coffee: #35251d;
  --cream: #f5edda;
  --paper: #fff9e9;
  --yellow: #efc64b;
  --sage: #8e9a70;
  --salmon: #b86c5a;
  --line: rgba(23, 20, 17, .2);
  --max: 1280px;
  --header: 86px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

::selection { color: var(--paper); background: var(--red); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header);
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.24);
  transition: color .35s ease, background .35s ease, height .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(245, 237, 218, .94);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark { width: 37px; height: 44px; fill: currentColor; }

.brand span { display: grid; line-height: .88; }

.brand strong {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 1.16rem;
  letter-spacing: -.05em;
}

.brand small { margin-top: 7px; font-size: .63rem; font-weight: 700; letter-spacing: .24em; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }

.site-nav a {
  position: relative;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-call {
  padding: 11px 17px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  transition: color .2s ease, background .2s ease;
}

.nav-call:hover { color: var(--yellow); background: transparent; }

.nav-call span { display: none; }

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--paper);
  background: var(--coffee);
  isolation: isolate;
  overflow: hidden;
}

.hero-media, .hero-shade { position: absolute; inset: 0; }

.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-media { animation: hero-scale 1.5s var(--ease) both; }

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,11,8,.92) 0%, rgba(15,11,8,.75) 34%, rgba(15,11,8,.18) 67%, rgba(15,11,8,.26) 100%),
    linear-gradient(0deg, rgba(15,11,8,.56) 0%, transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  min-height: 100svh;
  padding: calc(var(--header) + clamp(46px, 9vh, 100px)) 0 clamp(52px, 8vh, 88px) clamp(20px, 8vw, 126px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-eyebrow { animation: rise-in .8s .15s var(--ease) both; }

.hero-eyebrow span { width: 26px; height: 1px; background: currentColor; }

.hero-brand {
  margin: 0 0 12px;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: .035em;
  text-transform: uppercase;
  animation: rise-in .8s .25s var(--ease) both;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 9.2rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .78;
  text-wrap: balance;
  animation: rise-in 1s .33s var(--ease) both;
}

.hero-intro {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255,249,233,.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  animation: rise-in .9s .45s var(--ease) both;
}

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; animation: rise-in .9s .55s var(--ease) both; }

.button {
  min-height: 52px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.button:hover, .button:focus-visible { transform: translateY(-3px); }

.button-primary { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }

.button-primary:hover { color: var(--yellow); background: transparent; }

.button-ghost { color: var(--paper); border-color: rgba(255,249,233,.55); background: rgba(255,255,255,.04); }

.button-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.1); }

.button-dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }

.button-dark:hover { color: var(--ink); background: transparent; }

.open-note {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  animation: rise-in .9s .63s var(--ease) both;
}

.open-note span:last-child { padding-left: 10px; border-left: 1px solid rgba(255,255,255,.35); }

.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(239,198,75,.17); }

.status-dot.is-open { background: #9dd268; box-shadow: 0 0 0 5px rgba(157,210,104,.18); }

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3.8vw, 62px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-scroll i { width: 1px; height: 44px; background: rgba(255,255,255,.65); animation: scroll-line 1.8s ease-in-out infinite; transform-origin: top; }

.ticker { overflow: hidden; color: var(--paper); background: var(--red); border-block: 1px solid rgba(0,0,0,.25); }

.ticker-track {
  width: max-content;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker-track b { color: var(--yellow); font-family: "Fraunces", serif; font-size: 1.8rem; line-height: 0; }

.section-pad { padding: clamp(80px, 11vw, 160px) clamp(20px, 6vw, 96px); }

.proof {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(50px, 8vw, 120px);
}

.proof h2, .menu-heading h2, .story h2, .visit h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.3rem, 6.4vw, 7.2rem);
  letter-spacing: -.065em;
  line-height: .88;
}

.proof-copy > p { margin: 4px 0 54px; font-size: clamp(1.12rem, 1.7vw, 1.55rem); line-height: 1.45; }

.proof-facts { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }

.proof-facts div { padding: 21px 14px 0 0; }

.proof-facts dt { font-family: "Archivo Black", "Arial Black", sans-serif; font-size: clamp(1.8rem, 3vw, 3.15rem); letter-spacing: -.07em; line-height: 1; }

.proof-facts dd { margin: 10px 0 0; color: rgba(23,20,17,.65); font-size: .74rem; font-weight: 600; line-height: 1.4; }

.counter-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--sage); }

.counter-image { min-height: 700px; overflow: hidden; }

.counter-image picture, .counter-image img { width: 100%; height: 100%; }

.counter-image img { object-fit: cover; object-position: center 65%; transition: transform 1.2s var(--ease); }

.counter-feature:hover .counter-image img { transform: scale(1.025); }

.counter-copy { position: relative; padding: clamp(70px, 9vw, 142px) clamp(28px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }

.counter-copy .eyebrow, .counter-copy h2, .counter-copy p, .counter-copy a { position: relative; z-index: 1; }

.counter-copy h2 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(3.8rem, 6vw, 7rem); letter-spacing: -.065em; line-height: .86; }

.counter-copy > p:not(.eyebrow) { max-width: 520px; margin: 34px 0 28px; font-size: 1.08rem; }

.giant-question { position: absolute; right: -7%; top: -21%; color: rgba(245,237,218,.17); font-family: "Fraunces", serif; font-size: clamp(30rem, 65vw, 70rem); font-weight: 800; line-height: 1; transform: rotate(7deg); }

.text-link { width: fit-content; display: inline-flex; gap: 9px; align-items: center; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

.text-link span { transition: transform .25s var(--ease); }

.text-link:hover span { transform: translateX(6px); }

.menu-section { background: var(--paper); }

.menu-heading { max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 110px); display: grid; grid-template-columns: 1fr .7fr; column-gap: 80px; }

.menu-heading .eyebrow { grid-column: 1 / -1; }

.menu-heading p:last-child { max-width: 420px; align-self: end; margin: 0 0 8px; color: rgba(23,20,17,.66); font-size: 1.05rem; }

.menu-layout { max-width: var(--max); margin: auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .9fr); gap: clamp(34px, 6vw, 84px); align-items: start; }

.menu-image { position: relative; overflow: hidden; background: var(--coffee); }

.menu-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }

.menu-image:hover img { transform: scale(1.035); }

.menu-image > div { position: absolute; left: 0; bottom: 0; padding: 22px 25px; color: var(--paper); background: var(--ink); }

.menu-image span { display: block; font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.menu-image strong { font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; }

.menu-image-breakfast { aspect-ratio: 4 / 3; }

.menu-image-lunch { width: 72%; margin: -70px 0 0 auto; aspect-ratio: 4 / 5; }

.menu-list { grid-column: 2; grid-row: 1; }

.menu-list > div { padding: 22px 0; display: grid; grid-template-columns: 42px 1fr; column-gap: 15px; border-top: 1px solid var(--line); }

.menu-list > div:last-child { border-bottom: 1px solid var(--line); }

.menu-list span { grid-row: 1 / 3; padding-top: 5px; color: var(--red); font-family: "Archivo Black", sans-serif; font-size: .68rem; }

.menu-list h3 { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(1.7rem, 2.4vw, 2.55rem); letter-spacing: -.035em; line-height: 1.05; }

.menu-list p { margin: 7px 0 0; color: rgba(23,20,17,.64); font-size: .88rem; }

.menu-note { max-width: var(--max); margin: 36px auto 0; color: rgba(23,20,17,.6); font-size: .72rem; }

.menu-note a { font-weight: 800; }

.story { display: grid; grid-template-columns: minmax(350px, .85fr) minmax(0, 1.15fr); color: var(--paper); background: var(--red); }

.story-photo { min-height: 800px; }

.story-photo picture, .story-photo img { width: 100%; height: 100%; }

.story-photo img { object-fit: cover; }

.story-copy { padding: clamp(80px, 10vw, 150px) clamp(30px, 9vw, 140px); display: flex; flex-direction: column; justify-content: center; }

.story-copy > p:not(.eyebrow) { max-width: 610px; margin: 34px 0 42px; color: rgba(255,249,233,.8); font-size: 1.08rem; }

.story blockquote { max-width: 580px; margin: 0 0 42px; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.35); font-family: "Fraunces", Georgia, serif; font-size: clamp(1.4rem, 2.2vw, 2.05rem); font-weight: 600; line-height: 1.25; }

.story cite { margin-top: 12px; display: block; font-family: "DM Sans", sans-serif; font-size: .68rem; font-style: normal; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.story .button { align-self: flex-start; }

.visit { background: var(--yellow); }

.visit-heading { max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 100px); }

.visit-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1.1fr 1fr .8fr; gap: clamp(36px, 6vw, 90px); }

.visit-label { margin: 0 0 22px; font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.visit-primary address { margin-bottom: 30px; font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 3.1vw, 3.5rem); font-style: normal; font-weight: 700; letter-spacing: -.04em; line-height: 1; }

.hours dl { margin: 0; }

.hours dl div { padding: 8px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(23,20,17,.18); font-size: .84rem; }

.hours dd { margin: 0; font-weight: 700; }

.phone-link { display: inline-block; font-family: "Archivo Black", "Arial Black", sans-serif; font-size: clamp(2.7rem, 4.7vw, 5.4rem); letter-spacing: -.075em; line-height: .88; text-decoration: none; }

.phone-link:hover { color: var(--red); }

.visit-contact > p:last-child { margin: 25px 0 0; font-size: .86rem; font-weight: 700; }

.faq { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 10vw, 150px); }

.faq-list details { border-top: 1px solid var(--line); }

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary { padding: 28px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: "Fraunces", Georgia, serif; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 700; letter-spacing: -.025em; cursor: pointer; list-style: none; }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span { font-family: "DM Sans", sans-serif; font-size: 1.6rem; font-weight: 400; transition: transform .25s ease; }

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p { max-width: 620px; margin: -8px 0 28px; color: rgba(23,20,17,.66); }

.final-cta { position: relative; min-height: 620px; padding: 90px 24px; display: grid; place-items: center; color: var(--paper); background: var(--coffee); overflow: hidden; text-align: center; }

.final-mark { position: absolute; left: 50%; top: 50%; color: rgba(239,198,75,.09); font-family: "Fraunces", serif; font-size: min(100vw, 65rem); font-weight: 800; line-height: .7; transform: translate(-48%, -51%) rotate(-8deg); }

.final-content { position: relative; z-index: 1; }

.final-content .eyebrow { justify-content: center; }

.final-cta h2 { max-width: 900px; font-size: clamp(4.2rem, 9vw, 10rem); }

.final-content > div { margin-top: 38px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.site-footer { padding: 46px clamp(20px, 5vw, 76px); display: grid; grid-template-columns: 1fr 1fr auto; gap: 25px 40px; align-items: end; color: var(--paper); background: var(--ink); border-top: 1px solid rgba(255,255,255,.14); }

.footer-brand { display: grid; text-decoration: none; text-transform: uppercase; line-height: 1; }

.footer-brand span { font-family: "Archivo Black", sans-serif; font-size: 1.6rem; letter-spacing: -.05em; }

.footer-brand small { margin-top: 4px; letter-spacing: .25em; }

.site-footer p { margin: 0; color: rgba(255,249,233,.62); font-size: .78rem; }

.site-footer > div { display: flex; gap: 20px; }

.site-footer > div a { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.site-footer > small { grid-column: 1 / -1; color: rgba(255,249,233,.42); font-size: .6rem; }

.mobile-actions { display: none; }

.question-progress {
  position: fixed;
  z-index: 60;
  right: 18px;
  top: 50%;
  width: 34px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(to bottom, var(--red) calc(var(--scroll, 0) * 1%), rgba(53,37,29,.72) 0);
  border: 1px solid rgba(255,255,255,.24);
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  font-weight: 800;
  transform: translateY(-50%);
  transition: opacity .25s ease;
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }

.reveal-image { opacity: 1; clip-path: inset(0); transition: transform .55s var(--ease); }

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-image.is-visible { opacity: 1; clip-path: inset(0); }

@keyframes hero-scale { from { opacity: .3; transform: scale(1.07); } to { opacity: 1; transform: scale(1); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes scroll-line { 0%, 100% { transform: scaleY(.25); opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
  :root { --header: 72px; }

  .site-header { padding-inline: 20px; }
  .nav-toggle { position: relative; z-index: 103; width: 52px; height: 46px; padding: 10px; display: grid; align-content: center; gap: 5px; color: inherit; background: transparent; border: 0; }
  .nav-toggle span { width: 25px; height: 2px; display: block; justify-self: end; background: currentColor; transition: transform .3s ease, opacity .2s ease; }
  .nav-toggle span:nth-child(2) { width: 18px; }
  .nav-toggle b { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 102; inset: 0; padding: 120px 28px 90px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; color: var(--paper); background: var(--red); transform: translateX(100%); transition: transform .55s var(--ease); }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a { padding: 20px 0; font-family: "Fraunces", serif; font-size: clamp(2.1rem, 8vw, 4rem); font-weight: 700; letter-spacing: -.04em; text-transform: none; border-bottom: 1px solid rgba(255,255,255,.3); }
  .site-nav .nav-call { margin-top: 25px; padding: 16px 19px; color: var(--ink); background: var(--yellow); border: 0; font-family: "DM Sans", sans-serif; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
  .nav-call span { display: inline; }
  .site-header.is-scrolled .nav-toggle[aria-expanded="true"], .site-header .nav-toggle[aria-expanded="true"] { color: var(--paper); }

  .hero-copy { padding-left: clamp(20px, 7vw, 70px); }
  .proof { grid-template-columns: 1fr; }
  .proof-copy { max-width: 720px; }
  .counter-feature { grid-template-columns: 1fr; }
  .counter-image { min-height: 620px; }
  .counter-copy { min-height: 620px; }
  .menu-heading { grid-template-columns: 1fr; }
  .menu-heading p:last-child { margin-top: 25px; }
  .story { grid-template-columns: 1fr 1.1fr; }
  .story-photo { min-height: 690px; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-contact { grid-column: 1 / -1; padding-top: 35px; border-top: 1px solid rgba(23,20,17,.2); }
  .phone-link br { display: none; }
  .faq { grid-template-columns: 1fr; }
  .question-progress { display: none; }
}

@media (max-width: 720px) {
  .site-header { height: 66px; }
  .site-header.is-scrolled { height: 62px; }
  .brand-mark { width: 30px; height: 36px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .55rem; }

  .hero { min-height: 100svh; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(15,11,8,.94) 0%, rgba(15,11,8,.69) 57%, rgba(15,11,8,.35) 100%); }
  .hero-copy { width: 100%; min-height: 100svh; padding: 118px 20px 80px; justify-content: flex-end; }
  .hero h1 { max-width: 570px; font-size: clamp(4.1rem, 20vw, 6.9rem); line-height: .8; }
  .hero-intro { margin-top: 22px; font-size: .98rem; }
  .hero-actions { width: 100%; margin-top: 25px; }
  .hero-actions .button { flex: 1 1 150px; padding-inline: 12px; }
  .open-note { margin-top: 22px; flex-wrap: wrap; }
  .open-note span:last-child { display: none; }
  .hero-scroll { display: none; }
  .ticker-track { padding-block: 14px; }

  .section-pad { padding: 82px 20px; }
  .proof h2, .menu-heading h2, .story h2, .visit h2, .faq h2 { font-size: clamp(3.2rem, 15vw, 5.1rem); }
  .proof-copy > p { margin-bottom: 38px; font-size: 1.05rem; }
  .proof-facts { grid-template-columns: 1fr; }
  .proof-facts div { padding: 18px 0; display: grid; grid-template-columns: 90px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
  .proof-facts dt { font-size: 2rem; }
  .proof-facts dd { margin: 0; }

  .counter-image { min-height: 72svh; }
  .counter-copy { min-height: 580px; padding: 80px 20px; }
  .counter-copy h2 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .counter-copy > p:not(.eyebrow) { margin-top: 28px; }
  .giant-question { right: -20%; top: -11%; font-size: 34rem; }

  .menu-heading { margin-bottom: 48px; }
  .menu-layout { grid-template-columns: 1fr; gap: 42px; }
  .menu-image-breakfast { grid-row: 1; }
  .menu-list { grid-column: 1; grid-row: 2; }
  .menu-image-lunch { width: 78%; grid-row: 3; margin: -8px 0 0 auto; }
  .menu-list h3 { font-size: 1.75rem; }

  .story { grid-template-columns: 1fr; }
  .story-photo { min-height: 85svh; }
  .story-copy { padding: 80px 20px; }

  .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .visit-contact { grid-column: 1; }
  .phone-link { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hours dl div { font-size: .8rem; }

  .faq-list summary { padding-block: 23px; font-size: 1.3rem; }
  .final-cta { min-height: 580px; padding-bottom: 130px; }
  .final-cta h2 { font-size: clamp(4rem, 19vw, 7rem); }
  .final-content > div { align-items: stretch; flex-direction: column; }

  .site-footer { padding: 45px 20px 120px; grid-template-columns: 1fr; align-items: start; }
  .site-footer > div { flex-wrap: wrap; }
  .site-footer > small { grid-column: 1; }

  .mobile-actions { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: 10px; padding: 7px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; color: var(--paper); background: rgba(23,20,17,.94); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 12px 40px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
  .mobile-actions a { min-width: 0; padding: 8px 10px; display: grid; text-decoration: none; }
  .mobile-actions a:first-child { color: var(--ink); background: var(--yellow); }
  .mobile-actions a:last-child { border: 1px solid rgba(255,255,255,.18); }
  .mobile-actions span { font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
  .mobile-actions strong { overflow: hidden; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
}

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