:root {
  --cream: #f3efe5;
  --paper: #fbf8f1;
  --navy: #112840;
  --terracotta: #b9684f;
  --pale-blue: #bcd7e8;
  --charcoal: #31363a;
  --muted: #697078;
  --border: rgba(17, 40, 64, 0.18);
  --space-1: 0.5rem;
  --space-2: 0.85rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --max: 1220px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}
::selection {
  background: var(--pale-blue);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--navy);
  color: white;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--border);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
}
h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
}
h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--charcoal);
  max-width: 68ch;
}
.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-h);
  background: rgba(243, 239, 229, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    min-height 0.25s ease;
}
.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--border);
  background: rgba(251, 248, 241, 0.97);
}
.header-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
}
.brand-word {
  white-space: nowrap;
}
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.75rem, 1.7vw, 1.55rem);
  font-size: 0.83rem;
  font-weight: 700;
}
.nav a:hover {
  color: var(--terracotta);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.age-pill {
  font-size: 0.72rem;
  font-weight: 900;
  border: 1px solid var(--border);
  padding: 0.42rem 0.55rem;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--navy);
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
  background: transparent;
  color: var(--navy);
}
.btn:hover {
  background: var(--navy);
  color: var(--paper);
}
.btn-primary {
  background: var(--navy);
  color: white;
}
.btn-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-light {
  border-color: var(--paper);
  color: var(--paper);
}
.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
}
.mobile-nav {
  display: none;
}

.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(5rem, 8vw, 8rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.hero-copy {
  padding-top: 2rem;
}
.hero h1 {
  max-width: 9.5ch;
  margin: 1rem 0 1.5rem;
}
.hero-copy > p {
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--charcoal);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 2.4rem;
  flex-wrap: wrap;
}
.hero-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
}
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "MATCH / SOCIAL / BUENOS AIRES";
  position: absolute;
  left: -1.8rem;
  bottom: 1.2rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  font-weight: 900;
}
.hero-media img {
  aspect-ratio: 4/5.4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 24px 24px 0 var(--pale-blue);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.statement-copy p {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  max-width: 44ch;
}
.statement-media {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  gap: 1rem;
  align-items: end;
}
.statement-media img {
  grid-column: 1;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.statement-note {
  grid-column: 2;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.sport-item {
  min-height: 220px;
  padding: 1.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sport-item i {
  font-size: 1.2rem;
  color: var(--terracotta);
}
.sport-item strong {
  font-size: 1.2rem;
}
.sport-item p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.sport-no {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 720px;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-copy {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(2rem, 6vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-copy .section-label {
  color: var(--pale-blue);
}
.feature-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.feature-list i {
  color: var(--pale-blue);
  margin-top: 0.25rem;
}

.schedule {
  border-top: 1px solid var(--border);
}
.schedule-day {
  display: grid;
  grid-template-columns: minmax(110px, 0.5fr) 1.5fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.day-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.schedule-events {
  display: grid;
  gap: 0.7rem;
}
.event-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
}
.event-time {
  font-weight: 900;
}
.chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid var(--border);
  padding: 0.25rem 0.48rem;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.chip.accent {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}

.numbers-band {
  background: var(--pale-blue);
  border: 0;
  padding: 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.number-item {
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(17, 40, 64, 0.25);
}
.number-item:last-child {
  border-right: 0;
}
.big-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.8;
}
.number-caption {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.food-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.food-media {
  position: sticky;
  top: 100px;
}
.food-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.menu-list {
  border-top: 1px solid var(--border);
}
.menu-category {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-category .no {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--terracotta);
}
.menu-category h3 {
  margin-bottom: 0.5rem;
}
.menu-category p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 12px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.025);
}
.gallery-grid figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 5;
}
.gallery-grid figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 3;
}
.gallery-grid figure:nth-child(3) {
  grid-column: span 5;
  grid-row: span 4;
}
.gallery-grid figure:nth-child(4) {
  grid-column: span 7;
  grid-row: span 4;
}
.gallery-grid figure:nth-child(5) {
  grid-column: span 4;
  grid-row: span 3;
}
.gallery-grid figure:nth-child(6) {
  grid-column: span 8;
  grid-row: span 3;
}

.why-list {
  border-top: 1px solid var(--border);
}
.why-item {
  display: grid;
  grid-template-columns: 110px 1fr minmax(220px, 0.7fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.why-no {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terracotta);
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}
.why-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.visit-card {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.contact-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.8rem;
  margin: 1rem 0;
}
.contact-row i {
  color: var(--terracotta);
  margin-top: 0.2rem;
}
.hours {
  display: grid;
  gap: 0.55rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.reservation-wrap {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  padding: 0.85rem 0.1rem;
  border-radius: 0;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field-error {
  min-height: 1.1em;
  color: #8a2f22;
  font-size: 0.76rem;
}
.check-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1rem 0 1.4rem;
}
.check-row input {
  margin-top: 0.3rem;
}
.form-status {
  margin-top: 1rem;
  font-weight: 800;
}
.form-status.success {
  color: #2c6a47;
}

.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}
.faq-answer {
  display: none;
  max-width: 70ch;
  padding: 0 0 1.5rem;
  color: var(--charcoal);
}
.faq-item.is-open .faq-answer {
  display: block;
}
.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

.final-cta {
  background: var(--terracotta);
  color: white;
  border: 0;
  text-align: center;
}
.final-cta h2 {
  max-width: 12ch;
  margin: 0 auto 2rem;
}
.final-cta .small-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  background: var(--navy);
  color: var(--paper);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--pale-blue);
}
.footer-col a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0.45rem 0;
  color: rgba(255, 255, 255, 0.88);
}
.footer-col a:hover {
  color: var(--pale-blue);
}
.footer-brand p {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.cookie-panel {
  position: fixed;
  z-index: 160;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--paper);
  border: 1px solid var(--navy);
  padding: 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 50px rgba(17, 40, 64, 0.16);
}
.cookie-panel.is-visible {
  display: flex;
}
.cookie-copy {
  max-width: 70ch;
  font-size: 0.88rem;
}
.cookie-copy p {
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.modal-backdrop,
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(17, 40, 64, 0.38);
  padding: 1rem;
}
.modal-backdrop.is-visible,
.age-gate.is-visible {
  display: grid;
}
.modal {
  width: min(560px, 100%);
  background: var(--paper);
  border: 1px solid var(--navy);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}
.success-modal-backdrop {
  background: rgba(17, 40, 64, 0.52);
}
.success-modal {
  width: min(460px, 100%);
  max-width: 460px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.success-modal h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.success-modal p {
  margin: 0 auto 1.6rem;
  max-width: 360px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.success-modal .btn {
  min-width: 110px;
}
.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.35rem;
  border: 2px solid #2c6a47;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2c6a47;
  font-size: 1.4rem;
}
@media (max-width: 520px) {
  .success-modal {
    padding: 2rem 1.4rem;
  }
  .success-modal h2 {
    font-size: 2.15rem;
  }
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
}
.pref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.switch {
  position: relative;
  width: 48px;
  height: 26px;
}
.switch input {
  opacity: 0;
  position: absolute;
}
.slider {
  position: absolute;
  inset: 0;
  background: #c8c8c8;
  border-radius: 20px;
}
.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.switch input:checked + .slider {
  background: var(--terracotta);
}
.switch input:checked + .slider::before {
  transform: translateX(22px);
}
.switch input:disabled + .slider {
  opacity: 0.6;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.age-gate {
  background: var(--cream);
  z-index: 300;
}
.age-card {
  width: min(720px, 100%);
  background: var(--paper);
  border: 1px solid var(--navy);
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}
.age-big {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  line-height: 0.7;
  margin-bottom: 2rem;
}
.age-card h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 14ch;
  margin: 0 auto 1rem;
}
.age-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.legal-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}
.legal-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 8vw, 7rem);
}
.legal-meta {
  margin-top: 1.5rem;
  color: var(--muted);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 7rem;
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.82rem;
}
.legal-toc a {
  display: block;
  margin: 0.5rem 0;
  color: var(--muted);
}
.legal-toc a:hover {
  color: var(--terracotta);
}
.legal-content section {
  scroll-margin-top: 100px;
  padding: 0 0 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}
.legal-content p,
.legal-content li {
  color: var(--charcoal);
}
.legal-content ul {
  padding-left: 1.2rem;
}
.notice {
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.2rem;
  background: rgba(185, 104, 79, 0.08);
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: var(--paper);
    border-bottom: 1px solid var(--navy);
    padding: 1rem;
    display: none;
    z-index: 75;
  }
  .mobile-nav.is-open {
    display: block;
  }
  .mobile-nav a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4rem);
    padding: 0.25rem 0;
  }
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .split-media img {
    max-height: 650px;
  }
  .food-grid {
    grid-template-columns: 1fr;
  }
  .food-media {
    position: relative;
    top: auto;
  }
  .food-media img {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }
  .hero-grid,
  .statement-grid,
  .visit-grid,
  .reservation-wrap,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero-media::before {
    display: none;
  }
  .hero-media img {
    aspect-ratio: 4/5;
    box-shadow: 12px 12px 0 var(--pale-blue);
  }
  .hero-details {
    grid-template-columns: repeat(2, 1fr);
  }
  .statement-media {
    grid-template-columns: 1fr;
  }
  .statement-note {
    display: none;
  }
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .number-item:nth-child(2) {
    border-right: 0;
  }
  .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 40, 64, 0.25);
  }
  .why-item {
    grid-template-columns: 70px 1fr;
  }
  .why-item p {
    grid-column: 2;
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .gallery-grid figure {
    flex: 0 0 82%;
    height: 420px;
    scroll-snap-align: start;
  }
  .legal-toc {
    position: relative;
    top: auto;
    columns: 2;
  }
  .cookie-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .brand-word {
    font-size: 0.88rem;
  }
  .sports-grid {
    grid-template-columns: 1fr;
  }
  .sport-item {
    min-height: 165px;
  }
  .schedule-day,
  .event-row {
    grid-template-columns: 1fr;
  }
  .event-row {
    gap: 0.3rem;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .number-item {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 40, 64, 0.25);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .legal-toc {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.site-footer .open-cookie-settings {
  width: max-content;
  max-width: 100%;
  margin-top: 0.75rem;
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
}
.site-footer .open-cookie-settings:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
