/* === Rancho Sport — landing styles === */

:root {
  --bg: #1c130a;
  --bg-2: #261a0e;
  --bg-3: #110a04;
  --surface: #2c1e10;
  --surface-2: #3a2818;
  --cream: #d4b87a;
  --cream-soft: #e6cf99;
  --accent: #c5f64f;
  --accent-2: #a9e02a;
  --text: #f5ecdb;
  --text-dim: #b8a988;
  --text-mute: #8a7a5c;
  --border: rgba(212, 184, 122, 0.15);
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1200px;

  --font-display: "Anton", "Bebas Neue", Impact, system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Logo === */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bg);
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 0.85;
  text-align: center;
  font-size: 14px;
  text-transform: lowercase;
}
.logo-mark span { display: block; }
.logo-mark--sm { width: 52px; height: 52px; font-size: 11px; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--cream);
  color: var(--bg);
}
.btn--primary:hover { background: var(--cream-soft); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 236, 219, 0.3);
}
.btn--ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn--accent {
  background: var(--accent);
  color: #0d1402;
}
.btn--accent:hover { background: var(--accent-2); }

/* === Nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(28, 19, 10, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dim);
}
.nav__links a:hover { color: var(--cream); }
.nav__cta { padding: 10px 20px; font-size: 14px; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform .2s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: 0; margin-top: 12px; }
.mobile-menu[data-open="true"] { display: flex; }

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 0 100px;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(212, 184, 122, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(197, 246, 79, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
}
.hero__inner { position: relative; }
.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 13px;
  color: var(--cream);
  margin: 0 0 18px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.accent { color: var(--accent); }
.hero__sub {
  max-width: 580px;
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 32px;
}
.hero__sub strong { color: var(--text); }
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  font-weight: 500;
  color: var(--text-dim);
}
.hero__stats li { display: flex; align-items: center; gap: 10px; }
.hero__stats span { font-size: 22px; }

/* === Sections === */
.section { padding: 96px 0; }
.section--dark { background: var(--bg-3); }
.section--accent {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(197, 246, 79, 0.08), transparent 60%),
    var(--bg-2);
}
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 14px;
}
.eyebrow--accent { color: var(--accent); }
.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.section__lead {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0;
}

/* === Stats strip === */
.stats-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.stat__label {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* === Pricing === */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
}
.plan:hover { transform: translateY(-3px); }
.plan--featured {
  border-color: rgba(197, 246, 79, 0.4);
  background: linear-gradient(160deg, var(--surface) 0%, #2a3818 100%);
  box-shadow: 0 30px 60px -20px rgba(197, 246, 79, 0.15);
}
.plan__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--bg-3);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan__header { margin-bottom: 24px; }
.plan h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1;
}
.plan__sub {
  margin: 0 0 20px;
  color: var(--text-dim);
  font-size: 14px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0 4px;
  border-top: 1px dashed var(--border);
}
.plan__from {
  font-size: 13px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.plan__price strong {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--text);
  font-weight: 400;
}
.plan--featured .plan__price strong { color: var(--accent); }
.plan__unit {
  font-size: 14px;
  color: var(--text-dim);
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
  color: var(--text-dim);
}
.plan__list li:last-child { border-bottom: 0; }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(197, 246, 79, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23c5f64f' stroke-width='2.5' stroke-linecap='round' d='M3.5 8.5l3 3 6-7'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan__list li.plan__list-no::before {
  background: rgba(245, 236, 219, 0.05);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%238a7a5c' stroke-width='2.5' stroke-linecap='round' d='M5 5l6 6M11 5l-6 6'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan__list li.plan__list-no { color: var(--text-mute); }
.plan__list strong { color: var(--text); }
.plan__cta { width: 100%; }
.pricing__note {
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
  margin: 8px 0 0;
}
@media (max-width: 800px) {
  .pricing { grid-template-columns: 1fr; }
}

/* === Testimonials === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  position: relative;
  padding: 32px 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.testimonial__quote {
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  pointer-events: none;
}
.testimonial p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.testimonial__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}
.testimonial__foot strong {
  display: block;
  font-size: 14.5px;
  color: var(--text);
}
.testimonial__foot small {
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.testimonials__cta {
  text-align: center;
  margin-top: 32px;
}
.testimonials__cta a {
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.testimonials__cta a:hover { border-color: var(--cream); }

/* === Cards === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 184, 122, 0.12), transparent 50%);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212, 184, 122, 0.4); }
.card__icon {
  font-size: 42px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--text-dim);
}
.card__list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.card__list li:last-child { border-bottom: 0; }
.card__cta {
  display: inline-block;
  font-weight: 600;
  color: var(--cream);
  font-size: 15px;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.card__cta:hover { border-color: var(--cream); }
.card--padel { background: linear-gradient(160deg, var(--surface) 0%, #3a2818 100%); }
.card--piscina { background: linear-gradient(160deg, var(--surface) 0%, #14283a 100%); }
.card--pilates { background: linear-gradient(160deg, var(--surface) 0%, #2e1a30 100%); }

/* === Membresia === */
.membresia {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.membresia__copy h2 .accent { color: var(--accent); }
.membresia__benefits {
  display: grid;
  gap: 16px;
}
.benefit {
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}
.benefit h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.benefit p {
  margin: 0 0 8px;
  color: var(--text-dim);
  font-size: 15px;
}
.benefit p:last-child { margin-bottom: 0; }
.benefit strong { color: var(--text); }

/* === Schedule === */
.schedule { display: grid; gap: 24px; }
.schedule__table {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.row {
  display: grid;
  grid-template-columns: 160px repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.row > * {
  background: var(--surface);
  padding: 14px 16px;
  font-size: 14px;
}
.row--head > * {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cell--time {
  font-weight: 600;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.tag {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-sm);
  margin: 4px;
  padding: 6px 10px !important;
  background: var(--surface-2);
}
.tag--blue { background: #1f3a5e; color: #9bc2ee; }
.tag--cyan { background: #1d3f4d; color: #7cd0e6; }
.tag--pink { background: #4a1f3d; color: #eba2c8; }
.tag--purple { background: #321d4a; color: #c5a8ee; }
.tag--green { background: #1f4536; color: #8edcae; }

.schedule__weekend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.weekend-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.weekend-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.weekend-card p {
  margin: 0 0 6px;
  color: var(--text-dim);
  font-size: 15px;
}
.weekend-card a { color: var(--accent); font-weight: 600; }
.weekend-card--cta { border-color: rgba(197, 246, 79, 0.3); }

/* === Events === */
.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .2s ease, transform .2s ease;
}
.event:hover { border-color: rgba(212, 184, 122, 0.4); transform: translateY(-2px); }
.event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  min-height: 88px;
}
.event__date span {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--cream);
}
.event__date small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
  font-weight: 600;
}
.event__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}
.event__body p {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 14.5px;
}
.event__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
}
.event__tag--accent {
  background: rgba(197, 246, 79, 0.12);
  color: var(--accent);
  border-color: rgba(197, 246, 79, 0.4);
}
.event--highlight {
  border-color: rgba(197, 246, 79, 0.35);
  background: linear-gradient(135deg, var(--surface) 0%, #2a3818 100%);
}

/* === Ubicacion === */
.ubicacion {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.ubicacion__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.ubicacion__map iframe { width: 100%; height: 100%; border: 0; }

/* === Contacto === */
.contacto { }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.contact-card {
  display: block;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--cream);
  background: var(--surface-2);
}
.contact-card__icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}
.contact-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}
.contact-card p {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 15px;
}
.contact-card__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

/* === Footer === */
.footer {
  background: var(--bg-3);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__brand p { margin: 0; color: var(--text-dim); font-size: 14px; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer__links a:hover { color: var(--cream); }
.footer__legal {
  text-align: right;
  color: var(--text-mute);
  font-size: 13px;
}
.footer__legal p { margin: 0 0 6px; }

/* === Reset native button styling for buttons that look like cards/links ===
   :where() keeps specificity at 0,0,0 so all class-level styles win. */
:where(button.btn, button.card__cta, button.contact-card) {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

/* === Modal === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalIn .2s ease-out;
}
.modal[hidden] { display: none; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.7);
  max-height: 90vh;
  overflow-y: auto;
  animation: panelIn .25s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.modal__close:hover { background: var(--surface-2); color: var(--text); }

.modal__header { text-align: center; margin-bottom: 28px; }
.modal__icon {
  display: inline-block;
  font-size: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 14px rgba(197, 246, 79, 0.3));
}
.modal__header .eyebrow { margin-bottom: 10px; }
.modal__header h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1;
  font-weight: 400;
}
.modal__lead {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
}
.modal__lead strong { color: var(--text); }

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.store-badge:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
  background: var(--surface-2);
}
.store-badge[data-highlight="true"] {
  border-color: var(--accent);
  background: rgba(197, 246, 79, 0.06);
  box-shadow: 0 0 0 3px rgba(197, 246, 79, 0.12);
}
.store-badge svg { flex-shrink: 0; }
.store-badge[data-platform="ios"] svg { color: var(--text); }
.store-badge small {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.store-badge strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.modal__steps {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--bg-3);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
}
.step strong { color: var(--text); }

.modal__note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
}
.modal__note a {
  color: var(--cream);
  font-weight: 600;
}
.modal__note a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .modal__panel { padding: 32px 24px 24px; }
  .modal__header h3 { font-size: 28px; }
  .store-grid { grid-template-columns: 1fr; }
}

body[data-modal-open="true"] { overflow: hidden; }

/* === Cómo arrancar === */
.section--steps { padding-top: 64px; padding-bottom: 64px; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.step-card:hover { transform: translateY(-3px); border-color: rgba(212, 184, 122, 0.4); }
.step-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}
.step-card p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}
.step-card p strong { color: var(--text); }
.step-card__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--cream);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.step-card__cta:hover { border-color: var(--cream); }
:where(button.step-card__cta) {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

/* === Staff === */
.staff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.staff-card {
  text-align: center;
  padding: 28px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
}
.staff-card:hover { transform: translateY(-3px); border-color: var(--cream); }
.staff-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.staff-card__avatar--cream { background: var(--cream); color: var(--bg); }
.staff-card__avatar--accent { background: var(--accent); color: var(--bg-3); }
.staff-card__avatar--blue { background: #5e9bd1; color: var(--bg); }
.staff-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}
.staff-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.45;
}

/* === Partners === */
.partners {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.partners__title {
  margin: 0 0 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 700;
}
.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
  transition: opacity .2s ease, color .2s ease;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
}
.partner-logo:hover {
  opacity: 1;
  color: var(--cream);
  border-color: var(--border);
}

/* === FAQ === */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(212, 184, 122, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item summary:hover { color: var(--cream); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item__body p { margin: 0; }
.faq-item__body strong { color: var(--text); }
.faq-item__body a { color: var(--accent); font-weight: 600; }
.faq-item__body a:hover { text-decoration: underline; }

/* === Sticky mobile CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(28, 19, 10, 0.95);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--border);
  gap: 10px;
}
.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 0;
  font-family: inherit;
}
.sticky-cta__btn--whatsapp {
  background: #25D366;
  color: white;
}
.sticky-cta__btn--reservar {
  background: var(--cream);
  color: var(--bg);
  cursor: pointer;
}

/* === Active nav link === */
.nav__links a.is-active {
  color: var(--cream);
  position: relative;
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* === WhatsApp FAB === */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.5);
  z-index: 100;
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* === Responsive === */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .membresia { grid-template-columns: 1fr; gap: 40px; }
  .ubicacion { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__legal { text-align: left; }

  .row {
    grid-template-columns: 110px repeat(5, minmax(80px, 1fr));
    overflow-x: auto;
  }
  .schedule__table { overflow-x: auto; }

  .section { padding: 72px 0; }
  .hero { padding: 60px 0 80px; }

  .sticky-cta { display: flex; }
  .whatsapp-fab { display: none; }
  body { padding-bottom: 76px; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(48px, 13vw, 80px); }
  .hero__sub { font-size: 16px; }
  .event { grid-template-columns: 80px 1fr; gap: 14px; padding: 18px 18px; }
  .event__date span { font-size: 30px; }
  .schedule__table { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
