/* =============================================
   THE PEBBLES STUDENT CARE
   Design System: "Stepping Stones"
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  --sage: #9A8E6E;
  --sage-dark: #5E6B45;
  --sage-light: #B5AC8E;
  --amber: #E8A824;
  --amber-light: #F0C05C;
  --coral: #B39566;
  --coral-light: #CBAE80;
  --cream: #FAF7F2;
  --pebble: #F0EBE3;
  --pebble-dark: #E0D8CC;
  --charcoal: #2D2D2D;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --white: #FFFFFF;

  --font-heading: 'Montserrat Alternates', 'DM Serif Display', Georgia, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-accent: 'Montserrat Alternates', sans-serif;

  --nav-height: 88px;
  --container: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(45,45,45,0.06);
  --shadow-md: 0 4px 20px rgba(45,45,45,0.08);
  --shadow-lg: 0 8px 40px rgba(45,45,45,0.1);
  --shadow-xl: 0 16px 64px rgba(45,45,45,0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sage-dark);
  background: rgba(125, 184, 158, 0.15);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.85);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage-dark);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 154, 126, 0.35);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--sage-dark);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 216, 204, 0.5);
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(253, 248, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
}

.nav__logo-icon img {
  width: auto !important;
  height: 64px !important;
  display: block;
}

.nav__logo-text {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Tighter spacing on smaller desktop widths to keep nav on one line */
@media (min-width: 1025px) and (max-width: 1280px) {
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 0.85rem; }
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--sage-dark);
}

.nav__cta {
  background: var(--sage-dark) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
}

.nav__cta:hover {
  background: var(--sage) !important;
  transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 120px;
  background: linear-gradient(160deg, var(--pebble) 0%, var(--cream) 40%, rgba(125, 184, 158, 0.08) 100%);
  overflow: hidden;
}

.hero__pebbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__pebble {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  opacity: 0.06;
}

.hero__pebble--1 {
  width: 400px;
  height: 350px;
  background: var(--sage);
  top: -80px;
  right: -100px;
  transform: rotate(-15deg);
  animation: float 20s ease-in-out infinite;
}

.hero__pebble--2 {
  width: 200px;
  height: 180px;
  background: var(--amber);
  top: 20%;
  left: -60px;
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  animation: float 15s ease-in-out infinite reverse;
}

.hero__pebble--3 {
  width: 120px;
  height: 100px;
  background: var(--coral);
  bottom: 25%;
  right: 10%;
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
  animation: float 18s ease-in-out infinite 2s;
}

.hero__pebble--4 {
  width: 80px;
  height: 70px;
  background: var(--sage-dark);
  top: 40%;
  left: 15%;
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  animation: float 12s ease-in-out infinite 1s;
}

.hero__pebble--5 {
  width: 160px;
  height: 140px;
  background: var(--amber);
  bottom: 10%;
  left: 30%;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  animation: float 22s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -15px) rotate(2deg); }
  50% { transform: translate(-5px, 10px) rotate(-1deg); }
  75% { transform: translate(8px, 5px) rotate(1.5deg); }
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: rgba(125, 184, 158, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 12px;
  background: rgba(245, 166, 35, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  position: relative;
}

.hero__image-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1 / 1.05;
}

.hero__collage-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.hero__collage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero__collage-item:nth-child(1) { transform: translateY(-18px) rotate(-1.2deg); }
.hero__collage-item:nth-child(2) { transform: translateY(6px) rotate(1deg); }
.hero__collage-item:nth-child(3) { transform: translateY(-4px) rotate(1.4deg); }
.hero__collage-item:nth-child(4) { transform: translateY(14px) rotate(-1deg); }

.hero__collage-item:nth-child(1):hover { transform: translateY(-26px) rotate(-1.2deg); }
.hero__collage-item:nth-child(2):hover { transform: translateY(-2px) rotate(1deg); }
.hero__collage-item:nth-child(3):hover { transform: translateY(-12px) rotate(1.4deg); }
.hero__collage-item:nth-child(4):hover { transform: translateY(6px) rotate(-1deg); }

.hero__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero__collage {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Legacy single-image styles kept for compatibility */
.hero__image--main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image--main img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__floating-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50% 50% 50% 50% / 55% 45% 55% 45%;
  width: 100px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero__floating-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
}

.hero__floating-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Hero Divider */
.hero__divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero__divider svg {
  width: 100%;
  height: 80px;
}

/* --- About Section --- */
.about {
  padding: 100px 0;
  background: var(--cream);
}

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

.about__header {
  text-align: center;
  margin-bottom: 60px;
}

.about__vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 32px auto 60px;
}

.about__vm {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  border-left: 4px solid var(--sage);
}

.about__vm:nth-child(2) {
  border-left-color: var(--amber);
}

.about__vm-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.about__vm:nth-child(2) .about__vm-label {
  color: #c48a14;
}

.about__vm p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0;
}

@media (max-width: 768px) {
  .about__vm-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about__value {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.about__value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.about__value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.about__value-icon--sage { color: var(--sage-dark); }
.about__value-icon--amber { color: var(--amber); }
.about__value-icon--coral { color: var(--coral); }

.about__value h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.about__value p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* About Images */
.about__image-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.about__img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__img--1 { border-radius: 50% 50% var(--radius-lg) var(--radius-lg) / 40% 40% var(--radius-lg) var(--radius-lg); }
.about__img--2 { border-radius: var(--radius-lg); }
.about__img--3 { border-radius: var(--radius-lg) var(--radius-lg) 50% 50% / var(--radius-lg) var(--radius-lg) 40% 40%; }

.about__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about__img:hover img {
  transform: scale(1.05);
}

/* --- Pebble Divider --- */
.pebble-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: var(--cream);
}

.pebble-stone {
  display: block;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  transition: transform 0.5s var(--ease-spring);
}

.pebble-stone:hover {
  transform: translateY(-4px) rotate(10deg);
}

.pebble-stone--1 {
  width: 16px;
  height: 14px;
  background: var(--sage-light);
}

.pebble-stone--2 {
  width: 24px;
  height: 20px;
  background: var(--amber);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
}

.pebble-stone--3 {
  width: 32px;
  height: 28px;
  background: var(--sage);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
}

.pebble-stone--4 {
  width: 22px;
  height: 18px;
  background: var(--coral);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

.pebble-stone--5 {
  width: 14px;
  height: 12px;
  background: var(--pebble-dark);
}

/* --- Programmes Section --- */
.programmes {
  padding: 80px 0 100px;
  background: var(--cream);
}

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

.programmes__header {
  text-align: center;
  margin-bottom: 60px;
}

.programmes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.programme-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.programme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.programme-card:nth-child(1)::before,
.programme-card:nth-child(4)::before { background: var(--sage); }
.programme-card:nth-child(2)::before,
.programme-card:nth-child(5)::before { background: var(--amber); }
.programme-card:nth-child(3)::before,
.programme-card:nth-child(6)::before { background: var(--coral); }

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.programme-card:hover::before {
  opacity: 1;
}

.programme-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.programme-card__icon--sage { color: var(--sage-dark); }
.programme-card__icon--amber { color: var(--amber); }
.programme-card__icon--coral { color: var(--coral); }
.programme-card__icon--sage-light { color: var(--sage); }
.programme-card__icon--amber-light { color: var(--amber-light); }
.programme-card__icon--coral-light { color: var(--coral-light); }

.programme-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.programme-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- A Day at Pebbles --- */
.day {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--sage-dark) 0%, #4A8A6A 50%, #3D7A5C 100%);
  overflow: hidden;
}

.day__bg-pebbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.day__bg-pebble {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  background: rgba(255,255,255,0.04);
}

.day__bg-pebble--1 {
  width: 500px;
  height: 450px;
  top: -150px;
  right: -100px;
  transform: rotate(20deg);
}

.day__bg-pebble--2 {
  width: 300px;
  height: 280px;
  bottom: -80px;
  left: -80px;
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
}

.day__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.day__header {
  text-align: center;
  margin-bottom: 60px;
}

.day__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.day__timeline::before {
  content: '';
  position: absolute;
  left: 89px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  gap: 20px;
  align-items: start;
  padding: 16px 0;
}

.timeline-item__time {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-light);
  text-align: right;
  padding-top: 4px;
}

.timeline-item__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--sage-dark);
  margin-top: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.2);
}

.timeline-item__content h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.timeline-item__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: var(--pebble);
}

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

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* --- Enrollment CTA --- */
.enroll {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a1a1a 100%);
  overflow: hidden;
}

.enroll__pebbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.enroll__pebble {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
}

.enroll__pebble--1 {
  width: 300px;
  height: 270px;
  background: var(--sage-dark);
  opacity: 0.08;
  top: -60px;
  right: -40px;
  transform: rotate(15deg);
}

.enroll__pebble--2 {
  width: 200px;
  height: 180px;
  background: var(--amber);
  opacity: 0.06;
  bottom: -40px;
  left: 10%;
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
}

.enroll__pebble--3 {
  width: 120px;
  height: 100px;
  background: var(--coral);
  opacity: 0.05;
  top: 30%;
  left: -30px;
}

.enroll__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.enroll__content {
  max-width: 560px;
}

.enroll__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.enroll__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enroll__info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.enroll__info-card h3 {
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 16px;
}

.enroll__info-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enroll__info-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.enroll__info-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.enroll__info-card li span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.enroll__info-card li strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--pebble);
  padding: 60px 0 30px;
  border-top: 1px solid var(--pebble-dark);
}

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

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--pebble-dark);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo .nav__logo-icon img {
  width: auto !important;
  height: 72px !important;
  display: block;
}

.footer__logo span:last-child {
  display: none;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45,45,45,0.06);
  color: var(--gray);
  transition: all 0.3s var(--ease-out);
}

.footer__social a:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.3s var(--ease-out);
}

.footer__links a:hover {
  color: var(--sage-dark);
}

.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer__contact li svg {
  opacity: 0.6;
  flex-shrink: 0;
  color: var(--sage-dark);
}

.footer__contact a {
  color: var(--gray);
}

.footer__contact a:hover {
  color: var(--sage-dark);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.footer__bottom a {
  color: var(--sage-dark);
  transition: color 0.3s var(--ease-out);
}

.footer__bottom a:hover {
  color: var(--amber);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.35s var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* --- Fade Up Animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Schools Near Us --- */
.schools {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

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

.schools__header {
  text-align: center;
  margin-bottom: 60px;
}

.schools__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.schools__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--pebble);
}

.schools__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.schools__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.school-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.school-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.school-card:nth-child(1)::before { background: var(--sage); }
.school-card:nth-child(2)::before { background: var(--amber); }
.school-card:nth-child(3)::before { background: var(--coral); }
.school-card:nth-child(4)::before { background: var(--sage-dark); }
.school-card:nth-child(5)::before { background: var(--amber-light); }

.school-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.school-card:hover::before {
  opacity: 1;
}

.school-card__icon {
  width: 36px;
  height: 36px;
  color: var(--sage-dark);
}

.school-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
}

.school-card__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.school-card__badge--moe {
  color: var(--sage-dark);
  background: rgba(125, 184, 158, 0.15);
}

.school-card__badge--intl {
  color: var(--amber);
  background: rgba(232, 168, 36, 0.12);
}

.school-card__distance {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: rgba(94, 107, 69, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}

.schools__footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.schools__note {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .schools__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .schools__map {
    aspect-ratio: 16 / 9;
  }

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

  .hero__container {
    gap: 40px;
  }

  .about__values {
    gap: 20px;
  }

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

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .enroll__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 72px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  .nav__links.active {
    transform: translateX(0);
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-stack {
    max-width: 320px;
  }

  .hero__floating-badge {
    right: -5px;
    top: 10px;
    width: 80px;
    height: 72px;
  }

  .hero__floating-number {
    font-size: 1.3rem;
  }

  .about {
    padding: 60px 0;
  }

  .about__values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about__value {
    padding: 28px 24px;
  }

  .about__image-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about__img--3 {
    display: none;
  }

  .about__img img {
    height: 200px;
  }

  .programmes {
    padding: 60px 0 80px;
  }

  .programmes__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .programme-card {
    padding: 28px 24px;
  }

  .schools {
    padding: 60px 0;
  }

  .schools__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .schools__map {
    aspect-ratio: 16 / 10;
  }

  .schools__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .school-card {
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
    gap: 14px;
  }

  .school-card h3 {
    flex: 1;
    font-size: 0.9rem;
  }

  .school-card__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .day {
    padding: 80px 0;
  }

  .day__timeline::before {
    left: 9px;
  }

  .timeline-item {
    grid-template-columns: 20px 1fr;
    gap: 16px;
  }

  .timeline-item__time {
    grid-column: 1 / -1;
    text-align: left;
    padding-top: 0;
    margin-bottom: -8px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials__grid .testimonial-card:last-child {
    max-width: none;
  }

  .testimonial-card {
    padding: 28px;
  }

  .enroll {
    padding: 80px 0;
  }

  .enroll__container {
    text-align: center;
  }

  .enroll__actions {
    justify-content: center;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .enroll__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== June Holiday Announcement Banner ===== */
.announce-banner {
  display: block;
  background: linear-gradient(115deg, #E8A824 0%, #F0C05C 45%, #E8A824 100%);
  background-size: 200% 100%;
  color: #1f1604;
  text-decoration: none;
  border-bottom: 1px solid rgba(31,22,4,0.08);
  /* Sits in the fixed header stack, directly BELOW the fixed nav (which is
     position:fixed, z-index:1000). Without this the banner renders at top:0
     underneath the nav and is invisible. */
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  overflow: hidden;
  animation: announceShimmer 9s ease-in-out infinite;
}
/* When the banner is present, the homepage hero must clear nav + banner + breathing room */
.announce-banner + .hero { padding-top: calc(var(--nav-height) + 116px); }
@media (max-width: 768px) {
  .announce-banner + .hero { padding-top: calc(var(--nav-height) + 92px); }
}
@keyframes announceShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.announce-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  line-height: 1.4;
}
.announce-banner__pulse {
  width: 9px;
  height: 9px;
  background: #b3470c;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(179,71,12,0.7);
  animation: announcePulse 2s infinite;
}
@keyframes announcePulse {
  0% { box-shadow: 0 0 0 0 rgba(179,71,12,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(179,71,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(179,71,12,0); }
}
.announce-banner__tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(31,22,4,0.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
}
.announce-banner__title {
  font-weight: 800;
  font-size: 0.95rem;
}
.announce-banner__desc {
  flex: 1;
  min-width: 200px;
  opacity: 0.85;
  font-size: 0.85rem;
}
.announce-banner__cta {
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.announce-banner:hover .announce-banner__cta {
  gap: 10px;
  transition: gap 0.2s ease;
}

@media (max-width: 720px) {
  .announce-banner__inner { padding: 10px 18px; gap: 10px; }
  .announce-banner__desc { display: none; }
  .announce-banner__title { font-size: 0.88rem; }
}


/* ===== Nav dropdowns (Tuition + Enrichment submenus) ===== */
.nav__has-dropdown { position: relative; }
.nav__caret { font-size: 0.65em; opacity: 0.7; margin-left: 3px; display: inline-block; }
.nav__badge { display: inline-block; background: var(--amber, #E8A824); color: #fff; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: 100px; margin-left: 6px; vertical-align: middle; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 14px;
  padding: 10px 0;
  box-shadow: 0 12px 36px rgba(45,45,45,0.14);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 100;
  list-style: none;
  margin: 0;
}
.nav__has-dropdown:hover > .nav__dropdown,
.nav__has-dropdown:focus-within > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown li { margin: 0; }
.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__dropdown li a:hover {
  background: var(--cream);
  color: var(--sage-dark);
}

/* When the mobile hamburger menu is active (<=1024px), expand dropdowns inline
   inside the slide-in panel so all items are reachable by tap. */
@media (max-width: 1024px) {
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 6px 18px;
    background: transparent;
    border-radius: 0;
    min-width: 0;
  }
  .nav__dropdown li a { padding: 6px 0; white-space: normal; }
  .nav__caret { display: none; }
  .nav__has-dropdown { width: 100%; }
}


/* ===== Shared vendor / programme detail page styles ===== */
.vp-hero { padding: calc(var(--nav-height, 80px) + 70px) 0 70px; background: linear-gradient(160deg, var(--pebble) 0%, var(--cream) 50%, rgba(125,184,158,0.06) 100%); text-align: center; }
.vp-hero__tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--sage-dark); background: rgba(94,107,69,0.1); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; text-transform: uppercase; }
.vp-hero__title { font-family: var(--font-heading); font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 14px; color: var(--charcoal); line-height: 1.15; padding: 0 24px; }
.vp-hero__title em { font-style: italic; color: var(--sage-dark); }
.vp-hero__sub { font-size: 1.05rem; color: var(--gray); max-width: 700px; margin: 0 auto; line-height: 1.7; padding: 0 24px; }
.vp-hero__partner { display: inline-block; margin-top: 22px; font-size: 0.85rem; color: var(--sage-dark); padding: 8px 18px; background: #fff; border-radius: 100px; font-weight: 700; }

.vp-section { padding: 70px 24px; }
.vp-section--cream { background: var(--cream); }
.vp-section--pebble { background: var(--pebble); }
.vp-inner { max-width: 920px; margin: 0 auto; }
.vp-inner--narrow { max-width: 760px; margin: 0 auto; }
.vp-inner p, .vp-inner--narrow p { font-size: 1.02rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 18px; }
.vp-inner p:last-child, .vp-inner--narrow p:last-child { margin-bottom: 0; }
/* Paragraph spacing for CMS Portable-Text bodies that had no p-margin rule
   (renderer emits bare <p>; multi-paragraph edits would otherwise collapse). */
.story__body p { margin-bottom: 18px; line-height: 1.8; }
.story__body p:last-child { margin-bottom: 0; }
[data-cms="fees.privateCalloutBody"] p { margin-bottom: 14px; line-height: 1.7; }
[data-cms="fees.privateCalloutBody"] p:last-child { margin-bottom: 0; }
.vp-h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--charcoal); margin-bottom: 20px; line-height: 1.25; }
.vp-h2--center { text-align: center; margin-bottom: 32px; }
.vp-sub { text-align: center; color: var(--gray); max-width: 620px; margin: 0 auto 50px; line-height: 1.7; font-size: 1rem; }

.vp-about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; max-width: 1080px; margin: 0 auto; }
@media (max-width: 800px) { .vp-about-grid { grid-template-columns: 1fr; } }
.vp-stat-card { background: #fff; border-radius: 20px; padding: 38px; text-align: center; box-shadow: 0 4px 20px rgba(45,45,45,0.06); }
.vp-stat-card__num { font-family: var(--font-heading); font-size: 3.5rem; color: var(--sage-dark); line-height: 1; }
.vp-stat-card__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); display: block; margin-top: 6px; }
.vp-stat-card__divider { width: 50px; height: 3px; background: var(--sage-dark); margin: 22px auto; border-radius: 2px; }
.vp-stat-card__meta strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 8px; }
.vp-stat-card__meta { font-size: 0.94rem; color: var(--gray); line-height: 1.7; }

.vp-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; max-width: 1080px; margin: 0 auto; }
.vp-pillar { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 4px 18px rgba(45,45,45,0.05); }
.vp-pillar__num { font-family: var(--font-heading); font-size: 1.9rem; color: var(--sage-dark); line-height: 1; margin-bottom: 12px; }
.vp-pillar__h { font-weight: 700; font-size: 1.02rem; color: var(--charcoal); margin-bottom: 8px; }
.vp-pillar__d { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

.vp-pathway { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.vp-stage { background: #fff; border-radius: 16px; padding: 24px; border-top: 4px solid var(--sage-dark); }
.vp-stage__num { font-size: 0.72rem; font-weight: 800; color: var(--sage-dark); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.vp-stage__h { font-weight: 700; font-size: 1.04rem; color: var(--charcoal); margin-bottom: 8px; }
.vp-stage__d { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

.vp-partner-block { max-width: 820px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 44px; box-shadow: 0 6px 28px rgba(45,45,45,0.08); border-left: 6px solid var(--sage-dark); }
.vp-partner-block h2 { font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--charcoal); margin-bottom: 16px; }
.vp-partner-block p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.vp-partner-block p:last-child { margin-bottom: 0; }

.vp-cta { padding: 70px 24px; text-align: center; }
.vp-cta h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; color: var(--charcoal); }
.vp-cta p { font-size: 1.02rem; color: var(--gray); margin-bottom: 26px; }
.vp-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.vp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; color: #fff; text-decoration: none; border-radius: 100px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s ease; }
.vp-btn:hover { transform: translateY(-2px); }
.vp-btn--primary { background: var(--sage-dark); }
.vp-btn--wa { background: #25D366; }


/* ===== Stat Strip (homepage + key pages) - Darryl visual feedback ===== */
.stat-strip {
  background: linear-gradient(135deg, var(--pebble) 0%, var(--cream) 100%);
  padding: 56px 24px;
  border-bottom: 1px solid var(--pebble-dark, #E0D8CC);
  position: relative;
}
.stat-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-strip__item {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(45,45,45,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--sage);
}
.stat-strip__item:nth-child(2) { border-top-color: var(--sage-dark); }
.stat-strip__item:nth-child(3) { border-top-color: var(--amber); }
.stat-strip__item:nth-child(4) { border-top-color: #6a1b9a; }
.stat-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(45,45,45,0.1);
}
.stat-strip__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--sage-dark);
}
.stat-strip__item:nth-child(3) .stat-strip__icon { color: #b58600; background: rgba(232,168,36,0.12); }
.stat-strip__item:nth-child(4) .stat-strip__icon { color: #6a1b9a; background: rgba(106,27,154,0.08); }
.stat-strip__icon svg { width: 24px; height: 24px; }

.stat-strip__num {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-strip__item:nth-child(3) .stat-strip__num { color: #b58600; }
.stat-strip__item:nth-child(4) .stat-strip__num { color: #6a1b9a; }
.stat-strip__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-strip__sub {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stat-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-strip { padding: 40px 20px; }
  .stat-strip__item { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .stat-strip__inner { grid-template-columns: 1fr; }
}

/* ===== Section Photo (centered, natural aspect ratio — no head-crop) ===== */
.photo-banner {
  position: relative;
  padding: 56px 24px 0;
  overflow: hidden;
  background: var(--cream);
  text-align: center;
}
.photo-banner__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 560px;
  border-radius: 20px;
  object-fit: contain;
  background: #efeae0;
}
@media (max-width: 768px) {
  .photo-banner { padding: 32px 16px 0; }
  .photo-banner__img { max-height: 70vh; border-radius: 14px; }
}
.photo-banner__caption {
  background: var(--cream);
  text-align: center;
  padding: 18px 24px 48px;
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}

