/* ==========================================================
   Seed To Bloom Early Learning — Shared Stylesheet
   ========================================================== */

:root {
  --cream: #FBF8F1;
  --cream-dark: #F3EDDF;
  --ink: #2E3A2F;
  --ink-soft: #55614F;
  --green: #4A6B4D;
  --green-dark: #35513B;
  --sage: #A8BFA0;
  --sage-light: #DCE5D4;
  --terracotta: #C96F4A;
  --terracotta-soft: #E8C4B0;
  --gold: #E9B44C;
  --gold-soft: #F6E3BC;
  --blue-soft: #C9DCDA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(46, 58, 47, 0.08);
  --shadow-md: 0 8px 24px rgba(46, 58, 47, 0.12);
  --shadow-lg: 0 16px 40px rgba(46, 58, 47, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

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

a { color: var(--green); }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--green-dark);
  color: #F2F0E4;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 9px 16px;
}
.announce a { color: var(--gold); font-weight: 700; text-decoration: none; }
.announce a:hover { text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 107, 77, 0.12);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 54px;
  width: 54px;
  object-fit: contain;
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--green-dark); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green-dark); }

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease) !important;
}

.indent {
    display: inline-block;
    padding-left: 30px; /* Adjust as needed */
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--sage-light) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero p.lede {
  font-size: 1.13rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
  max-width: 46ch;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.badge {
  background: var(--white);
  border: 1px solid var(--sage-light);
  color: var(--green-dark);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-snap { position: relative; }
.hero-snap::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  transform: rotate(-2.5deg);
}
.hero-snap::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 112px;
  height: 32px;
  background: rgba(233, 180, 76, 0.5);
  transform: translateX(-50%) rotate(-4deg);
  border-radius: 4px;
  z-index: 3;
}
.hero-snap .snap-flora {
  position: absolute;
  bottom: -30px;
  right: -22px;
  width: 92px;
  z-index: 3;
  pointer-events: none;
}
.hero-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  transform: rotate(2deg);
  box-shadow: var(--shadow-lg);
}
.hero-img .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-img .slide.active {
  opacity: 1;
  animation: kenburns 7s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img .slide.active { animation: none; }
}

/* Decorative floating leaves */
.leaf {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.35;
  animation: floaty 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(8deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: #B35E3C; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
  margin-left: 12px;
}
.btn-ghost:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Feature rows (home) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 44px 0;
}
.feature-row .f-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.feature-row .f-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.feature-row:hover .f-img img { transform: scale(1.04); }
.feature-row.flip .f-img { order: 2; }
.feature-row h3 { font-size: 1.7rem; margin-bottom: 14px; }
.feature-row p { color: var(--ink-soft); }
.f-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--green-dark);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(74, 107, 77, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon { font-size: 1.9rem; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- Timeline (Programs) ---------- */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(var(--sage), var(--terracotta-soft));
  border-radius: 3px;
}
.t-item {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(74, 107, 77, 0.1);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.t-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.t-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 32px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--sage-light);
}
.t-time {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--sage-light);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.t-item h3 { font-size: 1.22rem; margin-bottom: 8px; }
.t-item p { font-size: 0.97rem; color: var(--ink-soft); }

/* ---------- Pricing tables ---------- */
.price-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(74, 107, 77, 0.1);
}
.price-table-wrap .pt-head {
  background: var(--green-dark);
  color: #F2F0E4;
  padding: 22px 30px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pt-head h3 { color: #fff; font-size: 1.4rem; }
.pt-head span { font-size: 0.88rem; opacity: 0.85; }
table.pricing {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
table.pricing th, table.pricing td {
  padding: 18px 30px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}
table.pricing thead th {
  background: var(--sage-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
table.pricing td.price {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}
table.pricing tbody tr { transition: background 0.2s var(--ease); }
table.pricing tbody tr:hover { background: var(--cream); }
table.pricing tbody tr:last-child td { border-bottom: none; }
.pt-note {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 20px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.status-banner {
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--terracotta-soft);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 48px;
  font-weight: 700;
  color: var(--terracotta);
}

/* ---------- About ---------- */
.bio {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 84px;
}
.bio.flip { grid-template-columns: 1fr 300px; }
.bio.flip .bio-img { order: 2; }
.bio-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 110px;
}
.bio-img img { width: 100%; aspect-ratio: 3.4/4; object-fit: cover; }
.bio h3 { font-size: 1.8rem; margin-bottom: 4px; }
.bio .creds {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 22px;
}
.bio h4 {
  font-size: 1.12rem;
  margin: 26px 0 10px;
  color: var(--green);
}
.bio p { color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.g-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 38, 30, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s var(--ease); }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.lightbox .lb-close {
  position: absolute;
  top: 22px; right: 30px;
  background: none; border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Location / hours ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.loc-grid iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(74, 107, 77, 0.1);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  margin-top: 26px;
}
.hours-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.hours-card ul { list-style: none; }
.hours-card li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--cream-dark);
  font-size: 0.97rem;
}
.hours-card li:last-child { border-bottom: none; }
.hours-card li strong { color: var(--green-dark); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #F2F0E4;
  text-align: center;
  padding: 76px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.9; margin-bottom: 30px; }
.cta-band .btn-primary { background: var(--gold); color: var(--green-dark); }
.cta-band .btn-primary:hover { background: #F0C468; }

/* ---------- Footer ---------- */
.site-footer {
  background: #253326;
  color: #C9D3C4;
  padding: 60px 0 30px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.site-footer a { color: #DCE5D4; text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  opacity: 0.75;
}
.social-links { display: flex; gap: 14px; margin-top: 14px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-links a:hover { background: var(--terracotta); transform: translateY(-3px); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--sage-light), var(--cream));
  text-align: center;
  padding: 64px 0 58px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 62ch; margin: 0 auto; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 0; gap: 36px; }
  .feature-row, .loc-grid, .bio, .bio.flip { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.flip .f-img, .bio.flip .bio-img { order: 0; }
  .bio-img { position: static; max-width: 380px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4%;
    gap: 2px;
    box-shadow: var(--shadow-md);
    display: none;
    border-bottom: 1px solid rgba(74,107,77,0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .card-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .btn-ghost { margin-left: 0; margin-top: 12px; }
  table.pricing th, table.pricing td { padding: 14px 16px; }
  table.pricing td.price { font-size: 1.05rem; }
}

/* ==========================================================
   Warmth pass — florals, waves, colored tables, photo band
   ========================================================== */

/* Decorative flowers */
.flora {
  position: absolute;
  width: 110px;
  opacity: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.flora.sm { width: 76px; }
.flora.lg { width: 150px; }
.flora.sway { animation: floaty 9s ease-in-out infinite; }

.hero .container,
.page-hero .container { position: relative; z-index: 1; }

.page-hero { position: relative; overflow: hidden; }

/* Hand-drawn squiggle under headings */
.section-head h2::after,
.page-hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 12px;
  margin: 16px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 12'%3E%3Cpath d='M2 7 Q 14 2 26 7 T 50 7 T 74 7 T 94 7' fill='none' stroke='%23C96F4A' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Wavy section dividers */
.wave-div { line-height: 0; }
.wave-div svg { display: block; width: 100%; height: 46px; }

/* Softer, handmade badge look */
.badge { border: 1.5px dashed var(--sage); }

/* Full-width photo band */
.photo-band { position: relative; height: 620px; overflow: hidden; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.pb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  background: linear-gradient(rgba(37, 51, 38, 0.18), rgba(37, 51, 38, 0.38));
}
.pb-overlay blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  max-width: 58ch;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Illustrated timeline icons */
.t-illus {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  pointer-events: none;
  user-select: none;
}
.t-item:hover .t-illus { animation: floaty 3.5s ease-in-out infinite; }
.timeline .t-item { padding-right: 145px; }

/* Tuition tables — colored columns like the original */
table.pricing thead th:nth-child(2) { background: var(--gold); color: #4A3A1A; }
table.pricing thead th:nth-child(3) { background: #9FC4BF; color: #1F3B36; }
table.pricing td:nth-child(2) { background: #FBF0D2; }
table.pricing td:nth-child(3) { background: #E5EFED; }

/* Florals on the CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band .flora { opacity: 0.3; filter: brightness(1.7); }
.cta-band .container { position: relative; z-index: 1; }

@media (max-width: 640px) {
  .flora { width: 66px; }
  .flora.lg { width: 96px; }
  .t-illus { width: 56px; right: 16px; }
  .timeline .t-item { padding-right: 88px; }
  .photo-band { height: 400px; }
}

/* ==========================================================
   Waitlist form, FAQ, testimonials
   ========================================================== */

.btn-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  margin-left: 12px;
}
.btn-light:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-3px); }

/* Waitlist form */
.wl-form {
  background: var(--white);
  border: 1px solid rgba(74, 107, 77, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--sage-light);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 107, 77, 0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.wl-form .btn { width: 100%; margin-top: 24px; border: none; cursor: pointer; font-family: inherit; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* FAQ accordion */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(74, 107, 77, 0.12);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--green-dark);
  position: relative;
  transition: background 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { background: var(--cream); }
.faq details p { padding: 0 24px 20px; color: var(--ink-soft); font-size: 0.98rem; }

/* Testimonials */
.testimonial { position: relative; padding-top: 44px; align-self: start; }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta-soft);
}
.testimonial .t-author {
  margin-top: 16px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green);
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .wl-form { padding: 26px 20px; }
  .btn-light { margin-left: 0; margin-top: 12px; }
}

/* ==========================================================
   Side scroll animations (Programs page)
   ========================================================== */

.side-deco {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 130px;
  pointer-events: none;
  z-index: 1;
}
.side-deco-wide { width: 235px; }
.vine-branch { transform-origin: left center; }
.side-deco-left { left: max(12px, 3vw); }
.side-deco-right { right: max(12px, 4vw); }
.side-deco-left svg { width: 100%; height: 100%; }

/* Vine grows with scroll (stroke offset + leaf scale set by JS each frame) */
.vine-leaf {
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
}

/* Butterfly */
.butterfly {
  position: absolute;
  top: 20vh;
  width: 74px;
  animation: bfly-sway 6s ease-in-out infinite;
}
.butterfly svg { width: 100%; overflow: visible; }
.butterfly .wing {
  transform-box: view-box;
  transform-origin: 50px 55px;
  animation: bfly-flap 0.55s ease-in-out infinite alternate;
}
@keyframes bfly-flap {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0.45); }
}
@keyframes bfly-sway {
  0%, 100% { transform: translateX(0) rotate(-4deg); }
  50%      { transform: translateX(-16px) rotate(5deg); }
}

@media (max-width: 1250px) {
  .side-deco { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .vine-leaf { transform: scale(1); }
  .butterfly, .butterfly .wing { animation: none; }
}
