:root {
  --ink: #102a35;
  --ink-deep: #061922;
  --ink-muted: #5c6d76;
  --accent: #0f6f75;
  --accent-deep: #084f58;
  --accent-soft: #dff0ee;
  --accent-warm: #d49a5e;
  --accent-warm-dark: #b7763a;
  --page-bg: #f5f8f7;
  --surface: #ffffff;
  --surface-soft: #eef6f4;
  --line: rgba(23, 58, 68, 0.16);
  --line-strong: rgba(23, 58, 68, 0.28);
  --shadow-soft: 0 18px 54px rgba(12, 38, 46, 0.10);
  --shadow-deep: 0 24px 70px rgba(5, 23, 31, 0.32);
  --radius-card: 8px;
  --radius-button: 999px;
  --container: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(98, 183, 181, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbfa 0%, var(--page-bg) 48%, #eef5f3 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(15, 111, 117, 0.22);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 22px;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 44px));
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 12px 10px 16px;
  background: rgba(7, 28, 36, 0.34);
  color: #fff;
  box-shadow: 0 10px 30px rgba(6, 25, 34, 0.13);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    min-height 220ms ease,
    top 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  min-height: 58px;
  border-color: rgba(18, 58, 70, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 48, 58, 0.07);
}

.site-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand__text,
.footer-brand strong {
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-placeholder {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  opacity: 0.96;
}

.logo-placeholder::before,
.logo-placeholder::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 999px 999px;
}

.logo-placeholder::before {
  top: 13px;
  transform: translateX(-1px);
}

.logo-placeholder::after {
  top: 17px;
  width: 18px;
  opacity: 0.68;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.site-nav a,
.footer-nav a {
  color: currentColor;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  opacity: 0.78;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--accent-warm);
  opacity: 1;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  padding: 0 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(212, 154, 94, 0.42);
  outline-offset: 3px;
}

.button-primary {
  background: var(--accent-warm);
  color: #10202a;
  box-shadow: 0 14px 34px rgba(212, 154, 94, 0.28);
}

.button-primary:hover {
  background: #e2ac72;
  box-shadow: 0 18px 46px rgba(212, 154, 94, 0.36);
}

.button-secondary {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 111, 117, 0.22);
}

.site-header:not(.is-scrolled) .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: #fff;
  color: var(--accent-deep);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.18);
}

.hero-section {
  position: relative;
  display: flex;
  min-height: clamp(640px, 82svh, 820px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 20, 27, 0.94) 0%, rgba(4, 20, 27, 0.76) 34%, rgba(4, 20, 27, 0.12) 72%, rgba(4, 20, 27, 0.44) 100%),
    url("../assets/home-hero-freediver.png") center / cover no-repeat;
  transform: translate3d(0, var(--hero-parallax, 0), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 20%, rgba(118, 209, 208, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(5, 19, 26, 0.08) 0%, rgba(5, 19, 26, 0.18) 58%, rgba(245, 248, 247, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  padding: 132px 0 56px;
}

.hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
}

.fact-item {
  min-height: 118px;
  padding: 24px;
  background: rgba(5, 23, 31, 0.28);
}

.fact-item strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.fact-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  width: 48px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.hero-scroll:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(3px);
}

.hero-scroll span {
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.content-band {
  position: relative;
  scroll-margin-top: 96px;
  padding: 104px 0;
}

.band-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-kicker,
.card-label {
  margin: 0;
  color: var(--accent-warm-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.copy-block h2,
.section-heading h2,
.instructor-profile h2,
.feedback-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.copy-block p,
.section-heading p,
.instructor-profile p,
.feedback-copy > p,
.final-cta p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.75;
}

.markdown-block h2:first-child {
  margin-top: 0;
}

.markdown-block h2,
.markdown-block h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.markdown-block h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.markdown-block h3 {
  margin: 44px 0 0;
  font-size: 26px;
  line-height: 1.18;
}

.markdown-block p {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.78;
}

.markdown-block ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.markdown-block li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.55;
}

.markdown-block li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 11px;
  height: 1.5px;
  background: var(--accent-warm);
  content: "";
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.intro-band {
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.info-stack {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.info-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  min-height: 166px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(15, 42, 52, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.info-card:hover {
  border-color: rgba(15, 111, 117, 0.24);
  box-shadow: 0 24px 54px rgba(15, 42, 52, 0.10);
  transform: translateY(-4px);
}

.info-card__index {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.info-card__body {
  min-width: 0;
}

.info-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.info-card p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.62;
}

.school-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(88, 192, 188, 0.20), transparent 34%),
    linear-gradient(135deg, #082531 0%, #05202c 58%, #041821 100%);
  color: #fff;
}

.school-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.school-band .markdown-block h2,
.school-band .markdown-block h3,
.school-band .markdown-block li {
  color: #fff;
}

.school-band .markdown-block p {
  color: rgba(255, 255, 255, 0.74);
}

.school-band .markdown-block li::before {
  background: var(--accent-warm);
}

.principles-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(212, 154, 94, 0.08), transparent 38%),
    #f7faf8;
}

.principles-band::before {
  position: absolute;
  top: 0;
  left: max(24px, calc((100% - 1180px) / 2));
  width: min(220px, 24vw);
  height: 1px;
  background: var(--accent-warm);
  content: "";
}

.principles-heading {
  max-width: 860px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.principle-item {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 30px clamp(24px, 3vw, 42px) 8px 0;
}

.principle-item + .principle-item {
  padding-left: clamp(24px, 3vw, 42px);
}

.principle-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.principle-item__index {
  display: inline-block;
  color: var(--accent-warm-dark);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.principle-item h3 {
  max-width: 300px;
  margin: 36px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.principle-item p {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.7;
}

.media-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-deep);
}

.media-frame::before {
  position: absolute;
  inset: 0;
  background: url("../assets/home-lake-training.png") center / cover no-repeat;
  content: "";
  transform: scale(1.02);
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6, 25, 34, 0.42) 100%),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.24), transparent 28%);
  content: "";
}

.school-section {
  display: grid;
  gap: 64px;
}

.school-heading {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 26px;
}

.school-heading .section-kicker,
.school-differences .section-kicker {
  color: #ddb07c;
}

.school-heading h2 {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 28px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.school-title__lead,
.school-title__accent {
  display: block;
  text-wrap: balance;
}

.school-title__lead {
  max-width: 960px;
  font-size: clamp(46px, 5.3vw, 72px);
  line-height: 0.98;
}

.school-title__accent {
  max-width: 980px;
  margin-left: clamp(64px, 11vw, 156px);
  color: #9fd0cc;
  font-size: clamp(56px, 6.4vw, 88px);
  font-style: italic;
  line-height: 0.96;
}

.school-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.school-copy__lead {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.36;
}

.school-copy > p:not(.school-copy__lead, .school-copy__accent) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.school-copy__accent {
  margin: 34px 0 0;
  border-left: 2px solid rgba(221, 176, 124, 0.60);
  padding-left: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.6;
}

.school-visual {
  margin: 0;
}

.school-visual > div {
  min-height: 510px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(5, 23, 31, 0.02), rgba(5, 23, 31, 0.38)),
    url("../assets/home-lake-training.png") center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}

.school-visual figcaption {
  max-width: 500px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.school-differences {
  display: grid;
  grid-template-columns: minmax(230px, 0.44fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 34px;
}

.school-differences h3 {
  max-width: 340px;
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.school-difference-list {
  display: grid;
}

.school-difference {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 0 28px;
}

.school-difference + .school-difference {
  padding-top: 28px;
}

.school-difference > span {
  padding-top: 3px;
  color: #ddb07c;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.school-difference h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.12;
}

.school-difference p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.68;
}

.instructor-band {
  background:
    linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
}

.instructor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 34px;
  align-items: start;
}

.instructor-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.portrait-placeholder {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(7, 31, 41, 0.08), rgba(7, 31, 41, 0.42)),
    url("../assets/home-lake-training.png") 28% center / cover no-repeat;
}

.portrait-placeholder::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  content: "";
}

.instructor-profile h2 {
  font-size: clamp(36px, 3.6vw, 56px);
}

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

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

.credential-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.credential-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 1.5px;
  background: var(--accent-warm);
  content: "";
}

.instructor-quote {
  margin: 28px 0 0;
  border-left: 2px solid rgba(15, 111, 117, 0.34);
  padding-left: 20px;
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.42;
}

.story-disclosure {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.story-disclosure summary,
.program-module summary {
  list-style: none;
}

.story-disclosure summary::-webkit-details-marker,
.program-module summary::-webkit-details-marker {
  display: none;
}

.story-disclosure summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 62px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.story-disclosure summary i,
.program-module summary > i {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.story-disclosure summary i::before,
.story-disclosure summary i::after,
.program-module summary > i::before,
.program-module summary > i::after {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--accent-deep);
  content: "";
  transition: transform 180ms ease;
}

.story-disclosure summary i::after,
.program-module summary > i::after {
  transform: rotate(90deg);
}

.story-disclosure[open] summary i::after,
.program-module[open] summary > i::after {
  transform: rotate(0deg);
}

.story-disclosure__body {
  padding: 0 0 4px;
}

.story-disclosure__body p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.66;
}

.achievement-grid {
  position: sticky;
  top: 106px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(184px, auto);
  gap: 14px;
}

.achievement-card {
  display: grid;
  align-content: end;
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(12, 38, 46, 0.08);
}

.achievement-card strong {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.achievement-card strong.counter-value--text {
  font-family: var(--sans);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.achievement-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.founder-section {
  display: grid;
  gap: 58px;
}

.founder-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
  border-top: 1px solid var(--line-strong);
  padding-top: 26px;
}

.founder-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 6.6vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.founder-intro {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(38px, 7vw, 88px);
  align-items: stretch;
}

.founder-portrait {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(7, 31, 41, 0.02), rgba(7, 31, 41, 0.38)),
    url("../assets/home-lake-training.png") 22% center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.founder-portrait::after {
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  content: "";
}

.founder-profile {
  align-self: center;
  min-width: 0;
}

.founder-profile__role {
  margin: 0;
  color: var(--accent-warm-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.founder-profile h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.founder-profile__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.72;
}

.founder-credentials {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.founder-credential {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.founder-credential > span {
  padding-top: 3px;
  color: var(--accent-warm-dark);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}

.founder-credential h4 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.founder-credential p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.62;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 108px);
  border-radius: var(--radius-card);
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 8% 14%, rgba(88, 192, 188, 0.18), transparent 32%),
    linear-gradient(135deg, #082531 0%, #041821 100%);
  box-shadow: var(--shadow-deep);
}

.founder-story .section-kicker {
  color: #ddb07c;
}

.founder-story__heading h3 {
  max-width: 420px;
  margin: 16px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.founder-milestones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.founder-milestone {
  min-height: 120px;
  padding: 20px;
  background: rgba(5, 23, 31, 0.32);
}

.founder-milestone strong,
.founder-milestone span {
  display: block;
}

.founder-milestone strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.founder-milestone span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.founder-story__copy {
  padding-top: 2px;
}

.founder-story__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.78;
}

.founder-story__copy p:first-child {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.58;
}

.founder-story__copy p + p {
  margin-top: 24px;
}

.founder-belief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  padding: 42px 0 0;
}

.founder-belief p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  text-wrap: balance;
}

.founder-belief footer {
  padding-bottom: 8px;
  color: var(--accent-warm-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-roster {
  display: grid;
  gap: 48px;
  border-top: 1px solid var(--line-strong);
  padding-top: 72px;
}

.team-roster__heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  column-gap: clamp(32px, 7vw, 100px);
  align-items: start;
}

.team-roster__heading h3 {
  max-width: 800px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.team-roster__heading > p:last-child {
  grid-column: 2;
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.72;
}

.team-roster__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.team-roster__media {
  position: sticky;
  top: 106px;
  margin: 0;
}

.team-roster__media > div {
  min-height: 620px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(5, 28, 37, 0.02), rgba(5, 28, 37, 0.4)),
    url("../assets/home-lake-training.png") 70% center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.team-roster__media figcaption {
  margin-top: 16px;
  border-left: 2px solid var(--accent-warm);
  padding-left: 14px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.6;
}

.team-member-list {
  border-top: 1px solid var(--line-strong);
}

.team-member {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0 34px;
}

.team-member__index {
  padding-top: 8px;
  color: var(--accent-warm-dark);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.team-member__body {
  min-width: 0;
}

.team-member__role {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-member h4 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.04;
}

.team-member__summary {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.68;
}

.team-member ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.team-member li {
  position: relative;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.team-member li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-warm);
  content: "";
  transform: translateY(-50%);
}

.team-join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  border-radius: var(--radius-card);
  padding: 42px 46px;
  background: #082631;
  color: #fff;
  box-shadow: var(--shadow-deep);
}

.team-join-panel .section-kicker {
  color: #ddb07c;
}

.team-join-panel h3 {
  margin: 12px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.02;
}

.team-join-panel p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

.team-join-panel__action {
  gap: 14px;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.team-join-panel__action i {
  position: relative;
  display: block;
  width: 18px;
  height: 10px;
}

.team-join-panel__action i::before,
.team-join-panel__action i::after {
  position: absolute;
  content: "";
}

.team-join-panel__action i::before {
  top: 4px;
  left: 0;
  width: 17px;
  height: 1.5px;
  background: currentColor;
}

.team-join-panel__action i::after {
  top: 1px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.team-join-panel__action:hover {
  border-color: var(--accent-warm);
  background: var(--accent-warm);
  color: var(--ink-deep);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 0;
}

.section-heading h2 + p {
  margin-top: 6px;
}

.section-heading-wide {
  max-width: 900px;
}

.courses-band {
  background:
    radial-gradient(circle at 85% 28%, rgba(212, 154, 94, 0.14), transparent 28%),
    #fff;
}

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

.course-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 178px 22px 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(12, 38, 46, 0.08);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.course-card:hover {
  box-shadow: 0 28px 62px rgba(12, 38, 46, 0.12);
  transform: translateY(-5px);
}

.course-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 148px;
  background:
    linear-gradient(180deg, rgba(5, 23, 31, 0.08), rgba(5, 23, 31, 0.48)),
    url("../assets/home-hero-freediver.png") center / cover no-repeat;
  content: "";
}

.course-card:nth-child(2)::before {
  background-position: 62% 48%;
}

.course-card:nth-child(3)::before {
  background-position: 70% 58%;
}

.course-card:nth-child(4)::before {
  background:
    linear-gradient(180deg, rgba(5, 23, 31, 0.05), rgba(5, 23, 31, 0.38)),
    url("../assets/home-lake-training.png") center / cover no-repeat;
}

.course-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.14;
  text-wrap: balance;
}

.course-card p:not(.card-label) {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.62;
}

.course-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.course-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
}

.course-card dt {
  color: var(--ink-muted);
  font-weight: 750;
}

.course-card dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.course-card--featured {
  border-color: rgba(15, 111, 117, 0.30);
  background: linear-gradient(180deg, #fff 0%, #f2f8f6 100%);
}

.course-card__link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 900;
}

.course-card__link i {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(-2px, -2px);
  transition: transform 180ms ease;
}

.course-card__link:hover i {
  transform: rotate(-45deg) translate(1px, 1px);
}

.course-card__link--anchor i {
  transform: rotate(45deg) translate(-2px, 2px);
}

.course-card__link--anchor:hover i {
  transform: rotate(45deg) translate(1px, 5px);
}

.course-catalog-cta {
  display: flex;
  justify-content: space-between;
  gap: 44px;
  align-items: center;
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 30px 0;
}

.course-catalog-cta h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.course-catalog-cta > div > p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
}

.course-catalog-cta .button {
  flex: none;
}

.course-program {
  scroll-margin-top: 92px;
  margin-top: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 96% 4%, rgba(88, 192, 188, 0.14), transparent 30%),
    #f5faf8;
  box-shadow: 0 24px 68px rgba(12, 38, 46, 0.09);
}

.gift-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  min-height: 420px;
  margin-top: 46px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--ink-deep);
  color: #fff;
  box-shadow: 0 24px 68px rgba(5, 23, 31, 0.18);
}

.gift-teaser__media {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(5, 23, 31, 0.04), rgba(5, 23, 31, 0.36)),
    url("../assets/formats-community.jpg") center 44% / cover no-repeat;
}

.gift-teaser__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(34px, 6vw, 74px);
}

.gift-teaser__copy h3 {
  max-width: 620px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.gift-teaser__copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.gift-teaser__copy .button {
  margin-top: 28px;
}

.course-program__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: end;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 38px;
}

.course-program__intro h3 {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.course-program__intro > div > p:not(.section-kicker) {
  max-width: 630px;
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.program-fact {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.program-fact strong,
.program-fact span {
  display: block;
}

.program-fact strong {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.program-fact span {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
}

.course-program__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  padding-top: 38px;
}

.program-modules {
  border-top: 1px solid var(--line-strong);
}

.program-module {
  border-bottom: 1px solid var(--line-strong);
}

.program-module summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 38px;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  cursor: pointer;
}

.program-module__index {
  color: var(--accent-warm-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.program-module__heading {
  display: grid;
  gap: 5px;
}

.program-module__heading strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.program-module__heading small {
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.45;
}

.program-module ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0 0 30px 64px;
  counter-reset: program-item;
  list-style: none;
}

.program-module li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
  counter-increment: program-item;
}

.program-module li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-deep);
  content: counter(program-item, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 12px;
}

.program-summary {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
}

.program-certificate,
.program-pricing {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.program-summary h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.06;
}

.program-certificate > p:not(.card-label) {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.program-pricing > div {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.program-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.program-price span {
  color: var(--ink-muted);
  font-size: 13px;
}

.program-price strong {
  color: var(--ink);
  font-size: 14px;
  text-align: right;
}

.program-pricing__note {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.55;
}

.program-summary .button {
  width: 100%;
}

.plans-band {
  background:
    linear-gradient(180deg, #f2f7f5 0%, #eef6f4 100%);
}

.plan-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.plan-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 42px;
  border-bottom: 1px solid var(--line-strong);
  padding: 30px 0;
}

.plan-item > span {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.plan-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.14;
}

.plan-item p {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.72;
}

.media-band {
  overflow: hidden;
  background: linear-gradient(180deg, #0a2a35 0%, #051a23 100%);
  color: #fff;
}

.media-band .section-heading h2,
.media-band .media-subhead h3 {
  color: #fff;
}

.media-band .section-heading p,
.media-band .media-subhead p {
  color: rgba(255, 255, 255, 0.72);
}

.media-band .section-kicker,
.media-band .card-label {
  color: #ddb07c;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 76px;
  min-width: 0;
}

.photo-showcase {
  min-width: 0;
}

.media-subhead {
  display: grid;
  gap: 10px;
}

.media-subhead h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.media-subhead p {
  max-width: 680px;
  margin: 0;
  line-height: 1.68;
}

.media-subhead-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.media-carousel-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.media-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.media-control:hover,
.media-control:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.62);
  background: #fff;
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.media-control--pause span {
  font-size: 15px;
}

.media-counter {
  min-width: 66px;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: right;
}

.photo-carousel-shell {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.photo-carousel {
  display: flex;
  gap: 18px;
  width: 100vw;
  max-width: 100vw;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 max(16px, calc((100vw - 1180px) / 2)) 20px;
  scroll-padding-inline: max(16px, calc((100vw - 1180px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.photo-carousel::-webkit-scrollbar {
  display: none;
}

.photo-card {
  flex: 0 0 370px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
  text-align: left;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.photo-card:hover,
.photo-card:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.photo-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d303b;
}

.photo-card__image::after,
.video-card__preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(4, 20, 27, 0.58) 100%);
  content: "";
  pointer-events: none;
}

.photo-card__image img,
.video-card__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, 50% 50%);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-card:hover .photo-card__image img,
.photo-card:focus-visible .photo-card__image img,
.video-card:hover .video-card__preview img,
.video-card:focus-visible .video-card__preview img {
  transform: scale(1.035);
}

.photo-card__open {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.photo-card:hover .photo-card__open,
.photo-card:focus-visible .photo-card__open {
  opacity: 1;
  transform: translateY(0);
}

.photo-card__body {
  min-height: 184px;
  padding: 20px 21px 22px;
}

.photo-card h3,
.video-card h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.photo-card p:not(.card-label),
.video-card p:not(.card-label) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.media-chip,
.video-duration {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 900;
}

.media-chip {
  top: 16px;
  left: 16px;
}

.video-duration {
  right: 16px;
  bottom: 16px;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

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

.video-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  text-align: left;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.video-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.video-card__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 230px;
  overflow: hidden;
  background: #0d303b;
}

.video-card--featured .video-card__preview {
  aspect-ratio: auto;
  min-height: 330px;
}

.video-card[data-orientation="portrait"] .video-card__preview img {
  object-position: 50% 48%;
}

.media-play-indicator {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.media-play-indicator::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #fff;
  content: "";
}

.video-card:hover .media-play-indicator,
.video-card:focus-visible .media-play-indicator {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-card__body {
  min-width: 0;
  min-height: 174px;
  padding: 20px 21px 22px;
}

.video-card--featured .video-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.media-dialog {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
}

.media-dialog::backdrop {
  background: rgba(2, 12, 17, 0.88);
  backdrop-filter: blur(8px);
}

.media-dialog__surface {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: #061922;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.media-dialog__stage {
  display: grid;
  min-height: min(68svh, 720px);
  place-items: center;
  overflow: hidden;
  background: #031118;
}

.media-dialog__image,
.media-dialog__video {
  display: block;
  width: 100%;
  height: min(68svh, 720px);
  object-fit: contain;
}

.media-dialog__image[hidden],
.media-dialog__video[hidden] {
  display: none;
}

.media-dialog__caption {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(260px, 0.66fr);
  gap: 8px 28px;
  align-items: start;
  padding: 22px 72px 24px;
}

.media-dialog__caption .card-label {
  grid-row: 1 / span 2;
  margin: 4px 0 0;
  color: #ddb07c;
}

.media-dialog__caption h3 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.media-dialog__caption > p:last-child {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.media-dialog__close,
.media-dialog__nav {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0;
  background: rgba(3, 17, 24, 0.58);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.media-dialog__close:hover,
.media-dialog__close:focus-visible,
.media-dialog__nav:hover,
.media-dialog__nav:focus-visible {
  outline: none;
  border-color: #fff;
  background: #fff;
  color: var(--accent-deep);
}

.media-dialog__close {
  top: 16px;
  right: 16px;
}

.media-dialog__nav {
  top: calc(50% - 54px);
  transform: translateY(-50%);
}

.media-dialog__nav--previous {
  left: 16px;
}

.media-dialog__nav--next {
  right: 16px;
}

.media-dialog.is-video .media-dialog__nav {
  display: none;
}

.media-dialog.is-video .media-dialog__close {
  top: auto;
  right: 18px;
  bottom: 20px;
}

body.media-dialog-open {
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  z-index: 26;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(15, 79, 88, 0.20);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.90);
  color: var(--accent-deep);
  box-shadow: 0 16px 38px rgba(6, 25, 34, 0.18);
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  backdrop-filter: blur(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  outline: none;
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: #fff;
}

.feedback-band {
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.78fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.feedback-copy {
  position: sticky;
  top: 112px;
}

.feedback-note {
  max-width: 560px;
  margin-top: 34px;
  border-left: 2px solid rgba(15, 111, 117, 0.28);
  padding-left: 22px;
}

.feedback-note h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.feedback-note p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.feedback-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.feedback-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.feedback-form__header h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.feedback-form__header p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.field-group,
.feedback-choice-group {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.field-group > span,
.feedback-choice-group legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 0 15px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.field-group select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent-deep) 50%) calc(100% - 19px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--accent-deep) 50%, transparent 50%) calc(100% - 14px) 50% / 7px 7px no-repeat,
    #fff;
}

.field-group textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(92, 109, 118, 0.64);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: rgba(15, 111, 117, 0.50);
  box-shadow: 0 0 0 4px rgba(15, 111, 117, 0.11);
  transform: translateY(-1px);
}

.feedback-form.was-validated input:invalid,
.feedback-form.was-validated select:invalid,
.feedback-form.was-validated textarea:invalid {
  border-color: rgba(197, 109, 79, 0.72);
}

.feedback-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.feedback-choice {
  position: relative;
  cursor: pointer;
}

.feedback-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.feedback-choice span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.feedback-choice input:checked + span {
  border-color: rgba(15, 111, 117, 0.42);
  background: rgba(15, 111, 117, 0.10);
}

.feedback-choice input:focus-visible + span,
.feedback-choice:hover span {
  border-color: rgba(15, 111, 117, 0.44);
  box-shadow: 0 8px 22px rgba(24, 56, 66, 0.10);
  transform: translateY(-1px);
}

.feedback-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.feedback-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.feedback-submit {
  width: 100%;
}

.feedback-status {
  display: none;
  margin: 0;
  border: 1px solid rgba(15, 111, 117, 0.20);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  background: rgba(238, 246, 244, 0.90);
  color: var(--ink-muted);
  line-height: 1.45;
}

.feedback-status.is-visible {
  display: grid;
  gap: 4px;
}

.feedback-status strong {
  color: var(--accent-deep);
}

.final-cta {
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 70% 20%, rgba(88, 192, 188, 0.22), transparent 30%),
    linear-gradient(135deg, #071c25 0%, #041821 100%);
  color: #fff;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
}

.final-cta .section-kicker,
.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.final-cta__actions .button {
  margin-top: 0;
}

.final-cta__media {
  min-height: 340px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(6, 25, 34, 0.02), rgba(6, 25, 34, 0.36)),
    url("../assets/home-hero-freediver.png") center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}

.site-footer {
  background: #061922;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr) auto;
  gap: 32px;
  align-items: start;
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0;
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.footer-copy p + p {
  margin-top: 10px;
}

.footer-nav {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.content-error-message {
  max-width: 560px;
  margin-top: 18px;
  border-left: 4px solid var(--accent-warm);
  padding-left: 16px;
  color: #fff;
  font-weight: 800;
}

.counter-value {
  display: inline-block;
  transform-origin: left bottom;
}

body.motion-enabled .site-header {
  animation: headerEnter 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.motion-enabled .hero-media {
  animation: heroWaterDrift 18s ease-in-out infinite alternate;
}

body.motion-enabled .hero-scroll span {
  animation: scrollHint 1.8s ease-in-out infinite;
}

body.motion-enabled .reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.motion-enabled .counter-value.is-counted {
  animation: counterSettle 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroWaterDrift {
  0% {
    background-position: center, 50% 50%;
  }

  100% {
    background-position: center, 54% 46%;
  }
}

@keyframes scrollHint {
  0%,
  100% {
    transform: rotate(45deg) translate(-2px, -2px);
  }

  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

@keyframes counterSettle {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-2px) scale(1.035);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero-media {
    transform: scale(1.02) !important;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 14px;
  }

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

  .video-showcase,
  .feedback-layout,
  .course-program__intro,
  .course-program__layout {
    grid-template-columns: 1fr;
  }

  .feedback-copy,
  .program-summary {
    position: static;
  }

  .program-facts {
    max-width: 560px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 36px, 1180px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .two-column,
  .school-layout,
  .school-heading,
  .school-intro,
  .school-differences,
  .instructor-layout,
  .instructor-profile,
  .founder-heading,
  .founder-intro,
  .founder-story,
  .founder-belief,
  .team-roster__heading,
  .team-roster__layout,
  .team-join-panel,
  .final-cta__inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gift-teaser {
    grid-template-columns: 1fr;
  }

  .gift-teaser__media {
    min-height: 360px;
  }

  .achievement-grid {
    position: static;
  }

  .founder-section {
    gap: 44px;
  }

  .founder-heading {
    gap: 16px;
  }

  .founder-portrait {
    min-height: 520px;
  }

  .founder-story {
    gap: 42px;
  }

  .founder-belief footer {
    padding-bottom: 0;
  }

  .team-roster__heading {
    row-gap: 18px;
  }

  .team-roster__heading > p:last-child {
    grid-column: 1;
    margin-top: 0;
  }

  .team-roster__media {
    position: static;
  }

  .team-roster__media > div {
    min-height: 480px;
  }

  .team-join-panel {
    align-items: start;
    gap: 28px;
  }

  .team-join-panel__action {
    justify-self: start;
  }

  .school-layout {
    gap: 36px;
  }

  .school-section {
    gap: 48px;
  }

  .school-heading,
  .school-intro,
  .school-differences {
    gap: 26px;
  }

  .school-title__accent {
    margin-left: 0;
  }

  .school-visual > div {
    min-height: 430px;
  }

  .media-frame,
  .portrait-placeholder,
  .final-cta__media {
    min-height: 360px;
  }

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

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-item,
  .principle-item + .principle-item,
  .principle-item:last-child {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .principle-item:last-child {
    border-bottom: 0;
  }

  .principle-item h3 {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 54px;
    gap: 8px;
    padding: 8px;
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .logo-placeholder {
    width: 38px;
    height: 38px;
  }

  .site-brand__text {
    max-width: clamp(130px, 42vw, 178px);
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
  }

  .header-action {
    min-height: 40px;
    flex: none;
    padding: 0 12px;
    font-size: 12px;
  }

  .course-catalog-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .course-catalog-cta .button {
    width: 100%;
  }

  .gift-teaser {
    min-height: 0;
  }

  .gift-teaser__media {
    min-height: 290px;
  }

  .gift-teaser__copy {
    padding: 30px 22px 34px;
  }

  .gift-teaser__copy h3 {
    font-size: 40px;
  }

  .gift-teaser__copy .button {
    width: 100%;
  }

  .hero-section {
    min-height: 82svh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(4, 20, 27, 0.46) 0%, rgba(4, 20, 27, 0.86) 62%, rgba(4, 20, 27, 0.92) 100%),
      url("../assets/home-hero-freediver.png") 62% center / cover no-repeat;
  }

  .hero-content {
    padding: 104px 0 42px;
  }

  .hero-content h1 {
    max-width: 92vw;
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.64;
  }

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

  .hero-actions .button {
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }

  .final-cta .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .fact-item {
    display: block;
    min-height: 128px;
    padding: 14px 12px;
  }

  .fact-item strong {
    font-size: 27px;
  }

  .fact-item span {
    margin-top: 9px;
    font-size: 10px;
    line-height: 1.35;
  }

  .content-band {
    scroll-margin-top: 76px;
    padding: 64px 0;
  }

  .final-cta {
    scroll-margin-top: 76px;
  }

  .copy-block h2,
  .section-heading h2,
  .school-heading h2,
  .instructor-profile h2,
  .founder-heading h2,
  .feedback-copy h2,
  .final-cta h2,
  .markdown-block h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .copy-block p,
  .section-heading p,
  .instructor-profile p,
  .feedback-copy > p,
  .final-cta p,
  .markdown-block p,
  .plan-item p {
    font-size: 16px;
    line-height: 1.68;
  }

  .markdown-block h3 {
    margin-top: 34px;
    font-size: 23px;
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 22px;
  }

  .info-card__index {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .info-card h3 {
    font-size: 24px;
  }

  .principle-item,
  .principle-item + .principle-item,
  .principle-item:last-child {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .principle-item p {
    font-size: 15px;
  }

  .media-frame,
  .portrait-placeholder,
  .final-cta__media {
    min-height: 300px;
  }

  .school-section {
    gap: 38px;
  }

  .school-heading {
    padding-top: 20px;
  }

  .school-heading h2 {
    gap: 8px;
    margin-top: 22px;
  }

  .school-title__lead {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .school-title__accent {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
  }

  .school-copy__lead {
    font-size: 24px;
    line-height: 1.4;
  }

  .school-copy > p:not(.school-copy__lead, .school-copy__accent) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.66;
  }

  .school-copy__accent {
    margin-top: 26px;
  }

  .school-visual > div {
    min-height: 320px;
  }

  .school-differences {
    padding-top: 28px;
  }

  .school-differences h3 {
    font-size: 34px;
  }

  .school-difference {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .school-difference p {
    font-size: 14px;
  }

  .instructor-profile {
    padding: 16px;
  }

  .achievement-grid,
  .card-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    min-height: 150px;
  }

  .founder-section {
    gap: 34px;
  }

  .founder-heading {
    padding-top: 20px;
  }

  .founder-heading h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .founder-portrait {
    min-height: 400px;
  }

  .founder-profile h3 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .founder-profile__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.68;
  }

  .founder-credentials {
    margin-top: 28px;
  }

  .founder-credential {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .founder-story {
    gap: 34px;
    padding: 24px;
  }

  .founder-story__heading h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .founder-milestones {
    margin-top: 28px;
  }

  .founder-milestone {
    min-height: 108px;
    padding: 16px;
  }

  .founder-story__copy p,
  .founder-story__copy p:first-child {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.72;
  }

  .founder-belief {
    gap: 18px;
    padding-top: 30px;
  }

  .founder-belief p {
    font-size: clamp(30px, 9vw, 42px);
  }

  .team-roster {
    gap: 34px;
    padding-top: 50px;
  }

  .team-roster__heading h3 {
    font-size: 42px;
  }

  .team-roster__heading > p:last-child {
    font-size: 16px;
    line-height: 1.68;
  }

  .team-roster__media > div {
    min-height: 340px;
  }

  .team-member {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 26px 0;
  }

  .team-member h4 {
    font-size: 30px;
  }

  .team-member ul {
    display: grid;
    gap: 7px;
  }

  .team-member li {
    padding-left: 14px;
  }

  .team-member li::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 5px;
    height: 1.5px;
    background: var(--accent-warm);
    content: "";
  }

  .team-member li:not(:last-child)::after {
    display: none;
  }

  .team-join-panel {
    padding: 28px 24px;
  }

  .team-join-panel h3 {
    font-size: 36px;
  }

  .team-join-panel__action {
    width: 100%;
  }

  .course-card {
    min-height: 390px;
  }

  .course-program {
    margin-top: 58px;
    padding: 22px;
  }

  .course-program__intro {
    gap: 28px;
    padding-bottom: 28px;
  }

  .course-program__intro h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

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

  .program-fact {
    padding-left: 12px;
  }

  .program-fact strong {
    font-size: 28px;
  }

  .program-module summary {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 86px;
  }

  .program-module__heading strong {
    font-size: 18px;
  }

  .program-module__heading small {
    font-size: 12px;
  }

  .program-module ol {
    grid-template-columns: 1fr;
    padding-left: 44px;
  }

  .plan-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .plan-item > span {
    font-size: 36px;
  }

  .photo-carousel-shell {
    mask-image: none;
  }

  .photo-carousel {
    padding: 0 14px;
    scroll-padding-inline: 14px;
  }

  .photo-card {
    flex-basis: min(82vw, 330px);
  }

  .media-subhead-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .media-carousel-tools {
    width: 100%;
  }

  .media-control--pause {
    display: none;
  }

  .media-counter {
    margin-left: auto;
  }

  .photo-card__open {
    opacity: 1;
    transform: none;
  }

  .video-card--featured {
    display: block;
  }

  .photo-card__image,
  .video-card__preview,
  .video-card--featured .video-card__preview {
    min-height: 220px;
  }

  .video-card--featured .video-card__body {
    padding: 20px 21px 22px;
  }

  .media-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .media-dialog__stage {
    min-height: min(62svh, 560px);
  }

  .media-dialog__image,
  .media-dialog__video {
    height: min(62svh, 560px);
  }

  .media-dialog.is-video .media-dialog__stage {
    min-height: 0;
  }

  .media-dialog.is-video .media-dialog__video {
    height: auto;
    max-height: min(62svh, 560px);
  }

  .media-dialog__caption {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 20px 22px;
  }

  .media-dialog__caption > p:last-child {
    grid-column: 1;
  }

  .media-dialog.is-video .media-dialog__caption {
    padding-right: 64px;
  }

  .media-dialog.is-video .media-dialog__close {
    right: 12px;
    bottom: 14px;
  }

  .back-to-top {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .media-dialog__caption .card-label {
    grid-row: auto;
    margin: 0;
  }

  .media-dialog__caption h3 {
    font-size: 28px;
  }

  .media-dialog__nav {
    top: calc(50% - 72px);
    width: 42px;
    height: 42px;
  }

  .media-dialog__nav--previous {
    left: 10px;
  }

  .media-dialog__nav--next {
    right: 10px;
  }

  .feedback-form {
    padding: 22px;
  }

  .feedback-choice-grid {
    grid-template-columns: 1fr;
  }

  .final-cta__inner {
    padding: 64px 0;
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    gap: 22px;
  }

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

@media (max-width: 380px) {
  .site-brand__text {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 10px;
  }
}
