:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --panel: #ffffff;
  --panel-strong: #f0f4f9;
  --text: #222222;
  --muted: #555555;
  --faint: #888888;
  --accent: #165baa;
  --accent-2: #2a78c4;
  --border: rgba(22, 91, 170, 0.16);
  --shadow: 0 14px 38px rgba(22, 91, 170, 0.10);
  --radius: 18px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 48%, #ffffff 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--text);
  color: var(--bg);
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #165baa;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.nav {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, .9);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: #ffffff;
  font-size: .95rem;
}
.nav-links a {
  padding: .65rem .85rem;
  border-radius: 999px;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
}
.lang-dropdown {
  position: relative;
}
.lang-dropdown summary {
  list-style: none;
  padding: .55rem .85rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #ffffff;
}
.lang-dropdown summary::-webkit-details-marker { display: none; }
.lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  display: flex;
  flex-direction: column;
  min-width: 150px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 20;
}
.lang-menu a {
  padding: .75rem 1rem;
  color: var(--text);
  font-size: .9rem;
  border-radius: 0;
}
.lang-menu a:hover {
  background: #eef5fc;
  color: var(--accent);
}
.nav-toggle, .nav-button { display: none; }
.hero {
  position: relative;
  min-height: 320px;
  aspect-ratio: 1140 / 360;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000000;
}
.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroFade 10s infinite;
}
.hero-slide-one { animation-delay: 0s; }
.hero-slide-two { animation-delay: 5s; }
.hero-slide-three { animation-delay: 5s; }
@keyframes heroFade {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
.hero-overlay {
  background: transparent;
}
.hero-content {
  position: absolute;
  z-index: 1;
  left: clamp(1.5rem, 6vw, 7rem);
  bottom: 15%;
  width: min(88vw, var(--max));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 2.5vw, 2rem);
  text-align: left;
  text-shadow: 0 3px 24px rgba(0,0,0,.72);
}
.hero-logo {
  width: auto;
  height: clamp(70px, 7.9vw, 140px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.92);
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin: 0 0 1rem;
  font-family: "Open Sans", ui-sans-serif, system-ui, sans-serif;
  color: #ffffff;
  font-size: clamp(2.4rem, 5.2vw, 4.72rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.04em;
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h3 {
  margin-bottom: .65rem;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
p { color: var(--muted); }
.hero-subtitle {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-family: "Open Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.92vw, 1.44rem);
  font-weight: 400;
  letter-spacing: .02em;
}
.hero-actions, .contact-panel, .network {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(22, 91, 170, .24);
}
.button.secondary {
  color: var(--accent);
  background: #ffffff;
  border-color: var(--border);
}
.button:hover { transform: translateY(-1px); }
.quick-info {
  width: min(100% - 2rem, var(--max));
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.quick-card,
.panel,
.schedule-card,
.price-card,
.resource-card,
.map-panel,
.contact-panel,
.network {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quick-card {
  padding: 1rem;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quick-card span,
.schedule-card span,
.price-card span,
.resource-card span {
  color: var(--faint);
  font-size: .88rem;
}
.quick-card strong { font-size: 1rem; line-height: 1.25; }
.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-heading {
  margin-bottom: 1.5rem;
}
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 2rem;
}
.section-heading.split p { margin-bottom: 1rem; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
}
.panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}
.panel.large p { max-width: 64ch; }
.text-link {
  color: var(--accent-2);
  font-weight: 800;
}
.coach-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.coach-card img {
  width: min(100%, 400px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  background: var(--panel-strong);
}
.price-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.schedule-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .75rem;
}
.schedule-card {
  min-height: 120px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .35rem;
}
.schedule-card strong { font-size: 1.45rem; letter-spacing: -.03em; }
.schedule-card.featured {
  border-color: rgba(22, 91, 170, .32);
  background: linear-gradient(180deg, #ffffff, #eef5fc);
}
.image-break {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.image-break img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.image-break.compact img { height: clamp(220px, 36vw, 430px); }
.price-card {
  padding: 1.4rem;
  min-height: 180px;
}
.price-card strong {
  display: block;
  margin: .9rem 0 .35rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.07em;
}
.price-card p { margin-bottom: 0; }
.price-card.accent {
  background: linear-gradient(135deg, #eef5fc, #ffffff);
  border-color: rgba(22, 91, 170, .32);
}
.location { padding-bottom: 4rem; }
.map-panel {
  overflow: hidden;
  padding: .5rem;
  background: var(--panel);
}
.map-panel iframe,
.video-frame iframe {
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
}
.map-panel iframe { height: min(65vh, 520px); }
.contact-panel {
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-panel h2 { max-width: 650px; }
.contact-panel p { margin-bottom: 0; }
.links { padding-top: 3rem; }
.resource-card {
  overflow: hidden;
  padding: .75rem;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: .65rem;
}
.resource-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 1rem;
  border-radius: calc(var(--radius) - 8px);
  background: #f6f8fb;
}
.resource-card strong { font-size: 1.12rem; }
.video-frame {
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  background: #000;
}
.video-frame iframe { height: 100%; }
.network {
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: space-between;
}
.network h2 {
  max-width: 680px;
  margin-bottom: 0;
}
.footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.footer img { max-width: 110px; opacity: .9; }
.footer p { margin: 0; font-size: .95rem; }
@media (max-width: 900px) {
  .nav { min-height: 66px; }
  .nav-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
  }
  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: .2s ease;
  }
  .nav-button span::before { transform: translateY(-6px); }
  .nav-button span::after { transform: translateY(4px); }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .5rem;
    background: #165baa;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: .95rem 1rem; }
  .quick-info,
  .intro-grid,
  .section-heading.split,
  .price-grid,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .intro-grid,
  .section-heading.split { gap: 1rem; }
}
@media (max-width: 1020px) {
  .hero {
    min-height: 180px;
    aspect-ratio: auto;
  }
  .hero-slide {
    object-fit: contain;
  }
  .hero-content {
    left: 1.25rem;
    bottom: 18%;
    width: calc(100% - 2.5rem);
    padding: 0;
    gap: .85rem;
  }
  .hero-logo { height: clamp(64px, 20vw, 90px); }
  .hero-overlay {
    background: transparent;
  }
  .quick-info,
  .intro-grid,
  .section-heading.split,
  .price-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .quick-info { margin-top: 1rem; }
  .quick-card { min-height: 92px; }
  .section { padding: 4rem 0; }
  .button { width: 100%; }
  .contact-panel,
  .network { align-items: stretch; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}