/* ============================================================
   GOLDEN KIDS MONTESSORI — STYLES
   Warm, editorial, playful but grown-up. Designed for parents.
   ============================================================ */

:root {
  /* Palette: soft pastels — sky blue, blush pink, coral red */
  --cream: #FDFAFB;            /* almost-white blush background */
  --cream-deep: #FCEFF2;       /* light pink section background */
  --gold: #F4A6B8;             /* primary accent — soft coral pink */
  --gold-deep: #D87A91;        /* deeper rose for hover/contrast */
  --gold-soft: #FCE0E7;        /* very pale pink for chips/badges */
  --forest: #6B95C9;            /* primary deep — soft sky blue */
  --forest-deep: #4A78B0;       /* deeper blue for hover/contrast */
  --berry: #E07A8A;             /* coral red accent dot */
  --mint: #B8DDD0;              /* mint pastel for variety */
  --ink: #3A3548;               /* soft plum-charcoal text */
  --ink-soft: #6E6680;          /* muted plum body text */
  --line: rgba(58, 53, 72, 0.08);

  --shadow-sm: 0 2px 12px rgba(107, 149, 201, 0.10);
  --shadow-md: 0 12px 32px rgba(107, 149, 201, 0.14);
  --shadow-lg: 0 24px 60px rgba(216, 122, 145, 0.18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 500; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-deep); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 6px 20px rgba(74, 120, 176, 0.30);
}
.btn-primary:hover {
  background: var(--forest-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 120, 176, 0.40);
}
.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: white;
}
.btn-block { width: 100%; padding: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-top {
  background: var(--forest);
  color: white;
  font-size: 0.85rem;
}
.header-top-inner {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 8px 28px;
  flex-wrap: wrap;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.contact-pill:hover { opacity: 1; color: var(--gold-soft); }

.social-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.25);
  align-self: center;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  opacity: 0.9;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.social-pill:hover {
  opacity: 1;
  color: white;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  color: #3a3742;
  white-space: nowrap;
}
.brand-name em {
  font-style: italic;
  font-weight: 500;
  color: #c4798e;
  font-size: 1.25rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--gold-soft); color: var(--ink); }
.nav-links .nav-cta {
  background: var(--gold);
  color: white;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-deep); color: white; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
  align-self: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-decor { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.blob-1 {
  width: 380px; height: 380px;
  background: var(--gold-soft);
  top: -100px; right: -80px;
}
.blob-2 {
  width: 300px; height: 300px;
  background: #DCE9F5;
  bottom: -100px; left: -60px;
}
.dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
}
.dot-1 { width: 12px; height: 12px; top: 18%; left: 8%; }
.dot-2 { width: 8px; height: 8px; top: 70%; right: 12%; background: var(--berry); }
.dot-3 { width: 14px; height: 14px; bottom: 25%; left: 45%; background: var(--forest); }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 24px 0 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
}
.hero-meta span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft) 0%, var(--cream) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.5;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hero-logo {
  width: 70%;
  height: 70%;
  object-fit: contain;
  /* Logo PNG has ~8% empty space at top. Shift up so it looks centered. */
  transform: translateY(-4%);
}
.sticker {
  position: absolute;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
}
.sticker-1 {
  top: 10%;
  right: -10px;
  color: var(--forest-deep);
  transform: rotate(6deg);
}
.sticker-2 {
  bottom: 12%;
  left: -10px;
  color: var(--gold-deep);
  border-color: var(--forest);
  transform: rotate(-5deg);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '★ ';
  color: var(--gold);
}
.section-head { margin-bottom: 56px; }
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-body p { font-size: 1.05rem; }

/* ===== PILLARS ===== */
.pillars {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.pillars h2, .pillars .section-sub { color: white; }
.pillars .section-sub { opacity: 0.9; }
.pillars .section-tag { color: var(--gold-soft); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 38px; height: 38px; }
.pillar-card h3 { color: white; margin-bottom: 12px; }
.pillar-card p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 0.95rem; }

.pillars-cta {
  text-align: center;
  margin-top: 56px;
}
.pillars .btn-primary {
  background: var(--gold);
  color: white;
}
.pillars .btn-primary:hover {
  background: var(--gold-deep);
  color: white;
}

/* ===== PROGRAMS ===== */
.programs { background: var(--cream-deep); }
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.program-mark {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.program-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.program-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.program-features li {
  padding: 8px 0;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.program-features li::before {
  content: '★';
  color: var(--gold);
  font-size: 1.1rem;
}
.program-link {
  font-weight: 700;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.program-link:hover { color: var(--gold-deep); }

/* ===== CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.carousel {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--cream-deep);
  /* Soft vignette edges */
  mask-image: radial-gradient(ellipse 96% 96% at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 96% 96% at 50% 50%, black 60%, transparent 100%);
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-slide.placeholder-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--cream-deep) 100%);
  color: var(--ink-soft);
  font-family: var(--font-display);
}
.carousel-slide.placeholder-slide span { font-size: 4rem; opacity: 0.4; }
.carousel-slide.placeholder-slide p { font-size: 1.1rem; opacity: 0.6; margin: 0; }
.carousel-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  transition: all 0.2s;
  z-index: 10;
}
.carousel-btn:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: -24px; }
.carousel-next { right: -24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.carousel-dot.active {
  background: var(--forest);
  width: 24px;
  border-radius: 999px;
}

.photo-help {
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink);
  text-align: center;
}
.photo-help code {
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--cream-deep); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--cream);
  margin: 0;
  padding: 40px 32px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.review-card p {
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.review-card footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review-card footer strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.05rem;
}
.review-card footer span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ===== CONTACT ===== */
.contact { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%); color: white; }
.contact h2, .contact .section-tag { color: white; }
.contact .section-tag { color: var(--gold-soft); }
.contact p { color: rgba(255, 255, 255, 0.9); }

.contact-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
}
.contact-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold);
  color: white;
}
.contact-item svg { color: var(--gold-soft); flex-shrink: 0; }
.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  background: var(--cream);
  color: var(--ink);
  transition: all 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-align: center;
  font-weight: 600;
  display: none;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest-deep);
  color: white;
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  color: white;
  opacity: 0.8;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-links a:hover { opacity: 1; color: var(--gold-soft); }
.footer-meta {
  text-align: right;
  font-size: 0.85rem;
  opacity: 0.7;
}
.footer-meta p { color: white; margin: 0; }
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.footer-social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.2s;
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* ===== FEES ===== */
.fees { background: var(--cream); }
.fees-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.fees-group-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--forest-deep);
  margin: 56px 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fees-group-title:first-of-type { margin-top: 0; }
.fees-group-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.fees-group-title.blue::before { background: var(--forest); }
.fees-group-title.mint::before { background: var(--mint); }

.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fee-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.fee-card.featured {
  background: linear-gradient(160deg, var(--gold-soft) 0%, white 70%);
  border-color: var(--gold);
}
.fee-card.featured::after {
  content: 'Popular';
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.fee-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 12px;
}
.fee-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.fee-price .fee-cents {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 6px;
}
.fee-period {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.fee-details {
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin: 0;
  flex: 1;
}
.fees-note {
  margin-top: 48px;
  padding: 20px 28px;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.fees-note strong { color: var(--ink); }


@media (max-width: 960px) {
  .hero-inner,
  .two-col,
  .pillar-grid,
  .program-grid,
  .review-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fees-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-prev { left: -12px; }
  .carousel-next { right: -12px; }
  .photo-card,
  .photo-card:nth-child(3n),
  .photo-card:nth-child(5n) { aspect-ratio: 1; }
  .footer-meta { text-align: center; }
  .footer-social { justify-content: center; }
  .hero { padding: 60px 0 80px; }
  .section { padding: 70px 0; }
  .hero-meta { gap: 24px; }
  .contact-form { padding: 28px; }
}

@media (max-width: 640px) {
  .header-top-inner { justify-content: center; gap: 16px; font-size: 0.78rem; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; }
  .nav-links .nav-cta { margin: 8px 0 0; text-align: center; }

  .fees-grid { grid-template-columns: 1fr; }
  .carousel-btn { width: 38px; height: 38px; }
  .carousel-prev { left: 6px; }
  .carousel-next { right: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .sticker { font-size: 0.75rem; padding: 8px 14px; }
  .hero-meta { gap: 20px; }
  .hero-meta div { flex: 1; min-width: 90px; }
  .hero-meta strong { font-size: 1.3rem; }
  .program-card { padding: 32px 24px; }
  .container { padding: 0 20px; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-text > * {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }
  .hero-text .eyebrow { animation-delay: 0.1s; }
  .hero-text h1 { animation-delay: 0.2s; }
  .hero-text .lede { animation-delay: 0.35s; }
  .hero-text .hero-actions { animation-delay: 0.5s; }
  .hero-text .hero-meta { animation-delay: 0.65s; }

  .hero-art {
    opacity: 0;
    animation: fadeIn 1s ease 0.4s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
}
