/* =========================================================================
   Gymcenter La Plata — Stylesheet (rebuild)
   Design read: bold athletic dark theme for a 39-year community gym.
   Single locked accent: coral-red #E94560. Off-black surfaces, never #000.
   Typography: Teko (display) + Oswald (labels/headings) + Inter (body).
   Mobile-first. Breakpoints: 480 / 768 / 1024 / 1280.
   ========================================================================= */

:root {
  /* ---- Palette (ONE accent locked) ---- */
  --bg:           #121218;   /* page background, deep charcoal */
  --bg-2:         #0C0C11;   /* darker alt sections */
  --surface:      #1C1C26;   /* cards */
  --surface-2:    #232330;   /* hover / elevated */
  --accent:       #E94560;   /* LOCKED coral-red */
  --accent-dim:   #C73A52;   /* hover */
  --accent-soft:  rgba(233,69,96,.12);
  --text:         #EFEFF4;   /* off-white */
  --text-2:       #B0B0C0;   /* muted */
  --text-3:       #7C7C90;   /* dimmer */
  --border:       #2A2A38;
  --border-2:     #383848;
  --success:      #4ADE80;
  --error:        #F87171;
  --error-bg:     #2A1418;
  --wa:           #1FA653;   /* WhatsApp dark green for contrast */

  /* ---- Typography ---- */
  --ff-display: 'Teko', Impact, 'Arial Narrow', sans-serif;
  --ff-head:    'Oswald', 'Arial Narrow', Impact, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, Arial, sans-serif;

  /* ---- Spacing scale ---- */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;  --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 5.5rem;  --s-10: 7rem;

  /* ---- Radius (single scale: soft cards, pill buttons) ---- */
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 20px;  --r-pill: 999px;

  /* ---- Layout ---- */
  --container: 1240px;
  --container-narrow: 880px;
  --header-h: 72px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s var(--ease);
  --t-med:  .35s var(--ease);
  --t-slow: .6s var(--ease);
}

/* ============================ RESET ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--text); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--text);
}
h1 { font-weight: 700; }
p { color: var(--text-2); }

/* ============================ A11Y ============================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: var(--accent);
  color: #fff;
  padding: var(--s-3) var(--s-5);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================ LAYOUT ============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--s-9) 0; }
.section--tight { padding: var(--s-8) 0; }
.section--alt { background: var(--bg-2); }
.section--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #C73A52 100%);
  color: #fff;
}
.section--accent p { color: rgba(255,255,255,.9); }
.section--accent h1,
.section--accent h2,
.section--accent h3 { color: #fff; }

/* Section header — stacked, max 65ch */
.section-head {
  max-width: 680px;
  margin-bottom: var(--s-7);
}
.section-head--center {
  margin-left: auto; margin-right: auto; text-align: center;
}

/* Eyebrow — used sparingly (max 1 per 3 sections) */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(.875rem, 1vw, .95rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: .005em;
  margin-bottom: var(--s-4);
  line-height: .98;
}
.section-title .accent { color: var(--accent); }
.section-lead {
  max-width: 62ch;
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-bottom: var(--s-6);
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-med), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--lg { padding: var(--s-4) var(--s-7); font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--light {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
}
.btn--light:hover { background: var(--text); border-color: var(--text); color: var(--bg); }

/* alias for backwards-compat */
.btn--neon { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--neon:hover { background: var(--accent-dim); border-color: var(--accent-dim); color: #fff; }

/* ============================ HEADER / NAV ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18,18,24,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.site-header.scrolled {
  background: rgba(18,18,24,.96);
  border-bottom-color: var(--border-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--s-4);
}
.brand { flex-shrink: 0; display: block; }
.brand-logo { height: 44px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: var(--s-5); }
.nav-list { display: flex; align-items: center; gap: var(--s-5); }
.nav-list a {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: var(--s-2) 0;
  position: relative;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] { color: var(--text); }
.nav-list a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.nav-cta { margin-left: var(--s-3); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 9px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-toggle-bar { top: 20px; }
.nav-toggle-bar::before { content: ''; top: -8px; }
.nav-toggle-bar::after  { content: ''; top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1050;
  opacity: 0;
  transition: opacity var(--t-med);
}
.nav-overlay.open { opacity: 1; }
.nav-overlay[hidden] { display: none; }

@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 85vw);
    height: 100dvh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--header-h) + var(--s-5)) var(--s-5) var(--s-5);
    gap: var(--s-2);
    transform: translateX(100%);
    transition: transform var(--t-med);
    z-index: 1060;
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-1);
    width: 100%;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: var(--s-3) var(--s-2);
    font-size: 1.15rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-list a[aria-current="page"]::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: var(--s-4); width: 100%; }
  .nav-cta .btn { width: 100%; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: var(--s-8) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,12,17,.96) 0%, rgba(12,12,17,.82) 38%, rgba(12,12,17,.45) 70%, rgba(12,12,17,.2) 100%),
    linear-gradient(0deg, rgba(12,12,17,.85) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: .88;
  letter-spacing: 0;
  margin-bottom: var(--s-4);
  text-transform: uppercase;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--s-3);
}
.hero-text {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 52ch;
  margin-bottom: var(--s-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

/* Hero side stat card (asymmetric visual anchor) */
.hero-stat {
  position: absolute;
  right: var(--s-5);
  bottom: var(--s-6);
  z-index: 2;
  background: rgba(28,28,38,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(233,69,96,.3);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  max-width: 240px;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--ff-head);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-2);
  margin-top: var(--s-1);
}
@media (max-width: 900px) {
  .hero-stat { display: none; }
}

/* ============================ STATS BAND ============================ */
.stats-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-6) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .stat-item:nth-child(2) { border-right: none; }
}
.stat-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-head);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-2);
  margin-top: var(--s-2);
}

/* ============================ BENTO DISCIPLINES ============================ */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}
@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
  }
}
.bento-cell {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-5);
  min-height: 220px;
  transition: transform var(--t-med), border-color var(--t-fast);
}
.bento-cell:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.bento-cell--feature {
  grid-column: span 1;
  grid-row: span 2;
}
@media (min-width: 768px) {
  .bento-cell--feature { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento-cell--feature { grid-column: span 1; grid-row: span 2; }
}
.bento-cell--wide {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .bento-cell--wide { grid-column: span 2; }
}
.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bento-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(12,12,17,.95) 0%, rgba(12,12,17,.4) 60%, rgba(12,12,17,.1) 100%);
}
.bento-body {
  position: relative;
  z-index: 2;
}
.bento-icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.bento-cell h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--s-2);
}
.bento-cell p {
  font-size: .95rem;
  color: var(--text-2);
  max-width: 40ch;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  margin-top: var(--s-3);
}
.bento-link:hover { color: var(--text); }

/* ============================ FEATURE CARDS (alt layouts) ============================ */
.features-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 768px) {
  .features-split { grid-template-columns: 1fr 1fr; }
}
.feature-row {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}
.feature-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  color: var(--accent);
}
.feature-row h3 {
  font-size: 1.3rem;
  margin-bottom: var(--s-2);
}
.feature-row p { font-size: .95rem; }

/* Zigzag feature blocks */
.zigzag-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  margin-bottom: var(--s-9);
}
.zigzag-item:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .zigzag-item { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.zigzag-item--rev .zigzag-media { order: 2; }
@media (max-width: 767px) {
  .zigzag-item--rev .zigzag-media { order: 0; }
}
.zigzag-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.zigzag-media img { width: 100%; height: 100%; object-fit: cover; }
.zigzag-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: var(--s-3);
}
.zigzag-text p { margin-bottom: var(--s-4); }
.zigzag-list {
  display: grid;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.zigzag-list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  color: var(--text);
}
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--accent);
  margin-top: 2px;
}

/* ============================ HIGHLIGHT BAND ============================ */
.highlight-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 768px) {
  .highlight-band { grid-template-columns: 1.2fr 1fr; gap: var(--s-8); }
}
.highlight-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--border);
}
.highlight-visual img { width: 100%; height: 100%; object-fit: cover; }
.highlight-text h2 { margin-bottom: var(--s-4); }
.highlight-text p { margin-bottom: var(--s-4); }

/* ============================ PLANS ============================ */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 768px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-med), border-color var(--t-fast);
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 40%);
}
@media (min-width: 768px) {
  .plan-card.featured { transform: scale(1.03); }
  .plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: var(--s-1) var(--s-4);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: var(--s-1);
}
.plan-tagline {
  font-family: var(--ff-head);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.plan-features {
  display: grid;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text-2);
}
.plan-features .check { width: 20px; height: 20px; margin-top: 2px; }
.plan-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-3);
  margin-top: var(--s-5);
}

/* ============================ TESTIMONIALS ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  font-style: normal;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  border-top: 1px solid var(--border);
  padding-top: var(--s-4);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.who {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.where {
  font-size: .85rem;
  color: var(--text-3);
}

/* ============================ DISCIPLINE BLOCKS (clases page) ============================ */
.discipline-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--border);
}
.discipline-block:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .discipline-block { grid-template-columns: 280px 1fr; gap: var(--s-7); }
}
.discipline-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--border);
}
.discipline-visual img { width: 100%; height: 100%; object-fit: cover; }
.discipline-text .tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.discipline-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: var(--s-3);
}
.discipline-text p { margin-bottom: var(--s-3); }
.discipline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.discipline-meta span {
  font-family: var(--ff-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
}

/* ============================ SCHEDULE TABLE ============================ */
.schedule-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.schedule caption {
  caption-side: top;
  text-align: left;
  padding: var(--s-4);
  font-size: .9rem;
  color: var(--text-3);
}
.schedule th,
.schedule td {
  padding: var(--s-3) var(--s-3);
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.schedule thead th {
  background: var(--bg-2);
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  font-size: .85rem;
}
.schedule tbody th {
  text-align: left;
  font-family: var(--ff-head);
  color: var(--text-2);
  white-space: nowrap;
}
.schedule td.discipline {
  color: var(--accent);
  font-weight: 500;
}
.schedule td.time {
  color: var(--text-3);
}
.schedule tbody tr:hover { background: var(--surface); }

/* ============================ PAGE HEADER ============================ */
.page-header {
  padding: var(--s-7) 0 var(--s-6);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: .9rem;
  color: var(--text-3);
  margin-bottom: var(--s-4);
}
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-3); }
.breadcrumb [aria-current="page"] { color: var(--text); }
.page-header .section-title { margin-top: var(--s-2); }

/* ============================ TIMELINE (nosotros) ============================ */
.timeline {
  position: relative;
  padding-left: var(--s-5);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: var(--s-5);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -23px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.timeline-year {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.timeline-item h3 {
  font-size: 1.2rem;
  margin: var(--s-2) 0 var(--s-1);
}
.timeline-item p { font-size: .95rem; }

/* ============================ VALUES GRID ============================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 600px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border-left: 3px solid var(--accent);
}
.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--s-2);
}
.value-card p { font-size: .95rem; }

/* ============================ TEAM ============================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 600px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-med);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto var(--s-4);
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
}
.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-1);
}
.team-role {
  font-family: var(--ff-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.team-card p { font-size: .9rem; }

/* ============================ FAQ ============================ */
.faq-list {
  display: grid;
  gap: var(--s-3);
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item[open] { border-color: var(--accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform var(--t-med);
}
.faq-item[open] .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 var(--s-5) var(--s-4);
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.6;
}

/* ============================ CTA BANNER ============================ */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  text-align: center;
  border-top: 4px solid var(--accent);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--s-3);
}
.cta-banner p {
  max-width: 55ch;
  margin: 0 auto var(--s-5);
}

/* ============================ LOCATION ============================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
.location-info h3 { margin-bottom: var(--s-4); font-size: 1.6rem; }
.info-row {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--accent);
  margin-top: 2px;
}
.info-row .lbl {
  display: block;
  font-family: var(--ff-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-3);
  margin-bottom: 2px;
}
.info-row .val {
  display: block;
  color: var(--text);
}
.hours-list { display: grid; gap: var(--s-1); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: .95rem;
}
.hours-list .day { color: var(--text-2); }
.hours-list .time { color: var(--text); font-family: var(--ff-head); }
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 340px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(.3) contrast(1.1);
}

/* ============================ CONTACT FORM ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1.1fr .9fr; gap: var(--s-7); }
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.form-group {
  margin-bottom: var(--s-4);
}
.form-group label {
  display: block;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.req { color: var(--accent); }
.form-control {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-error {
  display: block;
  font-size: .875rem;
  color: var(--error);
  margin-top: var(--s-2);
  min-height: 1.2em;
}
.form-group.has-error .form-control {
  border-color: var(--error);
  background: var(--error-bg);
}
.form-success {
  background: rgba(74,222,128,.1);
  border: 1px solid var(--success);
  border-radius: var(--r-md);
  padding: var(--s-4);
  color: var(--success);
  font-weight: 500;
  margin-bottom: var(--s-4);
}

/* ============================ GALLERY ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ============================ MARQUEE (brands) ============================ */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-6) var(--s-8);
  padding: var(--s-5) 0;
}
.brand-mark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-3);
  transition: color var(--t-fast);
}
.brand-mark:hover { color: var(--text); }

/* ============================ FOOTER ============================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--s-8) 0 var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-logo { margin-bottom: var(--s-4); }
.footer-brand p { font-size: .95rem; max-width: 42ch; margin-bottom: var(--s-4); }
.footer-social {
  display: flex;
  gap: var(--s-3);
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-2);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}
.footer-social svg { width: 20px; height: 20px; }
.footer-col h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: grid; gap: var(--s-2); }
.footer-col li { font-size: .95rem; color: var(--text-2); }
.footer-col a { color: var(--text-2); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================ WHATSAPP FLOAT ============================ */
.whatsapp-btn {
  position: fixed;
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 900;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  transition: transform var(--t-med), background var(--t-fast);
}
.whatsapp-btn:hover { transform: scale(1.08); background: #178a44; color: #fff; }
.whatsapp-btn svg { width: 30px; height: 30px; }
.whatsapp-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ============================ SCROLL REVEAL ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================ DIVIDER ============================ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0 0 var(--s-4);
}
.section-head--center .divider { margin-left: auto; margin-right: auto; }

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================ UTILITIES ============================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
