/* ============================================
   Little Connections Therapy — Styles
   Color Palette (from logo):
     Sage Green:  #9BB5A5
     Coral:       #E8896F
   ============================================ */

:root {
  --sage: #9BB5A5;
  --sage-light: #C5D9CD;
  --sage-lighter: #E8F0EC;
  --sage-dark: #7A9A8B;
  --sage-darkest: #5C7D6E;
  --coral: #E8896F;
  --coral-light: #F2B5A4;
  --coral-lighter: #FDE8E1;
  --coral-dark: #D4725A;
  --white: #FFFFFF;
  --off-white: #FAFBFA;
  --cream: #F7F9F7;
  --text-primary: #2D3B35;
  --text-secondary: #5A6B63;
  --text-light: #8A9B93;
  --border: #E2E8E5;
  --shadow-sm: 0 2px 8px rgba(45, 59, 53, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 59, 53, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 59, 53, 0.12);
  --shadow-xl: 0 16px 60px rgba(45, 59, 53, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwritten: 'Caveat', cursive;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--text-primary); }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  position: relative;
}

/* ---- Section Labels & Headers ---- */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
}
.section-header.centered { text-align: center; margin-bottom: 60px; }
.section-header.centered .section-label { padding-left: 0; }
.section-header.centered .section-label::before { display: none; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(155, 181, 165, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
  font-weight: 600;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}
.btn-full { width: 100%; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; transition: height var(--transition); }
.navbar.scrolled .logo-img { height: 48px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
}
.nav-cta.nav-cta::after { display: none; }
.nav-cta.nav-cta:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ---- Nav Dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after { display: none !important; }
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(45, 59, 53, 0.14);
  padding: 10px 0;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1002;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary) !important;
  white-space: nowrap;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}
.nav-dropdown-menu a:hover {
  background: var(--sage-lighter);
  color: var(--sage-darkest) !important;
  border-left-color: var(--sage);
}
.nav-dropdown-menu a::after { display: none !important; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--sage-lighter) 0%, var(--cream) 40%, var(--coral-lighter) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sage-light), transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--coral-light), transparent 70%);
  bottom: 10%; left: -80px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--sage), transparent 70%);
  top: 40%; right: 20%;
  opacity: 0.15;
}
.shape-4 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  top: 20%; left: 30%;
  opacity: 0.2;
}
.shape-5 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--sage-dark), transparent 70%);
  bottom: 30%; right: 10%;
  opacity: 0.2;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.highlight {
  color: var(--sage-dark);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--coral-light);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}
.hero-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hero-card-1 { align-self: flex-start; animation-delay: 0s; }
.hero-card-2 { align-self: center; animation-delay: 2s; }
.hero-card-3 { align-self: flex-end; animation-delay: 4s; }
.card-icon { width: 48px; height: 48px; flex-shrink: 0; }
.card-icon svg { width: 100%; height: 100%; }
.card-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  display: block;
}
.card-detail {
  font-size: 13px;
  color: var(--text-light);
  display: block;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ---- About ---- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-blob {
  background: linear-gradient(135deg, var(--sage-lighter), var(--coral-lighter));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  padding: 48px;
  position: relative;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-icon-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.about-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-icon-item svg { width: 48px; height: 48px; margin: 0 auto 12px; }
.about-icon-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat {
  text-align: center;
  transition: all var(--transition-slow);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  display: block;
  line-height: 1.1;
}
.stat-suffix {
  font-size: 1.5rem;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Services ---- */
.services {
  background: var(--cream);
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.services-shape {
  position: absolute;
  border-radius: 50%;
}
.services-shape-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sage-light), transparent 70%);
  top: -150px; right: -100px;
  opacity: 0.2;
}
.services-shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--coral-light), transparent 70%);
  bottom: -100px; left: -80px;
  opacity: 0.15;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.check-icon { width: 20px; height: 20px; flex-shrink: 0; }
.services-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.handwritten {
  font-family: var(--font-handwritten);
  font-size: 1.6rem;
  color: var(--coral);
  margin-bottom: 20px;
  display: block;
}

/* ---- Locations ---- */
.locations { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 18px 24px;
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-card:hover {
  border-color: var(--sage-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.location-card-coming {
  background: transparent;
  border: 2px dashed var(--border);
  opacity: 0.85;
}
.location-card-coming:hover {
  border-color: var(--sage-light);
  border-style: dashed;
  background: var(--sage-lighter);
}
.location-pin {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.location-pin svg { width: 100%; height: 100%; }
.location-card h3 {
  font-size: 1rem;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}
.location-facility {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}
.location-address {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 14px;
  flex-grow: 1;
}
.location-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.location-badge.active {
  background: var(--sage-lighter);
  color: var(--sage-dark);
}
.location-badge.coming-soon {
  background: var(--coral-lighter);
  color: var(--coral-dark);
}
.locations-map-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding: 20px;
  background: var(--sage-lighter);
  border-radius: var(--radius-md);
}
.locations-map-note p {
  font-size: 15px;
  color: var(--text-secondary);
}
.locations-map-note a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Why Us ---- */
.why-us {
  background: var(--cream);
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--sage-lighter) 50%, transparent 100%);
  opacity: 0.3;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-light);
  margin-bottom: 16px;
  line-height: 1;
}
.why-card:hover .why-number { color: var(--coral); }
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  top: -100px; left: -50px;
}
.cta-shape-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  bottom: -80px; right: -40px;
  opacity: 0.15;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Contact ---- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-slow);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-method h4 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.contact-method a,
.contact-method p {
  font-size: 15px;
  color: var(--text-secondary);
}
.contact-method a:hover { color: var(--coral); }

/* ---- Contact Form ---- */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(155, 181, 165, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}
.btn.sending { opacity: 0.7; }
.btn.sent {
  background: var(--sage);
  border-color: var(--sage);
}

/* ---- Footer ---- */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(10) opacity(0.85);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.coming-tag {
  font-size: 10px;
  background: var(--coral);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .hero-card { align-self: auto !important; }
  .hero-card-1, .hero-card-2, .hero-card-3 { animation: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .services-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1000;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.3rem; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 2.2rem; }

  .services-grid, .services-grid-3 { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 120px 0 60px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-sidebar { position: static; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: all;
    padding: 8px 0 0 16px;
    margin-top: 0;
    min-width: 0;
    border: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding: 6px 0;
    font-size: 1rem;
    border-left: none !important;
    color: var(--text-light) !important;
  }
  .nav-dropdown-menu a:hover {
    background: transparent;
    color: var(--sage-dark) !important;
  }

  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .location-card-coming { grid-column: span 2; }

  .why-grid { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-description { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { flex-direction: column; }
  .about-stats { gap: 24px; }
  .stat-number { font-size: 2rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card-coming { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr; }
  .about-blob { padding: 28px; }
}

/* ---- Services Grid 3-col ---- */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.service-card-link:hover { color: inherit; }
.service-link-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-dark);
  transition: all var(--transition);
}
.service-card-link:hover .service-link-text {
  color: var(--coral);
  gap: 10px;
}

/* ---- Service Page Hero ---- */
.service-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.service-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  border-radius: 0 0 0 40%;
  opacity: 0.08;
}
.service-hero-slp {
  background: linear-gradient(160deg, var(--sage-lighter) 0%, var(--cream) 40%, var(--white) 100%);
}
.service-hero-slp::after { background: var(--sage); }
.service-hero-ot {
  background: linear-gradient(160deg, var(--coral-lighter) 0%, var(--cream) 40%, var(--white) 100%);
}
.service-hero-ot::after { background: var(--coral); }
.service-hero-ppec {
  background: linear-gradient(160deg, var(--sage-lighter) 0%, var(--coral-lighter) 40%, var(--white) 100%);
}
.service-hero-ppec::after { background: linear-gradient(135deg, var(--sage), var(--coral)); }
.service-hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.service-hero-content .section-label { margin-bottom: 16px; }
.service-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.service-hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}

/* ---- Service Detail Layout ---- */
.service-detail { background: var(--white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
}
.service-detail-main h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 16px;
  margin-top: 56px;
  position: relative;
  padding-bottom: 12px;
}
.service-detail-main h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
}
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15.5px;
}

/* ---- Conditions Grid ---- */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 16px;
}
.condition-card {
  background: var(--sage-lighter);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  border-left: 4px solid var(--sage);
}
.condition-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.condition-card h3 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.condition-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.condition-card-ot {
  background: var(--coral-lighter);
  border-left-color: var(--coral);
}
.condition-card-ppec {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage-dark);
}

/* ---- Approach List ---- */
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}
.approach-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.approach-item:last-child { border-bottom: none; }
.approach-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  border-radius: var(--radius-sm);
}
.approach-number-ot {
  color: var(--coral);
  background: var(--coral-lighter);
}
.approach-number-ppec {
  color: var(--sage-dark);
  background: var(--sage-lighter);
}
.approach-item h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 6px;
}
.approach-item p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Service Sidebar ---- */
.service-detail-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage-light);
}
.sidebar-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-facts li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.sidebar-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--sage);
  border-radius: 50%;
}
.sidebar-facts li strong {
  color: var(--text-primary);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1px;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--sage-lighter), var(--cream));
  border-color: var(--sage-light);
}
.sidebar-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sidebar-phone {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}
.sidebar-phone a {
  font-weight: 600;
  color: var(--sage-dark);
}

/* ---- Partner Locations ---- */
.partner-locations {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}
.partner-locations li {
  font-size: 14.5px;
  color: var(--text-secondary);
  list-style: disc;
  line-height: 1.5;
}

/* ---- Animation States ---- */
/* All content visible by default — no hidden-until-scroll */
