/* ============================================
   WPC WORLD PADEL CENTER — STYLESHEET
   Design: Clean white, red accents, minimal yellow
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C0392B;
  --red-dark:   #9B2B1F;
  --red-light:  #E74C3C;
  --yellow:     #F4C430;
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --gray-100:   #F1F3F5;
  --gray-200:   #E9ECEF;
  --gray-300:   #DEE2E6;
  --gray-400:   #CED4DA;
  --gray-500:   #ADB5BD;
  --gray-600:   #6C757D;
  --gray-700:   #495057;
  --gray-800:   #343A40;
  --gray-900:   #212529;
  --dark:       #1A1A2E;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --nav-h:      70px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
textarea { resize: vertical; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

/* ── SECTIONS SYSTEM ── */
.section { display: none; animation: fadeIn .3s ease; }
.section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.8); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: .6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-link {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 600;
  font-size: .9rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap var(--transition);
}
.btn-link:hover { gap: .5rem; }

/* ── LOGO ── */
.nav-logo, .footer-logo {
  display: flex;
  align-items: baseline;
  gap: .1rem;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: .02em;
  text-decoration: none;
}
.logo-world { color: var(--yellow); }
.logo-padel { color: var(--red); }
.logo-center { color: var(--gray-800); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-menu a {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--red);
  background: rgba(192,57,43,.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-login {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--transition);
}
.btn-login:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.5) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 41px);
}

/* Court silhouette lines as background detail */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 70%;
  background:
    /* court lines */
    linear-gradient(to right, transparent 49%, rgba(255,255,255,.06) 49%, rgba(255,255,255,.06) 51%, transparent 51%),
    linear-gradient(to bottom, transparent 49%, rgba(255,255,255,.06) 49%, rgba(255,255,255,.06) 51%, transparent 51%);
  border: 1px solid rgba(255,255,255,.05);
  border-bottom: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(192,57,43,.2);
  border: 1px solid rgba(192,57,43,.4);
  color: #F5A5A0;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero-accent {
  color: var(--red-light);
  position: relative;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1.5rem 2.5rem;
  border-right: 1px solid var(--gray-200);
  flex: 1;
  min-width: 200px;
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--off-white); }

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.feature-item > div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.feature-item strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.feature-item span {
  font-size: .8rem;
  color: var(--gray-600);
}

/* ── CLUBS GRID ── */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.club-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.club-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.club-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.club-parqueastur {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}
.club-aviles {
  background: linear-gradient(135deg, #2d1b00, #5c3600);
}

/* Padel court SVG pattern */
.club-parqueastur::before, .club-aviles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, transparent 49.5%, rgba(255,255,255,.15) 49.5%, rgba(255,255,255,.15) 50.5%, transparent 50.5%),
    linear-gradient(to bottom, transparent 49.5%, rgba(255,255,255,.15) 49.5%, rgba(255,255,255,.15) 50.5%, transparent 50.5%);
  border: 1px solid rgba(255,255,255,.08);
}
.club-parqueastur::after {
  content: '🏟️';
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 3rem;
  opacity: .2;
}
.club-aviles::after {
  content: '🎾';
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 3rem;
  opacity: .2;
}

.club-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}
.club-badge {
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.club-card-body {
  padding: 1.5rem;
}
.club-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: .35rem;
}
.club-card-body > p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: .75rem;
}
.club-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .8rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-2px);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(192,57,43,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon { font-size: 1.5rem; }

.service-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.service-card p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.6;
}


/* ── INSTAGRAM SECTION ── */
.instagram-section {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--off-white);
}
.instagram-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.ig-icon { font-size: 1.75rem; }
.instagram-cta > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.instagram-cta strong {
  font-size: 1rem;
  font-weight: 700;
}
.instagram-cta span {
  color: var(--gray-600);
  font-size: .9rem;
}

/* ── PAGE HERO MINI ── */
.page-hero.mini {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero.mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,.02) 60px, rgba(255,255,255,.02) 61px);
}
.page-hero-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero-content h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero-content p { color: rgba(255,255,255,.75); font-size: 1.1rem; }

/* ── CLUB DETAIL ── */
.club-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--gray-200);
}
.club-tab {
  padding: .875rem 1.75rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.club-tab.active { color: var(--red); border-bottom-color: var(--red); }
.club-tab:hover:not(.active) { color: var(--gray-800); }

.club-detail { display: none; }
.club-detail.active { display: block; }

.club-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.club-photo {
  height: 320px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.club-parqueastur-photo {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}
.club-aviles-photo {
  background: linear-gradient(135deg, #2d1b00, #5c3600);
}
.club-photo-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .4rem .875rem;
  border-radius: 50px;
}

.club-quick-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quick-info-item {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.qi-icon { font-size: 1.1rem; flex-shrink: 0; padding-top: .1rem; }
.quick-info-item > div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.quick-info-item strong {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  font-weight: 600;
}
.quick-info-item span, .quick-info-item a {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.quick-info-item a:hover { color: var(--red); }

.club-info { padding-top: .5rem; }
.club-info h2 { margin-bottom: .75rem; }
.club-desc {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.facility-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .875rem;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}
.fac-icon { font-size: 1.1rem; flex-shrink: 0; }
.facility-item > div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.facility-item strong {
  font-size: .85rem;
  font-weight: 700;
}
.facility-item span {
  font-size: .8rem;
  color: var(--gray-600);
}

.club-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.map-section {
  margin-top: 3rem;
}
.map-section h3 {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: var(--gray-700);
}
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

/* ── BOOKING / RESERVAS ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-step {
  margin-bottom: 2.5rem;
}
.step-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.step-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.sede-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sede-option { cursor: pointer; }
.sede-option input { display: none; }
.sede-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.sede-card strong { font-size: .95rem; font-weight: 700; }
.sede-card span { font-size: .8rem; color: var(--gray-600); }
.sede-option input:checked + .sede-card {
  border-color: var(--red);
  background: rgba(192,57,43,.05);
}
.sede-option:hover .sede-card { border-color: var(--red-light); }

/* Calendar */
.calendar-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
.calendar-header h4 { font-size: .95rem; font-weight: 700; text-transform: capitalize; }
.cal-nav {
  width: 32px; height: 32px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cal-nav:hover { border-color: var(--red); color: var(--red); background: rgba(192,57,43,.05); }

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--off-white);
}
.cal-day-name {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: .5rem 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: .5rem;
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
  color: var(--gray-700);
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.selected) {
  background: rgba(192,57,43,.08);
  color: var(--red);
  border-color: rgba(192,57,43,.2);
}
.cal-day.today { font-weight: 700; color: var(--red); }
.cal-day.selected { background: var(--red); color: var(--white); border-color: var(--red); }
.cal-day.disabled { opacity: .35; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

/* Sport selector */
.sport-selector {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.sport-btn {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
}
.sport-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.sport-btn:hover:not(.active) {
  border-color: var(--red);
  color: var(--red);
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .625rem;
}
.time-slot {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .75rem .5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot .slot-time {
  font-size: .85rem;
  font-weight: 700;
  display: block;
  margin-bottom: .1rem;
}
.time-slot .slot-court {
  font-size: .7rem;
  color: var(--gray-500);
  display: block;
}
.time-slot.available:hover {
  border-color: var(--red);
  background: rgba(192,57,43,.05);
  color: var(--red);
}
.time-slot.available:hover .slot-court { color: rgba(192,57,43,.7); }
.time-slot.selected {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.time-slot.selected .slot-court { color: rgba(255,255,255,.8); }
.time-slot.occupied {
  background: var(--gray-100);
  color: var(--gray-400);
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-slot.occupied .slot-court { color: var(--gray-400); }

/* Booking summary */
.booking-summary {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-200);
}
.summary-row:last-child { border-bottom: none; font-weight: 700; }
.summary-row span:last-child { font-weight: 600; color: var(--dark); }

/* Info cards */
.booking-info { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.info-card.highlight-card {
  background: rgba(192,57,43,.04);
  border-color: rgba(192,57,43,.2);
}
.info-card h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 1rem;
}
.info-card.highlight-card h4 { color: var(--red); }

.price-list { display: flex; flex-direction: column; gap: .625rem; }
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
}
.price-item.highlight { font-weight: 700; color: var(--red); }
.price { font-weight: 600; color: var(--gray-800); }
.price-item.highlight .price { color: var(--red); }

.conditions-list { display: flex; flex-direction: column; gap: .5rem; }
.conditions-list li {
  font-size: .88rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.conditions-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.info-card.highlight-card p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* ── SCHOOL / ESCUELA ── */
.school-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.school-intro-text h2 { margin-bottom: .875rem; }
.school-intro-text p { color: var(--gray-600); line-height: 1.7; margin-bottom: .75rem; }

.school-intro-badges {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}
.badge-item {
  text-align: center;
  min-width: 80px;
}
.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.badge-label {
  font-size: .75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.level-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.level-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.level-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}

.level-header {
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
}
.nivel-1 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.nivel-2 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.nivel-3 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.nivel-4 { background: linear-gradient(135deg, #e8eaf6, #c5cae9); }

.level-popular {
  position: absolute;
  top: .75rem; right: .75rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  letter-spacing: .06em;
}

.level-icon { font-size: 1.75rem; display: block; margin-bottom: .5rem; }
.level-header h3 { font-size: 1.1rem; color: var(--dark); }

.level-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.level-body > p {
  color: var(--gray-600);
  font-size: .88rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.level-body ul {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.level-body ul li {
  font-size: .85rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.level-body ul li::before { content: '→'; color: var(--red); font-weight: 700; }

.level-info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .8rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: .75rem;
}

/* Pickleball */
.pickleball-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
}
.pickleball-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.pickle-icon { font-size: 4rem; flex-shrink: 0; }
.pickleball-content h2 { color: var(--white); margin-bottom: .875rem; }
.pickleball-content p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; line-height: 1.7; }

/* Schedule table */
.schedule-table-wrap { overflow-x: auto; }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.schedule-table th {
  background: var(--gray-100);
  padding: .875rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--gray-700);
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}
.schedule-table th:first-child { text-align: left; }
.schedule-table td {
  padding: .75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.time-col {
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  text-align: left !important;
  font-size: .8rem;
}

.class-slot {
  display: inline-block;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}
.class-slot.iniciacion { background: #e8f5e9; color: #2e7d32; }
.class-slot.intermedio { background: #fff3e0; color: #e65100; }
.class-slot.avanzado { background: #fce4ec; color: #c62828; }
.class-slot.competicion { background: #e8eaf6; color: #283593; }
.class-slot.pickleball { background: rgba(192,57,43,.1); color: var(--red); }

.schedule-note {
  text-align: center;
  color: var(--gray-500);
  font-size: .82rem;
  margin-top: 1rem;
  font-style: italic;
}

/* ── CAMPEONATOS ── */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tournament-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tournament-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tournament-header {
  padding: 1.5rem;
  color: var(--white);
  position: relative;
}
.t-cat-padel { background: linear-gradient(135deg, #c0392b, #922b21); }
.t-cat-pickle { background: linear-gradient(135deg, #0f3460, #1a1a2e); }
.t-cat-mixto { background: linear-gradient(135deg, #5c3600, #2d1b00); }

.tournament-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .625rem;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.tournament-header h3 { font-size: 1.15rem; color: var(--white); margin-bottom: .25rem; }
.tournament-header p { font-size: .85rem; color: rgba(255,255,255,.8); }

.tournament-body { padding: 1.25rem; }

.t-info {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.t-info-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
}
.t-info-row span:first-child { color: var(--gray-600); }
.t-info-row span:last-child { font-weight: 600; }

.t-spots {
  font-size: .8rem;
  color: var(--gray-600);
  margin-bottom: .75rem;
}
.spots-bar {
  height: 5px;
  background: var(--gray-200);
  border-radius: 5px;
  overflow: hidden;
  margin-top: .3rem;
}
.spots-fill {
  height: 100%;
  background: var(--red);
  border-radius: 5px;
}

/* Results */
.results-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.result-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.result-item:hover { border-color: var(--gray-300); }

.result-date {
  min-width: 90px;
  text-align: center;
}
.result-date .rday { display: block; font-size: 1.75rem; font-weight: 900; color: var(--red); line-height: 1; }
.result-date .rmonth { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); font-weight: 600; }

.result-info { flex: 1; }
.result-info h4 { font-size: .95rem; margin-bottom: .25rem; }
.result-info p { font-size: .82rem; color: var(--gray-600); }

.result-winners {
  text-align: right;
}
.result-winners .rw-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .2rem;
}
.result-winners .rw-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}

/* Liga */
.liga-section { margin-top: 2rem; }
.liga-header { margin-bottom: 1.5rem; }
.liga-header h2 { margin-bottom: .25rem; }
.liga-header p { color: var(--gray-600); font-size: .9rem; }

.liga-table-wrap { overflow-x: auto; }
.liga-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.liga-table th {
  padding: .875rem 1.25rem;
  text-align: left;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  font-weight: 700;
  border-bottom: 2px solid var(--gray-200);
  background: var(--gray-100);
}
.liga-table td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.liga-table tr:hover td { background: var(--off-white); }
.liga-table tr:first-child td { background: rgba(192,57,43,.04); }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .85rem;
}
.rank-1 { background: #FFD700; color: #856000; }
.rank-2 { background: #C0C0C0; color: #555; }
.rank-3 { background: #CD7F32; color: #5c3600; }

.pts-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: .25rem .75rem;
  border-radius: 50px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 1.75rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  cursor: pointer;
}
.checkbox-label input { width: auto; }
.link-red { color: var(--red); font-weight: 600; text-decoration: underline; }
.link-red:hover { color: var(--red-dark); }

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: .875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
}

.contact-info h2 { margin-bottom: 1.75rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.cc-icon { font-size: 1.25rem; flex-shrink: 0; }
.cc-content h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .35rem;
}
.cc-content p, .cc-content address {
  font-size: .9rem;
  color: var(--gray-700);
  font-style: normal;
  line-height: 1.5;
}
.contact-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--red); }

.social-links h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .875rem;
}
.socials { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  background: var(--white);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--red); color: var(--red); background: rgba(192,57,43,.05); }

.gbp-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fffde7;
  border: 1.5px solid #f9a825;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
  font-size: .9rem;
}
.gbp-notice span { font-size: 1.25rem; flex-shrink: 0; }
.gbp-notice p { color: var(--gray-700); line-height: 1.5; }
.gbp-notice a { color: #e65100; text-decoration: underline; font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}
.footer-brand .footer-logo {
  margin-bottom: 1rem;
}
.footer-brand .logo-center { color: rgba(255,255,255,.8); }
.footer-brand > p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: .75rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.footer-socials a:hover { background: var(--red); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
  animation: fadeIn .2s ease;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: slideUp .25s ease;
}
.modal.modal-sm { max-width: 420px; }
.modal.modal-lg { max-width: 720px; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gray-100);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: .9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gray-200); }

.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200);
}
.modal-tab {
  flex: 1;
  padding: .875rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.modal-tab.active { color: var(--red); border-bottom-color: var(--red); }

.modal-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.modal-content h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--gray-700);
}
.modal-content form { display: flex; flex-direction: column; gap: 1.1rem; }

.auth-error {
  background: #fce4ec;
  color: #c62828;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
}

/* Dashboard */
.dashboard h2 { margin-bottom: 1.5rem; }
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.dash-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1.5px solid var(--gray-200);
}
.dash-card h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.dash-card .big-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .88rem;
}
.booking-item:last-child { border-bottom: none; }
.booking-item-info strong { display: block; font-size: .9rem; }
.booking-item-info span { color: var(--gray-500); }
.status-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .625rem;
  border-radius: 50px;
}
.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.status-pending { background: #fff3e0; color: #e65100; }

/* Booking confirm */
.booking-confirm-content {
  text-align: center;
  padding: 1rem 0;
}
.confirm-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.confirm-detail {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  margin: 1.5rem 0;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-200);
}
.confirm-row:last-child { border-bottom: none; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .club-detail-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem;
    box-shadow: var(--shadow-lg);
    display: none;
    margin-left: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: .875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .95rem;
  }

  .nav-toggle { display: flex; }
  .btn-login { padding: .4rem .875rem; font-size: .82rem; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-ctas { flex-direction: column; max-width: 280px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { text-align: center; justify-content: center; }

  .features-strip { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--gray-200); min-width: auto; }
  .feature-item:last-child { border-bottom: none; }

  .clubs-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sede-selector { grid-template-columns: 1fr; }
  .school-intro { grid-template-columns: 1fr; }
  .school-intro-badges { justify-content: center; }
  .pickleball-content { flex-direction: column; text-align: center; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .modal { padding: 1.75rem 1.5rem; }
  .instagram-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .section-container { padding: 2.5rem 1rem; }
  .page-hero.mini { padding: calc(var(--nav-h) + 2rem) 1rem 2rem; }
  .club-tabs { overflow-x: auto; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.text-red { color: var(--red); }
.text-muted { color: var(--gray-600); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
