/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --green: #4caf50;
  /* Primary */
  --green-d: #388e3c;
  --green-l: #8bc34a;
  /* Secondary */
  --accent: #cddc39;
  /* Accent */
  --ink: #212121;
  --ink-mid: #424242;
  --ink-soft: #6b7280;
  --bg: #ffffff;
  --bg-tint: #f7faf7;
  --bg-green: #f0f7f0;
  --border: rgba(76, 175, 80, 0.15);

  --f-serif: "Playfair Display", Georgia, serif;
  --f-sans: "Lato", system-ui, sans-serif;

  /* glass */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-brd: rgba(255, 255, 255, 0.55);
  --glass-shd: 0 8px 32px rgba(76, 175, 80, 0.1);
  --blur: blur(22px);

  /* radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s var(--ease);

  /* capsule nav dimensions */
  --nav-h: 52px;
  --nav-top: 14px;
  --nav: calc(var(--nav-h) + var(--nav-top) + 16px);
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav);
  overflow-x: hidden !important;
}

body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glass card helper */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shd);
}

/* Section header */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.label {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.label.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-head h2,
.about-copy h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p,
.about-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

/* ============================================================
   INTERACTIVE ELEMENTS (Primary, Secondary, Nav)
   ============================================================ */

/* --- RIPPLE BASE (Required for all) --- */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 0;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- 1. PRIMARY BUTTONS (Weighty / Gradient / Outline) --- */
.btn-primary,
.btn-ghost,
.btn-book,
.mob-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  z-index: 1;
  overflow: hidden;

  /* Truly Transparent Frosted Glass */
  color: rgba(21, 21, 21, 0.8);
  /* Refined dark text for frosted feel */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);

  border: none;
  /* Border handled by pseudo-element */
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.03),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

/* Animated Gradient Border via Pseudo-element */
.btn-primary::before,
.btn-ghost::before,
.btn-book::before,
.mob-book::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  /* Border thickness */
  background: linear-gradient(
    135deg,
    var(--green) 0%,
    var(--green-l) 50%,
    var(--accent) 100%
  );
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-dance 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.btn-ghost {
  padding: 13px 26px;
}

@keyframes border-dance {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-primary:hover,
.btn-ghost:hover,
.btn-book:hover,
.mob-book:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
  color: var(--ink);
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.btn-primary:hover::before,
.btn-ghost:hover::before,
.btn-book:hover::before,
.mob-book:hover::before {
  animation-duration: 2s;
}

.btn-primary svg:not([fill="none"]),
.btn-ghost svg:not([fill="none"]),
.btn-book svg:not([fill="none"]),
.mob-book svg:not([fill="none"]) {
  fill: currentColor;
}

.btn-primary svg,
.btn-ghost svg,
.btn-book svg,
.mob-book svg {
  transition: var(--t);
}

.btn-primary:hover svg:not([fill="none"]),
.btn-ghost:hover svg:not([fill="none"]),
.btn-book:hover svg:not([fill="none"]),
.mob-book:hover svg:not([fill="none"]) {
  fill: var(--ink);
}

/* --- 2. SECONDARY ELEMENTS (Icons / Social / Utilitarian) --- */
.social-btn,
.scroll-cue,
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* Clean transparent white glass */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: none;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.03),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.social-btn {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.scroll-cue {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--green);
  margin-bottom: 28px;
  animation: bounce 2.8s ease-in-out infinite;
}

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.social-btn:hover,
.scroll-cue:hover,
.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 25px 0 rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.social-btn:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.scroll-cue:hover {
  color: var(--green-d);
}

/* --- 3. NAV BUTTONS (Links / Navbar Items) --- */
.nav-link,
.mob-link {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.mob-link {
  font-size: 1rem;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
  border-radius: 0;
}

.nav-link:hover,
.nav-link.active,
.mob-link:hover {
  color: var(--green);
  background: rgba(139, 195, 74, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mob-link:hover {
  padding-left: 24px;
}

/* ============================================================
   HERO ASSETS
   ============================================================ */
.hero-bg-img {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   NAVBAR  — Floating Capsule
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1080px;
  height: var(--nav-h);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
  z-index: 1000;
  transition: var(--t);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 12px 40px 0 rgba(31, 38, 135, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.nav-inner {
  max-width: 100%;
  height: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Center Logo */
.nav-center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2;
}

/* Logo Heartbeat Animation */
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.1));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.2));
  }
}

.nav-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  animation: heartbeat 3s ease-in-out infinite;
  transition: var(--t);
}

@media (max-width: 1023px) {
  /* Navbar Restore */
  .navbar {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: none !important;
    padding: 0;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    width: 100%;
  }
  .nav-brand {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
  }
  .logo-text {
    font-size: 0.92rem; /* Slightly smaller to ensure fit */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-center-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }
  .nav-logo-img {
    height: 20px; /* Refined height */
  }
  .hamburger,
  .mob-menu,
  .nav-right {
    display: none !important;
  }

  /* Image Hiding */
  .hero-art,
  .women-section .care-art,
  .children-section .care-art {
    display: none !important;
  }

  .hero-wrap {
    padding-top: 20px;
  }
}

/* Right Side */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.logo-text {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--green-d) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 2px;
  /* prevent gradient clip on last glyph */
}

.logo-dr {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(120deg, var(--ink-mid) 0%, var(--ink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Nav links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: var(--t);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
  background: rgba(76, 175, 80, 0.08);
}

/* Book Now CTA — hidden on mobile */
.btn-book {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  color: #fff;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--r-pill);
  box-shadow: 0 3px 14px rgba(76, 175, 80, 0.36);
  transition: var(--t);
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.48);
}

.btn-book svg {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — floating card below capsule */
.mob-menu {
  position: fixed;
  top: calc(var(--nav-top) + var(--nav-h) + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: calc(100% - 32px);
  max-width: 480px;
  padding: 20px 20px 28px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
}

.mob-menu.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mob-menu ul {
  margin-bottom: 20px;
}

.mob-link {
  display: block;
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 20px;
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.mob-link:hover {
  color: var(--green);
  padding-left: 6px;
}

.mob-book {
  display: block !important;
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: var(--nav);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Bottom fade to merge with next section */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 1;
  pointer-events: none;
}

.hero-blobs {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.b1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(139, 195, 74, 0.05) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation: drift 14s ease-in-out infinite;
}

.b2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.04) 0%,
    transparent 70%
  );
  bottom: 5%;
  left: -80px;
  animation: drift 18s ease-in-out infinite reverse;
}

.b3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(205, 220, 57, 0.04) 0%,
    transparent 70%
  );
  top: 38%;
  left: 45%;
  animation: drift 11s ease-in-out infinite 1.5s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(18px, -18px) scale(1.04);
  }

  66% {
    transform: translate(-14px, 14px) scale(0.97);
  }
}

.hero-wrap {
  position: relative;
  z-index: 2; /* Above the bottom fade */
  display: flex;
  flex-direction: column-reverse; /* Image above text on mobile */
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 40px 20px 56px;
  flex: 1;
}

@media (min-width: 1024px) {
  .hero-wrap {
    flex-direction: row;
    text-align: left;
    padding: 80px 40px;
    gap: 60px;
  }
}

/* Pill badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-pill);
  padding: 7px 18px;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-l);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2);
}

/* Hero heading */
.hero-copy h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  padding: 0 2px;
  /* prevent gradient clip on edge glyphs */
  background: linear-gradient(140deg, var(--ink) 30%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy h1 em {
  font-style: italic;
}

.hero-lead {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 24px;
}

.hero-lead strong {
  color: var(--green-d);
  font-weight: 700;
}

/* Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-d);
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.tag svg {
  stroke: var(--green);
  fill: rgba(76, 175, 80, 0.18);
  flex-shrink: 0;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 28px;
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0 16px;
}

.trust-item svg {
  stroke: var(--green);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── Hero & Illustration Wrapper ── */
.hero-art {
  width: 100%;
  max-width: 460px;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  animation: illustration-float 7s ease-in-out infinite;
}

.hero-main-img,
.care-art img,
.about-art img,
.holistic-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

@keyframes illustration-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Radial glow */
.ls-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(76, 175, 80, 0.12) 0%,
    rgba(139, 195, 74, 0.05) 45%,
    transparent 72%
  );
  filter: blur(24px);
  pointer-events: none;
  border-radius: 50%;
}

/* Orbiting rings */
.ls-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.ls-ring-1 {
  width: 230px;
  height: 230px;
  border: 1.5px solid rgba(76, 175, 80, 0.15);
  animation: orbit-1 20s linear infinite;
}

.ls-ring-2 {
  width: 310px;
  height: 310px;
  border: 1px dashed rgba(139, 195, 74, 0.12);
  animation: orbit-2 32s linear infinite;
}

@keyframes orbit-1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Dots on rings */
.ls-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-l), var(--green));
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(139, 195, 74, 0.3);
}

.ls-dot-sm {
  width: 8px;
  height: 8px;
  top: -4px;
  background: linear-gradient(135deg, var(--lime), var(--green-l));
  opacity: 0.5;
}

/* Sparkles */
.sp {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.sp::before,
.sp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 9999px;
  background: var(--sp-c, rgba(76, 175, 80, 0.75));
}

.sp::before {
  width: var(--sp-w, 14px);
  height: calc(var(--sp-w, 14px) * 0.2);
  transform: translate(-50%, -50%);
}

.sp::after {
  width: calc(var(--sp-w, 14px) * 0.2);
  height: var(--sp-w, 14px);
  transform: translate(-50%, -50%);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.15) rotate(0deg);
  }

  40%,
  60% {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
}

.sp1 {
  top: 8%;
  right: 11%;
  --sp-w: 16px;
  animation: twinkle 3.2s ease-in-out infinite 0s;
}
.sp2 {
  top: 22%;
  left: 7%;
  --sp-w: 10px;
  --sp-c: rgba(139, 195, 74, 0.8);
  animation: twinkle 2.8s ease-in-out infinite 0.6s;
}
.sp3 {
  bottom: 25%;
  left: 8%;
  --sp-w: 20px;
  animation: twinkle 4.2s ease-in-out infinite 1s;
}
.sp4 {
  top: 40%;
  right: 18%;
  --sp-w: 14px;
  --sp-c: rgba(205, 220, 57, 0.85);
  animation: twinkle 3.8s ease-in-out infinite 0.5s;
}
.sp5 {
  bottom: 12%;
  right: 22%;
  --sp-w: 18px;
  animation: twinkle 4.5s ease-in-out infinite 1.5s;
}
.sp6 {
  top: 60%;
  left: 15%;
  --sp-w: 12px;
  --sp-c: rgba(76, 175, 80, 0.55);
  animation: twinkle 3.5s ease-in-out infinite 0.8s;
}

/* Glass logo card */
.ls-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow:
    0 20px 60px rgba(76, 175, 80, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.ls-card img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(76, 175, 80, 0.12));
}

/* Science float circle */
.sci-float {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 10px 36px rgba(76, 175, 80, 0.22),
    0 0 0 6px rgba(76, 175, 80, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 6;
  overflow: hidden;
  animation: float-sci 5.5s ease-in-out infinite 1.2s;
}

.sci-float img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes float-sci {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-11px) scale(1.03);
  }
}

/* Scroll cue */
.scroll-cue {
  position: relative;
  z-index: 4; /* Above the bottom fade and blobs */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--green);
  margin-bottom: 28px;
  animation: bounce 2.8s ease-in-out infinite;
  transition: var(--t);
  overflow: hidden;
}

.scroll-cue:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--green-d);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  55% {
    transform: translateY(6px);
  }
}

/* ============================================================
   PARALLAX BACKGROUNDS (Shared across sections)
   ============================================================ */
.section-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-bg-img {
  position: absolute;
  top: -15%; /* Extra bleed for parallax */
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  opacity: 0.15;
  will-change: transform;
}

.parallax-blobs {
  position: absolute;
  inset: -10%;
  z-index: 1;
  will-change: transform;
}

.parallax-blobs .blob {
  opacity: 0.04;
}

/* ============================================================
   CARE SECTIONS — Women's & Children's
   ============================================================ */
.care-section {
  padding: 60px 0; /* Reduced for mobile */
  position: relative;
}

@media (min-width: 1024px), (orientation: landscape) {
  .care-section {
    padding: 120px 0;
  }
}

.women-section {
  background: var(--bg);
}

.children-section {
  background: var(--bg-green);
}

/* Intelligent Merge: Fade-in for tinted sections */
.children-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Intelligent Merge: Fade-out for tinted sections */
.children-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

.care-split {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.care-art {
  width: 100%;
  max-width: 480px;
}

.care-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(76, 175, 80, 0.14));
}

.care-copy {
  width: 100%;
  max-width: 540px;
  text-align: center;
}

@media (min-width: 1024px) {
  .care-copy {
    text-align: left;
  }
}

.care-copy h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 16px 0 18px;
}

.care-copy h2 em {
  font-style: italic;
}

.care-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.care-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 24px;
  margin-bottom: 32px;
  text-align: left; /* Left align globally */
}

@media (min-width: 640px) {
  .care-list {
    grid-template-columns: 1fr 1fr;
  }
}

.care-list li {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  box-shadow: none;
  gap: 12px;
  transition: var(--t);
  line-height: 1.4;
}

.care-list li:hover {
  transform: translateX(4px);
  color: var(--green-d);
}

.care-list li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px; /* Align with first line of text */
}

.care-list li::before {
  display: none !important;
}

/* Enlarged multi-line items */
@media (min-width: 640px) {
  .care-list li.twoline {
    grid-column: span 2;
    font-size: 1.05rem;
  }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 60px 0; /* Reduced for mobile */
  background: var(--bg);
}

@media (min-width: 1024px), (orientation: landscape) {
  .process {
    padding: 120px 0;
  }
}

.steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(76, 175, 80, 0.12);
}

.step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(76, 175, 80, 0.1);
  line-height: 1;
}

.step-icon {
  height: 160px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.step-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.08) 0%,
    transparent 70%
  );
  z-index: 0;
}

.step-icon img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.step h3 {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.step p {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 260px;
}

.step-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--green);
  opacity: 0.3;
}

.step-arrow svg {
  width: 32px;
  height: 32px;
  transform: rotate(90deg);
}

.process-cta {
  text-align: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 60px 0; /* Reduced for mobile */
  background: var(--bg-tint);
  position: relative;
}

@media (min-width: 1024px), (orientation: landscape) {
  .about {
    padding: 120px 0;
  }
}

/* Intelligent Merge: Fade-in for About */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Intelligent Merge: Fade-out for About */
.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

.about-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-art {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.about-art > img {
  width: 100%;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 16px 36px rgba(76, 175, 80, 0.14));
}

.about-float {
  position: absolute;
  bottom: -16px;
  right: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 230px;
}

.af-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(76, 175, 80, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-icon svg {
  stroke: var(--green);
}

.about-float strong {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}

.about-float span {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.about-copy {
  padding-top: 16px;
  text-align: center;
}

@media (min-width: 1024px) {
  .about-copy {
    text-align: left;
  }
}

.about-copy .label {
  display: block;
}

.about-copy h2 {
  text-align: inherit;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

@media (min-width: 1024px) {
  .about-copy h2 {
    text-align: left;
  }
}

.about-lead {
  margin: 0 0 28px;
  max-width: 100%;
}

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

@media (min-width: 640px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-tile {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  box-shadow: var(--glass-shd);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered on mobile */
  gap: 10px;
}

@media (min-width: 1024px) {
  .mv-tile {
    align-items: flex-start;
  }
}

.mv-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(76, 175, 80, 0.15);
}

.mv-tile-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.mv-tile-icon svg {
  stroke: #fff;
}

.mv-tile-label {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.mv-tile p {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   CONTACT  — Action
   ============================================================ */
.contact {
  position: relative;
  padding: 60px 0; /* Reduced for mobile */
  background: var(--bg-tint);
  overflow: hidden;
}

@media (min-width: 1024px), (orientation: landscape) {
  .contact {
    padding: 120px 0;
  }
}



/* Intelligent Merge: Fade-in for Contact */
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Intelligent Merge: Fade-out for Contact */
.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

.contact-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.cb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.08) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
}

.cb2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(139, 195, 74, 0.08) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
}

.contact .container {
  position: relative;
  z-index: 1;
}

/* Top copy */
.contact-top {
  text-align: center;
  margin-bottom: 56px;
}

.contact-top h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-top p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 56px;
}

.contact-form {
  padding: 40px;
  text-align: left;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50' opacity='0.07'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.form-title {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-d);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: var(--t);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

@media (min-width: 640px) {
  .form-actions {
    flex-direction: row;
  }
  .form-actions button {
    flex: 1;
  }
}

.contact-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Info cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 52px;
}

.c-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: var(--t);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.c-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.12);
}

.c-icon {
  width: 52px;
  height: 52px;
  background: rgba(76, 175, 80, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.c-icon svg {
  stroke: var(--green);
}

.c-card h4 {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.c-card a,
.c-card span {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: block;
  transition: var(--t);
}

.c-card a:hover {
  color: var(--green);
}

/* Map */
.map-wrap {
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.map-frame {
  position: relative;
  z-index: 2;
  width: 100% !important;
  max-width: 880px !important;
  height: 450px !important; /* Impactful height override */
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.map-frame iframe {
  width: 100% !important;
  height: 100% !important;
}

.map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-d);
  transition: var(--t);
}

.map-cta:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3);
}

.map-cta svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.directions-link {
  margin-top: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--ink-soft) !important;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.825rem;
  transition: var(--t);
  display: inline-block !important;
}

.directions-link:hover {
  background: rgba(76, 175, 80, 0.05);
  color: var(--green) !important;
}

/* Social */
.social-wrap {
  text-align: center;
}

.social-label {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: var(--t);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   HOLISTIC HEALING
   ============================================================ */
.holistic {
  background: var(--bg);
  padding: 60px 0 0; /* Reduced for mobile */
  overflow: hidden;
  text-align: center;
  position: relative;
}

@media (min-width: 1024px), (orientation: landscape) {
  .holistic {
    padding: 120px 0 0;
  }
}


.holistic-head {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.holistic-head h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 12px 0 18px;
}

.holistic-head p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.holistic-art {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 24px; /* Added breathing room for mobile */
}

@media (orientation: landscape) {
  .holistic-art {
    padding: 0 15% !important; /* Forced padding for better landscape framing */
  }
}

@media (min-width: 1024px) {
  .holistic-art {
    margin-top: -100px; /* Drastically reduced for desktop */
    padding: 0; /* Revert to full width on large desktop */
  }
}

.hero-img-wrap.full-width {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 0 60px !important;
}

.holistic-art img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: block;
  filter: none !important; /* Removed dark shadow */
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 80px 0;
  position: relative;
  background: var(--bg-tint);
  overflow: hidden;
}

/* Intelligent Merge: Fade-in for Reviews */
.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Intelligent Merge: Fade-out for Reviews */
.reviews-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

.reviews-slider-wrap {
  position: relative;
  width: 100%;
}

.reviews-grid {
  display: flex;
  overflow-x: hidden; /* Prevent scroll hijacking on desktop */
  gap: 24px;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (hover: none) {
  .reviews-grid {
    overflow-x: auto; /* Allow native swiping on touch devices */
  }
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  box-shadow: var(--glass-shd);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--t);
  position: relative;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-brd);
  color: var(--green-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--t);
  box-shadow: var(--glass-shd);
}

.slider-nav:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: -24px;
}

.slider-nav.next {
  right: -24px;
}

@media (max-width: 1023px) {
  .reviews-slider-wrap {
    padding-bottom: 48px;
  }
  .slider-nav {
    display: flex;
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .slider-nav:hover {
    transform: scale(1.1);
  }
  .slider-nav.prev {
    left: auto;
    right: calc(50% + 8px);
  }
  .slider-nav.next {
    right: auto;
    left: calc(50% + 8px);
  }
}

.review-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.1);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
}

.review-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tint);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar svg {
  width: 50%;
  height: 50%;
  color: var(--ink-soft);
}

.google-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.2;
}

.review-date {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #ffb400;
}

.review-text {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
}

.review-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.see-more-btn {
  background: none;
  border: none;
  color: var(--green);
  cursor: pointer;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 0;
  margin-top: 4px;
}

.see-more-btn:hover {
  text-decoration: underline;
}

.review-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.review-chip {
  background: rgba(76, 175, 80, 0.1);
  color: var(--green-d);
  padding: 4px 10px;
  border-radius: 12px;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  color: var(--ink-soft);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-single-wrap {
  margin-bottom: 60px;
}

.merged-footer-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.08);
  border-color: var(--green-l);
}

.footer-brand-side {
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.1));
  position: relative;
  z-index: 2;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-name {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.footer-tagline {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-d);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
  color: var(--ink-soft);
}

.footer-title {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--ink-mid);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
  transform: translateX(5px);
}

.contact-item i {
  width: 18px;
  height: 18px;
  color: var(--green-l);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

.footer-contact-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-capsule-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: var(--t);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.footer-pill:hover {
  background: #fff;
  border-color: var(--green-l);
  color: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.footer-pill svg {
  color: var(--green);
  flex-shrink: 0;
}

.footer-pill.wa {
  background: rgba(76, 175, 80, 0.05);
  border-color: rgba(76, 175, 80, 0.2);
}

.footer-pill.wa:hover {
  background: var(--green);
  color: #fff;
}

.footer-pill.wa:hover svg {
  color: #fff;
}

/* ============================================================
   AOS MOBILE OVERRIDES
   ============================================================ */
@media (max-width: 639px) {
  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: translate3d(0, 100px, 0);
  }
}

/* ============================================================
   RESPONSIVE — TABLET 640px+
   ============================================================ */
@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }

  .nav-inner {
    padding: 0 32px;
  }

  .hero-wrap {
    padding: 60px 32px 64px;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .hero-art {
    max-width: 400px;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .steps-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }

  .step-arrow {
    padding: 0 4px;
  }

  .step-arrow svg {
    transform: none;
  }

  .step {
    height: 100%;
  }

  .contact-hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .merged-footer-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand-side {
    text-align: left;
    align-items: flex-start;
    flex: 1;
  }

  .footer-brand-side .footer-logo {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .footer-brand-side .footer-logo-text {
    align-items: flex-start;
  }

  .footer-contact-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-capsule-wrap {
    justify-content: flex-start;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --nav: 72px;
  }

  .container {
    padding: 0 40px;
  }

  .nav-inner {
    padding: 0 28px;
  }

  .nav-links {
    display: flex;
  }

  .btn-book {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .hero-wrap {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-tags {
    justify-content: flex-start;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .hero-lead {
    margin-left: 0;
  }

  .hero-art {
    flex: 1;
    max-width: none;
  }

  .hero-img {
    max-width: 520px;
    margin: 0 auto;
  }

  .care-split {
    flex-direction: row;
    gap: 80px;
    align-items: center;
  }

  .care-split.reverse {
    flex-direction: row-reverse;
  }

  .care-art {
    max-width: none;
    flex: 1;
  }

  .care-copy {
    max-width: none;
    flex: 1;
  }

  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-art {
    max-width: none;
    margin: 0;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .map-frame {
    height: 340px;
  }

  .merged-footer-card {
    gap: 80px;
    align-items: center;
  }

  .footer-brand-side {
    text-align: left;
    align-items: flex-start;
  }

  .footer-brand-side .footer-logo {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .footer-brand-side .footer-logo-text {
    align-items: flex-start;
  }
}

/* ============================================================
   WIDE 1280px+
   ============================================================ */
@media (min-width: 1280px) {
  .hero-wrap,
  .process .container,
  .problem,
  .about,
  .contact {
    --section-pad: 100px 0;
  }

  .problem,
  .process,
  .about,
  .contact {
    padding: 100px 0;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}


.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  padding: 24px;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.2);
}

.faq-question {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-family: var(--f-sans);
  flex-shrink: 0;
}

.faq-answer p {
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-question {
    font-size: 1.1rem;
  }
}
