:root {
  --ink: #172f2b;
  --muted: #64736f;
  --cream: #fff8ef;
  --paper: #ffffff;
  --line: #eadfce;
  --teal: #20aaa4;
  --teal-dark: #13847f;
  --gold: #f7c948;
  --coral: #ff6b45;
  --sage: #77bfa3;
  --aqua: #44bed0;
  --plum: #3a2f73;
  --soft-green: #eef9f4;
  --soft-gold: #fff4c7;
  --shadow: 0 22px 60px rgba(31, 24, 12, 0.12);
  --shadow-soft: 0 14px 34px rgba(31, 24, 12, 0.08);
  --radius: 28px;
  --section-x: clamp(20px, 6vw, 92px);
  --section-y: clamp(72px, 8vw, 118px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 96px;
  padding: 8px var(--section-x);
  border-bottom: 1px solid rgba(234, 223, 206, 0.78);
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 330px;
}

.brand-logo {
  width: clamp(300px, 24vw, 390px);
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.brand-copy {
  display: none;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(31, 24, 12, 0.08);
}

.main-nav a {
  position: relative;
  padding: 10px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--nav-color, var(--coral));
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:not(.nav-cta):hover {
  background: rgba(255, 107, 69, 0.1);
  background: color-mix(in srgb, var(--nav-color, var(--coral)) 14%, white);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff4f7b, #ff6b45);
  box-shadow: 0 14px 30px rgba(255, 79, 123, 0.26);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.9);
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(70px, 8vw, 104px) var(--section-x) clamp(74px, 8vw, 98px);
  color: #fff;
  background: #101817;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 32px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  z-index: 1;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.22);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.76), rgba(7, 20, 18, 0.48) 38%, rgba(7, 20, 18, 0.12) 72%),
    linear-gradient(0deg, rgba(7, 20, 18, 0.66), rgba(7, 20, 18, 0.02) 62%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center 42%);
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1400ms ease, transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding-top: 0;
  transform: translateY(-18px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  width: auto;
  max-width: max-content;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff4a7;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.55rem, 4.15vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: #fff;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-content p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-lede {
  position: relative;
  padding-left: 14px;
  border-left: 3px solid #fff4a7;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(2, 20, 18, 0.16);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
}

.hero-proof span:nth-child(2)::before {
  background: var(--aqua);
}

.hero-proof span:nth-child(3)::before {
  background: var(--sage);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: var(--section-x);
  bottom: 38px;
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dots span.is-active {
  background: #fff;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #101817;
  box-shadow: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 20, 18, 0.16), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.enroll-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px var(--section-x);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 244, 199, 0.92), rgba(238, 249, 244, 0.94)),
    #fff;
  border-top: 1px solid rgba(234, 223, 206, 0.78);
  border-bottom: 1px solid rgba(234, 223, 206, 0.78);
}

.enroll-banner p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.enroll-banner a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(255, 107, 69, 0.24);
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 42px var(--section-x);
  background:
    linear-gradient(180deg, #fff, #fff8ef),
    var(--paper);
}

.intro-strip article,
.program-grid article,
.trust-grid article,
.inquiry-form,
.founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.intro-strip article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.intro-strip article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(255, 107, 69, 0.1);
}

.intro-strip article:nth-child(2)::after {
  background: rgba(68, 190, 208, 0.12);
}

.intro-strip article:nth-child(3)::after {
  background: rgba(119, 191, 163, 0.14);
}

.intro-strip article:nth-child(4)::after {
  background: rgba(247, 201, 72, 0.16);
}

.intro-strip article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-strip p,
.section-copy p,
.section-heading p:not(.eyebrow),
.founder-card p,
.program-grid p,
.trust-grid p,
.contact-copy p {
  color: var(--muted);
}

.section {
  padding: var(--section-y) var(--section-x);
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background: var(--cream);
}

.section-copy,
.section-heading {
  max-width: 780px;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-points span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 107, 69, 0.09) 0 180px, transparent 181px),
    linear-gradient(180deg, #f3fbf7, #fff8ef);
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(234, 223, 206, 0.9);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.founder-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.18);
}

.founder-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 34px 34px 10px 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

.founder-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.founder-caption strong {
  font-size: 0.95rem;
}

.founder-caption span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.founder-message {
  position: relative;
  z-index: 1;
  align-self: center;
}

.founder-message h2 {
  max-width: 780px;
}

.founder-message blockquote {
  margin: 26px 0 0;
  padding: 22px 24px;
  border-left: 5px solid var(--coral);
  border-radius: 24px;
  color: var(--ink);
  background: #fff4c7;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 750;
  line-height: 1.35;
}

.programs-section {
  background: #fff;
}

.programs-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 201, 72, 0.14) 0 170px, transparent 171px),
    #fff;
}

.programs-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.programs-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.programs-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
  counter-reset: program;
}

.program-grid article {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-grid article:nth-child(4),
.program-grid article:nth-child(5) {
  grid-column: span 6;
}

.program-grid article::before {
  counter-increment: program;
  content: counter(program, decimal-leading-zero);
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 107, 69, 0.9);
  box-shadow: 0 12px 26px rgba(31, 24, 12, 0.16);
  font-size: 0.8rem;
  font-weight: 950;
}

.program-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-grid .program-feature {
  grid-column: span 4;
  grid-row: auto;
}

.program-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-grid .program-feature img {
  aspect-ratio: 4 / 3;
}

.program-grid article div {
  display: grid;
  align-content: start;
  flex: 1;
  padding: 24px 24px 26px;
}

.program-grid h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.program-points {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.program-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.program-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral);
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  padding: 4px 0 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 107, 69, 0.8) rgba(234, 223, 206, 0.65);
  scrollbar-width: thin;
}

.gallery-grid img {
  flex: 0 0 min(78vw, 860px);
  width: min(78vw, 860px);
  height: clamp(360px, 48vw, 560px);
  margin: 0;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(255, 244, 199, 0.45), rgba(238, 249, 244, 0.55)),
    #fff;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  scroll-snap-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-grid img:nth-child(2n) {
  flex-basis: min(62vw, 620px);
  width: min(62vw, 620px);
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(234, 223, 206, 0.65);
}

.gallery-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(7, 20, 18, 0.9);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox figure {
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0;
}

.gallery-lightbox img {
  width: 100%;
  max-height: 78vh;
  border: 10px solid #fff;
  border-radius: 26px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox figcaption {
  min-height: 24px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.gallery-close,
.gallery-prev,
.gallery-next {
  position: absolute;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.gallery-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
}

.gallery-prev,
.gallery-next {
  top: 50%;
  min-height: 46px;
  padding: 10px 18px;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 22px;
}

.gallery-next {
  right: 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.trust-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 32px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-grid article::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(255, 107, 69, 0.08);
}

.trust-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-grid article:nth-child(1) {
  background: linear-gradient(145deg, #fff, #ffe9df);
}

.trust-grid article:nth-child(2) {
  background: linear-gradient(145deg, #fff, #e9f8f1);
}

.trust-grid article:nth-child(3) {
  background: linear-gradient(145deg, #fff, #fff1be);
}

.trust-grid article:nth-child(4) {
  background: linear-gradient(145deg, #fff, #eaf4ff);
}

.trust-section {
  background:
    linear-gradient(180deg, #fff, #f3fbf7);
}

.trust-section .section-heading {
  max-width: 980px;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(247, 201, 72, 0.16) 0 170px, transparent 171px),
    linear-gradient(180deg, #f3fbf7, #fff);
}

.approach-section .section-copy {
  max-width: 920px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.approach-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.approach-points span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff4c7;
  font-weight: 850;
}

.approach-image {
  position: relative;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 38px 38px 12px 38px;
  box-shadow: var(--shadow);
}

.approach-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  pointer-events: none;
}

.approach-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(18, 63, 58, 0.92), rgba(58, 47, 115, 0.9)),
    var(--ink);
  color: #fff;
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
}

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

.contact-section {
  background: #f3fbf7;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-details p {
  margin: 0;
}

.contact-details strong {
  display: block;
  color: var(--ink);
}

.contact-details a {
  color: var(--coral);
  font-weight: 850;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 13px;
  background: #fffaf4;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--coral);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 30px var(--section-x);
  color: #dbeee8;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: #abc9c1;
}

.site-footer a {
  display: block;
  text-align: right;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 250px;
    height: 66px;
  }

  .brand-copy span {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    border: 1px solid rgba(234, 223, 206, 0.8);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .intro-strip,
  .program-grid,
  .trust-grid,
  .founder-card,
  .programs-heading,
  .about-section,
  .approach-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .program-grid .program-feature {
    grid-column: span 6;
    grid-row: auto;
  }

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

  .program-grid article,
  .program-grid article:nth-child(4),
  .program-grid article:nth-child(5) {
    grid-column: auto;
  }

  .hero {
    min-height: calc(100vh - 90px);
  }

  .hero::before {
    inset: 22px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2n) {
    flex-basis: min(84vw, 680px);
    width: min(84vw, 680px);
    height: clamp(340px, 58vw, 500px);
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 62px;
  }

  .site-header {
    min-height: 82px;
  }

  .brand-logo {
    width: 188px;
    height: 54px;
  }

  .brand-copy span {
    font-size: 0.92rem;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    top: 82px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 0.78rem;
  }

  .hero-lede {
    padding-left: 12px;
  }

  .hero {
    min-height: 78svh;
    align-items: end;
    padding: 54px 18px 62px;
  }

  .hero-content {
    width: min(420px, 100%);
    transform: none;
  }

  .hero-content p {
    max-width: 360px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 20, 18, 0.58), rgba(7, 20, 18, 0.22) 68%),
      linear-gradient(0deg, rgba(7, 20, 18, 0.82), rgba(7, 20, 18, 0.16) 72%);
  }

  .hero-slide {
    background-position: 58% center;
  }

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

  .hero-dots {
    right: 18px;
    bottom: 24px;
  }

  .hero-dots span {
    width: 24px;
  }

  .enroll-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .contact-actions {
    display: grid;
  }

  .hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .intro-strip,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 14px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 12px;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2n) {
    flex: 0 0 min(82vw, 340px);
    width: min(82vw, 340px);
    height: 360px;
    margin: 0;
    border-radius: 24px;
    object-fit: cover;
    scroll-snap-align: center;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox img {
    max-height: 72vh;
    border-width: 6px;
    border-radius: 20px;
  }

  .gallery-close {
    top: 12px;
    right: 12px;
  }

  .gallery-prev,
  .gallery-next {
    top: auto;
    bottom: 16px;
    min-height: 40px;
    padding: 8px 14px;
    transform: none;
  }

  .program-grid article,
  .program-grid .program-feature,
  .program-grid article:nth-child(4),
  .program-grid article:nth-child(5) {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer a {
    text-align: left;
  }
}
