:root {
  --ink: #18213a;
  --muted: #5c667c;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --line: #dce4ef;
  --coral: #ff5b6e;
  --blue: #1746d3;
  --teal: #00a6a6;
  --yellow: #ffd166;
  --shadow: 0 22px 70px rgba(18, 30, 64, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 239, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-logo {
  width: 76px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-weight: 750;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--blue);
}

.lang-toggle,
.button {
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.lang-toggle {
  padding: 10px 16px;
  color: var(--blue);
  background: #edf3ff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.12) 78%),
    linear-gradient(180deg, rgba(23, 70, 211, 0.08), rgba(255, 91, 110, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #34405a;
  font-size: 1.12rem;
}

.hero-actions,
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(23, 70, 211, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.quick-facts {
  margin-top: 28px;
}

.quick-facts span {
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 228, 239, 0.92);
  border-radius: 999px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro,
.split,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.intro p:last-child,
.split p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.program-card,
.panel,
.price-card,
.directions-card,
.event-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(18, 30, 64, 0.08);
}

.program-card {
  min-height: 260px;
  padding: 24px;
}

.program-card p,
.event-grid p,
.timeline p {
  color: var(--muted);
  margin: 0;
}

.card-tag {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 10px;
  color: var(--blue);
  background: #edf3ff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.panel,
.price-card,
.directions-card {
  padding: clamp(24px, 4vw, 42px);
}

.panel.accent {
  background: var(--ink);
  color: #fff;
}

.panel.accent .check-list li {
  color: #eff5ff;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #34405a;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 5px #fff;
}

.price-card {
  background: linear-gradient(180deg, #1746d3, #0f2a82);
  color: #fff;
  box-shadow: var(--shadow);
}

.price-card p,
.price-card span {
  display: block;
  margin: 0;
}

.price-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.price-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin: 26px 0;
}

.price-card .button {
  margin-top: 24px;
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.price-card .button + .button {
  margin-top: 12px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats div {
  padding: 22px;
  background: var(--soft);
  border-radius: 8px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--coral);
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.page-hero {
  padding: 110px clamp(18px, 7vw, 92px) 70px;
  background: radial-gradient(circle at 14% 20%, rgba(255, 209, 102, 0.34), transparent 30%), linear-gradient(135deg, #f6f9ff, #fff);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-hero-copy {
  min-width: 0;
}

.page-hero.compact {
  padding-bottom: 46px;
}

.page-hero h1,
.page-hero p {
  max-width: 850px;
}

.page-hero p:last-child {
  color: var(--muted);
  font-size: 1.16rem;
}

.about-photo-stack {
  position: relative;
  min-height: 470px;
}

.about-photo-stack img {
  position: absolute;
  display: block;
  width: 62%;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-portrait {
  top: 0;
  right: 0;
  height: 390px;
  object-position: center top;
}

.about-action {
  left: 0;
  bottom: 0;
  height: 300px;
  object-position: center;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: var(--coral);
  font-weight: 900;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 20px;
}

.event-grid article {
  padding: 28px;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

address {
  color: var(--muted);
  font-style: normal;
  margin: 18px 0 26px;
}

.directions-card .button + .button {
  margin-top: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--ink);
}

.footer p {
  margin: 4px 0 0;
  color: #bfcae0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.footer-contact a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8));
  }

  .intro,
  .split,
  .proof,
  .location-layout {
    grid-template-columns: 1fr;
  }

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

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-photo-stack {
    min-height: 420px;
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 58px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .nav {
    gap: 8px;
    font-size: 0.92rem;
  }

  .hero-content {
    margin: 0 auto;
  }

  .program-grid,
  .stats,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-photo-stack {
    min-height: 560px;
  }

  .about-photo-stack img {
    position: static;
    width: 100%;
    height: auto;
    max-height: 330px;
    margin-bottom: 14px;
  }

  .footer {
    display: block;
  }

  .footer-contact {
    justify-content: flex-start;
    margin-top: 16px;
  }
}
