:root {
  --red: #c92535;
  --red-dark: #78111c;
  --cream: #fff4de;
  --cream-light: #fffaf1;
  --green: #14804a;
  --yellow: #f5c542;
  --ink: #261719;
  --muted: #725e59;
  --line: rgba(38, 23, 25, 0.18);
  --display: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ticker-height: 38px;
  --header-height: 88px;
  --next-section-hint: 106px;
  --content-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}

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

.announcement-bar {
  --announcement-gap: clamp(36px, 4vw, 64px);
  position: relative;
  z-index: 110;
  width: 100%;
  min-height: var(--ticker-height);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 244, 222, 0.16);
  background: var(--ink);
  color: var(--cream);
}

.announcement-bar::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--ink) 0%, var(--red-dark) 26%, var(--red) 49%, var(--yellow) 68%, var(--red) 84%, var(--ink) 100%);
  background-position: 0 50%;
  background-size: 440% 100%;
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: announcement-colors 40s ease-in-out infinite;
}

.announcement-bar__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  min-height: var(--ticker-height);
  animation: announcement-scroll 34s linear infinite;
  will-change: transform;
}

.announcement-bar__group {
  display: flex;
  min-width: max-content;
  min-height: var(--ticker-height);
  flex: none;
  align-items: center;
  gap: var(--announcement-gap);
  padding: 0 var(--announcement-gap) 0 0;
}

.announcement-bar__group span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(38, 23, 25, 0.9), 0 0 10px rgba(38, 23, 25, 0.55);
}

.announcement-bar__group span::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

@keyframes announcement-scroll {
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@keyframes announcement-colors {
  0%,
  100% {
    background-position: 0 50%;
    opacity: 0;
  }

  28% {
    background-position: 35% 50%;
    opacity: 0.32;
  }

  58% {
    background-position: 100% 50%;
    opacity: 0.46;
  }

  82% {
    background-position: 55% 50%;
    opacity: 0.3;
  }
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid rgba(201, 37, 53, 0.14);
  background: rgba(255, 244, 222, 0.96);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(78, 34, 28, 0.08);
}

.brand {
  display: flex;
  width: 220px;
  height: 82px;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.brand img {
  width: 210px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:not(.nav__cta) {
  position: relative;
}

.nav a:not(.nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 180ms ease;
}

.nav__cta {
  min-height: 42px;
  padding: 9px 18px;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--red);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--ticker-height) - var(--header-height) - var(--next-section-hint));
  max-height: 820px;
  overflow: hidden;
  background: var(--red-dark);
  color: var(--cream-light);
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(38, 5, 11, 0.3);
  content: "";
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--content-width));
  min-height: calc(100svh - var(--ticker-height) - var(--header-height) - var(--next-section-hint));
  max-height: 820px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  padding: 52px 24px 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow--red {
  color: var(--red);
}

.eyebrow--green {
  color: var(--green);
}

.eyebrow--yellow {
  color: var(--yellow);
}

.hero h1,
.hero__headline,
.section h2,
.marmitex h2,
.final-cta h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  width: 100%;
  max-width: 620px;
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.98;
  text-shadow: 0 3px 18px rgba(38, 5, 11, 0.48);
}

.hero__headline {
  width: 100%;
  max-width: 560px;
  margin: 20px 0 0;
  color: #ffd759;
  font-size: 1.55rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(38, 5, 11, 0.58);
}

.hero__copy {
  width: 100%;
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--cream-light);
  font-size: 1.08rem;
  font-weight: 620;
  text-shadow: 0 2px 12px rgba(38, 5, 11, 0.64);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button--cream {
  background: var(--cream);
  color: var(--red-dark);
}

.button--red {
  background: var(--red);
  color: var(--cream-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 850;
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--cream-light);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
}

.quick-info p,
.quick-info > a {
  min-height: 106px;
  margin: 0;
  padding: 25px max(24px, calc((100vw - var(--content-width)) / 6));
  border-right: 1px solid rgba(38, 23, 25, 0.22);
}

.quick-info p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-family: var(--display);
  font-size: 1.05rem;
}

.quick-info span {
  font-size: 0.88rem;
}

.quick-info > a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 0;
  font-weight: 850;
  text-decoration: none;
}

.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 120px 24px;
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 70px;
}

.section__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -46px;
}

.section h2,
.marmitex h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.04;
}

.section__intro > p:last-child,
.local__heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.assortment__list {
  border-top: 1px solid var(--line);
}

.assortment__item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.assortment__number {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 900;
}

.assortment__item > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: 60px;
}

.assortment__item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.assortment__item p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.marmitex {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 680px;
  background: var(--red);
  color: var(--cream-light);
}

.marmitex__image-wrap {
  min-height: 620px;
  overflow: hidden;
}

.marmitex__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.marmitex__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 84px clamp(52px, 5vw, 96px);
}

.marmitex__content h2,
.marmitex__content > p:not(.eyebrow) {
  max-width: 660px;
}

.marmitex__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.84);
}

.marmitex__hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  width: 100%;
  max-width: 520px;
  margin: 34px 0;
  border-top: 1px solid rgba(255, 244, 222, 0.35);
  border-bottom: 1px solid rgba(255, 244, 222, 0.35);
}

.marmitex__hours div {
  padding: 18px 0;
}

.marmitex__hours div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 244, 222, 0.35);
}

.marmitex__hours dt {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marmitex__hours dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.marmitex__menu {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 7vw, 128px);
  padding: 0 clamp(52px, 5vw, 96px) 96px;
}

.marmitex__menu-intro {
  align-self: start;
  padding-top: clamp(48px, 5vw, 80px);
}

.marmitex__menu-intro h3 {
  max-width: 440px;
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.08;
}

.marmitex__menu-intro > p:not(.eyebrow) {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.84);
}

.marmitex__menu-listing {
  min-width: 0;
  padding-top: 16px;
}

.weekly-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 64px);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 244, 222, 0.35);
  list-style: none;
}

.weekly-menu li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 244, 222, 0.24);
}

.weekly-menu__day,
.marmitex__daily-label {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.weekly-menu h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.weekly-menu p {
  margin: 6px 0 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: 0.95rem;
  line-height: 1.5;
}

.marmitex__daily-options {
  padding-top: 28px;
}

.marmitex__daily-label {
  margin: 0;
}

.marmitex__daily-options ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.marmitex__daily-options li {
  font-family: var(--display);
  font-size: 0.96rem;
  line-height: 1.3;
}

.marmitex__daily-options li::before {
  margin-right: 9px;
  color: var(--yellow);
  content: "•";
}

.marmitex__daily-options > p:last-child {
  margin: 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: 0.94rem;
}

.local {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  gap: 100px;
}

.local__heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.local__heading h2 {
  margin-bottom: 24px;
}

.local__details {
  border-top: 2px solid var(--ink);
}

.local__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.local__row p,
.local__row address {
  margin: 0;
  font-style: normal;
}

.local__label {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local__row a {
  font-weight: 850;
  text-underline-offset: 4px;
}

.local__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding-top: 40px;
}

.faq__items {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  width: 28px;
  flex: 0 0 28px;
  content: "+";
  color: var(--red);
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 680px;
  margin: -4px 48px 24px 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 72px max(24px, calc((100vw - var(--content-width)) / 2));
  background: var(--red);
  color: var(--cream-light);
}

.final-cta img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.final-cta h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
}

.final-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 250, 241, 0.84);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px 80px;
  align-items: start;
  padding: 56px max(24px, calc((100vw - var(--content-width)) / 2));
  background: var(--ink);
  color: var(--cream-light);
}

.site-footer p {
  margin: 0;
}

.site-footer__brand {
  margin-bottom: 6px !important;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.site-footer__links a {
  font-size: 0.88rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 244, 222, 0.18);
  color: rgba(255, 250, 241, 0.6);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .announcement-bar:hover .announcement-bar__track {
    animation-play-state: paused;
  }

  .nav a:not(.nav__cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button--cream:hover {
    background: #ffffff;
  }

  .button--red:hover {
    background: var(--red-dark);
  }

  .nav__cta:hover {
    background: var(--red);
    color: var(--cream-light);
  }

  .quick-info > a:hover {
    background: rgba(255, 244, 222, 0.35);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    display: flex;
    min-height: 50px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav__cta {
    justify-content: center;
    margin-top: 14px;
    border: 2px solid var(--red) !important;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-info > a {
    grid-column: auto;
    min-width: 0;
    min-height: 106px;
    border-top: 0;
  }

  .section__intro,
  .local,
  .faq {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section__intro .eyebrow {
    margin-bottom: -20px;
  }

  .local__heading {
    position: static;
  }

  .final-cta {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 34px;
  }

  .final-cta img {
    width: 130px;
    height: 130px;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --ticker-height: 34px;
    --next-section-hint: 84px;
  }

  .brand {
    width: 176px;
    height: 74px;
  }

  .brand img {
    width: 166px;
    height: 64px;
  }

  .hero {
    min-height: calc(100svh - var(--ticker-height) - var(--header-height) - var(--next-section-hint));
    max-height: none;
  }

  .hero__image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 42% center;
    transform: scale(1.01);
  }

  .hero__content {
    min-height: calc(100svh - var(--ticker-height) - var(--header-height) - var(--next-section-hint));
    max-height: none;
    justify-content: flex-end;
    padding: 72px 20px 34px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero__headline {
    font-size: 1.3rem;
  }

  .hero__copy {
    font-size: 0.98rem;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .quick-info p,
  .quick-info > a {
    min-height: 84px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(38, 23, 25, 0.22);
  }

  .quick-info > a {
    grid-column: auto;
    border-bottom: 0;
  }

  .section {
    padding: 84px 20px;
  }

  .section h2,
  .marmitex h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .section__intro {
    gap: 30px;
    margin-bottom: 48px;
  }

  .section__intro .eyebrow {
    margin-bottom: -10px;
  }

  .assortment__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .assortment__item > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .assortment__item h3 {
    font-size: 1.25rem;
  }

  .marmitex__image-wrap {
    min-height: 390px;
  }

  .marmitex {
    grid-template-columns: 1fr;
  }

  .marmitex__image-wrap img {
    object-position: 62% center;
  }

  .marmitex__content {
    padding: 64px 20px;
  }

  .marmitex__hours {
    max-width: none;
  }

  .marmitex__menu {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 40px 20px 64px;
  }

  .marmitex__menu-intro {
    padding-top: 0;
  }

  .marmitex__menu-listing {
    padding-top: 0;
  }

  .marmitex__menu-intro h3 {
    font-size: 1.7rem;
  }

  .weekly-menu li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .weekly-menu {
    grid-template-columns: 1fr;
  }

  .marmitex__daily-options ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .local__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .local__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .local__actions .text-link {
    justify-content: center;
  }

  .faq {
    gap: 30px;
    padding-top: 0;
  }

  .final-cta {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 56px 20px;
  }

  .final-cta img {
    width: 112px;
    height: 112px;
  }

  .final-cta h2 {
    font-size: 2.05rem;
  }

  .final-cta .eyebrow {
    margin-bottom: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }

  .site-footer__copyright {
    grid-column: auto;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-info p,
  .quick-info > a {
    border-bottom: 1px solid rgba(38, 23, 25, 0.22);
  }

  .quick-info > :nth-child(even) {
    border-right: 0;
  }

  .quick-info > :nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .marmitex {
    grid-template-columns: 1fr;
  }

  .marmitex__image-wrap {
    min-height: 520px;
  }

  .marmitex__content {
    padding: 72px 40px;
  }

  .marmitex__menu {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 56px 40px 72px;
  }

  .marmitex__menu-listing {
    padding-top: 0;
  }
}

@media (pointer: coarse) {
  .nav a,
  .text-link,
  summary {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .announcement-bar__track {
    width: 100%;
    animation: none;
  }

  .announcement-bar__group {
    width: 100%;
    justify-content: center;
    padding: 0 20px;
  }

  .announcement-bar__group:not(:first-child),
  .announcement-bar__group span:not(:first-child) {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
