:root {
  --bg: #070707;
  --bg-soft: #121212;
  --panel: rgba(16, 16, 16, 0.86);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: #c7c7c7;
  --red: #d71920;
  --red-deep: #8f0f16;
  --white-soft: #efefef;
  --danger: #ff4d57;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(215, 25, 32, 0.28), transparent 24%),
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(143, 15, 22, 0.2), transparent 20%),
    linear-gradient(180deg, #131313 0%, #050505 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
  position: relative;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 88px 0 auto;
  height: 560px;
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.64) 42%, rgba(7, 7, 7, 0.4) 100%),
    url("./assets/ig/post-2.jpg") center/cover no-repeat;
  opacity: 0.28;
  filter: saturate(1.08) contrast(1.04);
  pointer-events: none;
  z-index: 0;
}

.hero {
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 8px 0 20px;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  justify-self: center;
  transform: translateX(36px);
}

.topbar-links a {
  color: var(--text);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  line-height: 0.94;
  min-width: 0;
}

.brand-mark {
  width: 120px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  padding: 0;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  transform: translateY(2px);
}

.nav-cta {
  justify-self: end;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(243, 239, 216, 0.22);
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 32px;
}

.hero-copy,
.hero-card,
.info-card,
.split-panel,
.cta-band,
.statement {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(12, 12, 12, 0.9));
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.02), transparent 40%),
    url("./assets/ig/post-4.jpg") center right / cover no-repeat;
  opacity: 0.13;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.2), transparent 68%);
}

.eyebrow,
.section-tag,
.impact-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--danger);
}

h1,
h2,
h3,
.impact-title {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  max-width: 11ch;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  max-width: 14ch;
  text-wrap: balance;
}

.hero-title-accent,
.hero-title-outline {
  display: inline;
  padding: 0 0.08em;
}

.hero-title-accent {
  color: #ff3b30;
  text-shadow:
    0 0 18px rgba(215, 25, 32, 0.28),
    0 8px 22px rgba(143, 15, 22, 0.18);
}

.hero-title-outline {
  color: #d71920;
  text-shadow: 0 0 16px rgba(215, 25, 32, 0.2);
}

h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  max-width: 12ch;
}

h3,
.impact-title {
  font-size: 1.15rem;
  line-height: 1.1;
}

.lead,
.statement-copy p,
.info-card p,
.split-panel p,
.cta-band p,
.impact-text,
.mini-grid span,
.fit-list li {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.lead {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 40px rgba(215, 25, 32, 0.3);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(243, 239, 216, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points,
.fit-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.hero-points li,
.fit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fit-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--white-soft));
  flex: 0 0 auto;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.fit-card {
  min-height: 140px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  align-content: start;
}

.fit-card strong {
  display: inline-block;
  color: var(--danger);
  margin-bottom: 8px;
}

.fit-card span {
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

.hero-points li {
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.hero-point-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #e13036, #8f0f16);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.28);
}

.hero-point-copy {
  display: grid;
  gap: 4px;
}

.hero-point-copy strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.hero-point-copy small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(14, 14, 14, 0.92));
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.profile-chip img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(215, 25, 32, 0.7);
}

.profile-chip p,
.profile-chip span {
  margin: 0;
}

.profile-chip p {
  font-weight: 700;
}

.profile-chip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.impact-panel,
.feed-panel,
.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(215, 25, 32, 0.12), transparent),
    rgba(255, 255, 255, 0.03);
}

.feed-panel {
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.feed-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.18), transparent 70%);
  pointer-events: none;
}

.feed-copy {
  display: grid;
  gap: 8px;
}

.feed-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
}

.feed-shot {
  display: block;
  min-height: 156px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-shot.tall {
  grid-row: span 2;
  min-height: 324px;
}

.feed-shot.wide {
  grid-column: 2;
}

.feed-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.feed-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-grid article {
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-grid strong,
.fit-card strong,
.card-index {
  display: inline-block;
  color: var(--danger);
  margin-bottom: 8px;
}

.section {
  margin-top: 28px;
}

.statement {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(12, 12, 12, 0.92));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.statement-copy {
  max-width: 70ch;
}

.statement-photo {
  display: block;
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.statement-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  margin-bottom: 18px;
}

.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(215, 25, 32, 0.1), transparent 55%);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(12, 12, 12, 0.92));
}

.split-panel.accent {
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.2), transparent 35%),
    rgba(255, 255, 255, 0.04);
}

.faq-section {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.94));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.faq-hero {
  display: block;
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 77, 87, 0.45);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  transform: translateY(-1px);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--danger);
  border-bottom: 2px solid var(--danger);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
  flex: 0 0 auto;
  margin-right: 4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--white-soft);
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.schedules-section {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.94));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.schedules-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.schedules-header .section-heading {
  margin-bottom: 0;
}

.schedules-cta {
  flex: 0 0 auto;
}

.schedules-banner {
  margin: 20px 0 0;
  padding: 14px 18px;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.95), rgba(143, 15, 22, 0.92));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.venue-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  border-radius: 22px;
  text-decoration: none;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 54%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.venue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 87, 0.4);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.venue-pin {
  font-size: 1.4rem;
}

.venue-card strong {
  font-size: 1.15rem;
  line-height: 1.15;
}

.venue-card span {
  color: var(--muted);
  line-height: 1.5;
}

.venue-badge {
  justify-self: start;
  margin-top: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.venue-badge-red {
  background: rgba(215, 25, 32, 0.16);
  color: #ff7278;
  border: 1px solid rgba(255, 77, 87, 0.28);
}

.venue-badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.5);
}

.schedule-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.schedule-table thead th {
  padding: 16px 18px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 2px solid rgba(215, 25, 32, 0.55);
}

.schedule-table tbody th,
.schedule-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(215, 25, 32, 0.32);
  vertical-align: top;
}

.schedule-table tbody th {
  width: 16%;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-table tbody td {
  color: var(--white-soft);
  line-height: 1.7;
  text-align: center;
}

.schedule-table tbody tr:last-child th,
.schedule-table tbody tr:last-child td {
  border-bottom: 0;
}

.coaches-section {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.94));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.coaches-grid {
  display: grid;
  gap: 18px;
}

.coach-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.coach-carousel-track {
  position: relative;
  min-height: 320px;
}

.coach-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.coach-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.coach-photo {
  min-height: 320px;
  height: 100%;
  border-radius: 22px;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.22), rgba(20, 20, 20, 0.95)),
    url("./assets/ig/post-1.jpg") center/cover no-repeat;
  color: var(--white-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-photo-secondary {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.14), rgba(20, 20, 20, 0.95)),
    url("./assets/ig/post-2.jpg") center/cover no-repeat;
}

.coach-photo-vito {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), rgba(20, 20, 20, 0.78)),
    url("./assets/vito-1.jpeg") center/cover no-repeat;
}

.coach-photo-luca {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), rgba(20, 20, 20, 0.88)),
    url("./assets/luca-1.jpeg") center/cover no-repeat;
}

.coach-photo-ani {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.14), rgba(20, 20, 20, 0.95)),
    url("./assets/ani-1.jpeg") center/cover no-repeat;
}

.coach-photo-fabri {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), rgba(20, 20, 20, 0.72)),
    url("./assets/fabri-1.jpeg") center/cover no-repeat;
}

.coach-photo-pending {
  outline: 1px dashed rgba(255, 255, 255, 0.18);
}

.coach-video-wrap {
  height: 100%;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #080808;
}

.coach-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coach-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  backdrop-filter: blur(10px);
}

.coach-carousel-button.prev {
  left: 10px;
}

.coach-carousel-button.next {
  right: 10px;
}

.coach-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.coach-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.coach-dot.is-active {
  width: 24px;
  background: var(--danger);
}

.coach-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.coach-meta {
  margin: 0;
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.coach-bio {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.coach-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.coach-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 46px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  top: 3px;
  right: 3px;
}

.merch-section {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.94));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.merch-card {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.merch-carousel {
  position: relative;
  overflow: hidden;
}

.merch-carousel-track {
  position: relative;
  min-height: 280px;
}

.merch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.merch-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.merch-photo {
  min-height: 280px;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.22), rgba(18, 18, 18, 0.92)),
    url("./assets/ig/post-3.jpg") center/cover no-repeat;
  color: var(--white-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merch-photo.alt {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.22), rgba(18, 18, 18, 0.92)),
    url("./assets/ig/post-2.jpg") center/cover no-repeat;
}

.merch-photo-shirt-1 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.18)),
    url("./assets/merch-remera-1.png") center/cover no-repeat;
}

.merch-photo-shirt-2 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.18)),
    url("./assets/merch-remera-2.png") center/cover no-repeat;
}

.merch-photo-paralelas {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.1)),
    url("./assets/merch-paralelas-1.png") center/cover no-repeat;
}

.merch-photo-munequeras {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.12)),
    url("./assets/merch-munequeras-1.jpeg") center/cover no-repeat;
}

.merch-photo-medias-1 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.12)),
    url("./assets/merch-medias-1.jpeg") center/cover no-repeat;
}

.merch-photo-medias-2 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.12)),
    url("./assets/merch-medias-2.jpeg") center/cover no-repeat;
}

.merch-video-wrap {
  height: 100%;
  min-height: 280px;
  border-radius: 0;
  overflow: hidden;
  background: #080808;
}

.merch-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-copy {
  padding: 20px;
}

.merch-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band {
  border-radius: var(--radius-xl);
  padding: 18px 24px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.12), rgba(15, 15, 15, 0.94)),
    url("./assets/ig/post-1.jpg") center/cover no-repeat;
  background-blend-mode: screen, normal;
  position: relative;
  overflow: hidden;
}

.cta-logo {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto 10px;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.74), rgba(8, 8, 8, 0.92));
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band p {
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  max-width: 52ch;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.site-footer {
  margin-top: 28px;
  padding: 24px 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 88px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
}

.footer-brand p,
.footer-brand span {
  margin: 0;
}

.footer-brand p {
  font-weight: 700;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links a,
.footer-links span {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links span {
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #1db954, #128c4a);
  box-shadow: 0 18px 40px rgba(18, 140, 74, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(18, 140, 74, 0.42);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.image-modal.is-open {
  display: block;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  margin: 4vh auto 0;
}

.image-modal-content {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.image-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(10, 10, 10, 0.78);
  font-size: 1.7rem;
  line-height: 1;
}

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

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

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar-links {
    transform: none;
  }

  .brand,
  .nav-cta {
    justify-self: center;
  }

  .hero-grid,
  .split,
  .cards.three-up,
  .statement,
  .faq-hero,
  .coach-card,
  .merch-grid,
  .venues-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 9ch;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .page-shell::before {
    inset: 110px 0 auto;
    height: 420px;
    opacity: 0.22;
  }

  .topbar {
    align-items: stretch;
  }

  .topbar-links {
    justify-content: stretch;
  }

  .topbar-links a {
    text-align: center;
  }

  .brand {
    font-size: 1.9rem;
    justify-self: start;
  }

  .brand-mark {
    width: 116px;
    height: 82px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-copy,
  .hero-card,
  .split-panel,
  .cta-band,
  .statement,
  .faq-section,
  .coaches-section,
  .merch-section,
  .schedules-section {
    padding: 22px;
  }

  .schedules-header {
    flex-direction: column;
    align-items: stretch;
  }

  .schedules-banner {
    border-radius: 22px;
  }

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

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

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

  .feed-shot,
  .feed-shot.tall,
  .feed-shot.wide {
    min-height: 150px;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .statement-photo {
    min-height: 260px;
  }

  .coach-photo {
    min-height: 240px;
  }

  .coach-carousel-track {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 18px;
  }
}
