:root {
  --bg: #edf5f8;
  --bg-deep: #dcecf4;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --surface-muted: #f4f8fb;
  --text: #163252;
  --text-soft: #56708e;
  --navy: #123d6d;
  --navy-deep: #0c2747;
  --teal: #17a7af;
  --teal-soft: #dbf6f5;
  --sky: #81d1e6;
  --sand: #f6f0e5;
  --line: rgba(18, 61, 109, 0.12);
  --shadow: 0 28px 60px rgba(12, 39, 71, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(129, 209, 230, 0.32), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(23, 167, 175, 0.18), transparent 24%),
    linear-gradient(180deg, #f7fbfd 0%, var(--bg) 42%, #f8fbfc 100%);
  min-height: 100vh;
}

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

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

.site-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(247, 251, 253, 0.92), rgba(247, 251, 253, 0.72));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 61, 109, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #118f97);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 36px rgba(17, 143, 151, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(17, 143, 151, 0.3);
}

.button-small {
  min-height: 2.6rem;
  padding: 0.75rem 1rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button-light {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(12, 39, 71, 0.16);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 22px 40px rgba(12, 39, 71, 0.22);
}

.hero {
  padding: 2rem 0 1.5rem;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(129, 209, 230, 0.18), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, #0f3460 54%, var(--navy-deep) 100%);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -6% -28% -10%;
  height: 55%;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.14), transparent 14%),
    linear-gradient(180deg, #8ed8eb 0%, #63c1de 100%);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  transform: rotate(-2deg);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  bottom: 1.35rem;
  width: 9rem;
  height: 6.5rem;
  background:
    radial-gradient(circle at 1.3rem 4.6rem, transparent 0.55rem, rgba(255, 255, 255, 0.78) 0.58rem, transparent 0.76rem),
    radial-gradient(circle at 3.9rem 2.7rem, transparent 0.4rem, rgba(255, 255, 255, 0.76) 0.44rem, transparent 0.56rem),
    radial-gradient(circle at 6.7rem 4.2rem, transparent 0.3rem, rgba(255, 255, 255, 0.76) 0.34rem, transparent 0.44rem),
    radial-gradient(circle at 7.8rem 1.5rem, transparent 0.48rem, rgba(255, 255, 255, 0.78) 0.52rem, transparent 0.68rem),
    radial-gradient(circle at 5.4rem 5.5rem, transparent 0.24rem, rgba(255, 255, 255, 0.78) 0.28rem, transparent 0.38rem);
  opacity: 0.86;
  pointer-events: none;
}

.hero-copy,
.hero-aside {
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: #ffffff;
  padding-bottom: 8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.eyebrow-dark {
  background: rgba(23, 167, 175, 0.12);
  color: var(--teal);
}

.hero h1,
.section h2,
.cta-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.hero-text {
  max-width: 38rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.stat-label,
.mini-label,
.aside-label,
.aside-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-label {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-aside {
  align-self: start;
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: #ffffff;
}

.aside-kicker {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
}

.aside-block + .aside-block {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.aside-block strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.aside-block p,
.aside-block a {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.section {
  padding: 3rem 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0;
  background:
    linear-gradient(180deg, rgba(220, 236, 244, 0.28), rgba(220, 236, 244, 0)),
    linear-gradient(120deg, rgba(129, 209, 230, 0.12), rgba(23, 167, 175, 0.05));
  pointer-events: none;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--navy);
}

.section-heading p:last-child,
.cta-card p:last-child,
.coach-copy p:last-child {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.expect-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
}

.content-card,
.build-card,
.detail-card,
.coach-panel {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.content-card,
.build-card,
.detail-card {
  border-radius: var(--radius-xl);
}

.content-card {
  padding: 1.7rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.feature-list li + li {
  border-top: 1px solid rgba(18, 61, 109, 0.08);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 1.65rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 0 0 0.25rem rgba(23, 167, 175, 0.12);
}

.build-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(219, 246, 245, 0.82)),
    var(--surface);
}

.mini-label {
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.build-list {
  display: grid;
  gap: 0.95rem;
}

.build-list > div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 61, 109, 0.08);
}

.build-list strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
}

.build-list p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  z-index: 1;
}

.detail-card {
  padding: 1.5rem;
}

.detail-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--navy);
}

.detail-card p:last-child {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.coach-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.8fr);
  gap: 1.75rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: 34px;
}

.coach-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
}

.coach-title {
  margin: 0.6rem 0 0;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coach-meta {
  padding: 1.25rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(18, 61, 109, 0.96), rgba(12, 39, 71, 0.96));
  color: #ffffff;
}

.coach-meta > div + div {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.coach-meta strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
}

.coach-meta p,
.coach-meta a {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.location-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: center;
}

.location-copy,
.meeting-figure,
.meeting-photo {
  position: relative;
}

.location-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.6rem;
}

.location-card {
  padding: 1.3rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.location-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.location-card p {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.meeting-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.meeting-figure img {
  width: 100%;
  aspect-ratio: 2042 / 1006;
  object-fit: cover;
  display: block;
}

.meeting-tag {
  position: absolute;
  left: 1.35rem;
  bottom: 4.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(18, 61, 109, 0.9);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(12, 39, 71, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 320ms ease 180ms,
    transform 420ms ease 180ms;
  z-index: 2;
}

.meeting-figure.is-visible .meeting-tag {
  opacity: 1;
  transform: translateY(0);
}

.meeting-figure figcaption {
  padding: 1rem 1.2rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}

.cta-section {
  padding-bottom: 4rem;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy), #184f88 60%, #1e719c 100%);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.cta-card h2 {
  color: #ffffff;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 0 0 2.4rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  border-top: 1px solid rgba(18, 61, 109, 0.08);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1024px) {
  .hero-panel,
  .expect-grid,
  .coach-panel,
  .location-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .location-actions {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-copy {
    padding-bottom: 9rem;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-bar {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.94rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-panel {
    border-radius: 32px;
  }

  .hero-panel::before {
    inset: auto -18% -24% -18%;
    height: 48%;
  }

  .hero-copy {
    padding-bottom: 7rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .stat-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .build-card,
  .detail-card,
  .coach-panel,
  .cta-card {
    padding: 1.3rem;
  }

  .meeting-figure {
    border-radius: 28px;
  }

  .meeting-tag {
    left: 1rem;
    bottom: 3.8rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.78rem;
  }

  .footer-row {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .meeting-tag {
    opacity: 1;
    transform: none;
  }
}
