/* =============================================
   LITTLE WINS — style.css
   Colors, fonts, layout, components, animations
   ============================================= */

/* GOOGLE FONTS imported in index.html */

:root {
  --teal: #1a8e8e;
  --teal-dark: #0f6e6e;
  --teal-light: #e1f5f5;
  --orange: #f5a623;
  --orange-dark: #d4861c;
  --orange-light: #fff4e0;
  --green: #3a7d44;
  --green-light: #eaf5ec;
  --cream: #fdf8f0;
  --cream-dark: #f5ede0;
  --text-dark: #1a3a2a;
  --text-mid: #3a5a4a;
  --text-light: #6a8a7a;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,248,240,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--teal-light);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.nav-links a:hover { color: var(--teal); transform: translateY(-2px); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: scale(1.04) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--teal-light);
  padding: 1rem 2rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--teal-light);
}
.mobile-menu a.nav-cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  border: none;
  margin-top: 0.5rem;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 164px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  padding: 4rem 3rem 4rem 6rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--orange);
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.hero h1 .highlight  { color: var(--teal); }
.hero h1 .highlight2 { color: var(--orange); }
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.hero-services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.service-pill {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 2px solid var(--teal);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2.5px solid var(--teal);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--teal-light); transform: translateY(-2px); }

.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4rem 4rem 2rem;
  min-height: 100vh;
}
.hero-img-blob { position: relative; width: 100%; max-width: 520px; }
.hero-img-blob img {
  width: 100%;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  display: block;
  box-shadow: 0 20px 60px rgba(26,142,142,0.2);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-float-card.card-ages {
  top: 15%; left: -30px;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 2px solid var(--teal);
}
.hero-float-card.card-loc {
  bottom: 20%; right: -20px;
  color: var(--orange-dark);
  background: var(--orange-light);
  border: 2px solid var(--orange);
}
.float-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.float-label { font-size: 0.75rem; font-weight: 600; opacity: 0.8; }

/* ── WAVE DIVIDER ── */
.wave-divider { width: 100%; line-height: 0; overflow: hidden; }
.section-wave { background: var(--white); line-height: 0; }

/* ── SECTIONS ── */
.section { padding: 5rem 6rem; }
.section-alt { background: var(--white); }

.section-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.orange { background: var(--orange); }
.section-tag.green  { background: var(--green); }

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 640px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-founder-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 2.5rem;
  border: 3px solid var(--teal-light);
  position: relative;
  overflow: hidden;
}
.about-founder-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--teal-light);
  border-radius: 0 0 0 120px;
}
.founder-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--teal);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.founder-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.founder-title { color: var(--teal); font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; }
.founder-bio   { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }
.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.2rem;
  align-items: center;
}
.cred-badge {
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--teal);
  white-space: nowrap;
  display: inline-block;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 12px rgba(26,142,142,0.08);
}
.value-card.orange { border-left-color: var(--orange); }
.value-card.green  { border-left-color: var(--green); }
.value-icon  { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.value-title { font-weight: 800; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.value-desc  { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--teal);
  border-radius: 24px 24px 0 0;
}
.service-card.orange::before { background: var(--orange); }
.service-card.green::before  { background: var(--green); }
.service-card:hover { border-color: var(--teal-light); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,142,142,0.12); }
.service-card.orange:hover { border-color: var(--orange-light); }

.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-icon-wrap.orange { background: var(--orange-light); }
.service-icon-wrap.green  { background: var(--green-light); }
.service-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.approach-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--teal-light);
  transition: transform 0.2s;
}
.approach-card:hover { transform: translateY(-3px); }
.approach-num   { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.approach-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--teal-dark); margin-bottom: 0.6rem; }
.approach-desc  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── GALLERY ── */
.gallery-section {
  padding: 5rem 6rem;
  background: var(--cream-dark);
}
.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
  margin-top: 3rem;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item.tall img  { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,110,110,0.85));
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 1.2rem 0.8rem 0.6rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.gal-item:hover .gal-label { opacity: 1; }

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}
.faq-item {
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem;
  border: 2px solid var(--teal-light);
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-q {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--teal-dark);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.faq-toggle {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--teal);
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-section {
  padding: 5rem 6rem;
  background: var(--teal-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-left .section-title { color: var(--white); }
.contact-left .section-intro { color: rgba(255,255,255,0.8); }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}
.contact-value { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.contact-form { background: var(--white); border-radius: 28px; padding: 2.5rem; }
.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 700; font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--teal-light);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--teal-dark); }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 2.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-credit { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: translateY(40px) scale(0.92); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.03); }
  80%  { transform: translateY(4px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideInLeft {
  0%   { opacity: 0; transform: translateX(-50px); }
  60%  { opacity: 1; transform: translateX(6px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  0%   { opacity: 0; transform: translateX(50px); }
  60%  { opacity: 1; transform: translateX(-6px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.7) rotate(-4deg); }
  60%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  80%  { transform: scale(0.96) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}
@keyframes heroSlideIn {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal       { opacity: 0; }
.reveal-left  { opacity: 0; }
.reveal-right { opacity: 0; }
.reveal-pop   { opacity: 0; }

.reveal.revealed       { animation: bounceIn    0.65s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.reveal-left.revealed  { animation: slideInLeft  0.6s  cubic-bezier(0.34,1.4,0.64,1)  forwards; }
.reveal-right.revealed { animation: slideInRight 0.6s  cubic-bezier(0.34,1.4,0.64,1)  forwards; }
.reveal-pop.revealed   { animation: popIn        0.55s cubic-bezier(0.34,1.56,0.64,1) forwards; }

/* Stagger delays */
.stagger-children > *:nth-child(1) { animation-delay: 0s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.10s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.18s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.26s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.34s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.42s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.50s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.58s; }

/* Hero entrance */
.hero-badge    { animation: heroSlideIn 0.5s ease forwards; animation-delay: 0.10s; opacity: 0; }
.hero h1       { animation: heroSlideIn 0.6s ease forwards; animation-delay: 0.25s; opacity: 0; }
.hero-tagline  { animation: heroSlideIn 0.6s ease forwards; animation-delay: 0.40s; opacity: 0; }
.hero-services { animation: heroSlideIn 0.6s ease forwards; animation-delay: 0.55s; opacity: 0; }
.hero-btns     { animation: heroSlideIn 0.6s ease forwards; animation-delay: 0.70s; opacity: 0; }

/* Continuous floats */
.hero-img-blob img        { animation: float 5s ease-in-out infinite; }
.hero-float-card          { animation: float 4s ease-in-out infinite; }
.hero-float-card.card-loc { animation-delay: 1.5s; }

/* Hover interactions */
.service-icon-wrap:hover { animation: wiggle 0.4s ease-in-out; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hamburger              { display: flex; }
  .nav-links              { display: none; }
  .hero                   { grid-template-columns: 1fr; }
  .hero-content           { padding: 3rem 2rem; }
  .hero-image-side        { display: none; }
  .section                { padding: 3rem 2rem; }
  .gallery-section        { padding: 3rem 2rem; }
  .contact-section        { padding: 3rem 2rem; }
  .about-grid,
  .faq-grid,
  .contact-grid           { grid-template-columns: 1fr; }
  .approach-grid          { grid-template-columns: 1fr; }
  .gallery-masonry        { columns: 2; }
  footer                  { padding: 2rem; flex-direction: column; text-align: center; }
}

/* ── TURTLE WALKING STRIP ── */
.turtle-strip {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 99;
  height: 64px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,142,142,0.1);
}
@media (max-width: 900px) {
  .turtle-strip { top: 100px; }
}



/* ── APPROACH PILLS (integrated care card) ── */
.approach-pill {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
}
.approach-pill.teal   { background: var(--teal-light);   color: var(--teal-dark); }
.approach-pill.orange { background: var(--orange-light); color: var(--orange-dark); }
.approach-pill.green  { background: var(--green-light);  color: var(--green); }

/* ── TEAM SLIDER ── */
.team-slider-wrap {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.team-slider {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.1,0.64,1);
  will-change: transform;
}
.team-card {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem;
  border: 2px solid var(--teal-light);
  box-shadow: 0 4px 24px rgba(26,142,142,0.08);
}
.team-photo-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--teal-light);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.placeholder-photo {
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
}
.team-info { flex: 1; }
.team-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.team-title {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.team-bio {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
}
.placeholder-card { border-style: dashed; border-color: var(--teal-light); }

/* Slider controls */
.team-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.team-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--white);
  color: var(--teal);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  font-weight: 700;
}
.team-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}
.team-dots { display: flex; gap: 8px; align-items: center; }
.team-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.team-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .team-card { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  .team-photo-wrap { width: 130px; height: 160px; }
}

/* ══════════════════════════════════════
   BEYOND THE THERAPY ROOM — SECTION 2
══════════════════════════════════════ */
.beyond-section {
  background: var(--teal-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.beyond-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.beyond-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(245,166,35,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.beyond-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}
.beyond-header {
  margin-bottom: 4rem;
}
.beyond-header .section-tag {
  background: var(--orange);
}

/* Story blocks */
.beyond-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}
.beyond-block.reverse {
  direction: rtl;
}
.beyond-block.reverse > * {
  direction: ltr;
}
.beyond-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.beyond-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.beyond-photo:hover img {
  transform: scale(1.04);
}
.beyond-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,110,110,0.9));
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 1.5rem 1rem 0.8rem;
}
.beyond-text {
  padding: 0.5rem 0;
}
.beyond-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(245,166,35,0.3);
}
.beyond-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.beyond-body {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .beyond-inner { padding: 0 2rem; }
  .beyond-section { padding: 3rem 0; }
  .beyond-block,
  .beyond-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 1.5rem; }
  .beyond-photo img { height: 240px; }
  .beyond-block { margin-bottom: 3rem; }
}

/* ══════════════════════════════════════
   HOW WE HELP — SECTION 1
══════════════════════════════════════ */
.hwh-section1 {
  background: var(--cream);
  padding: 5rem 6rem;
  text-align: center;
}
.hwh-part-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}
.hwh-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.hwh-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.hwh-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hwh-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hwh-card:hover {
  border-color: var(--teal-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26,142,142,0.12);
}
.hwh-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.hwh-icon-circle svg { width: 32px; height: 32px; }
.hwh-icon-circle.teal   { background: #e1f5f5; }
.hwh-icon-circle.orange { background: #fff4e0; }
.hwh-icon-circle.blue   { background: #e0f0fa; }
.hwh-icon-circle.yellow { background: #fdf6e0; }
.hwh-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.hwh-card-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.hwh-learn-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}
.hwh-learn-more:hover { color: var(--orange-dark); }

/* ══════════════════════════════════════
   HOW WE HELP — SECTION 2
══════════════════════════════════════ */
.hwh-section2 {
  background: #fdf6ee;
  padding: 5rem 6rem;
}
.hwh2-header {
  text-align: center;
  margin-bottom: 4rem;
}
.hwh2-tagline {
  font-size: 1.05rem;
  color: var(--teal);
  font-weight: 700;
  font-style: italic;
  margin: 0.6rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hwh2-intro {
  font-size: 0.97rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}
.hwh2-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  min-height: 340px;
}
.hwh2-block.hwh2-flip {
  direction: rtl;
}
.hwh2-block.hwh2-flip > * { direction: ltr; }
.hwh2-photo {
  overflow: hidden;
}
.hwh2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
  transition: transform 0.4s ease;
}
.hwh2-photo:hover img { transform: scale(1.03); }
.hwh2-text {
  background: var(--white);
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #f0e8dc;
}
.hwh2-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.hwh2-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.hwh2-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.hwh2-quote {
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  color: var(--teal);
  line-height: 1.5;
}
.hwh2-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid #f0e8dc;
  padding: 2rem 3rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .hwh-section1 { padding: 3rem 2rem; }
  .hwh-cards { grid-template-columns: 1fr 1fr; }
  .hwh-section2 { padding: 3rem 0; }
  .hwh2-header { padding: 0 2rem; }
  .hwh2-block,
  .hwh2-block.hwh2-flip { grid-template-columns: 1fr; direction: ltr; }
  .hwh2-block.hwh2-flip .hwh2-photo { order: -1; }
  .hwh2-photo img { min-height: 240px; }
  .hwh2-text { padding: 2rem; }
  .hwh2-footer { padding: 1.5rem 2rem; }
}
@media (max-width: 600px) {
  .hwh-cards { grid-template-columns: 1fr; }
}

/* ── EXPANDABLE PILLS UNDER SERVICE CARD ── */
.hwh-expand {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.8rem;
  justify-content: center;
}
.hwh-expand.open { display: flex; }
.hwh-expand-pill {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1.5px solid var(--teal);
  white-space: nowrap;
}

/* ── SHOW MORE TOGGLE BUTTON ── */
.hwh-show-more {
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  text-align: center;
}
.hwh-show-more:hover { color: var(--teal-dark); }

/* Consistent card height & layout across all core service cards */
.hwh-card {
  min-height: 280px;
  justify-content: flex-start;
}
.hwh-card-desc { margin-bottom: 0.8rem; }
.hwh-learn-more { margin-top: auto; padding-top: 0.8rem; }

/* ── BEHAVIOURAL SCIENCE BLURB (hero) ── */
.hero-science-blurb {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.hero-science-q {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}
.hero-science-a {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════
   COLLABORATORS GRID
   No JS needed — pure CSS grid layout
══════════════════════════════════════ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.collab-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid var(--teal-light);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.collab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,142,142,0.12);
}
.collab-photo {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--teal-light);
}
.collab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.collab-photo-placeholder {
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
}
.collab-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.collab-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal);
  margin-top: -0.6rem;
}
.collab-bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.collab-bio-placeholder {
  font-style: italic;
  color: var(--text-light);
}
.collab-placeholder {
  border-style: dashed;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .collab-grid { grid-template-columns: 1fr; }
  .collab-photo { height: 200px; }
}

/* ══════════════════════════════════════
   COLLABORATORS GRID + MODAL
══════════════════════════════════════ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
}
.collab-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  border: 2px solid var(--teal-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.collab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26,142,142,0.12);
}
.collab-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--teal-light);
  flex-shrink: 0;
}
.collab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.collab-photo-placeholder {
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
}
.collab-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.collab-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.4;
}
.collab-learn-more {
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.4rem;
}
.collab-learn-more:hover {
  background: var(--teal);
  color: var(--white);
}
.collab-placeholder { opacity: 0.6; border-style: dashed; }

/* ── MODAL ── */
.collab-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,50,40,0.6);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.collab-modal-overlay.open { display: flex; }
.collab-modal {
  background: var(--white);
  border-radius: 28px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: modalIn 0.3s cubic-bezier(0.34,1.4,0.64,1);
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.collab-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--teal-light);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--teal-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: background 0.2s;
}
.collab-modal-close:hover { background: var(--teal); color: var(--white); }
.collab-modal-photo-wrap {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--teal-light);
  flex-shrink: 0;
  align-self: center;
}
.collab-modal-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.collab-modal-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
  text-align: center;
}
.collab-modal-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal);
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 0.8rem;
}
.collab-modal-bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 600px) {
  .collab-grid { grid-template-columns: 1fr 1fr; }
  .collab-modal { padding: 1.5rem; }
}
