:root {
  --celeste: #60c1ec;
  --celeste-rgb: 96, 193, 236;
  --celeste-strong: #60c1ec;
  --celeste-deep: #60c1ec;
  --celeste-soft: #60c1ec;
  --ink-strong: #1d2730;
  --ink-panel: #303941;
  --gold: #d7b46a;
  --red: #e64048;
  --white: #ffffff;
  --paper: #f7f9fb;
  --ink: #2b3640;
  --muted: #63717e;
  --line: rgba(34, 49, 66, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.main-nav,
.main-nav nav,
.hero-content,
.section-copy,
.intro-text,
.route-copy,
.register-copy,
.quick-links a,
.program-grid article,
.venue-list article,
.interest-form label {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(34, 49, 66, 0.1);
}

.club-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 6px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--celeste);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--celeste-deep);
  background: var(--white);
  outline: 0;
  transform: translateY(-1px);
}

.social-links svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav nav a,
.nav-signup,
.nav-cta,
.nav-franchise-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.main-nav nav a:hover,
.club-bar a:hover,
.site-footer a:hover {
  color: var(--celeste-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta,
.primary-button,
.secondary-button,
.whatsapp-link,
.franchise-link,
.signup-button,
.signup-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-signup {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--white);
  background: var(--celeste);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(var(--celeste-rgb), 0.34);
}

.nav-signup:hover,
.nav-signup:focus-visible {
  color: var(--white);
  background: var(--ink-strong);
  outline: 0;
  transform: translateY(-1px);
}

.nav-franchise-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink-strong);
  background: var(--white);
  border: 2px solid rgba(var(--celeste-rgb), 0.72);
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-franchise-button:hover,
.nav-franchise-button:focus-visible {
  color: var(--white);
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  outline: 0;
}

.nav-cta svg,
.whatsapp-link svg,
.franchise-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.primary-button {
  color: var(--white);
  background: var(--celeste);
}

.nav-cta {
  color: var(--white);
  background: var(--celeste);
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--ink-strong);
  color: var(--white);
}

.secondary-button {
  color: var(--ink-strong);
  border: 2px solid rgba(34, 49, 66, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.secondary-button:hover {
  color: var(--ink-strong);
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 500px;
  height: clamp(500px, calc(100vh - 360px), 560px);
  margin-bottom: 112px;
  background: var(--celeste);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(var(--celeste-rgb), 0.35), rgba(var(--celeste-rgb), 0) 18%, rgba(var(--celeste-rgb), 0) 82%, rgba(0, 34, 54, 0.32)),
    linear-gradient(90deg, rgba(var(--celeste-rgb), 0.78), rgba(var(--celeste-rgb), 0.34) 42%, rgba(0, 34, 54, 0.1) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, transparent 55%, rgba(0, 21, 36, 0.42)),
    url("assets/hero-academia.png") center top / auto calc(100% - 10px) no-repeat;
}

.hero::after {
  inset: 0;
  z-index: 0;
  background: url("assets/hero-academia.png") center center / cover no-repeat;
  opacity: 0.64;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  min-height: 500px;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 20px 0;
}

.hero-content {
  max-width: 620px;
  color: var(--white);
}

.hero-crest {
  display: none;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--celeste-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.route-copy h2,
.register-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 620px;
  font-size: 50px;
}

.hero p {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.48;
}

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

.hero-numbers {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  transform: none;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-numbers article {
  padding: 14px 24px;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.94);
}

.hero-numbers strong {
  display: block;
  color: var(--celeste-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.hero-numbers span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: -1px auto 0;
  padding: 0 20px;
}

.quick-links a {
  min-height: 98px;
  padding: 15px 18px;
  color: var(--ink-strong);
  background: var(--white);
  border-right: 1px solid rgba(34, 49, 66, 0.1);
}

.quick-links a:hover {
  color: var(--white);
  background: var(--celeste);
}

.quick-links span,
.venue-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--celeste);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-links a:hover span {
  color: var(--white);
}

.quick-links strong {
  display: block;
  max-width: 230px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.intro-band,
.programs,
.route-section,
.map-section,
.media-band,
.registration {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 20px;
}

.intro-band,
.route-section,
.media-band,
.registration {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.section-copy h2,
.route-copy h2,
.register-copy h2 {
  color: var(--ink-strong);
  font-size: 54px;
}

.section-copy.centered {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.intro-text p,
.program-grid p,
.route-list span,
.venue-list p,
.video-placeholder p,
.register-copy p,
.form-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.intro-text p {
  margin: 0 0 18px;
  font-size: 17px;
}

.programs {
  background: var(--white);
  max-width: none;
}

.programs > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.program-grid article {
  min-height: 284px;
  padding: 26px;
  background: var(--white);
}

.program-grid article:hover {
  color: var(--white);
  background: var(--celeste-soft);
}

.program-grid article:hover h3,
.program-grid article:hover p {
  color: var(--white);
}

.program-grid article:hover span {
  color: var(--celeste);
  background: var(--white);
}

.program-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--celeste);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.program-grid h3,
.venue-list h3,
.video-placeholder strong {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.route-section {
  align-items: stretch;
}

.route-media {
  min-height: 520px;
  overflow: hidden;
  background: var(--celeste-soft);
}

.route-media img,
.route-visual {
  width: 100%;
  height: 100%;
}

.route-visual {
  display: grid;
  align-content: end;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 51, 72, 0.2)),
    url("assets/route-formativa.jpg") center / cover no-repeat;
}

.route-copy {
  padding: 32px 0;
}

.route-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.route-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.route-list strong {
  color: var(--ink-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.signup-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 39, 48, 0.08), rgba(29, 39, 48, 0.22)),
    var(--celeste);
  border-radius: 8px;
}

.signup-strip--compact {
  margin-top: 28px;
}

.signup-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-strip strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.signup-strip p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.signup-button {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0 22px;
  color: var(--ink-strong);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(29, 39, 48, 0.16);
}

.signup-button:hover,
.signup-button:focus-visible {
  color: var(--white);
  background: var(--ink-strong);
  outline: 0;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.signup-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 23, 34, 0.64);
  backdrop-filter: blur(6px);
}

.signup-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px 30px 30px;
  color: var(--ink-strong);
  background:
    radial-gradient(circle at top right, rgba(var(--celeste-rgb), 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.98));
  border: 1px solid rgba(var(--celeste-rgb), 0.24);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(14, 24, 31, 0.3);
}

.signup-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink-strong);
  background: rgba(var(--celeste-rgb), 0.12);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.signup-modal__close:hover,
.signup-modal__close:focus-visible {
  background: rgba(var(--celeste-rgb), 0.24);
  outline: 0;
  transform: translateY(-1px);
}

.signup-modal__close span {
  font-size: 28px;
  line-height: 1;
}

.signup-modal__kicker {
  margin: 0 0 10px;
  color: var(--celeste);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-modal__dialog h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
}

.signup-modal__copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.signup-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.signup-modal__button {
  min-height: 54px;
  border-radius: 12px;
  font-size: 15px;
  text-align: center;
}

.signup-modal__button--primary {
  color: var(--white);
  background: var(--celeste);
  box-shadow: 0 14px 30px rgba(var(--celeste-rgb), 0.34);
}

.signup-modal__button--primary:hover,
.signup-modal__button--primary:focus-visible {
  color: var(--white);
  background: var(--ink-strong);
  outline: 0;
}

.signup-modal__button--secondary {
  color: var(--ink-strong);
  background: var(--white);
  border: 2px solid rgba(var(--celeste-rgb), 0.6);
}

.signup-modal__button--secondary:hover,
.signup-modal__button--secondary:focus-visible {
  color: var(--white);
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  outline: 0;
}

body.modal-open {
  overflow: hidden;
}

.map-section {
  max-width: none;
  background: linear-gradient(180deg, rgba(var(--celeste-rgb), 0.16), #ffffff);
}

.map-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.map-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.map-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.academy-map {
  width: 100%;
  height: 640px;
  background: var(--celeste-soft);
}

.map-card p {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.venue-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(230, 64, 72, 0.18);
}

.leaflet-container {
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  z-index: 0;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
}

.leaflet-container .leaflet-tile,
.leaflet-container .leaflet-marker-icon,
.leaflet-container .leaflet-marker-shadow {
  display: block;
  max-width: none !important;
  max-height: none !important;
}

.leaflet-tile {
  width: 256px;
  height: 256px;
  border: 0;
  filter: saturate(0.84) contrast(0.96);
}

.leaflet-map-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-left .leaflet-control {
  margin-left: 12px;
}

.leaflet-right .leaflet-control {
  margin-right: 12px;
}

.leaflet-top .leaflet-control {
  margin-top: 12px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 12px;
}

.leaflet-control-attribution {
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 10px;
}

.leaflet-bar {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(34, 49, 66, 0.1);
}

.leaflet-bar a {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--ink-strong);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  line-height: 30px;
  text-align: center;
  font-weight: 800;
}

.leaflet-bar a:last-child {
  border-bottom: 0;
}

.leaflet-popup {
  position: absolute;
  margin-bottom: 18px;
  text-align: left;
}

.leaflet-popup-content {
  margin: 12px;
}

.leaflet-popup-tip-container {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 12px;
  margin-left: -12px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 12px;
  height: 12px;
  margin: -6px auto 0;
  transform: rotate(45deg);
  background: var(--white);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(34, 49, 66, 0.16);
}

.map-popup {
  min-width: 190px;
}

.map-popup strong {
  display: block;
  color: var(--ink-strong);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.map-popup span {
  display: block;
  margin-top: 4px;
  color: var(--celeste-deep);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-popup p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.map-popup a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ink-strong);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.venue-list article {
  min-height: 142px;
  padding: 18px;
  background: var(--white);
}

.venue-group-heading {
  grid-column: 1 / -1;
  min-height: 0 !important;
  padding: 16px 18px !important;
  color: var(--white);
  background: var(--ink-strong) !important;
}

.venue-group-heading span {
  color: var(--celeste);
}

.venue-group-heading h3 {
  color: var(--white);
}

.venue-item {
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.venue-item:hover,
.venue-item:focus-visible {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: var(--celeste-soft);
  box-shadow: inset 0 0 0 3px rgba(var(--celeste-rgb), 0.62);
  outline: 0;
}

.venue-item.is-active {
  color: var(--white);
  background: var(--celeste);
}

.venue-item:hover h3,
.venue-item:hover p,
.venue-item:hover span,
.venue-item:focus-visible h3,
.venue-item:focus-visible p,
.venue-item:focus-visible span,
.venue-item.is-active h3,
.venue-item.is-active p,
.venue-item.is-active span {
  color: var(--white);
}

.venue-pending {
  grid-column: 1 / -1;
  color: var(--muted);
}

.venue-pending h3 {
  color: var(--ink-strong);
}

.venue-phone {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.venue-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 0 12px;
  color: var(--white);
  background: var(--celeste);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-whatsapp.is-disabled {
  color: var(--muted);
  background: rgba(34, 49, 66, 0.08);
  cursor: default;
}

.venue-item:hover .venue-phone,
.venue-item:focus-visible .venue-phone,
.venue-item.is-active .venue-phone {
  color: rgba(255, 255, 255, 0.88);
}

.venue-item:hover .venue-whatsapp,
.venue-item:focus-visible .venue-whatsapp,
.venue-item.is-active .venue-whatsapp {
  color: var(--ink-strong);
  background: var(--white);
}

.media-band {
  padding-top: 82px;
}

.media-band .signup-strip {
  grid-column: 1 / -1;
}

.video-placeholder {
  min-height: 0;
  padding: 0;
  color: var(--ink-strong);
  background: transparent;
}

.video-feature {
  display: grid;
  align-content: start;
  gap: 0;
}

.video-placeholder strong {
  display: block;
  color: var(--white);
  font-size: 42px;
}

.video-placeholder p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
}

.video-feature__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 49, 66, 0.08);
  border-radius: 20px;
  box-shadow: 0 26px 54px rgba(17, 29, 38, 0.14);
  background: #08141d;
}

.video-feature__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #08141d;
}

.registration {
  align-items: start;
}

.register-copy {
  position: sticky;
  top: 120px;
}

.whatsapp-link,
.franchise-link {
  margin-top: 24px;
  color: var(--white);
  background: var(--celeste);
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(34, 49, 66, 0.08);
}

.interest-form label {
  display: grid;
  gap: 9px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fbfdff;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  outline: 3px solid rgba(var(--celeste-rgb), 0.2);
  border-color: var(--celeste-strong);
}

.full-field,
.form-button,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  color: #217a4b;
}

.form-status.is-error {
  color: #b8323a;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--celeste);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.footer-social {
  flex-shrink: 0;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  outline: 0;
}

@media (max-width: 1020px) {
  .main-nav {
    align-items: flex-start;
  }

  .main-nav,
  .intro-band,
  .route-section,
  .map-layout,
  .media-band,
  .registration {
    grid-template-columns: 1fr;
  }

  .main-nav nav {
    flex-wrap: wrap;
  }

  .signup-strip {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .quick-links,
  .program-grid,
  .venue-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-copy {
    position: static;
  }

  .map-card {
    position: static;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 18px;
  }

  body,
  main,
  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    position: static;
  }

  .club-bar,
  .main-nav,
  .main-nav nav,
  .header-actions,
  .site-footer,
  .site-footer div,
  .site-footer nav {
    display: grid;
  }

  .club-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    padding: 8px 20px 10px;
  }

  .club-bar > span {
    justify-self: center;
    width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    gap: 14px;
    padding: 14px 20px 16px;
    justify-items: center;
  }

  .brand {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    justify-items: center;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand small {
    font-size: 11px;
  }

  .main-nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 8px;
    justify-self: stretch;
    font-size: 10px;
    text-align: center;
  }

  .main-nav nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    min-width: 0;
    padding: 0 10px;
    color: var(--ink-strong);
    background: rgba(var(--celeste-rgb), 0.08);
    border: 1px solid rgba(var(--celeste-rgb), 0.28);
    border-radius: 999px;
    line-height: 1.1;
    white-space: normal;
  }

  .main-nav nav a:nth-child(3) {
    grid-column: 1 / -1;
  }

  .nav-signup,
  .nav-cta,
  .nav-franchise-button {
    width: 100%;
  }

  .main-nav nav .nav-signup {
    grid-column: 1 / -1;
    order: 4;
    min-height: 50px;
    color: var(--white);
    background: var(--celeste);
    border-color: transparent;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 14px 28px rgba(var(--celeste-rgb), 0.28);
  }

  .header-actions {
    width: 100%;
    gap: 10px;
  }

  .nav-cta {
    min-height: 48px;
    border-radius: 10px;
    font-size: 15px;
  }

  .nav-franchise-button {
    min-height: 46px;
    border-radius: 10px;
    font-size: 13px;
  }

  .hero,
  .hero-overlay {
    min-height: 0;
    height: auto;
  }

  .hero {
    margin-bottom: 0;
    overflow: visible;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(var(--celeste-rgb), 0.72), rgba(var(--celeste-rgb), 0.28) 56%, rgba(0, 34, 54, 0.14)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 21, 36, 0.42)),
      url("assets/hero-academia.png") 56% top / cover no-repeat;
  }

  .hero-overlay {
    padding: 52px 18px 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 315px;
    font-size: 37px;
    line-height: 0.92;
    letter-spacing: -0.01em;
  }

  .hero p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 350px;
    gap: 10px;
  }

  .primary-button,
  .secondary-button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-numbers,
  .quick-links,
  .program-grid,
  .venue-list,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .hero-numbers {
    position: static;
    margin: 54px -18px 0;
    transform: none;
  }

  .hero-numbers article {
    padding: 18px;
  }

  .quick-links {
    padding: 0;
  }

  .quick-links a {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(34, 49, 66, 0.1);
  }

  .quick-links strong {
    max-width: none;
    font-size: 24px;
  }

  .intro-band,
  .programs,
  .route-section,
  .map-section,
  .media-band,
  .registration {
    width: 100%;
    max-width: 100vw;
    padding: 58px 18px;
  }

  .section-copy h2,
  .route-copy h2,
  .register-copy h2 {
    max-width: 340px;
    font-size: 32px;
    line-height: 0.98;
  }

  .intro-text p,
  .program-grid p,
  .route-list span,
  .venue-list p,
  .video-placeholder p,
  .register-copy p,
  .form-note,
  .form-status {
    max-width: min(100%, calc(100vw - 36px));
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .program-grid article,
  .venue-list article {
    min-height: 0;
    padding: 22px;
  }

  .route-media,
  .route-visual {
    min-height: 360px;
  }

  .route-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signup-strip {
    gap: 18px;
    padding: 22px;
  }

  .signup-strip strong {
    font-size: 30px;
  }

  .signup-button {
    width: 100%;
  }

  .signup-modal {
    padding: 18px;
  }

  .signup-modal__dialog {
    padding: 28px 20px 20px;
  }

  .signup-modal__dialog h2 {
    font-size: 36px;
  }

  .signup-modal__actions {
    grid-template-columns: 1fr;
  }

  .section-copy.centered {
    text-align: left;
  }

  .map-layout {
    gap: 24px;
  }

  .academy-map {
    height: 430px;
  }

  .video-placeholder {
    min-height: 0;
    padding: 0;
  }

  .interest-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    place-items: center;
    padding: 32px 20px;
    text-align: center;
  }

  .site-footer > * {
    width: 100%;
    max-width: 350px;
    justify-self: center;
  }

  .site-footer > div:first-child {
    place-items: center;
    justify-items: center;
    gap: 10px;
  }

  .site-footer p {
    max-width: 310px;
    font-size: 22px;
    line-height: 1.05;
  }

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    width: 100%;
    gap: 8px;
  }

  .site-footer nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-footer .social-links {
    display: flex;
    justify-content: center;
    justify-self: center;
    width: 100%;
  }

  .site-footer small {
    justify-self: center;
    width: 100%;
    max-width: 350px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .main-nav nav {
    grid-template-columns: 1fr;
  }
}
