:root {
  --navy: #0b3d4a;
  --navy-deep: #072e38;
  --teal: #1a7a7a;
  --sand: #f6efe4;
  --cream: #fbf7f0;
  --coral: #e07a5f;
  --gold: #f4a261;
  --ink: #1c2a2e;
  --muted: #4d5f65;
  --white: #ffffff;
  --line: rgba(11, 61, 74, 0.12);
  --shadow: 0 18px 50px rgba(11, 61, 74, 0.12);
  --radius: 22px;
  --header-h: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 61, 74, 0.06);
}

.header-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform-origin: center;
  animation: logo-enter 1.1s ease both;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: scale(1.06);
  filter:
    drop-shadow(0 4px 10px rgba(224, 122, 95, 0.32))
    drop-shadow(0 0 8px rgba(34, 112, 64, 0.22));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  animation: fade-up 0.7s ease 0.35s both;
}

.logo-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 46, 56, 0.86) 0%, rgba(7, 46, 56, 0.62) 48%, rgba(7, 46, 56, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 46, 56, 0.2) 0%, rgba(7, 46, 56, 0.55) 100%);
}

.hero-inner {
  position: relative;
  width: min(900px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
}

.hero-inner > *:not(.discipline-row) {
  animation: fade-up 0.8s ease both;
}

.hero-inner > :nth-child(1) { animation-delay: 0.15s; }
.hero-inner > :nth-child(2) { animation-delay: 0.28s; }
.hero-inner > :nth-child(3) { animation-delay: 0.4s; }
.hero-inner > :nth-child(4) { animation-delay: 0.52s; }
.hero-inner > :nth-child(5) { animation-delay: 0.64s; }
.hero-inner > :nth-child(6) { animation-delay: 0.76s; }

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.hero-welcome {
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-welcome::before,
.hero-welcome::after {
  content: "";
  width: 1.9rem;
  height: 2px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.85;
  box-shadow: 0 0 10px rgba(244, 162, 97, 0.45);
  transform: translateY(-0.08em);
}

.hero-welcome::after {
  margin-left: -0.16em;
}

.eyebrow-light {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem);
  margin-bottom: 0.7rem;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: #c9684f;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-light:hover {
  background: #ffb56b;
}

.discipline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
}

.discipline-row li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  animation: fade-up 0.7s ease both;
}

.discipline-row li:nth-child(1) { animation-delay: 0.85s; }
.discipline-row li:nth-child(2) { animation-delay: 0.97s; }
.discipline-row li:nth-child(3) { animation-delay: 1.09s; }

.discipline-icon {
  width: 52px;
  height: 52px;
  padding: 8px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.intro {
  padding: 4.5rem 0;
  background: var(--sand);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.intro .eyebrow {
  color: var(--coral);
}

.intro h2 {
  font-size: clamp(2.45rem, 5.2vw, 3.75rem);
  color: var(--navy);
  margin: 0 0 1.1rem;
}

.intro-copy p:last-child {
  font-size: 1.12rem;
  color: var(--muted);
}

.intro-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--sand);
}

.section-head {
  max-width: 54rem;
  margin-bottom: 2.5rem;
}

.section-head .eyebrow {
  color: var(--coral);
}

.section-head h2 {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  color: var(--navy);
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.discipline-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 0 0 2.4rem;
}

.discipline-photos figure {
  margin: 0;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 61, 74, 0.06);
}

.discipline-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.discipline-photos figure:nth-child(1) img {
  object-position: center 40%;
}

.discipline-photos figure:nth-child(3) img {
  object-position: center 70%;
}

.discipline-photos figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.plan-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.plan-meta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 2.4rem 2rem;
}

.plan-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.plan-price {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.plan-price span {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.plan-note {
  color: rgba(255, 255, 255, 0.78);
}

.plan-features {
  margin: 0;
  padding: 2.2rem 2rem 2.2rem 3.2rem;
  color: var(--muted);
}

.plan-features li + li {
  margin-top: 0.85rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 2.4rem;
}

.about-intro .section-head {
  margin-bottom: 0;
}

.about-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 61, 74, 0.06);
}

.info-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.info-card li + li {
  margin-top: 0.55rem;
}

.about-close {
  margin-top: 2rem;
  font-size: 1.08rem;
  color: var(--navy);
  max-width: 48rem;
}

.principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 1.1rem;
  counter-reset: principle;
}

.principles li {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.4rem 1.4rem;
  box-shadow: 0 10px 30px rgba(11, 61, 74, 0.05);
  border-top: 4px solid var(--gold);
  counter-increment: principle;
}

.principles li:nth-child(3n) {
  border-top-color: var(--coral);
}

.principles li:nth-child(3n + 2) {
  border-top-color: var(--teal);
}

.principles h3 {
  color: var(--navy);
  font-size: 1.2rem;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.principles h3::before {
  content: counter(principle, decimal-leading-zero);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.principles p {
  color: var(--muted);
  font-size: 0.98rem;
}

.cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 162, 97, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, #155e63);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
}

.cta .eyebrow {
  color: var(--gold);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  margin-bottom: 1rem;
}

.cta h2 {
  font-size: clamp(2.55rem, 5.4vw, 4rem);
  margin-bottom: 0.35rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
}

.site-footer {
  background: #06242c;
  color: rgba(255, 255, 255, 0.72);
  padding: 1.4rem 0;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes logo-enter {
  from {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .intro-grid,
  .plan-card,
  .about-intro,
  .about-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .principles {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .intro-photo,
  .intro-photo img,
  .about-photo img {
    min-height: 320px;
  }

  .discipline-photos {
    gap: 0.7rem;
  }

  .discipline-photos img {
    height: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid var(--line);
    gap: 0.4rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.2rem;
  }

  .hero-inner,
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-welcome {
    display: block;
    letter-spacing: 0.14em;
  }

  .hero-welcome::before,
  .hero-welcome::after {
    display: none;
  }

  .hero-welcome::after {
    display: block;
    width: 3.2rem;
    margin-top: 0.55rem;
    margin-left: 0;
    transform: none;
  }
}

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

  .btn:hover {
    transform: none;
  }

  .logo-mark,
  .logo:hover .logo-mark,
  .logo-text,
  .hero-inner > *,
  .discipline-row li {
    animation: none;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
