:root {
  --navy: #030644;
  --navy-soft: #08105f;
  --blue: #0b5fb3;
  --aqua: #19b9d4;
  --aqua-soft: #e9fbff;
  --gold: #d8b56d;
  --green: #078e63;
  --ink: #11172f;
  --muted: #657083;
  --line: #dce8f1;
  --white: #ffffff;
  --surface: #f7fafc;
  --shadow: 0 22px 70px rgba(3, 6, 68, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Tajawal", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
}

.ui-icon--form {
  width: 1em;
  height: 1em;
  color: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 232, 241, 0.85);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(3, 6, 68, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__text {
  display: none;
  min-width: 0;
  color: var(--navy);
}

.brand__text strong,
.brand__text small {
  display: block;
  white-space: nowrap;
}

.brand__text strong {
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.language-toggle,
.header-system,
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 900;
}

.language-toggle {
  min-width: 46px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.header-system {
  min-width: 68px;
  padding: 0 12px;
  color: var(--navy);
  background: #eef8fc;
  border: 1px solid rgba(25, 185, 212, 0.28);
}

.header-whatsapp {
  gap: 7px;
  padding: 0 14px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 56%, #0b6f95 150%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.16) 24% 25%, transparent 25% 100%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.09) 39px, transparent 40px);
  background-size: 170px 100%, 100% 78px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: 1px;
  content: "";
  background: var(--surface);
}

.hero__watermark {
  position: absolute;
  inset-inline-end: -160px;
  top: 18%;
  z-index: -1;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  opacity: 0.45;
}

.hero__watermark::before,
.hero__watermark::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero__watermark::before {
  inset: 74px;
}

.hero__watermark::after {
  inset: 148px;
}

.hero__inner {
  display: grid;
  gap: 30px;
  width: min(100%, 1180px);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 52px 18px 64px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

[dir="rtl"] .hero__copy,
[dir="rtl"] .hero__emblem,
[dir="rtl"] .hero__kicker,
[dir="rtl"] .hero h1,
[dir="rtl"] .hero__lead,
[dir="rtl"] .hero__actions {
  align-self: flex-end;
  text-align: right;
}

[dir="ltr"] .hero__copy,
[dir="ltr"] .hero__emblem,
[dir="ltr"] .hero__kicker,
[dir="ltr"] .hero h1,
[dir="ltr"] .hero__lead,
[dir="ltr"] .hero__actions {
  align-self: flex-start;
  text-align: left;
}

.hero__emblem {
  width: 142px;
  margin: 0 0 20px;
  object-fit: contain;
}

.hero__kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 21px;
  font-size: 0.98rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--white);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button:focus-visible,
.language-toggle:focus-visible,
.header-system:focus-visible,
.header-whatsapp:focus-visible,
.site-nav a:focus-visible,
.review-button:focus-visible,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.contact-card a:focus-visible,
.contact-map:focus-visible,
.site-footer__brand:focus-visible,
.site-footer__link:focus-visible,
.privacy-links a:focus-visible,
.requirements-panel__link:focus-visible,
.terms-download:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(25, 185, 212, 0.55);
  outline-offset: 3px;
}

.hero__panel {
  display: grid;
  align-self: end;
  gap: 10px;
  min-width: 0;
  padding-top: 4px;
}

.hero-stat,
.hero-note {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding: 14px 0;
}

.hero-stat {
  display: grid;
  gap: 3px;
}

.hero-stat span,
.hero-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-stat strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-note {
  display: grid;
  gap: 6px;
}

.hero-note span {
  color: var(--gold);
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

.programs-section {
  padding: 52px 18px 88px;
  background: var(--surface);
}

.section-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.programs-section h2,
.live-section h2,
.gallery-section h2,
.audience-section h2,
.journey-section h2,
.membership-section h2,
.schedule-section h2,
.founder-section h2,
.reviews-section h2,
.sponsors-section h2,
.faq-section h2,
.contact-section h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.live-section {
  padding: 52px 18px 88px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.live-layout {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.registration-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(3, 6, 68, 0.08);
}

.registration-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--aqua);
}

.registration-card[data-registration-status="open"]::before {
  background: var(--green);
}

.registration-card[data-registration-status="upcoming"]::before {
  background: var(--aqua);
}

.registration-card[data-registration-status="closed"]::before {
  background: var(--gold);
}

.registration-card__eyebrow {
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  color: var(--blue);
  background: var(--aqua-soft);
  border: 1px solid #cceef6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.registration-card[data-registration-status="open"] .registration-card__eyebrow {
  color: var(--green);
  background: #edf8f1;
  border-color: #bfe4ce;
}

.registration-card[data-registration-status="closed"] .registration-card__eyebrow {
  color: #77591d;
  background: #fff8e8;
  border-color: #f0dfb5;
}

.registration-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.registration-card p:not(.registration-card__eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.registration-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.registration-card__facts span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 7px 6px;
  color: var(--navy);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

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

.countdown-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 4px solid var(--aqua);
}

.countdown-card.is-empty {
  opacity: 0.62;
}

.countdown-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.countdown-card strong {
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.15;
}

.countdown-card small,
.registration-card__meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.registration-card__button {
  width: 100%;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

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

.stat-card {
  display: grid;
  align-content: space-between;
  min-height: 118px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 6, 68, 0.05);
}

.stat-card--total {
  grid-column: 1 / -1;
  min-height: 132px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25, 185, 212, 0.18), transparent 55%),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.35;
}

.stat-card--total span {
  color: rgba(255, 255, 255, 0.78);
}

.stat-card strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-card--total strong {
  color: var(--white);
  font-size: 2.55rem;
}

.announcements-section {
  display: none;
  padding: 22px 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.announcements-section.is-visible {
  display: block;
}

.academy-ad {
  min-height: 0;
}

.academy-ad[data-ad-status="filled"] {
  min-height: 90px;
}

.academy-ad[data-ad-status="unfilled"] {
  display: none !important;
}

.academy-ad[data-ad-status="unfill-optimized"] {
  display: none !important;
}

.gallery-section {
  padding: 54px 18px 90px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(25, 185, 212, 0.12), transparent 42%),
    linear-gradient(145deg, var(--navy) 0%, #07115f 56%, #073f64 125%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-section .section-kicker {
  color: var(--gold);
}

.gallery-section h2 {
  color: var(--white);
}

.gallery-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-strip {
  display: grid;
  grid-auto-columns: minmax(260px, 82vw);
  grid-auto-flow: column;
  gap: 14px;
  width: calc(100% + 18px);
  margin-top: 28px;
  margin-inline-end: -18px;
  padding: 4px 18px 16px 0;
  overflow-x: auto;
  scroll-padding-inline: 18px;
  scroll-snap-type: inline mandatory;
}

[dir="ltr"] .gallery-strip {
  padding-right: 0;
  padding-left: 18px;
}

.gallery-strip::-webkit-scrollbar {
  height: 8px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.gallery-card {
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.gallery-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy);
}

.gallery-card__body {
  display: grid;
  gap: 3px;
  padding: 14px 15px 16px;
}

.gallery-card__body span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-card__body h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.program-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.program-card {
  position: relative;
  min-height: 240px;
  padding: 22px 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(3, 6, 68, 0.07);
}

.program-card::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  content: "";
  background: var(--aqua);
}

.program-card--seasonal::before {
  background: var(--gold);
}

.program-card__image {
  width: 92px;
  aspect-ratio: 1;
  margin-bottom: 14px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(3, 6, 68, 0.08);
}

[dir="rtl"] .program-card__image {
  margin-right: 0;
  margin-left: auto;
}

[dir="ltr"] .program-card__image {
  margin-right: auto;
  margin-left: 0;
}

.program-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  color: var(--navy);
  background: var(--aqua-soft);
  border: 1px solid #cceef6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.program-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.program-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.session-overview {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.session-overview__item {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 16px 18px;
  background: #edf8fb;
  border: 1px solid #cfedf4;
  border-radius: 8px;
}

.session-overview__image {
  width: 76px;
  aspect-ratio: 1;
  margin-bottom: 8px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.session-overview__image--wide {
  width: 104px;
  aspect-ratio: 4 / 3;
}

.session-overview__item strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.session-overview__item span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.audience-section {
  padding: 52px 18px 88px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.audience-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 6, 68, 0.05);
}

.audience-card img {
  width: 84px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audience-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.audience-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.audience-note-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.audience-note-card {
  display: grid;
  gap: 5px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(25, 185, 212, 0.12), rgba(25, 185, 212, 0)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audience-note-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.audience-note-card strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}

.audience-note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.journey-section {
  padding: 52px 18px 88px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.journey-track {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.journey-card {
  position: relative;
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(3, 6, 68, 0.06);
}

.journey-card__image {
  width: 92px;
  aspect-ratio: 1;
  margin-bottom: 14px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(3, 6, 68, 0.08);
}

[dir="rtl"] .journey-card__image {
  margin-right: 0;
  margin-left: auto;
}

[dir="ltr"] .journey-card__image {
  margin-right: auto;
  margin-left: 0;
}

.journey-card::before {
  position: absolute;
  inset-inline-start: 18px;
  top: -14px;
  width: 2px;
  height: 14px;
  content: "";
  background: var(--line);
}

.journey-card:first-child::before {
  display: none;
}

.journey-card__level {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--aqua-soft);
  border: 1px solid #cceef6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.journey-card h3 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.journey-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.membership-section {
  padding: 52px 18px 92px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.membership-layout {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.membership-steps {
  display: grid;
  gap: 14px;
}

.membership-card,
.requirements-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(3, 6, 68, 0.06);
}

.membership-card {
  padding: 20px 18px;
}

.membership-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--aqua-soft);
  border: 1px solid #cceef6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.membership-card--course .membership-card__badge {
  color: #77591d;
  background: #fff8e8;
  border-color: #f0dfb5;
}

.membership-card h3,
.requirements-panel h3 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.membership-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.membership-card__points {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.membership-card__points li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.membership-card__points li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aqua);
  border-radius: 50%;
}

.requirements-panel {
  padding: 20px 18px;
  background:
    linear-gradient(180deg, rgba(25, 185, 212, 0.1), rgba(25, 185, 212, 0)),
    var(--white);
}

.requirements-panel h3 {
  margin-top: 0;
}

.requirements-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.requirements-panel li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.requirements-panel li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aqua);
  border-radius: 50%;
}

.requirements-panel__note {
  margin: 16px 0 0;
  padding: 13px 14px;
  color: var(--navy);
  background: #edf8fb;
  border: 1px solid #cfedf4;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.photo-requirements {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.photo-requirements img {
  width: 74px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.photo-requirements span {
  display: grid;
  gap: 2px;
}

.photo-requirements strong {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.25;
}

.photo-requirements small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.photo-requirements:focus-visible {
  outline: 3px solid rgba(25, 185, 212, 0.55);
  outline-offset: 3px;
}

.requirements-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
}

.requirements-panel__button:focus-visible {
  outline: 3px solid rgba(25, 185, 212, 0.55);
  outline-offset: 3px;
}

.requirements-panel__link {
  justify-self: center;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.course-rules {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.course-rules div {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.course-rules strong {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 900;
}

.course-rules span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.schedule-section {
  padding: 52px 18px 94px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.season-calendar {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.season-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 6, 68, 0.05);
}

.season-card--water {
  border-top: 4px solid var(--aqua);
}

.season-card--hikers {
  border-top: 4px solid var(--gold);
}

.season-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.season-card strong {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.3;
}

.season-months {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.season-months b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.schedule-intro {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25, 185, 212, 0.12), transparent 56%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(3, 6, 68, 0.06);
}

.schedule-intro__copy {
  display: grid;
  gap: 7px;
}

.schedule-intro__copy strong {
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.25;
}

.schedule-intro__copy span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.schedule-intro__image {
  justify-self: center;
  width: min(176px, 58vw);
  height: auto;
  object-fit: contain;
}

.schedule-intro + .schedule-layout {
  margin-top: 16px;
}

.schedule-layout {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.schedule-block,
.fees-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(3, 6, 68, 0.06);
}

.schedule-block {
  overflow: hidden;
}

.schedule-block__head {
  display: grid;
  gap: 4px;
  padding: 20px 18px;
  color: var(--white);
  background: var(--navy);
}

.schedule-block__head h3,
.fees-panel h3,
.day-group h4 {
  margin: 0;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.schedule-block__head h3 {
  font-size: 1.18rem;
}

.schedule-block__head span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 700;
}

.day-group {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.day-group h4 {
  color: var(--navy);
  font-size: 1.05rem;
}

.time-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.time-list div {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.time-list strong {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.time-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.fees-panel {
  padding: 20px 18px;
}

.fees-panel h3 {
  color: var(--navy);
  font-size: 1.18rem;
}

.fee-card {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fee-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.fee-card strong {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
}

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

.duration-grid div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 14px;
  background: #edf8fb;
  border: 1px solid #cfedf4;
  border-radius: 8px;
}

.duration-grid strong {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.duration-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.fees-panel__note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 16px 0 0;
  padding: 14px;
  color: #71551c;
  background: #fff8e8;
  border: 1px solid #f0dfb5;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
}

.fees-panel__note img {
  width: 34px;
  height: auto;
  object-fit: contain;
}

.fees-panel__note span {
  min-width: 0;
}

.payment-summary {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-summary strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.payment-summary span,
.payment-summary small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.payment-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.payment-summary li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.coming-soon-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.coming-soon-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 128px;
  padding: 12px 14px;
  overflow: hidden;
  background: #edf8fb;
  border: 1px solid #cfedf4;
  border-radius: 8px;
}

.coming-soon-card__image {
  width: 86px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
  background: var(--white);
  border: 1px solid #cfedf4;
  border-radius: 8px;
}

.coming-soon-card__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.coming-soon-row strong {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}

.coming-soon-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.identity-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 18px 96px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(135deg, var(--navy) 0%, #07115f 58%, #0a597e 140%);
}

.identity-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.14;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.16) 24% 25%, transparent 25% 100%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.09) 39px, transparent 40px);
  background-size: 170px 100%, 100% 78px;
}

.identity-section .section-kicker {
  color: var(--gold);
}

.identity-section h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.identity-lead {
  max-width: 780px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
}

.identity-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.identity-card,
.goals-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.identity-card {
  display: grid;
  gap: 10px;
  padding: 20px 18px;
}

.identity-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.identity-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

.identity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
}

.goals-panel {
  margin-top: 14px;
  padding: 20px 18px;
}

.goals-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
}

.goals-panel ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.goals-panel li {
  position: relative;
  padding-inline-start: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 600;
}

.goals-panel li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aqua);
  border-radius: 50%;
}

.founder-section {
  padding: 54px 18px 88px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.founder-layout {
  display: grid;
  gap: 28px;
}

.founder-media {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.founder-portrait {
  width: min(230px, 74vw);
  aspect-ratio: 1;
  padding: 12px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 32%, rgba(25, 185, 212, 0.14), transparent 56%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(3, 6, 68, 0.08);
}

.founder-caption {
  display: grid;
  gap: 3px;
  margin: 0;
  text-align: center;
}

.founder-caption strong {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.25;
}

.founder-caption span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.founder-copy {
  min-width: 0;
}

.founder-quote {
  margin: 20px 0 0;
  padding: 0 18px 0 0;
  color: var(--ink);
  border-inline-start: 4px solid var(--aqua);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.9;
}

[dir="ltr"] .founder-quote {
  padding-right: 0;
  padding-left: 18px;
}

.reviews-section {
  padding: 54px 18px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.reviews-layout {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.google-rating-card,
.reviews-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(3, 6, 68, 0.06);
}

.google-rating-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--navy) 0%, #07115f 58%, #0b6f95 145%);
}

.google-attribution {
  width: fit-content;
  padding: 5px 10px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.google-attribution a {
  color: inherit;
  text-decoration: none;
}

.review-score {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.review-score strong {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.95;
}

.review-score span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  font-weight: 900;
}

.review-stars {
  color: #ffc85a;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.google-rating-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.review-actions {
  display: grid;
  gap: 10px;
}

.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.review-button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.reviews-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--white);
}

.reviews-panel__head {
  display: grid;
  gap: 4px;
}

.reviews-panel__head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.reviews-panel__head span,
.reviews-notice {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.reviews-notice {
  margin: 0;
  line-height: 1.7;
}

.reviews-list {
  display: grid;
  gap: 12px;
}

.review-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card__head {
  display: grid;
  gap: 2px;
}

.review-card__head strong,
.review-card__head a {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
}

.review-card__head a:focus-visible {
  outline: 3px solid rgba(25, 185, 212, 0.45);
  outline-offset: 3px;
}

.review-card__head span {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.75;
}

.review-card--empty p {
  color: var(--muted);
}

.review-reply {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: var(--white);
  border-inline-start: 4px solid var(--aqua);
  border-radius: 8px;
}

.review-reply span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.review-reply p {
  color: var(--muted);
  font-size: 0.9rem;
}

.sponsors-section {
  padding: 46px 18px 56px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.sponsors-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.sponsors-head .section-lead {
  margin-top: 12px;
}

.sponsors-marquee {
  overflow: hidden;
  padding: 8px 0;
}

.sponsors-track {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.sponsors-track.is-animated {
  justify-content: flex-start;
  width: max-content;
  animation: sponsors-scroll 28s linear infinite;
}

[dir="rtl"] .sponsors-track.is-animated {
  animation-name: sponsors-scroll-rtl;
}

.sponsors-marquee.is-animated {
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.sponsors-marquee:hover .sponsors-track.is-animated {
  animation-play-state: paused;
}

.sponsor-logo {
  display: grid;
  place-items: center;
  flex: 0 0 156px;
  min-height: 104px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 6, 68, 0.05);
}

.sponsor-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

@keyframes sponsors-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes sponsors-scroll-rtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

.faq-section {
  padding: 54px 18px 88px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 15px 46px 15px 16px;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.45;
  list-style: none;
}

[dir="ltr"] .faq-item summary {
  padding-right: 16px;
  padding-left: 46px;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--blue);
  border: 1px solid #cceef6;
  border-radius: 999px;
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
}

[dir="ltr"] .faq-item summary::after {
  right: auto;
  left: 16px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 17px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.contact-section {
  padding: 54px 18px 42px;
  background:
    linear-gradient(180deg, rgba(25, 185, 212, 0.08), rgba(25, 185, 212, 0)),
    var(--surface);
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  gap: 22px;
}

.contact-copy {
  min-width: 0;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-button {
  width: 100%;
}

.contact-button--whatsapp {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.contact-button--instagram {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(3, 6, 68, 0.08);
}

.contact-form__head {
  display: grid;
  gap: 6px;
}

.contact-form__head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.contact-form__grid {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.form-field span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-field__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-field select {
  appearance: none;
}

.form-field textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a94a5;
  font-weight: 600;
}

.contact-form__actions {
  display: grid;
  gap: 10px;
}

.contact-form__submit,
.contact-form__secondary {
  width: 100%;
}

.contact-form__submit {
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
}

.contact-form__secondary {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.contact-form__status {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 6, 68, 0.05);
}

.contact-card--map {
  gap: 10px;
}

.pool-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-card a,
.contact-card strong,
.contact-card address {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-map {
  width: 100%;
  min-height: 190px;
  margin-top: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card__map {
  justify-self: start;
  margin-top: 4px;
  color: var(--green);
  font-size: 0.9rem;
}

.site-footer {
  padding: 24px 18px 92px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer__inner {
  display: grid;
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.site-footer__brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer__brand span {
  display: grid;
  gap: 2px;
}

.site-footer__brand strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.site-footer__brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer__meta {
  display: grid;
  gap: 8px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-footer__link {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-hero {
  padding: 58px 18px 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--navy) 0%, #07115f 58%, #0b6f95 140%);
}

.privacy-shell {
  width: min(100%, 900px);
  margin: 0 auto;
}

.privacy-hero .section-kicker {
  color: var(--aqua);
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.privacy-updated {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
}

.privacy-content {
  padding: 28px 18px 62px;
  background: var(--surface);
}

.privacy-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(3, 6, 68, 0.07);
}

.privacy-block {
  display: grid;
  gap: 8px;
}

.privacy-block h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.3;
}

.privacy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.85;
}

.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.privacy-links a {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  margin-top: 4px;
}

.privacy-button {
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
}

.terms-downloads {
  display: grid;
  gap: 12px;
}

.terms-download {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-download span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.terms-download strong {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;
}

.terms-download small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.terms-topics {
  display: grid;
  gap: 12px;
}

.terms-topics article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-topics h2,
.terms-topics p {
  margin: 0;
}

.terms-topics h2 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.terms-topics p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.7;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.94rem;
  font-weight: 900;
}

[dir="ltr"] .floating-whatsapp {
  right: auto;
  left: 16px;
}

@media (min-width: 620px) {
  .brand__text {
    display: block;
  }

  .hero__inner {
    padding-right: 30px;
    padding-left: 30px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-right: 34px;
    padding-left: 34px;
  }

  .site-nav {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    color: var(--muted);
    background: #f1f6fb;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .site-nav a:hover {
    color: var(--navy);
    background: var(--white);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 64px;
    padding-top: 58px;
    padding-bottom: 82px;
  }

  [dir="rtl"] .hero__inner {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  [dir="rtl"] .hero__copy {
    grid-column: 2;
  }

  [dir="rtl"] .hero__panel {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__emblem {
    width: 176px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero__lead {
    font-size: 1.13rem;
  }

  .hero__panel {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .hero-stat:first-child {
    border-top: 0;
  }

  .programs-section,
  .gallery-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .programs-section h2,
  .live-section h2,
  .gallery-section h2,
  .audience-section h2,
  .journey-section h2,
  .membership-section h2,
  .schedule-section h2,
  .founder-section h2,
  .reviews-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: 2.2rem;
  }

  .live-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .live-layout {
    grid-template-columns: 370px minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
    margin-top: 34px;
  }

  .registration-card {
    padding: 24px 22px;
  }

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

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

  .stat-card--total {
    grid-column: span 2;
  }

  .stat-card strong {
    font-size: 2.25rem;
  }

  .stat-card--total strong {
    font-size: 3rem;
  }

  .gallery-strip {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 18px;
    margin-top: 34px;
    margin-inline-end: 0;
    padding: 4px 0 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .gallery-card__body {
    padding: 15px 18px 17px;
  }

  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .program-card {
    padding: 24px 22px;
  }

  .program-card__image {
    width: 108px;
  }

  .session-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }

  .session-overview__image {
    width: 88px;
  }

  .session-overview__image--wide {
    width: 124px;
  }

  .audience-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 18px;
  }

  .audience-card img {
    width: 122px;
  }

  .audience-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
  }

  .audience-note-card {
    padding: 20px;
  }

  .journey-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .journey-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .journey-track::before {
    position: absolute;
    top: 15px;
    right: 12%;
    left: 12%;
    height: 2px;
    content: "";
    background: var(--line);
  }

  .journey-card {
    padding: 24px 22px;
  }

  .journey-card__image {
    width: 108px;
  }

  .journey-card::before {
    top: 15px;
    inset-inline-start: 22px;
    width: 12px;
    height: 12px;
    background: var(--aqua);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--line);
  }

  .journey-card:first-child::before {
    display: block;
  }

  .membership-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .membership-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: stretch;
    gap: 18px;
    margin-top: 34px;
  }

  [dir="rtl"] .membership-layout {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  [dir="rtl"] .membership-steps {
    grid-column: 2;
  }

  [dir="rtl"] .requirements-panel {
    grid-column: 1;
    grid-row: 1;
  }

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

  .membership-card,
  .requirements-panel {
    padding: 24px 22px;
  }

  .course-rules {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
  }

  .course-rules div {
    padding: 0 18px;
    border-bottom: 0;
    border-inline-start: 1px solid var(--line);
  }

  .course-rules div:first-child {
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  .schedule-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .season-calendar {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
    margin-top: 34px;
  }

  .season-card {
    padding: 22px;
  }

  .season-card strong {
    font-size: 1.24rem;
  }

  .schedule-intro {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 26px;
    min-height: 178px;
    padding: 24px 28px;
  }

  .schedule-intro__copy strong {
    font-size: 1.34rem;
  }

  .schedule-intro__copy span {
    max-width: 640px;
    font-size: 1rem;
  }

  .schedule-intro__image {
    width: 190px;
  }

  .schedule-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 18px;
    margin-top: 34px;
  }

  [dir="rtl"] .schedule-layout {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  [dir="rtl"] .schedule-block {
    grid-column: 2;
  }

  [dir="rtl"] .fees-panel {
    grid-column: 1;
    grid-row: 1;
  }

  .schedule-block__head,
  .day-group,
  .fees-panel {
    padding: 24px 22px;
  }

  .time-list {
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: stretch;
  }

  .coming-soon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }

  .coming-soon-card {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 158px;
    padding: 14px 18px;
  }

  .coming-soon-card__image {
    width: 118px;
  }

  .identity-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .identity-section h2 {
    font-size: 2.35rem;
  }

  .identity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .identity-card--wide {
    grid-column: 1 / -1;
  }

  .identity-card,
  .goals-panel {
    padding: 24px 22px;
  }

  .goals-panel {
    margin-top: 18px;
  }

  .goals-panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
  }

  .founder-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .founder-layout {
    grid-template-columns: 290px minmax(0, 1fr);
    align-items: center;
    gap: 46px;
  }

  .founder-media {
    justify-items: start;
  }

  [dir="rtl"] .founder-media {
    justify-items: end;
  }

  .founder-portrait {
    width: 260px;
  }

  .founder-caption {
    text-align: start;
  }

  .founder-quote {
    max-width: 820px;
    font-size: 1.08rem;
  }

  .reviews-section {
    padding: 62px 34px;
  }

  .reviews-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }

  [dir="rtl"] .reviews-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  [dir="rtl"] .google-rating-card {
    grid-column: 2;
  }

  [dir="rtl"] .reviews-panel {
    grid-column: 1;
    grid-row: 1;
  }

  .reviews-panel {
    padding: 22px;
  }

  .sponsors-section {
    padding-top: 54px;
    padding-right: 34px;
    padding-bottom: 66px;
    padding-left: 34px;
  }

  .sponsors-head {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
  }

  .sponsors-head h2 {
    max-width: none;
  }

  .sponsors-head .section-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .sponsor-logo {
    flex-basis: 180px;
    min-height: 118px;
  }

  .sponsor-logo img {
    width: 108px;
    height: 108px;
  }

  .faq-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
  }

  .faq-item summary {
    min-height: 64px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .contact-section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    align-items: start;
    gap: 42px;
  }

  [dir="rtl"] .contact-layout {
    grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
  }

  .contact-copy {
    grid-column: 1;
    grid-row: 1;
  }

  [dir="rtl"] .contact-copy {
    grid-column: 2;
  }

  .contact-form {
    grid-column: 2;
    grid-row: 1;
    padding: 22px;
  }

  [dir="rtl"] .contact-form {
    grid-column: 1;
  }

  [dir="rtl"] .contact-panel {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 190px));
    justify-content: start;
    gap: 12px;
    margin-top: 26px;
  }

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

  .form-field--full {
    grid-column: 1 / -1;
  }

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

  .contact-panel {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .contact-card--map {
    grid-column: 1 / -1;
  }

  .contact-map {
    min-height: 230px;
  }

  .contact-card {
    padding: 18px;
  }

  .site-footer {
    padding-right: 34px;
    padding-left: 34px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-footer__meta {
    justify-items: end;
    text-align: end;
  }

  .privacy-hero {
    padding-top: 82px;
    padding-bottom: 46px;
  }

  .privacy-hero h1 {
    font-size: 2.35rem;
  }

  .privacy-content {
    padding-top: 38px;
    padding-bottom: 78px;
  }

  .privacy-card {
    padding: 34px;
    gap: 22px;
  }

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

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .header-whatsapp {
    padding: 0 11px;
  }

  .header-system {
    min-width: 58px;
    padding: 0 9px;
  }

  .hero h1 {
    font-size: 1.78rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }
}

@media (max-width: 899px) {
  [dir="rtl"] .hero__emblem,
  [dir="ltr"] .hero__emblem,
  [dir="rtl"] .hero__kicker,
  [dir="ltr"] .hero__kicker {
    align-self: center;
    text-align: center;
  }
}

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

  .button,
  .sponsors-track {
    animation: none;
    transition: none;
  }
}
