:root {
  --red: #a8232d;
  --red-dark: #741720;
  --red-text: #a8232d;
  --aqua: #70c5c2;
  --aqua-pale: #cce9e5;
  --aqua-soft: #cce9e5;
  --cream: #f8f1df;
  --paper: #fffaf0;
  --ink: #201a19;
  --ink-soft: #564b47;
  --line: rgba(32, 26, 25, 0.18);
  --shadow: 0 24px 70px rgba(65, 19, 17, 0.18);
  --radius-card: 18px;
  --radius-button: 999px;
  --display: "Arial Black", "Franklin Gothic Heavy", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  --header-height: 72px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #1d1918;
    --paper: #27211f;
    --ink: #f8f1df;
    --ink-soft: #d8cbc2;
    --aqua-soft: #244c4c;
    --red-text: #ff9aa4;
    --line: rgba(248, 241, 223, 0.2);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    color-scheme: dark;
  }
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

button,
.button,
.mobile-cta a {
  min-height: 44px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-button);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 64px);
  color: #fffaf0;
  transition: background-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.is-solid,
.site-header.menu-visible {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(48, 20, 17, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.brand-main {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.07em;
}

.brand-main b {
  color: var(--aqua);
  font-style: normal;
}

.brand-sub {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--aqua);
  transition: right 180ms ease;
}

.site-nav > a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  border: 0;
  padding: 11px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius-button);
  background: var(--red);
  color: #fffaf0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(111, 24, 31, 0.22);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 13px 28px rgba(111, 24, 31, 0.28);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
}

.button-ghost {
  border-color: rgba(255, 250, 240, 0.76);
  background: rgba(32, 26, 25, 0.28);
  color: #fffaf0;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: #fffaf0;
  color: #201a19;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fffaf0;
  background: #201a19;
}

.hero > img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: 56% center;
  animation: hero-in 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(20, 13, 11, 0.82) 0%, rgba(20, 13, 11, 0.55) 38%, rgba(20, 13, 11, 0.08) 72%),
    linear-gradient(0deg, rgba(20, 13, 11, 0.48), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 90vw);
  margin: 0 0 clamp(82px, 11vh, 120px) clamp(20px, 7vw, 108px);
  animation: content-in 720ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-location {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-content > p:not(.hero-location) {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-info {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-info > div:not(.quick-links) {
  min-width: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 4px;
  color: var(--red-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.quick-links {
  display: flex;
  gap: 10px;
}

.quick-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  border-radius: var(--radius-button);
  background: var(--aqua-soft);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.sauce-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  padding-block: clamp(92px, 12vw, 170px);
}

.sauce-photo {
  min-height: 590px;
  margin-left: min(-8vw, -48px);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sauce-photo img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: 55% center;
}

.sauce-copy {
  position: relative;
  z-index: 2;
  margin-left: -62px;
  padding: clamp(28px, 4.8vw, 58px);
  border-radius: var(--radius-card);
  background: var(--red);
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.section-mark {
  margin-bottom: 16px;
  color: var(--red-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sauce-copy .section-mark,
.section-mark.light {
  color: var(--aqua-pale);
}

.sauce-copy h2,
.soda-type h2,
.menu-heading h2,
.escape-copy h2,
.visit-card h2 {
  margin-bottom: 20px;
  font-size: clamp(37px, 5.3vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.sauce-copy > p:not(.section-mark, .micro-note) {
  max-width: 48ch;
  font-size: 18px;
  font-weight: 700;
}

.sauce-scroll {
  display: flex;
  gap: 8px;
  margin: 26px -10px 18px;
  padding: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.sauce-scroll span {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: var(--radius-button);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.micro-note {
  margin: 0;
  color: rgba(255, 250, 240, 0.8);
  font-size: 12px;
  line-height: 1.45;
}

.soda-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(112, 197, 194, 0.07), rgba(112, 197, 194, 0.07)),
    var(--red-dark);
  color: #fffaf0;
}

.soda-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  background: repeating-conic-gradient(#fffaf0 0 25%, #201a19 0 50%) 0 / 18px 18px;
  opacity: 0.9;
}

.soda-inner {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
  padding: clamp(80px, 10vw, 140px) 0;
}

.soda-type {
  padding-left: clamp(12px, 3vw, 44px);
}

.soda-type > p:not(.section-mark) {
  max-width: 540px;
  font-size: 18px;
}

.soda-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  margin-top: 36px;
}

.soda-names span {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.28);
  font-family: var(--display);
  font-size: clamp(18px, 2.3vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.soda-names span:nth-child(3n + 2) {
  color: var(--aqua);
}

.soda-photo {
  margin: -30px 0 -90px;
}

.soda-photo img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-card);
  box-shadow: 0 28px 80px rgba(20, 13, 11, 0.38);
}

.soda-photo figcaption {
  max-width: 35ch;
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 13px;
}

.menu-section {
  padding-block: clamp(120px, 14vw, 190px) clamp(92px, 10vw, 140px);
}

.menu-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.menu-heading p {
  max-width: 55ch;
  color: var(--ink-soft);
  font-size: 18px;
}

.menu-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "featured aqua"
    "featured check"
    "dark dark";
  gap: 16px;
}

.menu-group {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.menu-group.featured {
  grid-area: featured;
  background: var(--red);
  color: #fffaf0;
}

.menu-group.aqua {
  grid-area: aqua;
  background: var(--aqua-soft);
}

.menu-group.check {
  grid-area: check;
  background-color: var(--paper);
  background-image: linear-gradient(45deg, rgba(168, 35, 45, 0.08) 25%, transparent 25%, transparent 75%, rgba(168, 35, 45, 0.08) 75%),
    linear-gradient(45deg, rgba(168, 35, 45, 0.08) 25%, transparent 25%, transparent 75%, rgba(168, 35, 45, 0.08) 75%);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
}

.menu-group.dark {
  grid-area: dark;
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) 1fr 0.8fr;
  align-items: center;
  gap: 28px;
  background: #201a19;
  color: #fffaf0;
}

.menu-group h3 {
  margin-bottom: 24px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.menu-group.dark h3,
.menu-group.dark .menu-item,
.menu-group.dark .sweet-note {
  margin: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid currentColor;
}

.menu-item h4 {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.3;
}

.menu-item p,
.sweet-note {
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.78;
}

.menu-item strong {
  font-size: 14px;
  white-space: nowrap;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.menu-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.escape-section {
  padding: 24px 20px;
  background:
    repeating-conic-gradient(#201a19 0 25%, #fffaf0 0 50%) 50% / 36px 36px;
}

.escape-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-card);
  background: var(--aqua);
  color: #201a19;
  box-shadow: var(--shadow);
}

.escape-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.2vw, 42px);
}

.escape-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.ticket-link {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  border: 2px dashed #201a19;
  border-radius: var(--radius-card);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease;
}

.ticket-link:hover {
  background: #fffaf0;
  transform: rotate(-1deg) translateY(-2px);
}

.ticket-link span {
  font-size: 22px;
}

.visit-section {
  position: relative;
  min-height: 820px;
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.visit-section > img,
.visit-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visit-section > img {
  object-fit: cover;
  object-position: center 46%;
}

.visit-scrim {
  background: linear-gradient(90deg, rgba(20, 13, 11, 0.04) 35%, rgba(20, 13, 11, 0.52));
}

.visit-card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 40px));
  margin: 0 clamp(20px, 7vw, 110px) 70px 20px;
  padding: clamp(28px, 4.5vw, 52px);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.visit-card h2 {
  font-size: clamp(36px, 4.8vw, 62px);
}

.visit-card address {
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 800;
}

.hours {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0;
}

.hours span {
  color: var(--ink-soft);
}

.hours strong {
  white-space: nowrap;
}

.visit-note {
  margin: 18px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.visit-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.text-link {
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px 32px;
  padding: 42px clamp(20px, 6vw, 86px) 46px;
  background: #201a19;
  color: #fffaf0;
}

.footer-brand {
  width: max-content;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes content-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 940px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 100px 24px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > a:not(.button) {
    font-family: var(--display);
    font-size: clamp(28px, 8vw, 42px);
  }

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

  .quick-links {
    justify-content: flex-end;
  }

  .sauce-section,
  .soda-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .sauce-photo {
    min-height: 430px;
    margin: 0;
    border-radius: var(--radius-card);
  }

  .sauce-photo img {
    min-height: 430px;
  }

  .sauce-copy {
    width: calc(100% - 28px);
    margin: -50px auto 0;
  }

  .soda-type {
    padding-left: 18px;
  }

  .soda-photo {
    width: min(540px, 88%);
    margin: 0 0 -90px auto;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 66px;
  }

  .hero {
    min-height: 100dvh;
    align-items: flex-end;
  }

  .hero > img {
    object-position: 61% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(20, 13, 11, 0.88) 0%, rgba(20, 13, 11, 0.52) 58%, rgba(20, 13, 11, 0.12) 100%),
      linear-gradient(90deg, rgba(20, 13, 11, 0.4), transparent);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 94px;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(47px, 15vw, 70px);
  }

  .hero-content > p:not(.hero-location) {
    max-width: 36ch;
    margin-bottom: 22px;
    font-size: 16px;
  }

  .quick-info {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: -28px;
    padding: 22px;
  }

  .quick-links {
    justify-content: flex-start;
  }

  .section-shell,
  .soda-inner {
    width: calc(100% - 28px);
  }

  .sauce-section {
    padding-block: 82px;
  }

  .sauce-photo,
  .sauce-photo img {
    min-height: 330px;
  }

  .sauce-photo img {
    object-position: 56% center;
  }

  .sauce-copy {
    width: calc(100% - 18px);
    padding: 28px 22px;
  }

  .sauce-copy h2,
  .soda-type h2,
  .menu-heading h2,
  .visit-card h2 {
    font-size: clamp(36px, 11.5vw, 54px);
  }

  .escape-copy h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .soda-inner {
    gap: 30px;
    padding: 78px 0 92px;
  }

  .soda-type {
    padding-left: 10px;
  }

  .soda-names {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .soda-names span {
    font-size: 23px;
  }

  .soda-photo {
    width: calc(100% - 24px);
    margin: 0 -4px -148px auto;
  }

  .menu-section {
    padding-block: 175px 82px;
  }

  .menu-heading {
    margin-bottom: 34px;
  }

  .menu-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "aqua"
      "check"
      "dark";
  }

  .menu-group.dark {
    display: block;
  }

  .menu-group.dark h3 {
    margin-bottom: 24px;
  }

  .menu-group.dark .menu-item {
    margin-bottom: 16px;
  }

  .menu-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .escape-section {
    padding: 18px 14px;
    background-size: 28px 28px;
  }

  .escape-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 24px;
  }

  .ticket-link {
    width: 100%;
    justify-content: space-between;
  }

  .visit-section {
    min-height: 850px;
    align-items: flex-end;
  }

  .visit-section > img {
    object-position: 43% center;
  }

  .visit-scrim {
    background: linear-gradient(0deg, rgba(20, 13, 11, 0.5), rgba(20, 13, 11, 0.04) 72%);
  }

  .visit-card {
    width: calc(100% - 28px);
    margin: 0 14px 30px;
    padding: 28px 22px;
  }

  .hours p {
    flex-direction: column;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 36px 20px 38px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    min-height: 62px;
    padding: 7px;
    background: #201a19;
    box-shadow: 0 -10px 30px rgba(20, 13, 11, 0.24);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 250, 240, 0.2);
    color: #fffaf0;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-cta a:first-child {
    border-radius: var(--radius-button);
    background: var(--red);
  }

  .mobile-cta a:last-child {
    border-right: 0;
  }
}

@media (max-width: 390px) {
  .hero-actions .button {
    padding-inline: 17px;
  }

  .menu-group {
    padding: 24px 19px;
  }

  .menu-item {
    gap: 10px;
  }
}

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-solid,
  .site-header.menu-visible,
  .visit-card {
    backdrop-filter: none;
    background: var(--paper);
  }
}

.error-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(168, 35, 45, 0.92), rgba(116, 23, 32, 0.96)),
    repeating-conic-gradient(#fffaf0 0 25%, #201a19 0 50%) 50% / 32px 32px;
  color: #fffaf0;
}

.error-page > div {
  width: min(680px, 100%);
  padding: clamp(38px, 8vw, 80px);
  border-radius: var(--radius-card);
  background: rgba(32, 26, 25, 0.92);
  box-shadow: var(--shadow);
}

.error-page h1 {
  font-size: clamp(48px, 9vw, 92px);
}

.error-page .section-mark {
  color: var(--aqua);
}
