:root {
  --navy: #202d44;
  --navy-soft: #2d3b49;
  --olive: #526d47;
  --olive-deep: #3f5636;
  --olive-mid: #5c7852;
  --sage: #93a989;
  --sage-soft: #dde7d8;
  --sage-wash: #eff3ec;
  --gold: #bea66f;
  --gold-soft: #e8d9b0;
  --cream: #f8f5ef;
  --cream-deep: #efe8da;
  --paper: #fffcf7;
  --ink: #2d3b49;
  --muted: #5d6a62;
  --line: rgba(82, 109, 71, 0.18);
  --shadow: 0 18px 50px rgba(32, 45, 68, 0.08);
  --radius: 22px;
  --header-h: 84px;
  --max: 1120px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", Calibri, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

a {
  color: var(--olive);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--olive-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.85rem;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--navy-soft);
  max-width: 42rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
  min-width: 0;
}

.hero-grid > *,
.split > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
}

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

.skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
  flex: 0 1 auto;
}

.brand img {
  height: 52px;
  width: auto;
  max-width: min(260px, 62vw);
}

.brand-text {
  display: none;
  line-height: 1.05;
}

.brand-text small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem 0.95rem;
}

.nav a {
  color: var(--navy-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--olive);
  border-bottom-color: var(--gold);
}

.nav .btn {
  border-bottom: 0 !important;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--olive);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { background: var(--olive-deep); transform: translateY(-1px); }

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

.btn-gold:hover { background: #152033; }

.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--line);
}

.btn-ghost:hover { background: var(--sage-wash); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn-row .btn {
  max-width: 100%;
}

/* Banner */
.page-banner {
  position: relative;
  min-height: min(78vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f7f4ee;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 12%;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 45, 68, 0.78) 0%, rgba(32, 45, 68, 0.42) 52%, rgba(32, 45, 68, 0.18) 100%),
    linear-gradient(180deg, rgba(32, 45, 68, 0.22) 0%, rgba(32, 45, 68, 0.5) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: left;
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
  padding: 5.2rem 0 4.4rem;
}

.page-banner-content > * {
  max-width: 50rem;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 0.7em;
}

.page-banner h1 span {
  display: block;
  color: var(--gold-soft);
}

.page-banner .eyebrow {
  color: var(--gold-soft);
}

.page-banner .lede {
  color: #eef1ea;
  margin-inline: 0;
}

.page-banner .tagline {
  color: #d7dfd1;
}

.page-banner .btn-row {
  justify-content: flex-start;
}

.page-banner .btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
}

.page-banner.is-inner {
  min-height: 340px;
}

.page-banner.is-inner .page-banner-content {
  padding: 3.6rem 0 3.2rem;
}

.page-banner.is-inner h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  margin-bottom: 0.4em;
}

.page-banner.is-inner .lede {
  margin-bottom: 0;
}

.page-banner.is-inner .page-banner-img {
  object-position: center 22%;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(147, 169, 137, 0.28), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 span {
  display: block;
  color: var(--olive);
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  border-radius: 28px 80px 28px 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 420px;
  aspect-ratio: 4 / 5;
}

.hero-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: rgba(248, 245, 239, 0.94);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.tagline {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight { padding: 3.5rem 0; }

.band-olive {
  background: var(--olive);
  color: #f4f7f1;
}

.band-olive h2,
.band-olive h3 { color: #fff; }

.band-olive .eyebrow { color: var(--gold-soft); }

.band-navy {
  background: var(--navy);
  color: #e7ece6;
}

.band-navy h2,
.band-navy h3 { color: #fff; }

.band-sage { background: var(--sage-wash); }
.band-paper { background: var(--paper); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Cards */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.25rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(32, 45, 68, 0.04);
}

.grid-2 > .card,
.grid-3 > .card,
.grid-4 > .card {
  height: 100%;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage-wash);
  color: var(--olive);
  margin-bottom: 1rem;
}

.card .icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.card h3 { margin-bottom: 0.45rem; }

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

.pillar-card {
  text-align: center;
  padding-top: 2rem;
}

.pillar-card .icon {
  margin-inline: auto;
  width: 58px;
  height: 58px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.pillar-card .icon svg {
  width: 24px;
  height: 24px;
}

/* Timeline / day */
.day-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.day-table th,
.day-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.day-table th {
  background: var(--olive);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.day-table tr:last-child td { border-bottom: 0; }
.day-table td:first-child {
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
  width: 9.5rem;
}

.day-table strong { color: var(--navy); display: block; margin-bottom: 0.15rem; }

.day-cards { display: none; }

.day-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
}

.day-card time {
  display: block;
  font-weight: 700;
  color: var(--olive);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* Trimesters */
.season {
  position: relative;
  padding: 2rem 1.6rem 1.7rem;
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 5px solid var(--olive);
  box-shadow: var(--shadow);
}

.season.growing { border-top-color: var(--sage); }
.season.flourishing { border-top-color: var(--gold); }

.season .phase {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}

/* Lists */
.soft-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.soft-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
}

.soft-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.compare .card h3 {
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--olive);
}

.together {
  margin-top: 1.2rem;
  background: var(--navy);
  color: #eef3ea;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  text-align: center;
}

.together h3 { color: #fff; margin: 0 0 0.3rem; }

/* Tuition */
.price-hero {
  background: var(--navy);
  color: #e7ece6;
  border: 0;
  border-radius: 28px;
  padding: 3rem 2rem 2.6rem;
  text-align: center;
  box-shadow: 0 24px 50px rgba(32, 45, 68, 0.18);
}

.price-hero .eyebrow {
  color: var(--gold-soft);
}

.price-hero p {
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: 0;
  color: #d5ddd0;
}

.price-hero .price {
  color: #fff;
  max-width: none;
}

.price {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  color: #fff;
  line-height: 0.9;
  margin: 0.5rem 0 0.35rem;
}

.price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.7rem;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.fee-row:last-child { border-bottom: 0; }

.note {
  background: var(--sage-wash);
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
}

/* Forms */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0.9rem 0 0.35rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ink);
}

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

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--sage);
  border-color: var(--olive);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.form-grid .full { grid-column: 1 / -1; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form.is-sent .form-fields { display: none; }
.form.is-sent .form-success { display: block; }

/* Quote */
.pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  color: var(--navy);
  line-height: 1.35;
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.feel-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.feel-list span {
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #d5ddd0;
  padding: 3.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer a { color: #e8efe3; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 0.8rem;
  background: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
}

.crop-caption {
  overflow: hidden;
}

.crop-caption img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}

.legal {
  padding-top: 1.1rem;
  font-size: 0.85rem;
  color: #9aa894;
}

.footer-nav {
  display: grid;
  gap: 0.35rem;
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-lg > * + * { margin-top: 1.1rem; }

.founder-grid {
  margin-top: 2rem;
}

.founder-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(32, 45, 68, 0.04);
  text-align: left;
  padding: 1.5rem 0 1.6rem;
}

.founder-photo {
  width: 168px;
  height: 210px;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, var(--sage-wash) 0%, var(--cream-deep) 100%);
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-card h3 {
  margin-bottom: 0.25rem;
  padding: 0 1.4rem;
  text-align: center;
}

.founder-role {
  margin: 0 0 0.7rem;
  padding: 0 1.4rem;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.founder-card p,
.founder-summary {
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}

.bio-more {
  margin: 0.4rem 1.5rem 0;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.bio-more summary {
  cursor: pointer;
  color: var(--olive);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
}

.bio-more summary::-webkit-details-marker,
.bio-more summary::marker {
  display: none;
  content: "";
}

.bio-more .less { display: none; }
.bio-more[open] .more { display: none; }
.bio-more[open] .less { display: inline; }

.bio-body {
  margin-top: 0.95rem;
}

.bio-body h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 1rem 0 0.4rem;
}

.bio-body h4:first-child { margin-top: 0; }

.bio-body p,
.bio-body ul {
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
}

.bio-body ul {
  padding-left: 1.15rem;
}

.bio-body li {
  margin: 0.2rem 0;
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-block {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.intro-block .pullquote {
  margin-bottom: 0.85rem;
}

.intro-block p:last-child {
  margin-bottom: 0;
  color: var(--navy-soft);
}

.intro-block .btn-row {
  justify-content: center;
}

hr.ornament {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.4rem 0;
}

@media (max-width: 1180px) {
  .hero-grid,
  .split,
  .split.reverse,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse { direction: ltr; }

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

  .hero-photo img { min-height: 280px; border-radius: 24px; }

  .nav-toggle { display: grid; place-items: center; }

  .nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.2rem 1.3rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

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

  .nav a {
    padding: 0.75rem 0.4rem;
    border-bottom: 1px solid var(--line);
  }

  .nav .btn {
    margin-top: 0.6rem;
    width: 100%;
  }

  .brand img { height: 42px; }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3,
  .compare,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .day-table { display: none; }
  .day-cards { display: grid; gap: 0.8rem; }

  .hero { padding: 2.6rem 0 3rem; }

  .page-banner { min-height: 520px; }

  .page-banner.is-inner { min-height: 260px; }

  .page-banner.is-inner .page-banner-content { padding: 2.6rem 0 2.4rem; }

  .page-banner-img { object-position: center 0; }

  .page-banner::after {
    background:
      linear-gradient(90deg, rgba(32, 45, 68, 0.82) 0%, rgba(32, 45, 68, 0.5) 70%, rgba(32, 45, 68, 0.28) 100%),
      linear-gradient(180deg, rgba(32, 45, 68, 0.28) 0%, rgba(32, 45, 68, 0.72) 100%);
  }

  .page-banner-content { padding: 3.4rem 0 3rem; }

  .section { padding: 3.4rem 0; }

  .brand-text { display: none; }

  .form { padding: 1.2rem; }

  .btn-row { flex-direction: column; align-items: stretch; }

  .btn-row .btn { width: 100%; }

  .brand img { max-width: 180px; height: 40px; }
}

@media (min-width: 640px) and (max-width: 980px) {
  .brand-text { display: block; }
}
