:root {
  --ink: #071827;
  --ink-soft: #102b41;
  --blue: #005596;
  --blue-bright: #0878c9;
  --yellow: #f3b21e;
  --red: #d8242f;
  --cream: #f4f0e5;
  --paper: #fffdf7;
  --white: #ffffff;
  --header-h: 92px;
  --pad: clamp(24px, 5vw, 80px);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.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;
  z-index: 999;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-pad {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(7, 24, 39, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  width: 146px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-nav a,
.header-order {
  position: relative;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.header-order {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
}

.header-order span {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
}

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

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

.hero-image {
  z-index: -3;
  inset: -5%;
  background-image: url("assets/hero-interior.jpg");
  background-position: center 44%;
  background-size: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 15, 25, 0.94) 0%, rgba(3, 15, 25, 0.66) 46%, rgba(3, 15, 25, 0.22) 75%),
    linear-gradient(0deg, rgba(3, 15, 25, 0.86) 0%, transparent 42%),
    linear-gradient(180deg, rgba(3, 15, 25, 0.34) 0%, transparent 26%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: clamp(52%, 61vw, 70%);
  width: clamp(40px, 5vw, 82px);
  background: rgba(243, 178, 30, 0.9);
  transform: skewX(-7deg) translateX(1300%);
  transform-origin: bottom;
  animation: stripe-in 900ms 850ms cubic-bezier(.2,.82,.24,1) forwards;
  mix-blend-mode: multiply;
}

@keyframes stripe-in {
  to { transform: skewX(-7deg) translateX(0); }
}

.hero-copy {
  position: absolute;
  left: var(--pad);
  bottom: clamp(106px, 14vh, 148px);
  width: min(860px, calc(100% - var(--pad) * 2));
}

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

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 10.4vw, 174px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--white);
  text-shadow: 6px 6px 0 var(--blue);
}

.hero h1 span:last-child {
  margin-top: 0.2em;
  color: var(--yellow);
  font-size: 0.58em;
  letter-spacing: -0.025em;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: clamp(30px, 4vh, 52px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 2px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 10px 10px 0 var(--blue);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--red);
}

.button-ghost {
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  color: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 16px;
  color: var(--blue);
}

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

.text-link.light:hover,
.text-link.light:focus-visible {
  color: var(--yellow);
}

.hero-location {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  display: flex;
  gap: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

[data-hero-item] {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-up 700ms cubic-bezier(.2,.82,.24,1) forwards;
}

.hero h1[data-hero-item] { animation-delay: 180ms; }
.hero-actions[data-hero-item] { animation-delay: 400ms; }
.hero-location[data-hero-item] { animation-delay: 620ms; }

@keyframes hero-up {
  to { opacity: 1; transform: translateY(0); }
}

.score-ticker {
  overflow: hidden;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 36px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 15px 0 16px;
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  color: var(--red);
  font-size: 0.68em;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: center;
  min-height: 900px;
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(90px, 11vw, 170px);
  background: var(--cream);
}

.intro-copy {
  max-width: 720px;
}

.intro h2,
.food h2,
.sports h2,
.parties h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 132px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-transform: uppercase;
}

.intro-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 38px 0 34px;
  color: #354454;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.6;
}

.intro-figure {
  margin: 0;
}

.image-frame {
  height: min(64vw, 720px);
  min-height: 540px;
  overflow: hidden;
  background: #d9d4c8;
}

.image-frame img,
.image-parallax img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.intro-figure figcaption {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.food {
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(72px, 8vw, 120px);
  background: var(--blue);
  color: var(--white);
}

.food-heading {
  display: grid;
  grid-template-columns: 1.3fr minmax(280px, 0.7fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 110px);
}

.food h2 {
  color: var(--yellow);
  font-style: italic;
  text-shadow: 6px 6px 0 var(--ink);
}

.food-intro p {
  max-width: 440px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.food-lineup {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 8px;
  align-items: end;
  padding: 0 8px;
}

.food-item {
  position: relative;
  height: min(36vw, 560px);
  min-height: 390px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.food-item-tall {
  height: min(44vw, 680px);
}

.food-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(3, 15, 25, 0.9) 100%);
}

.food-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.82,.24,1), filter 650ms ease;
}

.food-item:hover img,
.food-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.03);
}

.food-meta {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.food-meta strong {
  max-width: 65%;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.food-meta em {
  color: var(--yellow);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sports {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.sports-image {
  min-height: 780px;
  overflow: hidden;
}

.sports-image img {
  object-position: center;
}

.sports-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 9vw, 150px) var(--pad);
  background:
    linear-gradient(rgba(7, 24, 39, 0.92), rgba(7, 24, 39, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,.06) 10px 11px);
}

.sports h2 {
  color: var(--white);
}

.sports-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.sports-stamp {
  position: absolute;
  z-index: 3;
  right: max(30px, 3vw);
  bottom: 38px;
  display: flex;
  width: 144px;
  height: 144px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  transform: rotate(-10deg);
}

.sports-stamp span {
  font-family: var(--display);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.sports-stamp small {
  margin-left: 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.parties {
  display: grid;
  grid-template-columns: 0.24fr 1.1fr 0.66fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  min-height: 720px;
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
  background: var(--yellow);
  color: var(--ink);
}

.party-mark {
  color: var(--red);
  font-size: clamp(90px, 11vw, 180px);
  line-height: 1;
  text-align: center;
  text-shadow: 8px 8px 0 var(--blue);
}

.parties h2 {
  font-size: clamp(64px, 7.4vw, 122px);
}

.party-detail {
  max-width: 460px;
}

.party-detail > p {
  margin: 0 0 36px;
  font-size: clamp(17px, 1.2vw, 20px);
}

.party-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.review {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 980px) 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: clamp(100px, 12vw, 180px) var(--pad);
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.review-rule {
  height: 3px;
  background: var(--yellow);
}

.review blockquote {
  margin: 0;
}

.review blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.4vw, 88px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.review blockquote footer {
  margin-top: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review blockquote footer span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 0.28em;
}

.visit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  min-height: 850px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(110px, 13vw, 190px) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.visit::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 25, 0.96) 0%, rgba(3, 15, 25, 0.88) 51%, rgba(3, 15, 25, 0.42) 100%);
}

.visit-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.visit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.visit-heading {
  align-self: center;
}

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

.visit h2 {
  margin-bottom: 50px;
  font-size: clamp(72px, 9.5vw, 158px);
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-self: end;
  padding-bottom: 12px;
}

.visit-block {
  padding-top: 20px;
  border-top: 3px solid var(--yellow);
}

.visit-block h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.visit-block p,
.visit-block a,
.visit-block dl {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.9;
}

.visit-block a {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 4px;
}

.visit-block dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.visit-block dt,
.visit-block dd {
  margin: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--white);
}

.footer > img {
  width: 124px;
}

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

.footer a,
.footer p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer p {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 700ms cubic-bezier(.2,.82,.24,1), transform 700ms cubic-bezier(.2,.82,.24,1);
}

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

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

@media (max-width: 1100px) {
  :root { --header-h: 82px; }

  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .site-nav { gap: 22px; }

  .header-order { margin-left: 28px; }

  .hero-copy { bottom: 122px; }

  .intro {
    gap: 70px;
    min-height: auto;
  }

  .food-heading { gap: 60px; }

  .sports {
    grid-template-columns: 1fr 0.84fr;
  }

  .parties {
    grid-template-columns: 0.18fr 1fr 0.72fr;
    gap: 36px;
  }

  .party-mark { font-size: 90px; }

  .visit {
    grid-template-columns: 1fr 0.95fr;
  }

  .visit-details {
    grid-template-columns: 1fr;
    max-width: 390px;
    justify-self: end;
  }
}

@media (max-width: 820px) {
  :root { --header-h: 76px; }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-h);
    grid-template-columns: 1fr auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand {
    position: relative;
    z-index: 3;
    width: 114px;
  }

  .header-order { display: none; }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform 200ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 100px var(--pad) 50px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(52px, 16vw, 86px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    background-position: 44% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3,15,25,.9) 0%, rgba(3,15,25,.55) 75%), linear-gradient(0deg, rgba(3,15,25,.92), transparent 55%);
  }

  .hero::after {
    left: auto;
    right: 11vw;
    width: 46px;
  }

  .hero-copy {
    bottom: 118px;
  }

  .hero h1 {
    font-size: clamp(68px, 16vw, 110px);
    line-height: 0.76;
  }

  .hero-location {
    right: auto;
    left: var(--pad);
    gap: 20px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .intro-copy { max-width: 640px; }

  .intro-figure {
    width: min(80%, 560px);
    margin-left: auto;
  }

  .food-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .food-lineup {
    grid-template-columns: 1fr 1fr;
  }

  .food-item,
  .food-item-tall {
    height: 58vw;
    min-height: 390px;
  }

  .food-item:last-child {
    grid-column: 1 / -1;
    height: 52vw;
  }

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

  .sports-image {
    min-height: 560px;
  }

  .sports-copy {
    min-height: 590px;
  }

  .parties {
    grid-template-columns: 0.22fr 0.78fr;
  }

  .party-detail {
    grid-column: 2;
  }

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

  .review-rule {
    width: 160px;
    justify-self: center;
  }

  .visit {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .visit-details {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    justify-self: stretch;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer p { display: none; }
}

@media (max-width: 560px) {
  :root { --pad: 20px; }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    bottom: 112px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 34px;
  }

  .hero-location {
    right: 20px;
    bottom: 28px;
    justify-content: space-between;
    font-size: 9px;
  }

  .score-ticker { border-width: 3px; }

  .ticker-track { padding: 12px 0; }

  .intro {
    gap: 55px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro h2,
  .food h2,
  .sports h2,
  .parties h2,
  .visit h2 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .intro-copy > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .intro-figure {
    width: 86%;
  }

  .image-frame {
    min-height: 470px;
    height: 130vw;
  }

  .food {
    padding-top: 84px;
  }

  .food-heading {
    margin-bottom: 54px;
  }

  .food h2 { text-shadow: 4px 4px 0 var(--ink); }

  .food-lineup {
    grid-template-columns: 1fr;
    padding: 0 6px;
  }

  .food-item,
  .food-item-tall,
  .food-item:last-child {
    grid-column: auto;
    height: 106vw;
    min-height: 360px;
  }

  .food-meta {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .sports-image {
    min-height: 460px;
  }

  .sports-copy {
    min-height: 530px;
    padding-top: 86px;
    padding-bottom: 110px;
  }

  .sports-stamp {
    width: 110px;
    height: 110px;
    right: 20px;
    bottom: 20px;
  }

  .sports-stamp span { font-size: 42px; }

  .parties {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .party-mark {
    text-align: left;
    font-size: 80px;
  }

  .party-detail {
    grid-column: auto;
    margin-top: 18px;
  }

  .review {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .review blockquote p {
    font-size: 42px;
  }

  .visit {
    min-height: 860px;
    gap: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .visit::before {
    background: rgba(3, 15, 25, 0.87);
  }

  .visit h2 {
    margin-bottom: 38px;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer-links { gap: 24px; }
}

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

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

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