:root {
  --laguna-red: #e31e24;
  --black: #080808;
  --dark: #111111;
  --dark-secondary: #181818;
  --white: #ffffff;
  --off-white: #fbfbfb;
  --gray: #787878;
  --line: rgba(8, 8, 8, 0.08);
  --line-dark: rgba(8, 8, 8, 0.1);
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
  --header-height: 112px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(227, 30, 36, 0.05), transparent 18%),
    linear-gradient(180deg, #ffffff, #fbfbfb);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

section[id],
main[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(227, 30, 36, 0.04), rgba(227, 30, 36, 0)),
    linear-gradient(180deg, #ffffff, #fcfcfc);
  color: var(--black);
  border-top: 1px solid rgba(8, 8, 8, 0.04);
  border-bottom: 1px solid rgba(8, 8, 8, 0.04);
}

.section-contrast {
  background: linear-gradient(180deg, #f0f0f0, #ffffff);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--laguna-red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.15rem, 6.4vw, 4.1rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.85rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
  font-size: 0.98rem;
}

.lead {
  font-size: 1.02rem;
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.chip:focus-visible,
.tab-button:focus-visible,
.faq-trigger:focus-visible {
  outline: 3px solid rgba(227, 30, 36, 0.3);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--laguna-red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.28);
}

.btn-secondary {
  border-color: rgba(8, 8, 8, 0.16);
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
}

.brand-logo {
  display: block;
  height: 5.8rem;
  width: auto;
  object-fit: contain;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem 1rem 1.5rem;
  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav a {
  color: var(--white);
  font-weight: 600;
}

.nav-cta {
  margin-top: 0.3rem;
}

.menu-toggle {
  display: inline-grid;
  gap: 0.28rem;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.7rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 1.35rem 0 3.25rem;
  background:
    radial-gradient(circle at top left, rgba(227, 30, 36, 0.1), transparent 30%),
    radial-gradient(circle at right center, rgba(8, 8, 8, 0.04), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  color: var(--black);
  border-bottom: 1px solid rgba(8, 8, 8, 0.05);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
}

.glow-one {
  width: 18rem;
  height: 18rem;
  top: 8%;
  right: -4rem;
  background: rgba(227, 30, 36, 0.32);
}

.glow-two {
  width: 12rem;
  height: 12rem;
  bottom: 10%;
  left: -2rem;
  background: rgba(8, 8, 8, 0.05);
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: 1.25rem;
}

.hero-copy,
.hero-panel,
.panel-card,
.mini-card,
.training-card,
.schedule-column,
.class-card,
.stat-card,
.cta-band,
.feature-list article,
.card,
.routine-banner,
.hours-card,
.team-chip,
.kids-card,
.map-card,
.faq-item,
.final-cta-card {
  border-radius: var(--radius-lg);
}

.hero-stage {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  max-width: 40rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-metric {
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 8, 8, 0.08);
  display: grid;
  gap: 0.15rem;
}

.hero-metric strong {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  color: var(--laguna-red);
}

.hero-metric span {
  color: #4d4d4d;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.chip,
.tab-button {
  border-radius: 999px;
}

.hero-visual {
  min-height: 15rem;
}

.hero-visual-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.1);
  background: var(--white);
}

.hero-visual-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.24), rgba(8, 8, 8, 0.46)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  filter: saturate(0.82) brightness(0.82);
}

.hero-visual-overlay {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  color: var(--white);
}

.hero-visual-kicker {
  color: rgba(255, 255, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-visual-overlay h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(1.55rem, 4vw, 2.5rem);
}

.hero-visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-visual-list li {
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease, opacity 180ms ease;
}

.hero-visual-list li:hover,
.hero-visual-list li:focus-visible {
  background: rgba(227, 30, 36, 0.24);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 24px rgba(8, 8, 8, 0.18);
  transform: translateX(4px);
  opacity: 0.96;
}

.panel-card {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(227, 30, 36, 0.03), rgba(255, 255, 255, 0.96)),
    #ffffff;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: var(--shadow);
}

.panel-kicker {
  color: rgba(8, 8, 8, 0.58);
  margin-bottom: 0.5rem;
}

.panel-card h2 {
  font-size: clamp(1.35rem, 4vw, 1.95rem);
  margin-bottom: 0.75rem;
}

.panel-text {
  color: #444;
  margin-bottom: 1rem;
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.panel-list li {
  padding-left: 1rem;
  position: relative;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--laguna-red);
}

.panel-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
  display: grid;
  gap: 0.2rem;
}

.proximity-strip {
  padding: 2.8rem 0;
  background: linear-gradient(180deg, #f8f8f8, #f1f1f1);
}

.proximity-shell {
  padding: 1.15rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(180deg, rgba(227, 30, 36, 0.04), rgba(255, 255, 255, 0.98)),
    #fff;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.proximity-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.proximity-summary {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(227, 30, 36, 0.03));
  border: 1px solid rgba(8, 8, 8, 0.08);
  display: grid;
  gap: 0.45rem;
  align-self: start;
}

.proximity-kicker {
  margin: 0;
  color: var(--laguna-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.proximity-summary strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.proximity-summary span {
  color: #5d5d5d;
  font-size: 0.92rem;
}

.mini-grid,
.training-grid,
.stats-grid,
.cards-grid,
.hours-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.mini-card,
.training-card,
.card,
.hours-card,
.team-chip {
  padding: 1.3rem;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(8, 8, 8, 0.05);
}

.mini-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.98));
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--laguna-red), rgba(227, 30, 36, 0.22));
}

.mini-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.08);
  color: var(--laguna-red);
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.mini-card h3 {
  font-size: clamp(1.02rem, 2.1vw, 1.28rem);
}

.mini-card p {
  color: #363636;
}

.section-dark .training-card,
.section-dark .card,
.section-dark .faq-item {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(8, 8, 8, 0.05);
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.05);
}

.training-card,
.card {
  display: grid;
  gap: 0.8rem;
}

.training-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
}

.training-card-media {
  min-height: 11rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 8, 8, 0.18)),
    var(--training-image);
  background-size: cover;
  background-position: var(--training-position, center);
}

.training-card-body {
  padding: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.training-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.training-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  font-weight: 700;
}

.training-meta {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.training-meta div {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(8, 8, 8, 0.07);
}

.training-meta strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--laguna-red);
}

.training-meta span {
  color: #3e3e3e;
}

.training-card .card-index,
.stat-card strong,
.hours-card strong {
  color: var(--laguna-red);
}

.schedule-controls {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.schedule-shell {
  padding: 1.1rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(180deg, rgba(227, 30, 36, 0.05), rgba(255, 255, 255, 0.98)),
    #fff;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.schedule-shell-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.schedule-kicker {
  margin: 0 0 0.3rem;
  color: var(--laguna-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.schedule-shell-head h3 {
  font-size: clamp(1.08rem, 2.5vw, 1.42rem);
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.schedule-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #555;
}

.schedule-legend i {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  display: inline-block;
  background: var(--laguna-red);
}

.filter-group,
.tabs-group {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.chip,
.tab-button {
  border: 1px solid rgba(8, 8, 8, 0.1);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  padding: 0.7rem 0.95rem;
  font-weight: 700;
}

.chip[aria-pressed="true"],
.tab-button[aria-selected="true"] {
  background: var(--laguna-red);
  border-color: var(--laguna-red);
  color: var(--white);
}

.schedule-board {
  display: grid;
  gap: 1rem;
}

.schedule-mobile,
.schedule-desktop {
  display: grid;
  gap: 1rem;
}

.schedule-column,
.mobile-day-card,
.stat-card,
.cta-band,
.routine-banner,
.faq-item,
.final-cta-card {
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.schedule-column {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.schedule-column.is-highlighted {
  border-color: rgba(227, 30, 36, 0.4);
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.05), rgba(255, 255, 255, 0.95));
  transform: translateY(-4px);
}

.column-head,
.mobile-day-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.column-head {
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(8, 8, 8, 0.12);
}

.column-head p,
.mobile-day-header p {
  margin: 0 0 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--laguna-red);
  font-weight: 700;
}

.column-head h3,
.mobile-day-header h3 {
  font-size: 1.08rem;
}

.column-head span,
.mobile-day-header span,
.class-card small,
.support-note,
.placeholder-list span {
  color: #5d5d5d;
}

.class-card {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 248, 248, 0.96));
  border: 1px solid rgba(8, 8, 8, 0.07);
  display: grid;
  gap: 0.4rem;
  border-left: 4px solid transparent;
}

.class-card.is-dimmed {
  opacity: 0.38;
}

.schedule-column.is-highlighted .class-card:not(.is-dimmed) {
  border-left-color: var(--laguna-red);
}

.class-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.class-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.class-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.35rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: rgba(227, 30, 36, 0.1);
  color: var(--laguna-red) !important;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.class-tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  font-weight: 700;
}

.class-instructor {
  color: #2c2c2c;
  font-weight: 600;
}

.mobile-day-card {
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.mobile-day-card.is-entering {
  animation: fade-slide 260ms ease;
}

.stats-grid {
  margin-top: 1.5rem;
  margin-bottom: 1.35rem;
}

.stat-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.2rem;
}

.stat-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
}

.cta-band,
.routine-banner,
.final-cta-card {
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cta-band {
  margin-top: 0.35rem;
}

.split-layout {
  display: grid;
  gap: 1.5rem;
}

.split-media {
  min-height: 320px;
}

.media-surface,
.kids-card,
.map-placeholder {
  height: 100%;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(227, 30, 36, 0.11), transparent 38%),
    linear-gradient(145deg, #ffffff, #f7f7f7);
  color: var(--black);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.7rem;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: var(--shadow);
}

.media-label,
.kids-badge,
.map-placeholder span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: rgba(8, 8, 8, 0.54);
}

.kids-caption {
  font-size: 0.76rem;
  color: rgba(8, 8, 8, 0.56);
  font-style: italic;
}

.split-copy,
.feature-list {
  display: grid;
  gap: 1rem;
}

.split-copy-feature {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.66) 100%),
    url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center right;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.feature-list article {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 8, 8, 0.05);
}

.cards-grid {
  grid-template-columns: 1fr;
}

.card {
  padding: 1.25rem;
}

.center-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.routine-section {
  padding-top: 0;
}

.media-surface {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.58) 100%),
    url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center right;
}

.kids-card {
  background:
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.6)),
    url("https://images.totalpass.com/public/1280x720/czM6Ly90cC1pbWFnZS1hZG1pbi1wcm9kL2d5bXMvdzBzNjQ3dWZkMnVsc2JpaDlvbzlmNm5kOW9zYmFpeTJvMms0cnVjeWZ1c2VtYWZweDV2cHZxa3Vsb29z");
  background-size: cover;
  background-position: center;
}

.map-placeholder {
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.routine-banner {
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1483721310020-03333e577078?auto=format&fit=crop&w=1600&q=80"),
    radial-gradient(circle at bottom left, rgba(227, 30, 36, 0.08), transparent 28%),
    var(--white);
  background-size: cover;
  background-position: center;
}

.routine-times {
  display: grid;
  gap: 0.65rem;
}

.wellhub-section {
  padding-top: 0;
}

.wellhub-shell {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.15rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at top right, rgba(227, 30, 36, 0.28), transparent 42%),
    linear-gradient(180deg, var(--dark), var(--black));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(8, 8, 8, 0.22);
  color: var(--white);
}

.wellhub-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--laguna-red), rgba(227, 30, 36, 0.1));
}

.wellhub-head {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wellhub-copy {
  margin-bottom: 0;
  display: grid;
  gap: 0.75rem;
}

.wellhub-copy .eyebrow {
  margin: 0;
  color: #ff6b6f;
}

.wellhub-logo {
  width: auto;
  height: 2rem;
  max-width: 100%;
}

.wellhub-copy h2 {
  max-width: 20ch;
}

.wellhub-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 52ch;
}

.wellhub-badge {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.45rem;
  align-self: start;
}

.wellhub-kicker {
  margin: 0;
  color: #ff6b6f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.wellhub-badge strong {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.wellhub-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.wellhub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.wellhub-card {
  padding: 1.25rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.wellhub-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 30, 36, 0.45);
}

.wellhub-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.18);
  border: 1px solid rgba(227, 30, 36, 0.5);
  color: #ff8b8e;
  font-size: 0.95rem;
  font-weight: 800;
}

.wellhub-card p {
  color: rgba(255, 255, 255, 0.74);
}

.wellhub-footer {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wellhub-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  max-width: 56ch;
}

.wellhub-footer .btn-primary {
  justify-self: start;
}

.hours-card {
  display: grid;
  gap: 0.35rem;
}

.hours-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.team-wrap {
  display: grid;
  gap: 2rem;
}

.team-wrap h3 {
  margin-bottom: 1rem;
}

.team-chip {
  font-weight: 700;
}

.location-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  margin-bottom: 0;
}

.location-copy h2 {
  max-width: 10ch;
}

.location-lead {
  font-size: 1.04rem;
  font-weight: 700;
  max-width: 26ch;
}

.location-body {
  max-width: 34ch;
  line-height: 1.75;
}

.location-address {
  display: grid;
  gap: 0.3rem;
  max-width: 34ch;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 8, 8, 0.08);
}

.location-address strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--laguna-red);
}

.location-address span {
  color: #2f2f2f;
  line-height: 1.55;
}

.location-actions {
  margin-top: 0.35rem;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.map-frame-wrap {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.map-frame-head {
  padding: 1rem 1.1rem 0.9rem;
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.03), rgba(255, 255, 255, 0.96));
}

.map-frame-head span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--laguna-red);
  font-weight: 700;
}

.map-frame-head strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.section-dark .faq-item {
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.05);
}

.faq-trigger {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
}

.faq-trigger span:last-child {
  font-size: 1.4rem;
  color: var(--laguna-red);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-panel-inner {
  padding: 0 1.2rem 1.2rem;
}

.final-cta {
  padding-top: 0;
  padding-bottom: 7rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 5.3rem;
  z-index: 90;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: var(--laguna-red);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(227, 30, 36, 0.28);
}

.mobile-bottom-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 89;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-bottom-bar a {
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  color: var(--black);
  font-weight: 700;
}

.mobile-bottom-bar a:last-child {
  background: var(--laguna-red);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mini-grid,
  .stats-grid,
  .hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid,
  .training-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band,
  .routine-banner,
  .final-cta-card {
    grid-template-columns: 1.4fr auto;
  }

  .hero-visual-overlay {
    padding: 1.45rem;
  }

  .schedule-shell-head {
    grid-template-columns: 1.1fr auto;
    align-items: end;
  }

  .proximity-head {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
  }

  .wellhub-shell {
    padding: 1.9rem 1.6rem;
  }

  .wellhub-head {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
  }

  .wellhub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellhub-footer {
    grid-template-columns: 1.4fr auto;
  }

  .wellhub-footer .btn-primary {
    justify-self: end;
  }
}

@media (min-width: 960px) {
  :root {
    --header-height: 120px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.95rem;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-stage,
  .split-layout,
  .location-grid {
    grid-template-columns: 1.2fr 0.95fr;
    align-items: center;
  }

  #musculacao .split-layout {
    grid-template-columns: 1fr;
  }

  .schedule-mobile {
    display: none;
  }

  .schedule-desktop {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
  }

  .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .training-grid,
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wellhub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wellhub-logo {
    height: 2.35rem;
  }

  .wellhub-shell {
    padding: 2.4rem 2.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hours-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .team-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-bottom-bar {
    display: none;
  }

  .floating-whatsapp {
    bottom: 1rem;
  }
}

@media (max-width: 959px) {
  .schedule-desktop {
    display: none;
  }

  body {
    padding-bottom: 4.2rem;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (min-width: 1120px) {
  .site-nav {
    gap: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
