/* =========================================================
   Agape United Home Care
   Mobile-first design system inspired by spotoncle.com
   Sage + beige + charcoal · Nunito · rounded-2xl · animated
   ========================================================= */

:root {
  /* Palette — brand blues matched to the Agape logo
     (variable names kept as --sage* throughout the codebase
     so we don't have to touch every selector; values are blue now.) */
  --sage:        #5DA8D8;
  --sage-light:  #9CC8E4;
  --sage-dark:   #4A95C6;
  --sage-deep:   #2D6FA1;
  --sage-soft:   rgba(93, 168, 216, 0.14);
  --beige:       #ede8e3;
  --beige-soft:  hsla(30, 22%, 91%, 0.5);
  --beige-warm:  #faf6ef;
  --cream:       #fbf8f3;
  --charcoal:    #1e1e1e;
  --charcoal-soft:#2d2d2d;
  --ink:         #2b2b2b;
  --muted:       #5b6266;
  --muted-2:     #7a818a;
  --hairline:    rgba(0, 0, 0, 0.06);
  --hairline-2:  rgba(0, 0, 0, 0.10);
  --accent:      #2D6FA1;
  --accent-hover:#1E5577;
  --warm:        #e8a87c;
  --gold:        #c39651;
  --white:       #ffffff;

  /* Layout */
  --container: 1240px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 28px;
  --r-3xl: 36px;
  --header-h: 72px;
  --header-h-scrolled: 60px;
  --shadow-xs: 0 1px 2px rgba(30,30,30,0.04);
  --shadow-sm: 0 4px 14px rgba(30,30,30,0.06);
  --shadow-md: 0 14px 36px rgba(30,30,30,0.10);
  --shadow-lg: 0 28px 70px rgba(30,30,30,0.16);
  --shadow-xl: 0 40px 100px rgba(30,30,30,0.22);

  /* Type */
  --font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", "Helvetica Neue", Arial, sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.2, 0.7, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:   cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevent any horizontal scroll on mobile, regardless of what
     children try to overflow (marquee track, decorative blobs, etc.) */
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
@media (min-width: 768px) {
  body { font-size: 17px; }
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--charcoal);
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 7vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.1rem, 2.6vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--hairline); margin: 3rem 0; }
.text-shadow-hero { text-shadow: 0 1px 0 rgba(255,255,255,0.55); }

.container, .container-safe {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container, .container-safe { padding: 0 32px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: .9em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section--beige { background: var(--beige); }
.section--beige-soft { background: var(--beige-soft); }
.section--charcoal { background: var(--charcoal); color: #d9d9d9; }
.section--charcoal h2, .section--charcoal h3 { color: white; }
.section--gradient {
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(93, 168, 216,0.22), transparent 55%),
    radial-gradient(700px 400px at 90% 100%, rgba(232,168,124,0.18), transparent 60%),
    var(--cream);
}
.center { text-align: center; }
.lead { font-size: clamp(1rem, 2.4vw, 1.22rem); color: var(--muted); max-width: 64ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ----- Decorative animated blobs ----- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.blob--sage { background: radial-gradient(circle, rgba(93, 168, 216,0.55), transparent 60%); }
.blob--warm { background: radial-gradient(circle, rgba(232,168,124,0.35), transparent 60%); }
.blob--cream { background: radial-gradient(circle, rgba(237,232,227,0.85), transparent 60%); }
@keyframes float-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(20px,-25px) scale(1.08); }
  66%     { transform: translate(-15px,15px) scale(0.94); }
}
@keyframes float-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-22px,18px) scale(1.06); }
}
.blob--anim-1 { animation: float-1 16s ease-in-out infinite; }
.blob--anim-2 { animation: float-2 22s ease-in-out infinite; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease-out), background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.96); }
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn--primary {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(30,30,30,0.18);
}
.btn-primary:hover, .btn--primary:hover {
  background: #000;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(30,30,30,0.28);
}
.btn-secondary, .btn--secondary {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--hairline-2);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover, .btn--secondary:hover {
  background: var(--beige);
  border-color: rgba(0,0,0,0.16);
}
.btn--sage {
  background: var(--sage-deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45, 111, 161,0.32);
}
.btn--sage:hover { background: var(--accent-hover); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--hairline-2);
}
.btn--ghost:hover { background: rgba(0,0,0,.04); }
.btn--ghost-light {
  background: rgba(255,255,255,0.14);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.22); color: white; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 768px) { .btn-row { gap: 12px; } }

/* Animated arrow icon on hover */
.btn .arr { transition: transform .2s var(--ease-out); }
.btn:hover .arr { transform: translateX(3px); }

/* ----- Utility bar ----- */
.utilbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  font-size: .78rem;
  padding: 9px 0;
  display: none;
}
@media (min-width: 900px) { .utilbar { display: block; } }
.utilbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utilbar a { color: rgba(255,255,255,0.92); font-weight: 700; }
.utilbar a:hover { color: var(--sage); }
.utilbar__links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.utilbar__links svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; opacity: 0.7; }
.utilbar__right { color: rgba(255,255,255,0.6); font-size: .76rem; letter-spacing: .04em; }

/* ----- Header / nav ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(251, 248, 243, 0.92);
  box-shadow: 0 8px 30px rgba(30,30,30,0.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  transition: padding .25s ease;
}
.site-header.is-scrolled .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--charcoal);
}
.logo__mark {
  width: 48px; height: 48px;
  background: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform .2s var(--ease-spring), border-radius .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.04); border-radius: 14px; }
.logo__mark svg { width: 24px; height: 24px; color: var(--sage); }
.logo__mark img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text .word {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.logo__text .sub {
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}
@media (min-width: 480px) { .logo__text .word { font-size: 1.2rem; } .logo__text .sub { font-size: .68rem; } }

.nav { display: flex; align-items: center; gap: 22px; }
.nav__list {
  list-style: none;
  padding: 0; margin: 0;
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1024px) { .nav__list { display: flex; } }
.nav__list a {
  color: var(--ink);
  font-weight: 600;
  font-size: .94rem;
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav__list a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--charcoal);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .25s var(--ease-out);
}
.nav__list a:hover,
.nav__list a.active { color: var(--charcoal); }
.nav__list a:hover::after,
.nav__list a.active::after { transform: scaleX(1); }
.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; margin-left: 6px; } }

.nav-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--hairline-2);
  padding: 10px;
  cursor: pointer;
  color: var(--charcoal);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  transition: transform .15s ease;
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ----- Mobile menu overlay (fullscreen) ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .3s var(--ease-out), visibility .25s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu__close {
  background: var(--white);
  border: 1px solid var(--hairline-2);
  padding: 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--charcoal);
}
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 32px;
}
.mobile-menu__nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__nav li { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(1) { transition-delay: .05s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(2) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(3) { transition-delay: .11s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(4) { transition-delay: .14s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(5) { transition-delay: .17s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(6) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(7) { transition-delay: .23s; }
.mobile-menu__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 1px solid var(--hairline);
  letter-spacing: -0.02em;
}
.mobile-menu__nav a:hover { color: var(--accent-hover); }
.mobile-menu__nav a::after {
  content: "→";
  color: var(--sage-deep);
  font-size: 1.2rem;
  transition: transform .2s var(--ease-out);
}
.mobile-menu__nav a:hover::after { transform: translateX(4px); }
.mobile-menu__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu__contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: .9rem;
  color: var(--muted);
}
.mobile-menu__contact strong { color: var(--charcoal); display: block; margin-bottom: 4px; }
body.menu-open { overflow: hidden; }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0 clamp(70px, 10vw, 130px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 15%, rgba(93, 168, 216,0.32), transparent 50%),
    radial-gradient(circle at 15% 90%, rgba(232,168,124,0.18), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--beige-warm) 100%);
}
.hero .blob--1 { width: 480px; height: 480px; top: -180px; right: -120px; }
.hero .blob--2 { width: 360px; height: 360px; bottom: -160px; left: -80px; }

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.1fr 0.95fr; gap: 56px; }
}

.hero__copy h1 .ital {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 800;
}
.hero__copy .lead { font-size: clamp(1.05rem, 2.5vw, 1.25rem); margin: 18px 0 28px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.hero__trust .pill {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust .pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--charcoal);
}
.hero__trust__caption {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero visual — animated, image-free abstract scene */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero__scene {
  position: absolute;
  inset: 0;
  border-radius: var(--r-3xl);
  background:
    linear-gradient(165deg, var(--sage-light) 0%, var(--sage-deep) 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  isolation: isolate;
}
.hero__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.4), transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(30,30,30,0.18), transparent 60%);
}
.hero__scene::after {
  /* soft caustic dot pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 2px);
  background-size: 28px 28px;
  mask: radial-gradient(circle at center, black, transparent 70%);
  -webkit-mask: radial-gradient(circle at center, black, transparent 70%);
  opacity: 0.4;
}
.hero__scene-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.hero__scene-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 76%;
}
.hero__scene-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  align-self: flex-start;
}
.hero__scene-badge .dot {
  width: 8px; height: 8px;
  background: var(--warm);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__scene-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 130px; height: 130px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 32px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: float-icon 6s ease-in-out infinite;
}
@keyframes float-icon {
  0%,100% { transform: translate(-50%, -55%); }
  50%     { transform: translate(-50%, -60%); }
}
.hero__scene-icon svg { width: 64px; height: 64px; color: white; }
.hero__scene-icon img { width: 86px; height: 86px; object-fit: contain; border-radius: 14px; background: white; padding: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* Hero scene — team-photo variant */
.hero__scene--photo { background: var(--charcoal); }
.hero__scene--photo::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.hero__scene--photo::after { display: none; }
.hero__scene--photo .hero__scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 0;
  display: block;
}
.hero__scene--photo .hero__scene-content {
  z-index: 2;
  justify-content: space-between;
}
.hero__scene--photo .hero__scene-caption h3 {
  color: white;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__scene--photo .hero__scene-caption p {
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.hero__scene--photo .hero__scene-caption { max-width: 80%; }
.hero__scene-caption {
  position: relative;
  color: white;
  z-index: 2;
}
.hero__scene-caption h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.hero__scene-caption p {
  margin: 0;
  font-size: .92rem;
  opacity: 0.9;
}

/* Floating glass cards */
.hero__float {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-xl);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-card 7s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.hero__float--1 {
  bottom: -22px; left: -10px;
  max-width: 220px;
  animation-delay: 0s;
}
.hero__float--2 {
  top: 30px; right: -16px;
  max-width: 200px;
  animation-delay: -3s;
}
@media (max-width: 480px) {
  .hero__float--1 { left: 10px; bottom: -16px; max-width: 180px; padding: 10px 14px; }
  .hero__float--2 { display: none; }
}
.hero__float .ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  color: var(--sage-deep);
  flex-shrink: 0;
}
.hero__float .ring svg { width: 18px; height: 18px; }
.hero__float .label { font-size: .68rem; color: var(--muted); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2; }
.hero__float .val { font-size: .95rem; font-weight: 800; color: var(--charcoal); line-height: 1.2; }

/* Hero scroll cue */
.hero__cue {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  display: none;
}
@media (min-width: 960px) { .hero__cue { display: flex; } }
.hero__cue .line {
  width: 1px; height: 30px;
  background: linear-gradient(180deg, var(--muted), transparent);
  animation: cue-line 1.8s ease-in-out infinite;
}
@keyframes cue-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ----- Marquee for trust strip ----- */
.marquee {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 32s linear infinite;
  width: fit-content;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.marquee__item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; }
.marquee__item .sep { color: var(--sage); font-size: 1.4rem; line-height: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Section heads ----- */
.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-head--left { margin: 0 0 40px; text-align: left; max-width: 760px; }
@media (min-width: 768px) {
  .section-head { margin-bottom: 64px; }
  .section-head--left { margin-bottom: 48px; }
}

/* ----- Grids ----- */
.grid { display: grid; gap: 16px; }
@media (min-width: 600px) { .grid { gap: 22px; } }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ----- Cards (glassmorphism + hover lift) ----- */
.card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: 24px;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .card { padding: 28px; } }
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.92);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: grid; place-items: center;
  color: var(--charcoal);
  margin-bottom: 16px;
  transition: transform .3s var(--ease-spring), border-radius .3s;
  box-shadow: 0 4px 12px rgba(45, 111, 161,0.25);
}
.card:hover .card__icon {
  transform: rotate(-6deg) scale(1.05);
  border-radius: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .35em; font-size: 1.18rem; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }
.card ul { margin: 14px 0 0; padding-left: 18px; }
.card li { margin-bottom: 6px; color: var(--muted); font-size: .94rem; }
.card .tag { margin-bottom: 14px; }

/* "How it works" steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.step {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: 24px;
  position: relative;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.12);
}
.step .num-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.step .num-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .85rem;
}
.step .num {
  font-weight: 800;
  color: var(--sage-deep);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.step h3 { font-size: 1.1rem; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ----- Split feature ----- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.split--reverse > :first-child { order: 0; }
@media (min-width: 960px) { .split--reverse > :first-child { order: 2; } }
.split__visual {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.4), transparent 55%),
    linear-gradient(160deg, var(--sage-light) 0%, var(--sage-deep) 100%);
  border-radius: var(--r-3xl);
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 28px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 2px);
  background-size: 24px 24px;
  mask: radial-gradient(circle at 30% 40%, black, transparent 70%);
  -webkit-mask: radial-gradient(circle at 30% 40%, black, transparent 70%);
  opacity: 0.5;
}
.split__visual blockquote {
  position: relative; z-index: 2;
  color: white;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  margin: 0;
  font-style: italic;
  line-height: 1.45;
}
/* Photo variant: stack image + quote vertically so the quote
   never covers the faces in the photo (was an overlay before). */
.split__visual--photo {
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  aspect-ratio: auto;
  overflow: visible;
  box-shadow: none;
}
.split__visual--photo::before,
.split__visual--photo::after { display: none; }
.split__visual--photo > img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
  display: block;
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-md);
}
.split__visual--photo blockquote {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 20px 24px;
  background: var(--charcoal);
  color: white;
  border-radius: var(--r-xl);
  border: none;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.5;
}
.split__visual--photo blockquote::before {
  color: rgba(255,255,255,0.55);
  font-size: 2.4rem;
}
.split__visual--photo blockquote footer {
  margin-top: 10px;
  font-size: .78rem;
  opacity: 0.85;
}
.split__visual blockquote::before {
  content: "“";
  font-size: 3.6rem;
  line-height: 0;
  vertical-align: -.45em;
  margin-right: 4px;
  color: rgba(255,255,255,0.7);
}
.split__visual blockquote footer {
  margin-top: 16px;
  font-size: .82rem;
  font-style: normal;
  opacity: 0.9;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ----- Owners cards ----- */
.owners { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .owners { grid-template-columns: 1fr 1fr; gap: 22px; } }
.owner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: var(--r-2xl);
  padding: 28px;
  border: 1px solid var(--hairline);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.owner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.owner__avatar {
  width: 76px; height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-deep));
  color: white;
  font-weight: 800;
  font-size: 1.7rem;
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(45, 111, 161,0.4);
  letter-spacing: -0.02em;
}
.owner h3 { margin: 0 0 4px; }
.owner .role { color: var(--sage-deep); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.owner p { margin: 14px 0 0; color: var(--muted); font-size: .96rem; }

/* ----- Why / feature list ----- */
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.why-list li:last-child { border-bottom: 0; }
.why-list .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.why-list li:hover .icon { transform: scale(1.08) rotate(-4deg); }
.why-list .icon svg { width: 20px; height: 20px; }
.why-list h4 { margin: 0 0 4px; font-size: 1.05rem; }
.why-list p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ----- CTA band with sparkles ----- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background: linear-gradient(140deg, var(--sage-deep) 0%, #527563 60%, #3d5b4a 100%);
  color: white;
  padding: clamp(36px, 7vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
  isolation: isolate;
}
.cta-band canvas.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin: 0 0 .4em; font-weight: 800; letter-spacing: -0.025em; }
.cta-band p { margin: 0 0 24px; color: rgba(255,255,255,0.92); font-size: clamp(1rem, 2.4vw, 1.12rem); max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* ----- Service area tiles ----- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 800px) { .area-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.area-tile {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: 20px;
  text-align: left;
  transition: all .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.area-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-soft), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.area-tile:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.area-tile:hover::before { opacity: 1; }
.area-tile > * { position: relative; }
.area-tile h4 { font-size: 1.05rem; margin: 0 0 4px; }
.area-tile p { font-size: .82rem; color: var(--muted); margin: 0; }
.area-tile .pin {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid; place-items: center;
  margin-bottom: 12px;
  transition: transform .25s var(--ease-spring);
}
.area-tile:hover .pin { transform: scale(1.1) rotate(-8deg); }
.area-tile .pin svg { width: 18px; height: 18px; }

/* County chips (PASSPORT coverage list) */
.county-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.county-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  box-shadow: var(--shadow-xs);
  transition: transform .2s var(--ease-out), box-shadow .2s, border-color .2s, background .2s;
}
.county-chip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.county-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--sage);
  background: var(--beige-warm);
}

/* ----- Testimonial cards ----- */
.testimonial {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: var(--r-2xl);
  padding: 28px;
  border: 1px solid var(--hairline);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
}
.testimonial .author {
  margin-top: 18px;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .author::before {
  content: "";
  display: inline-block;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-deep));
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }

/* ----- KPI counters ----- */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
@media (min-width: 700px) { .kpi-row { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.kpi {
  padding: 22px 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
}
.kpi .num {
  display: block;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.kpi .num .suffix { color: var(--sage-deep); }
.kpi .lbl { font-size: .82rem; color: var(--muted); margin-top: 8px; display: block; font-weight: 700; letter-spacing: .02em; }
.kpi--reviews .kpi__stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; margin-bottom: 6px; }
.kpi--reviews .lbl { color: var(--charcoal); }
.kpi--reviews .lbl [data-count] { color: var(--sage-deep); }

/* ----- Page hero ----- */
.page-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(93, 168, 216,0.32), transparent 55%),
    radial-gradient(700px 300px at 0% 100%, rgba(232,168,124,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--beige-warm) 100%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: .25em; }
.page-hero .lead { font-size: clamp(1rem, 2.3vw, 1.18rem); }
.crumbs { font-size: .78rem; color: var(--muted); margin-bottom: 14px; font-weight: 700; letter-spacing: .04em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--charcoal); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ----- Forms ----- */
.form-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 28px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 600px) { .form-card { padding: 36px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--hairline-2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--beige-warm);
  color: var(--charcoal);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: white;
  box-shadow: 0 0 0 4px rgba(45, 111, 161,0.18);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.form-card--embed { padding: 16px; overflow: hidden; }
@media (min-width: 600px) { .form-card--embed { padding: 20px; } }
.form-card--embed iframe { background: var(--beige-warm); border-radius: 8px; }

/* Contact split — info column + embedded form */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 980px) {
  .contact-split { grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
  .contact-side { position: sticky; top: 96px; }
}
.contact-stack { display: flex; flex-direction: column; gap: 12px; }
.contact-stack__item {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  color: var(--charcoal);
  text-decoration: none;
  transition: transform .2s var(--ease-out), box-shadow .2s, border-color .2s, background .2s;
}
.contact-stack__item:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(0,0,0,0.12);
  box-shadow: var(--shadow-md);
  color: var(--charcoal);
}
.contact-stack__item .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  color: var(--charcoal);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 111, 161,0.25);
  transition: transform .2s var(--ease-spring);
}
.contact-stack__item:hover .icon { transform: rotate(-6deg) scale(1.06); }
.contact-stack__item .icon svg { width: 22px; height: 22px; }
.contact-stack__item .label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 2px; }
.contact-stack__item .val { font-size: 1.08rem; font-weight: 800; color: var(--charcoal); line-height: 1.3; word-break: break-word; }
.contact-stack__item .arr-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--charcoal);
  display: grid; place-items: center;
  font-size: .95rem;
  font-weight: 700;
  transition: transform .2s var(--ease-out), background .2s, color .2s;
}
.contact-stack__item:hover .arr-circle { transform: translateX(4px); background: var(--charcoal); color: white; }

/* Contact grid — responsive 2/3-column card layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 980px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.contact-grid .item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
.contact-grid .item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.12);
}
.contact-grid .item .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  color: var(--charcoal);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 111, 161,0.25);
  transition: transform .25s var(--ease-spring);
}
.contact-grid .item:hover .icon { transform: rotate(-6deg) scale(1.06); }
.contact-grid .item .icon svg { width: 22px; height: 22px; }
.contact-grid .item .label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 4px; }
.contact-grid .item .val { font-size: 1.02rem; color: var(--charcoal); font-weight: 700; word-break: break-word; line-height: 1.35; }
.contact-grid .item a.val { color: var(--charcoal); }
.contact-grid .item a.val:hover { color: var(--accent); }

/* Caregivers gallery — "Care in action" */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.gallery__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  aspect-ratio: 4 / 5;
  background: var(--beige);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.gallery__tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
  display: block;
}
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.gallery__tile:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  color: white;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .35s var(--ease-out);
  z-index: 2;
}
.gallery__tile:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* Service card with photo hero — full-width image on top of the card,
   cover-cropped to a comfortable strip height. Reverted to this look
   per design preference (visual impact > pixel-perfect sharpness). */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card__photo {
  display: block;
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  object-fit: cover;
  object-position: center 25%;
  background: var(--beige);
  transition: transform .6s var(--ease-out);
}
.card--photo:hover .card__photo { transform: scale(1.04); }
.card--photo .card__body { padding: 22px 24px 26px; }
@media (min-width: 768px) { .card--photo .card__body { padding: 26px 30px 30px; } }
.card--photo h3 { margin: 0 0 .35em; font-size: 1.18rem; }
.card--photo p { color: var(--muted); margin: 0; font-size: .96rem; }
.card--photo:hover .card__photo { transform: scale(1.04); }
.card--photo .card__body { padding: 22px 24px 26px; }
@media (min-width: 768px) { .card--photo .card__body { padding: 24px 28px 28px; } }
.card--photo h3 { margin: 0 0 .35em; font-size: 1.18rem; }
.card--photo p { color: var(--muted); margin: 0; font-size: .96rem; }

/* Reviews widget wrapper */
.reviews-wrap {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: 8px;
  overflow: hidden;
}
@media (min-width: 600px) { .reviews-wrap { padding: 16px; } }
.reviews-wrap iframe {
  background: transparent;
  border-radius: var(--r-xl);
  display: block;
}

/* ----- Contact info ----- */
.contact-info { display: grid; gap: 16px; }
.contact-info .item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  transition: background .2s, border-color .2s;
}
.contact-info .item:hover { background: rgba(255,255,255,0.95); border-color: var(--hairline-2); }
.contact-info .item .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  color: var(--charcoal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .item .icon svg { width: 20px; height: 20px; }
.contact-info .label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.contact-info .val { font-size: 1rem; color: var(--charcoal); font-weight: 700; word-break: break-word; }
.contact-info a.val { color: var(--charcoal); }
.contact-info a.val:hover { color: var(--accent); }

/* ----- FAQ ----- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color .2s, background .2s;
}
@media (min-width: 600px) { .faq details { padding: 20px 26px; } }
.faq details[open] { border-color: var(--sage); background: white; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--sage-deep);
  margin-left: 16px;
  transition: transform .2s var(--ease-out);
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: .96rem; }

/* ----- Footer ----- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(93, 168, 216,0.18), transparent 60%);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.site-footer .container.grid-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 600px) { .site-footer .container.grid-wrap { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .site-footer .container.grid-wrap { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.site-footer h4 {
  color: white;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 800;
}
.site-footer a { color: rgba(255,255,255,0.7); transition: color .15s, transform .15s; display: inline-block; }
.site-footer a:hover { color: var(--sage); transform: translateX(2px); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: .93rem; }
.footer-brand .logo__mark { background: white; }
.footer-brand .logo__text .word,
.footer-brand .logo__text .sub { color: white; }
.footer-brand p { margin: 16px 0 0; max-width: 32ch; font-size: .92rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: white;
  transition: background .2s, transform .2s var(--ease-spring), border-radius .2s;
}
.socials a:hover { background: var(--sage); color: var(--charcoal); transform: translateY(-3px) rotate(-4deg); border-radius: 14px; }
.socials svg { width: 18px; height: 18px; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
  gap: 16px;
  flex-wrap: wrap;
}
.legal a { color: rgba(255,255,255,0.5); }
.legal a:hover { color: var(--sage); }

/* ----- Utility classes ----- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag--warm { background: rgba(232,168,124,0.18); color: #a05a32; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e1e1e'><path d='M6.2 11.4 3.4 8.6l1-1 1.8 1.8 4.4-4.4 1 1z'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(45, 111, 161,0.25);
}

.skip {
  position: absolute; left: -9999px;
  background: var(--sage); color: var(--charcoal);
  padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip:focus { left: 16px; top: 16px; z-index: 200; }

/* Prose */
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { margin-bottom: 1.2em; }
.prose p, .prose li { color: var(--ink); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ----- Scroll-reveal animations (punchy easeOutExpo) ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s var(--ease-out), transform .9s var(--ease-expo);
  will-change: transform, opacity;
}
.reveal--up { transform: translateY(56px); }
.reveal--left { transform: translateX(-56px); }
.reveal--right { transform: translateX(56px); }
.reveal--zoom { transform: scale(0.88); }
.reveal--pop { transform: translateY(20px) scale(0.92); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="100"] { transition-delay: .08s; }
.reveal[data-delay="200"] { transition-delay: .16s; }
.reveal[data-delay="300"] { transition-delay: .24s; }
.reveal[data-delay="400"] { transition-delay: .32s; }
.reveal[data-delay="500"] { transition-delay: .40s; }

/* Stagger children — bigger initial offset, snappier easing */
.stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .55s var(--ease-out), transform .8s var(--ease-expo);
  will-change: transform, opacity;
}
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1)  { transition-delay: .04s; }
.stagger.is-visible > *:nth-child(2)  { transition-delay: .12s; }
.stagger.is-visible > *:nth-child(3)  { transition-delay: .20s; }
.stagger.is-visible > *:nth-child(4)  { transition-delay: .28s; }
.stagger.is-visible > *:nth-child(5)  { transition-delay: .36s; }
.stagger.is-visible > *:nth-child(6)  { transition-delay: .44s; }
.stagger.is-visible > *:nth-child(7)  { transition-delay: .52s; }
.stagger.is-visible > *:nth-child(8)  { transition-delay: .60s; }
.stagger.is-visible > *:nth-child(9)  { transition-delay: .68s; }
.stagger.is-visible > *:nth-child(10) { transition-delay: .76s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .blob--anim-1, .blob--anim-2, .hero__scene-icon, .hero__float,
  .marquee__track, .hero__scene-badge .dot, .hero__cue .line { animation: none !important; }
}

/* Section wave divider */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

