:root {
  --aubergine: #2c1e35;
  --plum: #3a2945;
  --ivory: #f7f0e6;
  --sand: #ede2d4;
  --terracotta: #c86f52;
  --lavender: #d7b1c7;
  --peach: #e6c8a7;
  --text: #2a2529;
  --muted: #746d73;
  --white: #fff;
  --border: rgba(44, 30, 53, 0.14);
  --shadow: 0 18px 60px rgba(44, 30, 53, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: min(100% - 32px, 1280px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
.site-shell {
  overflow-x: clip;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 240, 230, 0.86);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 240, 230, 0.98);
  box-shadow: 0 10px 30px rgba(44, 30, 53, 0.08);
  border-color: var(--border);
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: 0.25s;
}
.site-header.scrolled .header-inner {
  height: 72px;
}
.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand span {
  font-weight: 500;
  color: var(--terracotta);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  margin-left: auto;
}
.desktop-nav a,
.header-contact {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--terracotta);
  transition: 0.2s;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.age-mark {
  font-weight: 800;
  color: var(--aubergine);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  background: var(--terracotta);
  color: var(--white);
  border: 1px solid var(--terracotta);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 111, 82, 0.22);
}
.btn-small {
  min-height: 44px;
  padding: 9px 15px;
  font-size: 0.9rem;
}
.btn-ghost {
  background: transparent;
  color: var(--aubergine);
  border-color: rgba(44, 30, 53, 0.28);
}
.btn-light {
  background: var(--ivory);
  color: var(--aubergine);
  border-color: var(--ivory);
}
.btn-text {
  border-color: transparent;
  background: transparent;
  color: var(--aubergine);
}
.btn-block {
  width: 100%;
}
.menu-toggle,
.menu-close,
.modal-close {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--aubergine);
  font-size: 1.25rem;
  cursor: pointer;
}
.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-family: "Space Grotesk";
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--terracotta);
}
.section-label.light {
  color: var(--peach);
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
  margin: 0;
  color: var(--aubergine);
}
h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -0.055em;
  max-width: 900px;
}
h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  letter-spacing: -0.025em;
}
.lead {
  font-size: clamp(1.06rem, 1.3vw, 1.25rem);
  max-width: 720px;
}
.narrow {
  max-width: 680px;
}
.hero {
  padding-top: clamp(54px, 6vw, 92px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-copy {
  padding: 30px 0;
}
.hero-copy .lead {
  max-width: 680px;
  margin: 26px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.micro-copy {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 18px;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 150px 16px 120px 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
}
.shape {
  position: absolute;
  z-index: 1;
}
.shape-terracotta {
  width: 62%;
  height: 65%;
  background: var(--terracotta);
  right: -7%;
  bottom: -4%;
  border-radius: 8px;
  transform: rotate(6deg);
}
.shape-lavender {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lavender);
  left: -14%;
  top: 5%;
}
.city-chip {
  position: absolute;
  z-index: 3;
  left: -40px;
  bottom: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: grid;
  gap: 3px;
  font-family: "Space Grotesk";
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.about {
  background: var(--white);
}
.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 7vw, 120px);
  align-items: end;
}
.editorial-heading p {
  max-width: 650px;
}
.about-image {
  margin-top: clamp(36px, 5vw, 70px);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-strip article {
  padding: 30px;
  border-right: 1px solid var(--border);
}
.feature-strip article:last-child {
  border-right: 0;
}
.feature-strip i {
  font-size: 1.3rem;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.feature-strip h3 {
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.feature-strip p {
  color: var(--muted);
  margin-bottom: 0;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 65px);
}
.section-heading p {
  max-width: 520px;
  color: var(--muted);
  margin: 0;
}
.locations-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.location-list {
  display: grid;
  gap: 16px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}
.location-kicker {
  font-family: "Space Grotesk";
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  font-weight: 700;
}
.location-card h3 {
  font-size: 1.25rem;
}
.location-card p {
  margin: 0.45em 0;
}
.hours {
  display: flex;
  gap: 10px;
  min-width: 185px;
  color: var(--muted);
}
.hours i {
  margin-top: 7px;
  color: var(--terracotta);
}
.card-actions {
  grid-column: 1/-1;
  display: flex;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.text-link {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}
.text-link i {
  margin-left: 4px;
}
.demo-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 0;
}
.map-wrap {
  position: sticky;
  top: 100px;
}
.venue-map {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--sand);
}
.leaflet-popup-content {
  max-width: min(240px, 70vw);
}
.halls {
  background: var(--sand);
}
.halls-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: clamp(22px, 3vw, 40px);
}
.hall-buenos {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1fr auto;
}
.hall-mar {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
}
.hall-salta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}
.hall-image {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.hall-image.portrait {
  aspect-ratio: 4/5;
}
.hall-image.wide {
  aspect-ratio: 16/9;
}
.hall-copy {
  padding: 22px 4px;
}
.hall-mar .hall-copy,
.hall-salta .hall-copy {
  padding: 20px;
}
.hall-copy span {
  color: var(--terracotta);
  font-family: "Space Grotesk";
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}
.hall-copy p {
  color: var(--muted);
  margin-bottom: 0;
}
.gaming {
  background: var(--sand);
}
.gaming-image {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.game-list {
  border-top: 1px solid var(--border);
}
.game-list article {
  display: grid;
  grid-template-columns: 55px 44px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--border);
}
.game-no {
  font-family: "Space Grotesk";
  color: var(--terracotta);
  font-weight: 700;
}
.game-list article > i:not(.list-arrow) {
  font-size: 1.25rem;
  color: var(--aubergine);
}
.game-list h3 {
  font-size: 1.3rem;
}
.game-list p {
  margin: 0.25em 0 0;
  color: var(--muted);
}
.list-arrow {
  color: var(--terracotta);
}
.note {
  color: var(--muted);
  font-size: 0.88rem;
}
.promotions {
  background: var(--ivory);
}
.promo-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  background: var(--aubergine);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promo-image {
  min-height: 460px;
}
.promo-copy {
  padding: clamp(28px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.promo-copy h3 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 4rem);
}
.promo-copy span {
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 24px;
  border: 1px solid var(--border);
}
.promo-grid article {
  background: var(--ivory);
  padding: 28px;
}
.promo-grid h3 {
  font-size: 1.25rem;
}
.promo-grid p {
  color: var(--muted);
  margin-bottom: 0;
}
.promo-small {
  margin-top: 24px;
  aspect-ratio: 16/9;
  max-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.club {
  background: var(--aubergine);
  color: var(--white);
}
.club h2,
.club h3 {
  color: var(--white);
}
.club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}
.club-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit-list {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
}
.benefit-list li {
  break-inside: avoid;
  padding: 7px 0 7px 22px;
  position: relative;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--lavender);
  border-radius: 50%;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.timeline article {
  padding: 28px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.timeline article:last-child {
  border-right: 0;
}
.timeline span {
  font-family: "Space Grotesk";
  color: var(--peach);
  font-weight: 700;
}
.timeline h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 12px;
}
.timeline p {
  color: rgba(255, 255, 255, 0.72);
}
.experience-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.experience-image {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.amenities div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.amenities i {
  color: var(--terracotta);
  width: 22px;
}
.responsible {
  background: var(--lavender);
}
.responsible-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.big-age {
  font-family: "Space Grotesk";
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 5rem);
  color: rgba(44, 30, 53, 0.18);
  white-space: nowrap;
}
.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 80px);
  margin: 40px 0;
}
.responsible-grid article {
  padding: 22px 0;
  border-top: 1px solid rgba(44, 30, 53, 0.16);
}
.responsible-grid h3 {
  font-size: 1.2rem;
}
.responsible-grid p {
  margin-bottom: 0;
}
.responsible-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}
.responsible-image {
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
}
.accordion {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item h3 {
  margin: 0;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 42px 22px 0;
  position: relative;
  text-align: left;
  font-family: "Space Grotesk";
  font-size: 1.12rem;
  font-weight: 650;
  color: var(--aubergine);
  cursor: pointer;
}
.faq-item button span {
  position: absolute;
  right: 2px;
  top: 22px;
  font-size: 1.35rem;
}
.faq-item div {
  padding: 0 40px 20px 0;
  color: var(--muted);
}
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-list i {
  color: var(--terracotta);
  width: 18px;
}
.contact-form {
  background: var(--ivory);
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  margin-bottom: 16px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(44, 30, 53, 0.2);
  background: var(--white);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  font-size: 16px;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.checkbox {
  display: flex !important;
  grid-template-columns: 22px 1fr !important;
  align-items: start;
  gap: 10px !important;
}
.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}
.form-status {
  font-size: 0.92rem;
  color: var(--muted);
}
.site-footer {
  background: var(--aubergine);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}
.site-footer h2,
.site-footer h3,
.site-footer .brand {
  color: var(--white);
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-cta h2 {
  max-width: 760px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding: 54px 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid a {
  display: inline-block;
  text-decoration: none;
  margin: 4px 0;
}
.footer-brand {
  margin-bottom: 14px;
}
.footer-contact {
  margin-top: 14px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}
.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 12px;
}
.modal-layer[hidden],
.cookie-banner[hidden],
.menu-backdrop[hidden] {
  display: none !important;
}
.modal-backdrop,
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 30, 53, 0.62);
}
.age-modal,
.cookie-modal {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 540px);
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.age-hero {
  font-family: "Space Grotesk";
  font-size: clamp(4rem, 11vw, 7rem);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 0.9;
}
.age-modal h2,
.cookie-modal h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 18px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.modal-close {
  display: grid;
  place-items: center;
  position: absolute;
  right: 14px;
  top: 14px;
}
.cookie-banner {
  position: fixed;
  z-index: 1500;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-height: 70dvh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p {
  margin: 3px 0;
  max-width: 760px;
  font-size: 0.88rem;
  color: var(--muted);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal {
  width: min(calc(100% - 24px), 680px);
}
.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cookie-row h3 {
  font-size: 1rem;
}
.cookie-row p {
  margin: 0.3em 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.always-on {
  font-size: 0.82rem;
  color: var(--muted);
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  min-height: 0;
}
.switch span {
  position: absolute;
  inset: 0;
  background: #c9c5c7;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.2s;
}
.switch span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s;
}
.switch input:checked + span {
  background: var(--terracotta);
}
.switch input:checked + span::before {
  transform: translateX(22px);
}
.mobile-menu {
  position: fixed;
  z-index: 1601;
  top: 0;
  right: 0;
  width: min(90vw, 420px);
  height: 100dvh;
  transform: translateX(100%);
  background: var(--ivory);
  padding: 18px 20px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  transition: transform 0.28s ease;
  box-shadow: -20px 0 60px rgba(44, 30, 53, 0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.menu-backdrop {
  position: fixed;
  z-index: 1600;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav {
  display: grid;
  margin: 42px 0 26px;
}
.mobile-nav a {
  font-family: "Space Grotesk";
  font-size: 1.6rem;
  font-weight: 650;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.drawer-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 18px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.legal-main {
  padding: 70px 0 110px;
}
.legal-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding-top: 46px;
}
.legal-toc {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-md);
}
.legal-toc h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.legal-toc a {
  display: block;
  text-decoration: none;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.legal-article {
  max-width: 860px;
}
.legal-article section {
  padding: 10px 0 28px;
  border-bottom: 1px solid var(--border);
}
.legal-article h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  margin-top: 18px;
}
.legal-article h3 {
  font-size: 1.2rem;
  margin-top: 20px;
}
.legal-article p,
.legal-article li {
  color: #4f484e;
}
.legal-callout {
  background: var(--sand);
  padding: 20px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.support-placeholder {
  background: var(--lavender);
  padding: 24px;
  border-radius: var(--radius-md);
}
.support-placeholder code {
  display: block;
  white-space: normal;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.55);
  padding: 8px;
  border-radius: 6px;
}
.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 111, 82, 0.4);
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  .desktop-nav,
  .header-contact,
  .header-actions > .btn,
  .age-mark {
    display: none;
  }
  .menu-toggle,
  .menu-close {
    display: grid;
    place-items: center;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .locations-layout {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    position: static;
    grid-row: 1;
  }
  .venue-map {
    height: 440px;
  }
  .halls-grid {
    grid-template-columns: 1fr;
  }
  .hall-buenos {
    grid-row: auto;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .hall-buenos .hall-image {
    aspect-ratio: 4/3;
  }
  .promo-feature {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .legal-layout {
    grid-template-columns: 210px 1fr;
    gap: 34px;
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }
  .hero-image-wrap {
    aspect-ratio: 4/3;
    border-radius: 80px 14px 70px 14px;
  }
  .city-chip {
    left: 18px;
    bottom: 18px;
  }
  .editorial-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }
  .feature-strip article:nth-child(2) {
    border-right: 0;
  }
  .feature-strip article:nth-child(3) {
    grid-column: 1/-1;
    border-top: 1px solid var(--border);
    border-right: 0;
  }
  .promo-feature {
    grid-template-columns: 1fr;
  }
  .promo-image {
    min-height: 360px;
  }
  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promo-grid article:last-child {
    grid-column: 1/-1;
  }
  .club-grid,
  .experience-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
  .timeline article:nth-child(2) {
    border-right: 0;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    display: none;
  }
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .responsible-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .big-age {
    order: -1;
  }
}
@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1280px);
  }
  html {
    scroll-padding-top: 74px;
  }
  .header-inner {
    height: 72px;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-copy .lead {
    margin: 18px 0;
  }
  .hero-visual {
    margin-top: 8px;
  }
  .shape {
    display: none;
  }
  .hero-image-wrap {
    border-radius: 44px 12px 44px 12px;
  }
  .city-chip {
    position: static;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .city-chip span {
    background: var(--white);
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .about-image,
  .gaming-image,
  .experience-image,
  .responsible-image,
  .promo-small {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .feature-strip article,
  .feature-strip article:nth-child(2),
  .feature-strip article:nth-child(3) {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--border);
  }
  .feature-strip article:first-child {
    border-top: 0;
  }
  .location-card {
    grid-template-columns: 1fr;
  }
  .hours,
  .card-actions {
    grid-column: auto;
  }
  .card-actions {
    flex-wrap: wrap;
  }
  .venue-map {
    height: 320px;
    border-radius: 16px;
  }
  .halls-grid,
  .hall-buenos,
  .hall-mar,
  .hall-salta {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hall-image.portrait,
  .hall-buenos .hall-image,
  .hall-image.wide {
    aspect-ratio: 4/3;
  }
  .hall-mar .hall-copy,
  .hall-salta .hall-copy,
  .hall-copy {
    padding: 16px 0 4px;
  }
  .game-list article {
    grid-template-columns: 42px 34px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }
  .list-arrow {
    display: none;
  }
  .promo-image {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-grid article:last-child {
    grid-column: auto;
  }
  .benefit-list {
    columns: 1;
  }
  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    margin-top: 44px;
  }
  .timeline article,
  .timeline article:nth-child(2) {
    border-right: 0;
    padding: 0 0 26px 24px;
  }
  .amenities {
    grid-template-columns: 1fr;
  }
  .responsible-grid,
  .responsible-bottom {
    grid-template-columns: 1fr;
  }
  .responsible-bottom .btn {
    justify-self: start;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }
  .footer-bottom {
    gap: 10px;
  }
  .stack-mobile {
    display: grid;
  }
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: grid;
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .cookie-row {
    grid-template-columns: 1fr auto;
  }
  .legal-main {
    padding-top: 40px;
  }
  .legal-hero {
    padding-top: 36px;
  }
}
@media (max-width: 430px) {
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn,
  .responsible-bottom .btn {
    width: 100%;
  }
  .modal-actions {
    display: grid;
  }
  .modal-actions .btn {
    width: 100%;
  }
  .header-inner {
    gap: 8px;
  }
  .brand {
    font-size: 1rem;
  }
  .hero-image-wrap {
    aspect-ratio: 4/3;
  }
  .venue-map {
    height: 280px;
  }
  .location-card {
    padding: 18px;
  }
  .faq-item button {
    font-size: 1rem;
    padding-right: 32px;
  }
  .promo-copy {
    padding: 26px 22px;
  }
  .footer-cta .btn {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .amenities {
    grid-template-columns: 1fr;
  }
  .city-chip {
    display: grid;
    grid-template-columns: 1fr;
  }
  .city-chip span {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.site-shell {
  width: 100%;
}
.container {
  min-width: 0;
}
.locations-layout > * {
  min-width: 0;
}
.map-wrap {
  min-width: 0;
}
.venue-map {
  position: relative;
  min-height: 560px;
  height: 100%;
  background: #e9e1d6;
}
.location-list {
  align-content: stretch;
}
.location-card {
  min-width: 0;
}
.location-card h3,
.location-card p,
.contact-list a,
.footer-contact a {
  overflow-wrap: anywhere;
}
.maplibregl-map {
  font-family: Inter, system-ui, sans-serif;
}
.maplibregl-canvas {
  outline: none;
}
.maplibregl-ctrl-group {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 30, 53, 0.15);
}
.maplibregl-popup-content {
  border-radius: 14px;
  padding: 13px 15px;
  box-shadow: 0 12px 34px rgba(44, 30, 53, 0.2);
  color: var(--text);
}
.maplibregl-popup-content strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--aubergine);
}
.terra-map-pin {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 8px;
  background: var(--terracotta);
  box-shadow: 0 8px 18px rgba(44, 30, 53, 0.28);
  transform: rotate(-45deg);
  cursor: pointer;
}
.terra-map-pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  left: 10px;
  top: 10px;
}
.terra-map-pin:focus-visible {
  outline: 3px solid var(--aubergine);
  outline-offset: 4px;
}
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(44, 30, 53, 0.62);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 12px;
}
.success-overlay[hidden] {
  display: none !important;
}
.success-modal {
  position: relative;
  width: min(calc(100% - 24px), 520px);
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 46px);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--aubergine);
  font-size: 1.15rem;
  cursor: pointer;
}
.success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--terracotta);
  font-size: 1.8rem;
}
.success-modal h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}
.success-modal p:not(.section-label) {
  color: var(--muted);
  margin-bottom: 24px;
}
.form-status {
  min-height: 1.4em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  max-width: 100%;
}
@media (min-width: 1101px) {
  .locations-layout {
    align-items: stretch;
  }
  .map-wrap {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .venue-map {
    height: 100%;
    min-height: 660px;
  }
  .location-list {
    grid-template-rows: repeat(3, 1fr);
  }
  .location-card {
    height: 100%;
  }
}
@media (max-width: 1100px) {
  .locations-layout {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    position: static;
    grid-row: 1;
  }
  .venue-map {
    height: 460px;
    min-height: 460px;
  }
  .location-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .location-card {
    grid-template-columns: 1fr;
  }
  .hours,
  .card-actions {
    grid-column: auto;
  }
  .card-actions {
    margin-top: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .location-list {
    grid-template-columns: 1fr;
  }
  .location-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .hours {
    grid-column: 2;
  }
  .card-actions {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
  }
  .contact-grid {
    gap: 34px;
  }
}
@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1280px);
  }
  .section {
    padding: 58px 0;
  }
  .hero {
    padding-top: 24px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .locations-layout {
    gap: 18px;
  }
  .venue-map {
    height: 350px;
    min-height: 350px;
    border-radius: 16px;
  }
  .location-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .hours,
  .card-actions {
    grid-column: auto;
  }
  .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form > .btn {
    width: 100%;
  }
  .footer-cta .btn {
    width: 100%;
  }
  .success-modal {
    padding: 28px 18px;
  }
  .cookie-banner {
    max-height: calc(100dvh - 16px);
  }
}
@media (max-width: 390px) {
  .venue-map {
    height: 310px;
    min-height: 310px;
  }
  .brand {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .success-modal {
    width: calc(100% - 16px);
  }
}

.halls-grid,
.halls-grid > article,
.halls-grid .hall-image,
.halls-grid .hall-copy {
  min-width: 0;
}

.halls-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
}
.hall-buenos {
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}
.hall-buenos .hall-image {
  min-height: 620px;
  height: 100%;
  aspect-ratio: auto;
}
.hall-buenos .hall-copy {
  padding: 24px 4px 2px;
}
.hall-mar,
.hall-salta {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(44, 30, 53, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.28);
}
.hall-mar {
  grid-template-columns: minmax(0, 1.22fr) minmax(220px, 0.78fr);
}
.hall-salta {
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
}
.hall-mar .hall-image,
.hall-salta .hall-image {
  height: 100%;
  min-height: 300px;
  aspect-ratio: auto;
  border-radius: 0;
}
.hall-mar .hall-copy,
.hall-salta .hall-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2.5vw, 38px);
  overflow-wrap: anywhere;
}
.hall-copy h3 {
  margin-top: 6px;
}

.list-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 111, 82, 0.38);
  border-radius: 999px;
  color: var(--terracotta);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.list-arrow:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: translateX(3px);
}
.list-arrow:focus-visible {
  outline: 3px solid rgba(200, 111, 82, 0.4);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 88px;
  }
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1800;
    background: rgba(247, 240, 230, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(44, 30, 53, 0.07);
  }
  .header-inner,
  .site-header.scrolled .header-inner {
    height: 72px;
  }
  .site-shell {
    padding-top: 72px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--aubergine);
    color: var(--white);
  }
  .mobile-menu {
    z-index: 1901;
    padding-top: max(18px, env(safe-area-inset-top));
  }
  .menu-backdrop {
    z-index: 1900;
  }

  .halls-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 24px;
  }
  .hall-buenos,
  .hall-mar,
  .hall-salta {
    grid-row: auto;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: none;
    min-height: 320px;
    border: 1px solid rgba(44, 30, 53, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.28);
  }
  .hall-buenos .hall-image,
  .hall-mar .hall-image,
  .hall-salta .hall-image {
    min-height: 320px;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }
  .hall-buenos .hall-copy,
  .hall-mar .hall-copy,
  .hall-salta .hall-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 42px);
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }
  .header-inner,
  .site-header.scrolled .header-inner {
    height: 68px;
  }
  .site-shell {
    padding-top: 68px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand {
    max-width: calc(100vw - 94px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-menu {
    width: min(92vw, 390px);
  }
  .mobile-nav {
    margin: 28px 0 22px;
  }
  .mobile-nav a {
    font-size: 1.35rem;
    padding: 10px 0;
  }

  .halls .section-heading {
    margin-bottom: 30px;
  }
  .halls-grid {
    gap: 28px;
  }
  .hall-buenos,
  .hall-mar,
  .hall-salta {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    border: 0;
    background: transparent;
    overflow: visible;
  }
  .hall-buenos .hall-image,
  .hall-mar .hall-image,
  .hall-salta .hall-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
  }
  .hall-buenos .hall-copy,
  .hall-mar .hall-copy,
  .hall-salta .hall-copy {
    padding: 16px 2px 0;
  }
  .hall-copy h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .game-list article {
    grid-template-columns: 38px 30px minmax(0, 1fr) 44px;
    gap: 10px;
    padding: 18px 0;
  }
  .game-list h3 {
    font-size: 1.08rem;
  }
  .game-list p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .list-arrow {
    display: grid !important;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 390px) {
  .game-list article {
    grid-template-columns: 32px 26px minmax(0, 1fr) 40px;
    gap: 8px;
  }
  .game-list article > i:not(.list-arrow) {
    font-size: 1rem;
  }
  .list-arrow {
    width: 38px;
    height: 38px;
  }
}

.location-card.is-map-target {
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}
.location-card.is-map-target:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(44, 30, 53, 0.12);
}
.location-card.is-map-target.is-active {
  border-color: rgba(200, 111, 82, 0.7);
  box-shadow:
    0 0 0 3px rgba(200, 111, 82, 0.14),
    0 16px 40px rgba(44, 30, 53, 0.12);
  background: #fffaf4;
}
.location-card.is-map-target:focus-visible {
  outline: 3px solid rgba(200, 111, 82, 0.4);
  outline-offset: 4px;
}
