/* ============================================
   Glenwood Grove Early Learning
   Shared stylesheet
   ============================================ */

:root {
  --sage-deep: #4a5d3a;
  --sage: #6b7e54;
  --sage-soft: #aab89a;
  --sage-mist: #e6ebde;
  --cream: #f7f3ec;
  --cream-warm: #efe8db;
  --terracotta: #c87454;
  --terracotta-soft: #e8b8a4;
  --walnut: #3d342a;
  --walnut-soft: #6b5d4e;
  --wood: #a88860;
  --white: #fefdfb;
  --shadow-sm: 0 2px 8px rgba(61, 52, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(61, 52, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(61, 52, 42, 0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --container: 1180px;
  --container-narrow: 880px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--walnut);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--walnut);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: -apple-system, "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 0.8em;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.2;
  font-family: inherit;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--white);
  border-color: var(--sage-deep);
}
.btn-primary:hover {
  background: var(--walnut);
  color: var(--white);
  border-color: var(--walnut);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}
.btn-secondary:hover {
  background: var(--sage-deep);
  color: var(--white);
}
.btn-accent {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-accent:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(107, 126, 84, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 236, 0.92);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--walnut);
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--walnut);
}
.brand-text small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  font-family: -apple-system, "Inter", sans-serif;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--walnut);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a.active {
  color: var(--sage-deep);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--walnut);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(107, 126, 84, 0.15);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(107, 126, 84, 0.1);
    width: 100%;
  }
  .nav-links a.active::after { display: none; }
  .nav-links .nav-cta {
    margin: 12px 0 0;
    width: 100%;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  margin-bottom: 0.4em;
}
.hero-copy .lead {
  font-size: 1.2rem;
  color: var(--walnut-soft);
  margin-bottom: 1.8em;
  max-width: 32em;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--sage-soft), var(--wood));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image .placeholder-leaf {
  width: 40%;
  opacity: 0.4;
  color: var(--cream);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 52, 42, 0) 50%, rgba(61, 52, 42, 0.15) 100%);
}
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 64px;
  }
  .hero-image { aspect-ratio: 5 / 4; max-height: 420px; }
}

/* ============================================
   Hero (stacked variant for landscape photos)
   ============================================ */
.hero-stacked .hero-text {
  padding: 72px 0 32px;
}
.hero-stacked .hero-text .lead {
  margin-left: auto;
  margin-right: auto;
}
.hero-stacked .hero-text .hero-ctas {
  justify-content: center;
}
.hero-stacked .hero-photo {
  padding: 16px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-stacked .hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) {
  .hero-stacked .hero-text { padding: 56px 0 20px; }
  .hero-stacked .hero-photo { padding: 8px 0 56px; }
  .hero-stacked .hero-photo img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
  }
}

/* Decorative grove background */
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 126, 84, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 90px 0;
}
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream-warm); }
.section-sage { background: var(--sage-mist); }
.section-walnut {
  background: var(--walnut);
  color: var(--cream);
}
.section-walnut h2,
.section-walnut h3 { color: var(--cream); }
.section-walnut .eyebrow { color: var(--terracotta-soft); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--walnut-soft);
}
.section-head.left { text-align: left; margin-left: 0; }

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ============================================
   Feature cards (3-column)
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107, 126, 84, 0.08);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sage-deep);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 0.4em; }
.feature p {
  margin-bottom: 0;
  color: var(--walnut-soft);
  font-size: 0.98rem;
}
@media (max-width: 880px) {
  .features { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   Who-we-serve / 2-col cards
   ============================================ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(107, 126, 84, 0.1);
  position: relative;
}
.serve-card .age {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.serve-card h3 { margin-bottom: 0.4em; }
.serve-card p { color: var(--walnut-soft); margin-bottom: 0; }
@media (max-width: 700px) {
  .serve-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Waitlist banner
   ============================================ */
.waitlist-banner {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254, 253, 251, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist-banner h2 {
  color: var(--cream);
  margin-bottom: 0.4em;
}
.waitlist-banner p {
  color: var(--sage-mist);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.8em;
}
.waitlist-banner .btn-accent {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.waitlist-banner .btn-accent:hover {
  background: var(--cream);
  color: var(--walnut);
  border-color: var(--cream);
}

/* ============================================
   Program cards (programs.html)
   ============================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 126, 84, 0.1);
  display: flex;
  flex-direction: column;
}
.program-card-header {
  background: var(--sage-mist);
  padding: 32px 36px 28px;
  border-bottom: 1px solid rgba(107, 126, 84, 0.12);
}
.program-card.preschool .program-card-header {
  background: linear-gradient(135deg, var(--terracotta-soft), var(--cream-warm));
}
.program-card-header h3 {
  margin-bottom: 0.2em;
  font-size: 1.7rem;
}
.program-card-header .ages {
  color: var(--walnut-soft);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.program-card-body { padding: 28px 36px 36px; flex: 1; }
.program-card-body ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.program-card-body li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 0.97rem;
  color: var(--walnut-soft);
  border-bottom: 1px solid rgba(107, 126, 84, 0.08);
}
.program-card-body li:last-child { border-bottom: none; }
.program-card-body li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%234a5d3a'%3E%3Cpath d='M10 3L4.5 8.5L2 6'  stroke='%234a5d3a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.program-card-body li strong { color: var(--walnut); font-weight: 600; }
.tuition {
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-top: 12px;
}
.tuition .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: var(--walnut);
  font-weight: 600;
  line-height: 1.1;
}
.tuition .price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--walnut-soft);
  margin-top: 4px;
}
.tuition .reg-fee {
  font-size: 0.9rem;
  color: var(--walnut-soft);
  margin-top: 8px;
}
@media (max-width: 800px) {
  .program-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Two-column content layouts
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.text-right .split-text { order: 2; }
.split-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-soft), var(--wood));
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-media .placeholder-leaf {
  width: 35%;
  opacity: 0.4;
  color: var(--cream);
}
.split-media-photo {
  background: transparent;
  padding: 0;
}
.split-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.text-right .split-text { order: 0; }
  .split-media { aspect-ratio: 5 / 4; max-height: 440px; }
}

/* ============================================
   Bullet lists with check marks
   ============================================ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 1rem;
  color: var(--walnut);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  background: var(--sage-mist);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M16 8L9.5 14.5L6 11' stroke='%234a5d3a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   Curriculum / pillar cards (4-col)
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 126, 84, 0.1);
  box-shadow: var(--shadow-sm);
}
.pillar .pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--terracotta-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--walnut);
}
.pillar .pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.pillar p { font-size: 0.93rem; color: var(--walnut-soft); margin-bottom: 0; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================
   Daily schedule timeline
   ============================================ */
.schedule {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.schedule::before {
  content: "";
  position: absolute;
  left: 130px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--sage-soft);
}
.schedule-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  padding: 18px 0;
  position: relative;
  align-items: start;
}
.schedule-item .time {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  color: var(--terracotta);
  font-weight: 600;
  text-align: right;
  padding-top: 2px;
}
.schedule-item .activity {
  padding-left: 14px;
  position: relative;
}
.schedule-item .activity::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  z-index: 2;
}
.schedule-item .activity h4 {
  margin: 0 0 4px;
  font-family: -apple-system, "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--walnut);
}
.schedule-item .activity p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--walnut-soft);
}
@media (max-width: 600px) {
  .schedule::before { left: 14px; }
  .schedule-item { grid-template-columns: 1fr; gap: 4px; padding-left: 36px; }
  .schedule-item .time { text-align: left; }
  .schedule-item .activity { padding-left: 0; }
  .schedule-item .activity::before { left: -29px; }
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(107, 126, 84, 0.2);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: var(--walnut);
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  line-height: 1.3;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--sage-deep);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-q::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-a-inner {
  padding: 0 0 22px;
  color: var(--walnut-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
}

/* ============================================
   Page hero (smaller, for inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(180deg, var(--sage-mist) 0%, var(--cream) 100%);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200, 116, 84, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-30%, -30%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 0.4em; }
.page-hero p {
  font-size: 1.15rem;
  color: var(--walnut-soft);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 700px) { .page-hero { padding: 56px 0 48px; } }

/* ============================================
   Staff cards
   ============================================ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.staff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107, 126, 84, 0.1);
  box-shadow: var(--shadow-sm);
}
.staff-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sage-soft), var(--wood));
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-photo .placeholder-leaf {
  width: 30%;
  opacity: 0.45;
  color: var(--cream);
}
.staff-body { padding: 24px 28px 28px; }
.staff-body h3 { margin-bottom: 4px; }
.staff-role {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}
.staff-body p { color: var(--walnut-soft); font-size: 0.96rem; margin-bottom: 0; }
@media (max-width: 700px) { .staff-grid { grid-template-columns: 1fr; } }

/* ============================================
   Contact / waitlist page
   ============================================ */
.waitlist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107, 126, 84, 0.1);
  text-align: center;
}
.waitlist-card .eyebrow { color: var(--terracotta); }
.waitlist-card h2 { margin-bottom: 0.4em; }
.waitlist-card p {
  color: var(--walnut-soft);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.6em;
}
.tour-expect {
  background: var(--sage-mist);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 0 auto 24px;
  max-width: 520px;
  text-align: left;
}
.tour-expect h3 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-family: -apple-system, "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  text-align: center;
}
.tour-expect ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tour-expect li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  font-size: 0.96rem;
  color: var(--walnut);
  line-height: 1.5;
}
.tour-expect li::before {
  content: "›";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.15rem;
}
.tour-expect li:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .tour-expect { padding: 18px 20px; }
}

.inquiry-form-embed {
  margin: 24px 0 12px;
}
.inquiry-form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  /* Height controlled by Tally's dynamicHeight via postMessage */
}
.form-fallback {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem !important;
  color: var(--walnut-soft);
  text-align: center;
}
.form-fallback a { font-weight: 500; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(107, 126, 84, 0.1);
  text-align: center;
}
.contact-card .feature-icon { margin: 0 auto 16px; }
.contact-card h3 { margin-bottom: 0.4em; font-size: 1.2rem; }
.contact-card p { color: var(--walnut-soft); margin-bottom: 0; font-size: 0.95rem; }
.contact-card a { color: var(--sage-deep); font-weight: 500; }
@media (max-width: 800px) {
  .waitlist-card { padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--walnut);
  color: var(--sage-mist);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-text { color: var(--cream); }
.footer-brand .brand-text small { color: var(--sage-soft); }
.footer-brand p {
  margin-top: 14px;
  color: var(--sage-soft);
  font-size: 0.95rem;
  max-width: 28em;
}
.footer-col h4 {
  color: var(--cream);
  font-family: -apple-system, "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--sage-mist);
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--cream); }
.footer-col p {
  color: var(--sage-mist);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--sage-soft);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: flex-start; }
}

/* ============================================
   Founders Pricing (on .tuition cards)
   ============================================ */
.founders-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 6px;
}
.tuition .price .per-month {
  font-size: 1rem;
  color: var(--walnut-soft);
  font-weight: 500;
  font-family: -apple-system, "Inter", sans-serif;
  margin-left: 2px;
}
.tuition .price-published {
  font-size: 0.88rem;
  color: var(--walnut-soft);
  margin-top: 6px;
  text-decoration: line-through;
  text-decoration-color: rgba(107, 93, 78, 0.5);
}

/* ============================================
   Founders explainer card (programs page)
   ============================================ */
.founders-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(200, 116, 84, 0.25);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.founders-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200, 116, 84, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}
.founders-card h2 { margin-bottom: 0.4em; }
.founders-card > p {
  color: var(--walnut-soft);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.founders-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}
.founders-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.founders-numbers .big {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--walnut);
  line-height: 1;
}
.founders-numbers .suffix {
  color: var(--walnut-soft);
  font-size: 0.95rem;
  margin-left: 2px;
}
.founders-numbers .strikethrough {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--walnut-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(107, 93, 78, 0.5);
}
@media (max-width: 700px) {
  .founders-card { padding: 36px 24px; }
  .founders-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   True cost / calendar split (programs page)
   ============================================ */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.cost-block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.cost-block p {
  color: var(--walnut-soft);
}
@media (max-width: 800px) {
  .cost-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   Balance: structure + play split (approach page)
   ============================================ */
.balance-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.balance-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(107, 126, 84, 0.12);
  box-shadow: var(--shadow-sm);
}
.balance-col h3 { font-size: 1.4rem; margin-bottom: 0.5em; }
.balance-col p { color: var(--walnut-soft); margin-bottom: 0; }
.balance-divider {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.balance-divider svg {
  width: 28px;
  height: 28px;
  display: block;
}
@media (max-width: 800px) {
  .balance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .balance-divider { margin: 0 auto; width: 52px; height: 52px; }
  .balance-divider svg { width: 22px; height: 22px; }
}

/* ============================================
   Five domains (approach page)
   ============================================ */
.domains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.domain {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 126, 84, 0.1);
  box-shadow: var(--shadow-sm);
}
.domain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--terracotta-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--walnut);
}
.domain-icon svg { width: 26px; height: 26px; }
.domain h3 {
  margin-bottom: 0.5em;
  font-size: 1.45rem;
}
.domain-lead {
  color: var(--walnut);
  font-size: 1.02rem;
  margin-bottom: 0.9em;
  font-style: italic;
}
.domain-practice {
  color: var(--walnut-soft);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.65;
}
.domain-practice strong {
  color: var(--sage-deep);
  font-style: normal;
  font-weight: 600;
}
.domain-wide {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 800px) {
  .domains { grid-template-columns: 1fr; }
  .domain-wide { max-width: none; }
}

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
