/* =============================================
   BRIGHTPATH MONTESSORI — STYLESHEET
   Inspired by: Guidepost (playful shapes, contemporary),
                Amare (textured backgrounds),
                Hoboken (section structure & content layout)
   ============================================= */

/* ---- TOKENS ---- */
:root {
  --linen:      #F5EFE6;
  --linen-dark: #EDE4D6;
  --coral:      #E86A3A;
  --coral-light:#F4956C;
  --forest:     #2D4A3E;
  --forest-light:#3D6154;
  --gold:       #F4C542;
  --gold-light: #FAD96A;
  --ink:        #1C1C1C;
  --ink-muted:  #4A4A4A;
  --white:      #FFFFFF;
  --card-radius: 20px;
  --pill-radius: 50px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--coral); }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.6rem;
}
p { color: var(--ink-muted); font-size: 1.05rem; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ---- TEXTURE BACKGROUND UTILITY ---- */
.texture-bg {
  position: relative;
  background-color: var(--linen);
}
.texture-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.texture-bg > * { position: relative; z-index: 1; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--pill-radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover { background: #d05a2a; border-color: #d05a2a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,58,0.35); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

.btn-outline-sm {
  padding: 0.45rem 1rem;
  border-radius: var(--pill-radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-sm:hover { background: var(--forest); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn-white:hover { background: var(--linen); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-text {
  padding: 0;
  border: none;
  background: none;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-text:hover { color: var(--coral); }
.btn-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { color: var(--coral); gap: 0.6rem; }

/* =======================================
   UTILITY BAR
   ======================================= */
.utility-bar {
  background: var(--forest);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.55rem 2rem;
  z-index: 100;
  position: relative;
}
.utility-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.utility-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.utility-links a { opacity: 0.8; transition: opacity 0.2s; }
.utility-links a:hover { opacity: 1; }
.util-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  opacity: 1 !important;
  font-weight: 600;
  transition: background 0.2s;
}
.util-cta:hover { background: var(--coral-light) !important; }

/* =======================================
   HEADER / NAV
   ======================================= */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  z-index: 99;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.logo-text em { color: var(--coral); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--coral); }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--pill-radius);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--ink);
}
.mobile-menu.open { display: flex; }

/* =======================================
   HERO
   ======================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--linen);
  gap: 3rem;
  max-width: 100%;
}
/* Linen texture on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

/* Guidepost-style playful blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
}
.blob-1 {
  width: 480px; height: 480px;
  background: var(--coral);
  top: -180px; right: -100px;
  border-radius: 67% 33% 71% 29% / 34% 59% 41% 66%;
  animation: blobFloat1 10s ease-in-out infinite alternate;
}
.blob-2 {
  width: 320px; height: 320px;
  background: var(--gold);
  bottom: -80px; left: 10%;
  border-radius: 45% 55% 35% 65% / 60% 40% 70% 30%;
  animation: blobFloat2 13s ease-in-out infinite alternate;
  opacity: 0.22;
}
.blob-3 {
  width: 200px; height: 200px;
  background: var(--forest);
  top: 30%; left: 30%;
  border-radius: 60% 40% 55% 45% / 40% 65% 35% 60%;
  animation: blobFloat1 9s ease-in-out infinite alternate-reverse;
  opacity: 0.08;
}
@keyframes blobFloat1 {
  from { transform: translate(0,0) scale(1) rotate(0deg); }
  to   { transform: translate(20px, -30px) scale(1.06) rotate(8deg); }
}
@keyframes blobFloat2 {
  from { transform: translate(0,0) scale(1) rotate(0deg); }
  to   { transform: translate(-15px, 20px) scale(1.04) rotate(-6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 580px;
  margin: 0 auto;
  padding-left: calc((100vw - 1200px) / 2);
  padding-left: max(2rem, calc((100vw - 1200px) / 2));
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.hero-headline {
  margin-bottom: 1.4rem;
  color: var(--forest);
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 420px;
  margin-bottom: 2.2rem;
  color: var(--ink-muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero image with organic blob mask */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: max(2rem, calc((100vw - 1200px) / 2));
  margin: 0 auto;
}
.hero-img-shape {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: 65% 35% 55% 45% / 45% 65% 35% 55%;
  overflow: hidden;
  animation: heroImgFloat 8s ease-in-out infinite alternate;
  box-shadow: 0 30px 80px rgba(45,74,62,0.2);
}
@keyframes heroImgFloat {
  from { transform: translateY(0) rotate(-1deg); }
  to   { transform: translateY(-12px) rotate(1.5deg); }
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: var(--white);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: heroBadgeFloat 6s ease-in-out infinite alternate;
}
@keyframes heroBadgeFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
.badge-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.badge-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  max-width: 80px;
  line-height: 1.3;
}

/* =======================================
   STATS BAR (Hoboken-style)
   ======================================= */
.stats-bar {
  background: var(--forest);
  padding: 2.2rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
  gap: 0.3rem;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* =======================================
   WHO WE ARE
   ======================================= */
.who-we-are {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.blob-green {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--forest-light);
  opacity: 0.08;
  border-radius: 55% 45% 70% 30% / 40% 65% 35% 60%;
  top: -100px; right: -80px;
  pointer-events: none;
  animation: blobFloat2 11s ease-in-out infinite alternate;
}
.blob-yellow {
  position: absolute;
  width: 350px; height: 350px;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 40% 60% 55% 45% / 65% 35% 70% 30%;
  bottom: -80px; left: -60px;
  pointer-events: none;
  animation: blobFloat1 12s ease-in-out infinite alternate;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.8rem; }
.section-desc { font-size: 1.05rem; color: var(--ink-muted); }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  border-radius: var(--card-radius);
  padding: 2.2rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.fc-coral { background: var(--coral); color: var(--white); }
.fc-yellow { background: var(--gold); color: var(--ink); }
.fc-green  { background: var(--forest); color: var(--white); }
.fc-coral p, .fc-green p { color: rgba(255,255,255,0.82); }
.fc-yellow p { color: var(--ink-muted); }
.fc-coral h3, .fc-green h3 { color: var(--white); }
.fc-yellow h3 { color: var(--ink); }
.fc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.7rem; font-size: 1.3rem; }

/* =======================================
   MISSION SECTION (Amare texture)
   ======================================= */
.mission-section {
  padding: 7rem 2rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.mission-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 250px 250px;
  pointer-events: none;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mission-text blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--forest);
  margin: 1rem 0 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--coral);
}
.mission-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.mission-img-blob {
  width: 100%;
  aspect-ratio: 0.9;
  border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(45,74,62,0.18);
}
.mission-image { position: relative; }
.mission-deco-shape {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50% 40% 60% 45% / 55% 50% 40% 60%;
  bottom: -30px; right: -20px;
  z-index: -1;
  opacity: 0.6;
}

/* =======================================
   PROGRAMS (Hoboken-style cards)
   ======================================= */
.programs-section { padding: 7rem 2rem; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.pc-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pc-img-wrap img { transition: transform 0.5s ease; }
.program-card:hover .pc-img-wrap img { transform: scale(1.04); }
.pc-age-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--white);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.pc-nido    .pc-age-badge { background: var(--coral);  color: var(--white); }
.pc-toddler .pc-age-badge { background: var(--gold);   color: var(--ink); }
.pc-house   .pc-age-badge { background: var(--forest); color: var(--white); }
.pc-body {
  padding: 1.6rem 1.8rem;
}
.pc-body h3 { margin-bottom: 0.6rem; font-size: 1.4rem; }
.pc-body p  { margin-bottom: 1.2rem; font-size: 0.95rem; }

/* =======================================
   ACADEMICS (Hoboken differentiator)
   ======================================= */
.academics-section { padding: 7rem 2rem; background: var(--white); }
.academics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.academics-img-wrap {
  border-radius: 30px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 60px rgba(45,74,62,0.15);
}
.academics-image { position: relative; }
.acad-stat-chip {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--coral);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 24px rgba(232,106,58,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.acad-stat-chip strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  line-height: 1;
}
.acad-stat-chip span {
  font-size: 0.72rem;
  opacity: 0.9;
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}
.academics-text h2 { margin-bottom: 1.5rem; }
.differentiators { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.2rem; }
.diff-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.diff-dot {
  width: 12px; height: 12px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.diff-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.diff-item p { font-size: 0.93rem; }

/* =======================================
   COMMUNITY / TESTIMONIALS
   ======================================= */
.community-section { padding: 7rem 2rem; position: relative; overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.featured-testi {
  background: var(--forest);
  transform: scale(1.03);
}
.featured-testi:hover { transform: scale(1.03) translateY(-4px); }
.featured-testi p,
.featured-testi .testi-author span { color: rgba(255,255,255,0.75); }
.featured-testi strong { color: var(--white); }
.featured-testi .stars { color: var(--gold); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 0.08em; }
.testimonial-card > p { font-size: 0.96rem; margin-bottom: 1.4rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.av-1 { background: var(--coral); }
.av-2 { background: var(--gold); color: var(--ink); }
.av-3 { background: var(--forest-light); }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--ink); }
.featured-testi .av-2 { color: var(--ink); }
.testi-author span { font-size: 0.78rem; color: var(--ink-muted); }

/* Community Events (Hoboken-style) */
.community-events {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2.2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.community-events h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--forest);
}
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.event-item:last-child { border-bottom: none; }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--linen);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  min-width: 55px;
  flex-shrink: 0;
}
.event-date span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.event-date strong {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--forest);
  line-height: 1;
}
.event-info { flex: 1; }
.event-info strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.2rem; }
.event-info p { font-size: 0.82rem; color: var(--ink-muted); margin: 0; }

/* =======================================
   GALLERY (Amare-style)
   ======================================= */
.gallery-section { padding: 5rem 0 0; background: var(--white); }
.gallery-heading { text-align: center; padding: 0 2rem; margin-bottom: 2rem; }
.gallery-strip {
  display: flex;
  gap: 0.5rem;
  height: 380px;
  overflow: hidden;
}
.gallery-item {
  flex: 1;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.gallery-item.gi-tall { flex: 1.3; }
.gallery-item.gi-wide { flex: 2; }
.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:hover img { transform: scale(1.06); }
/* Hover overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,74,62,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(45,74,62,0.15); }

/* =======================================
   CTA BANNER
   ======================================= */
.cta-banner {
  background: var(--forest);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}
.cta-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: var(--forest-light);
  border-radius: 45% 55% 70% 30% / 40% 60% 40% 60%;
  opacity: 0.25;
  right: -200px; top: -150px;
  animation: blobFloat1 12s ease-in-out infinite alternate;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}
.cta-inner .eyebrow { color: var(--gold); }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner h2 em { color: var(--gold); }
.cta-inner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =======================================
   FOOTER
   ======================================= */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-top: 5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 1.2rem 0 1.5rem;
  line-height: 1.7;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo .logo-mark { background: var(--coral); }
.footer-logo span {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
.footer-logo span em { color: var(--coral); }
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--coral); color: var(--coral); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  padding: 1.5rem 2rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* =======================================
   SCROLL ANIMATIONS
   ======================================= */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 4rem 2rem;
    min-height: unset;
    text-align: center;
  }
  .hero-content {
    padding-left: 0;
    max-width: 100%;
    align-items: center;
  }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-image-wrap {
    padding-right: 0;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-badge { left: 0; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card { max-width: 500px; margin: 0 auto; width: 100%; }
  .mission-inner, .academics-inner { grid-template-columns: 1fr; gap: 3rem; }
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testi { transform: none; }
  .featured-testi:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { height: 260px; }
}

@media (max-width: 768px) {
  .utility-bar .utility-inner span { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .stat-item { padding: 0.5rem 1.5rem; }
  .stats-inner { gap: 0; }
  .stat-divider { display: none; }
  .gallery-strip { height: 200px; }
  .gallery-item.gi-wide { flex: 1.5; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .events-list .btn-outline-sm { display: none; }
}

@media (max-width: 500px) {
  .hero-headline { font-size: 2.4rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; display: grid; }
  .stat-divider { display: none; }
  .gallery-strip { flex-wrap: nowrap; gap: 0.25rem; }
  .gallery-item.gi-tall, .gallery-item.gi-wide { flex: 1; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
