/* =========================================================
   Team Belleza — neon gym signage system
   Black concrete ground, one neon-pink accent, Syne display,
   Alex Brush script wordmark, DM Sans body.
   ========================================================= */

:root {
  --black: #07070a;
  --black-soft: #0d0d10;
  --charcoal: #18181c;
  --charcoal-light: #212126;
  --steel-line: #2c2c32;
  --steel-line-soft: #232328;

  --pink: #ff2e92;
  --pink-hot: #ff5cae;
  --pink-pale: #ffa8d4;
  --pink-dim: #7a1245;

  --cream: #f5efe6;
  --cream-dim: #cdbfae;

  --font-display: "Syne", "Arial Black", sans-serif;
  --font-script: "Alex Brush", cursive;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --header-h: 78px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--pink); color: #0a0a0a; }

:focus-visible {
  outline: 2px solid var(--pink-hot);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Scrollbar */
html { scrollbar-color: var(--pink) var(--black-soft); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black-soft); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pink), var(--pink-dim));
  border-radius: 6px;
  border: 2px solid var(--black-soft);
}

.skip-link {
  position: fixed;
  top: 0; left: 0;
  z-index: 2000;
  background: var(--pink);
  color: #0a0a0a;
  padding: .75rem 1.25rem;
  font-weight: 700;
}

section[id] { scroll-margin-top: var(--header-h); }

/* Tabular numerals wherever time/measurement appears */
.schedule-table th[scope="row"],
.day-row__time,
.hours-banner { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Logo wordmark ---------- */

.tb-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.tb-logo__img {
  height: 44px;
  width: auto;
  display: block;
}
.tb-logo--footer .tb-logo__img { height: 64px; }

/* ---------- Buttons ---------- */

.btn-neon,
.btn-neon-outline {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-neon {
  background: var(--pink);
  color: #0a0a0a;
  border: 1.5px solid var(--pink);
  box-shadow: 0 8px 20px rgba(255, 46, 146, 0.28), 0 0 18px rgba(255, 46, 146, 0.3);
}
.btn-neon:hover,
.btn-neon:focus-visible {
  background: var(--pink-hot);
  border-color: var(--pink-hot);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 46, 146, 0.35), 0 0 40px rgba(255, 92, 174, 0.55);
}
.btn-neon:active { transform: translateY(0); }

.btn-neon-outline {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-neon-outline:hover,
.btn-neon-outline:focus-visible {
  background: rgba(255, 46, 146, 0.1);
  color: var(--pink-hot);
  border-color: var(--pink-hot);
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255, 46, 146, 0.3);
}
.btn-neon-outline:active { transform: translateY(0); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(7,7,10,0.85), rgba(7,7,10,0));
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 10, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--steel-line), 0 8px 24px rgba(0,0,0,0.4);
}
.site-header .navbar { width: 100%; padding-block: 0; }

.nav-link {
  color: var(--cream-dim);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.2rem;
  margin-inline: 0.6rem;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.2rem; right: 0.2rem; bottom: 0.15rem;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out-expo);
}
.nav-link:hover,
.nav-link:focus-visible { color: var(--cream); }
.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  width: 24px; height: 2px;
  background: var(--pink);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 991.98px) {
  .site-header .container { position: relative; }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    max-height: calc(100svh - var(--header-h) - 1rem);
    overflow-y: auto;
  }
}
.navbar-collapse {
  background: rgba(7,7,10,0.97);
  margin-top: 1rem;
  padding: 1rem 0.5rem;
  border-radius: 14px;
  border: 1px solid var(--steel-line);
}
@media (min-width: 992px) {
  .navbar-collapse { background: transparent; margin: 0; padding: 0; border: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -3;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__scrim {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    linear-gradient(to top, var(--black) 0%, rgba(7,7,10,0.75) 28%, rgba(7,7,10,0.35) 52%, rgba(7,7,10,0.55) 100%),
    linear-gradient(to right, rgba(7,7,10,0.65) 0%, rgba(7,7,10,0.15) 45%);
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  margin-block: auto;
  padding-block: 2rem;
}

.hero__location {
  color: var(--pink-pale);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero__title {
  font-weight: 800;
  font-size: clamp(1.2rem, 6.7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: #fff8f0;
  text-shadow:
    0 0 4px rgba(255,255,255,0.75),
    0 0 16px rgba(255,92,174,0.85),
    0 0 38px rgba(255,46,146,0.75),
    0 0 78px rgba(255,46,146,0.4);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero__title .reveal-line {
  display: block;
  opacity: 0;
  filter: blur(2px);
  transition: opacity 0.15s steps(3), filter 0.15s steps(3);
}
.hero.is-lit .hero__title .reveal-line {
  opacity: 1;
  filter: blur(0);
}
/* Each line's one-time power-on: staggered start, same brief duration.
   The animation-delay values below (0.7 / 0.95 / 1.2s) are timed to start
   only once that line's own transition above has settled, so the one-time
   reveal and the infinite flicker never fight over the opacity property. */
.hero.is-lit .hero__title .reveal-line:nth-child(1) {
  transition-delay: 0s;
  animation: neon-flicker-1 5.4s ease-in-out 0.7s infinite;
}
.hero.is-lit .hero__title .reveal-line:nth-child(2) {
  transition-delay: 0.18s;
  animation: neon-flicker-2 6.8s ease-in-out 0.95s infinite;
}
.hero.is-lit .hero__title .reveal-line:nth-child(3) {
  transition-delay: 0.38s;
  animation: neon-flicker-3 8.3s ease-in-out 1.2s infinite;
}

/* Three independent, non-matching cycle lengths (5.4 / 6.8 / 8.3s) so the
   lines drift in and out of phase instead of flickering in unison like one
   tube — each line reads as its own imperfect sign, sometimes holding
   steady, sometimes stuttering longer than a single quick dip. */
@keyframes neon-flicker-1 {
  0%, 100% { opacity: 1; }
  4% { opacity: 1; }
  5% { opacity: 0.35; }
  6% { opacity: 1; }
  7% { opacity: 0.75; }
  8% { opacity: 1; }
  46% { opacity: 1; }
  47% { opacity: 0.3; }
  49% { opacity: 0.3; }
  51% { opacity: 1; }
  78% { opacity: 1; }
  79% { opacity: 0.6; }
  80% { opacity: 1; }
}
@keyframes neon-flicker-2 {
  0%, 100% { opacity: 1; }
  16% { opacity: 1; }
  17% { opacity: 0.5; }
  18% { opacity: 1; }
  40% { opacity: 1; }
  41% { opacity: 0.35; }
  43% { opacity: 0.35; }
  45% { opacity: 0.85; }
  46% { opacity: 1; }
  72% { opacity: 1; }
  73% { opacity: 0.6; }
  74% { opacity: 1; }
  91% { opacity: 1; }
  92% { opacity: 0.4; }
  93% { opacity: 1; }
}
@keyframes neon-flicker-3 {
  0%, 100% { opacity: 1; }
  11% { opacity: 1; }
  12% { opacity: 0.55; }
  13% { opacity: 1; }
  32% { opacity: 1; }
  33% { opacity: 0.3; }
  36% { opacity: 0.3; }
  38% { opacity: 1; }
  61% { opacity: 1; }
  62% { opacity: 0.7; }
  63% { opacity: 1; }
  64% { opacity: 0.45; }
  65% { opacity: 1; }
  87% { opacity: 1; }
  88% { opacity: 0.5; }
  89% { opacity: 1; }
}

.hero__subtitle {
  color: var(--cream);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 42ch;
  margin-bottom: 1.1rem;
}

.hero__price {
  display: inline-block;
  color: var(--pink);
  background: rgba(255, 46, 146, 0.1);
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__machines-note {
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  margin-top: 1.75rem;
}

.hero__ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 0.85rem);
  padding-bottom: 0.85rem;
  background: linear-gradient(to bottom, rgba(7,7,10,0.7), rgba(7,7,10,0.15));
  border-bottom: 1px solid rgba(255, 46, 146, 0.2);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.hero__ticker-track {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  text-transform: uppercase;
  color: var(--pink-pale);
  letter-spacing: 0.04em;
  animation: marquee 24s linear infinite;
}
.hero__ticker-track .dot { color: var(--pink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section shells ---------- */

.section-disciplinas,
.section-horarios,
.section-ubicacion {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--black);
}
.section-horarios { background: var(--black-soft); }

.section-title {
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section-lead {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* ---------- Disciplinas / plate grid ---------- */

.plate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.plate {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 10px),
    linear-gradient(160deg, var(--charcoal-light), var(--charcoal));
  border: 1px solid var(--steel-line);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s ease;
}
.plate::before,
.plate::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid var(--pink);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.plate::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.plate::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.plate:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 146, 0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 30px rgba(255, 46, 146, 0.15);
}
.plate:hover::before,
.plate:hover::after { opacity: 1; }

.plate__icon {
  width: 52px; height: 52px;
  color: var(--pink);
  margin-bottom: 1.1rem;
}
.plate__icon svg { width: 100%; height: 100%; }

.plate__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.plate__body p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

.plate--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 2rem;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 10px),
    linear-gradient(120deg, var(--pink-dim), var(--charcoal) 60%);
  border-color: rgba(255, 46, 146, 0.4);
}
.plate--wide .plate__icon { flex-shrink: 0; margin-bottom: 0; width: 60px; height: 60px; }
.plate--wide .plate__body p { max-width: 52ch; }
.plate__tag {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: var(--pink);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .plate-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .plate-grid { grid-template-columns: 1fr; }
  .plate--wide { flex-direction: column; text-align: center; }
  .plate__tag { position: static; display: inline-block; margin-top: 1rem; }
}

/* ---------- Horarios ---------- */

.hours-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.1rem 1.4rem;
  background: var(--charcoal);
  border: 1px solid var(--steel-line);
  border-radius: 12px;
  margin-bottom: 2.25rem;
}
.hours-banner i { color: var(--pink); margin-right: 0.4rem; }
.hours-banner__machines { color: var(--pink-pale); margin-left: auto; }

.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--steel-line);
  border-radius: 14px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--charcoal);
}
.schedule-table th,
.schedule-table td {
  padding: 0.5rem;
  text-align: center;
  border-bottom: 1px solid var(--steel-line-soft);
}
.schedule-table thead th { padding: 1rem 0.85rem; }
.schedule-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink);
  background: var(--black-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.schedule-table tbody th[scope="row"] {
  color: var(--cream);
  font-weight: 700;
  background: var(--black-soft);
}
.schedule-table tbody tr:last-child th,
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table td.is-empty {
  color: var(--steel-line);
  font-weight: 700;
}

.class-chip {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  color: var(--pink-pale);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.class-chip--fill {
  background: var(--pink);
  border-color: var(--pink);
  color: #0a0a0a;
  font-weight: 700;
}

/* Inside the desktop table, a chip becomes a full block filling its own
   cell so a colspan (a class shared across several days) reads as one
   continuous bar instead of a small pill floating in a wide empty cell. */
.schedule-table td .class-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  border-radius: 8px;
  white-space: normal;
  background: rgba(255, 46, 146, 0.14);
}
.schedule-table td .class-chip--fill {
  background: var(--pink);
}

/* Mobile accordion schedule */
.schedule-accordion .accordion-item {
  background: var(--charcoal);
  border: 1px solid var(--steel-line);
  margin-bottom: 0.75rem;
  border-radius: 12px !important;
  overflow: hidden;
}
.schedule-accordion .accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff2e92'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: var(--bs-accordion-btn-icon);
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: none;
}
.schedule-accordion .accordion-button:not(.collapsed) {
  background: var(--charcoal-light);
  color: var(--pink);
  box-shadow: none;
}
.schedule-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(255,46,146,0.3); }
.schedule-accordion .accordion-body { background: var(--black-soft); }

.day-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.5rem;
}
.day-row + .day-row { border-top: 1px solid var(--steel-line-soft); }
.day-row__time {
  font-weight: 700;
  color: var(--cream);
  width: 4.5rem;
  flex-shrink: 0;
}
.day-row__note {
  color: var(--cream-dim);
  font-size: 0.9rem;
  padding-top: 0.75rem;
}

/* ---------- CTA ---------- */

.section-cta {
  position: relative;
  background: radial-gradient(120% 160% at 50% 0%, #140a06 0%, var(--black) 60%);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  overflow: hidden;
}
.cta-grain {
  position: absolute; inset: 0;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta-title {
  position: relative;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
  color: #fff8f0;
  text-shadow:
    0 0 4px rgba(255,255,255,0.7),
    0 0 18px rgba(255,92,174,0.8),
    0 0 44px rgba(255,46,146,0.6);
  margin-bottom: 1.25rem;
}
.cta-lead {
  position: relative;
  color: var(--cream-dim);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Ubicación ---------- */

.location-card {
  background: var(--charcoal);
  border: 1px solid var(--steel-line);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.location-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.location-card__address {
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.6rem;
}
.location-card__address i { color: var(--pink); margin-top: 0.2rem; }
.location-card__hours {
  list-style: none;
  padding: 0; margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.location-card__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--steel-line-soft);
  color: var(--cream-dim);
  font-size: 0.92rem;
}
.location-card__hours li span:first-child { color: var(--cream); font-weight: 600; }
.location-card__links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.map-frame {
  position: relative;
  height: 100%;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--steel-line);
  background: var(--charcoal);
}
.map-frame iframe {
  filter: invert(94%) hue-rotate(180deg) brightness(0.92) contrast(0.88) saturate(1.3);
}
.map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--steel-line);
  padding-block: 3rem 2rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.85rem;
}
.footer-socials a {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--steel-line);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.1rem;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.footer-socials a:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255,46,146,0.3);
}
.site-footer hr {
  border-color: var(--steel-line);
  opacity: 1;
  margin-block: 2rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--cream-dim);
  font-size: 0.88rem;
}
.footer-tagline {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pink-pale);
}

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--pink);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 rgba(255,46,146,0.6);
  animation: pulse-glow 2.6s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform 0.25s var(--ease-out-expo), opacity 0.25s ease;
}
.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #0a0a0a;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,46,146,0.45); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 14px rgba(255,46,146,0); }
}

@media (max-width: 575px) {
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 1.1rem; right: 1.1rem; }
}
