:root {
  --teal-950: #073d3a;
  --teal-900: #07544e;
  --teal-800: #0b685e;
  --teal-700: #0b7b6e;
  --teal-600: #149383;
  --teal-100: #d9efea;
  --teal-50: #edf8f5;
  --coral: #ed765f;
  --coral-deep: #d85c48;
  --coral-soft: #fff0ec;
  --sand: #f5f0e8;
  --sand-dark: #e8dfd2;
  --ink: #18312f;
  --ink-soft: #526764;
  --line: #dce6e3;
  --white: #fff;
  --shadow-sm: 0 12px 35px rgba(14, 58, 53, .08);
  --shadow-md: 0 24px 70px rgba(10, 62, 57, .14);
  --shadow-lg: 0 35px 90px rgba(10, 62, 57, .2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-pill: 999px;
  --shell: 1240px;
  --header-height: 88px;
  --font-sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@supports not (overflow: clip) { body { overflow-x: hidden; } }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--teal-700); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.25rem, 6.4vw, 6.5rem); }
h2 { font-size: clamp(2.45rem, 4.5vw, 4.65rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h1 em, h2 em, h3 em {
  color: var(--coral);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.025em;
}
p { margin: 0 0 1.35em; }
.icon { width: 1.35em; height: 1.35em; flex: 0 0 auto; }
.site-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.site-main { overflow: clip; }
.section { position: relative; padding: clamp(90px, 10vw, 150px) 0; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 99999; left: 20px; top: -100px;
  padding: 12px 20px; color: var(--white); background: var(--teal-950);
  border-radius: var(--radius-pill); transition: top .2s;
}
.skip-link:focus { top: 20px; }

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.scroll-progress {
  position: fixed; z-index: 1000; inset: 0 0 auto; height: 3px; pointer-events: none;
}
.scroll-progress span {
  display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--coral), #f5ad75);
}

/* Shared UI */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px; color: var(--teal-700);
  font-size: .77rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.eyebrow-light { color: #a7e5db; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 14px 24px;
  color: var(--white); background: var(--teal-700); border: 1px solid var(--teal-700);
  border-radius: var(--radius-pill); box-shadow: 0 13px 28px rgba(11, 123, 110, .22);
  font-size: .9rem; font-weight: 780; line-height: 1.2; letter-spacing: -.01em;
  cursor: pointer; transition: color .3s, background .3s, border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.button:hover, .button:focus-visible {
  color: var(--white); background: var(--teal-950); border-color: var(--teal-950);
  box-shadow: 0 18px 34px rgba(7, 61, 58, .25); transform: translateY(-3px);
}
.button .icon { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.button:hover .icon { transform: translateX(4px); }
.button-small { min-height: 47px; padding: 12px 20px; font-size: .82rem; }
.button-large { min-height: 62px; padding: 18px 29px; }
.button-secondary { color: var(--teal-800); background: var(--teal-50); border-color: var(--teal-100); box-shadow: none; }
.button-light { color: var(--teal-900); background: var(--white); border-color: var(--white); box-shadow: 0 16px 38px rgba(4, 38, 35, .2); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--coral); border-color: var(--coral); }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .45); box-shadow: none; }
.button-outline-light:hover, .button-outline-light:focus-visible { color: var(--teal-900); background: var(--white); border-color: var(--white); }
.button-full { width: 100%; }
.text-link, .arrow-link, .card-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 760; line-height: 1.3;
}
.arrow-link, .card-link { color: var(--teal-700); }
.text-link .icon, .arrow-link .icon, .card-link .icon { width: 19px; height: 19px; transition: transform .3s var(--ease); }
.text-link:hover .icon, .arrow-link:hover .icon, .card-link:hover .icon { transform: translateX(5px); }
.section-heading { max-width: 800px; margin-bottom: 56px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr); gap: 70px; align-items: end; max-width: none; }
.heading-aside { padding-bottom: 10px; color: var(--ink-soft); }
.heading-aside p { margin-bottom: 20px; }
.centered { margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { max-width: 580px; margin-inline: auto; }

/* Utility and header */
.utility-bar { color: rgba(255,255,255,.86); background: var(--teal-950); font-size: .73rem; font-weight: 650; letter-spacing: .025em; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; }
.utility-inner p, .utility-inner a { display: flex; align-items: center; gap: 8px; margin: 0; }
.utility-inner .icon { width: 14px; height: 14px; color: #85dacd; }
.utility-links { display: flex; align-items: center; gap: 26px; }
.utility-links a { transition: color .2s; }
.utility-links a:hover { color: var(--white); }
.site-header {
  position: sticky; z-index: 100; top: 0; height: var(--header-height);
  background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(11,104,94,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: height .3s, box-shadow .3s, background .3s;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { height: 76px; background: rgba(255,255,255,.97); box-shadow: 0 12px 40px rgba(17, 59, 55, .08); }
.header-inner { display: flex; align-items: center; min-width: 0; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: grid; width: 43px; height: 43px; color: var(--coral); place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; line-height: .9; }
.brand-copy strong { color: var(--teal-800); font-size: 1.42rem; font-weight: 850; letter-spacing: -.055em; }
.brand-copy small { margin-top: 7px; color: var(--ink-soft); font-size: .68rem; font-weight: 800; letter-spacing: .21em; text-transform: uppercase; }
.brand-custom-logo { display: block; width: auto; height: 54px; max-width: 230px; object-fit: contain; }
.brand-footer-has-logo { display: inline-flex; padding: 8px 13px; background: #fff; border-radius: 12px; box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.brand-footer .brand-custom-logo { height: 52px; max-width: 190px; filter: none; }
.main-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
.nav-menu li { position: relative; margin: 0; }
.nav-menu > li > a {
  display: flex; align-items: center; min-height: 48px; padding: 10px 13px;
  color: #294744; font-size: .82rem; font-weight: 720; white-space: nowrap;
  transition: color .2s;
}
.nav-menu > li > a:hover, .nav-menu > .current-menu-item > a, .nav-menu > .current-menu-ancestor > a { color: var(--teal-700); }
.nav-menu > .menu-item-has-children > a::after {
  width: 6px; height: 6px; margin: -4px 0 0 8px; content: "";
  border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg);
}
.nav-menu .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  margin: 0; padding: 12px; list-style: none;
  visibility: hidden; opacity: 0; transform: translateY(10px);
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.nav-menu li:hover > .sub-menu, .nav-menu li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: none; }
.nav-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--ink-soft); font-size: .84rem; font-weight: 650; }
.nav-menu .sub-menu a:hover { color: var(--teal-800); background: var(--teal-50); }
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: 17px; }
.header-phone { display: flex; align-items: center; gap: 9px; color: var(--teal-800); }
.header-phone > .icon { width: 23px; height: 23px; }
.header-phone span { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone small { color: var(--ink-soft); font-size: .63rem; }
.header-phone strong { margin-top: 3px; font-size: .78rem; }
.menu-toggle, .nav-close { display: none; border: 0; background: transparent; cursor: pointer; }
.menu-toggle .icon, .nav-close .icon { width: 27px; height: 27px; }
.mobile-nav-head, .mobile-nav-phone { display: none; }
.nav-backdrop { position: fixed; z-index: 99; inset: 0; visibility: hidden; opacity: 0; background: rgba(7, 48, 45, .38); backdrop-filter: none; -webkit-backdrop-filter: none; transition: visibility .3s, opacity .3s; }

/* Home hero */
.hero-home {
  position: relative; min-height: 750px; padding: clamp(68px, 7vw, 108px) 0 130px;
  overflow: hidden; background: linear-gradient(115deg, #f0f9f6 0%, #f8fbf8 54%, #f8f0e8 100%);
}
.hero-home::before {
  position: absolute; inset: 0; content: ""; opacity: .35;
  background-image: radial-gradient(rgba(11, 123, 110, .24) .8px, transparent .8px);
  background-size: 28px 28px; mask-image: linear-gradient(90deg, #000, transparent 52%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { top: -210px; right: -120px; width: 550px; height: 550px; background: rgba(234, 208, 173, .28); }
.hero-orb-two { bottom: 10px; left: -180px; width: 380px; height: 380px; border: 70px solid rgba(20, 147, 131, .07); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .92fr; gap: clamp(42px, 7vw, 100px); align-items: center; min-width: 0; }
.hero-copy { max-width: 680px; min-width: 0; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 29px; padding: 7px 16px 7px 8px;
  color: var(--teal-800); background: rgba(255,255,255,.75); border: 1px solid rgba(11, 123, 110, .14); border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(13, 94, 84, .06); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.hero-kicker span { display: grid; width: 29px; height: 29px; color: var(--white); background: var(--coral); border-radius: 50%; place-items: center; }
.hero-kicker .icon { width: 14px; height: 14px; }
.hero-copy h1 { max-width: 670px; margin-bottom: 27px; }
.hero-copy h1 em { display: block; }
.hero-second-line { display: block; white-space: nowrap; }
.hero-copy h1 .hero-second-line em { display: inline; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; min-width: 0; gap: 27px; }
.play-dot { display: grid; width: 39px; height: 39px; color: var(--coral); background: var(--white); border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-sm); place-items: center; }
.play-dot .icon { width: 16px; height: 16px; }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 40px; }
.avatar-stack { display: flex; align-items: center; padding-left: 10px; }
.avatar-stack img, .avatar-stack span {
  width: 43px; height: 43px; margin-left: -10px; object-fit: cover; border: 3px solid #f6faf8; border-radius: 50%; box-shadow: 0 5px 15px rgba(7,61,58,.08);
}
.avatar-stack span { display: grid; color: var(--white); background: var(--teal-700); place-items: center; }
.avatar-stack span .icon { width: 17px; height: 17px; }
.hero-trust p { margin: 0; font-size: .79rem; line-height: 1.4; }
.hero-trust strong { color: var(--ink); }
.hero-trust span { color: var(--ink-soft); }
.hero-visual { position: relative; min-height: 565px; }
.hero-visual::before {
  position: absolute; z-index: -1; top: 4%; right: -6%; width: 82%; aspect-ratio: 1; content: "";
  background: var(--teal-100); border-radius: 48% 52% 35% 65% / 47% 35% 65% 53%; animation: morph 12s ease-in-out infinite alternate;
}
@keyframes morph { to { border-radius: 37% 63% 58% 42% / 58% 47% 53% 42%; transform: rotate(5deg); } }
.hero-image-frame {
  position: absolute; top: 3%; right: 2%; width: 88%; height: 88%; overflow: hidden;
  border: 10px solid rgba(255,255,255,.86); border-radius: 49% 51% 43% 57% / 40% 44% 56% 60%;
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transform: scale(1.05) rotate(-2deg); }
.hero-image-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(7,61,58,.12)); }
.hero-badge {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; min-width: 188px; padding: 13px 17px;
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.8); border-radius: 17px; box-shadow: var(--shadow-md); backdrop-filter: blur(12px);
}
.hero-badge-care { top: 12%; left: -5%; }
.hero-badge-location { right: -5%; bottom: 15%; }
.badge-icon { display: grid; width: 42px; height: 42px; color: var(--white); background: var(--teal-700); border-radius: 13px; place-items: center; }
.badge-icon-coral { background: var(--coral); }
.badge-icon .icon { width: 21px; height: 21px; }
.hero-badge span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.hero-badge small { color: var(--ink-soft); font-size: .67rem; }
.hero-badge strong { margin-top: 3px; color: var(--ink); font-size: .9rem; }
.hero-heart-line { position: absolute; z-index: 3; bottom: 0; left: 1%; width: 210px; color: var(--coral); opacity: .65; }
.hero-heart-line path { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawline 2.8s 1s var(--ease) forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } }
.hero-bottom-wave { position: absolute; right: -2%; bottom: -100px; left: -2%; height: 160px; background: var(--white); border-radius: 50% 50% 0 0 / 30% 30% 0 0; }

/* Trust strip */
.trust-strip { position: relative; z-index: 3; margin-top: -25px; }
.trust-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 20px 18px;
  background: var(--white); border: 1px solid rgba(11,104,94,.09); border-radius: 23px; box-shadow: var(--shadow-md);
}
.trust-strip-grid > div { display: flex; align-items: center; gap: 14px; padding: 9px 23px; border-right: 1px solid var(--line); }
.trust-strip-grid > div:last-child { border-right: 0; }
.trust-strip-grid > div > span { display: grid; width: 43px; height: 43px; color: var(--teal-700); background: var(--teal-50); border-radius: 13px; place-items: center; }
.trust-strip-grid .icon { width: 21px; height: 21px; }
.trust-strip-grid p { display: flex; flex-direction: column; margin: 0; line-height: 1.3; }
.trust-strip-grid strong { font-size: .84rem; }
.trust-strip-grid small { margin-top: 4px; color: var(--ink-soft); font-size: .68rem; }

/* Personal care finder */
.care-finder-section { position: relative; z-index: 4; padding: 95px 0 20px; }
.care-finder-card {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 46px; align-items: center;
  padding: 38px; overflow: hidden; color: var(--white); background: var(--teal-950);
  border-radius: 31px; box-shadow: var(--shadow-md);
}
.care-finder-card::before { position: absolute; top: -130px; left: -90px; width: 330px; height: 330px; content: ""; border: 58px solid rgba(255,255,255,.035); border-radius: 50%; pointer-events: none; }
.care-finder-intro { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding-left: 7px; }
.care-finder-icon { display: grid; width: 56px; height: 56px; color: var(--white); background: var(--coral); border-radius: 18px; box-shadow: 0 15px 30px rgba(151,58,42,.25); place-items: center; transform: rotate(-5deg); }
.care-finder-icon .icon { width: 27px; height: 27px; }
.care-finder-intro .eyebrow { margin: 2px 0 12px; color: #8ad8cd; }
.care-finder-intro h2 { margin-bottom: 14px; color: var(--white); font-size: clamp(2rem, 3vw, 3.05rem); }
.care-finder-intro p { margin: 0; color: rgba(255,255,255,.63); font-size: .85rem; line-height: 1.65; }
.care-finder-tool { position: relative; padding: 10px; background: var(--white); border-radius: 24px; box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.care-finder-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 4px; background: var(--teal-50); border-radius: 16px; }
.care-finder-tabs button {
  display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 55px; padding: 10px 12px;
  color: var(--ink-soft); background: transparent; border: 0; border-radius: 12px;
  font-size: .72rem; font-weight: 760; line-height: 1.25; cursor: pointer; transition: color .25s, background .25s, box-shadow .25s, transform .25s;
}
.care-finder-tabs button:hover { color: var(--teal-800); }
.care-finder-tabs button.is-active { color: var(--teal-900); background: var(--white); box-shadow: 0 7px 20px rgba(7,84,78,.1); transform: translateY(-1px); }
.care-finder-tabs .icon { width: 18px; height: 18px; color: var(--coral); }
.care-finder-results { min-height: 206px; }
.care-result { padding: 22px 14px 10px; animation: finder-in .4s var(--ease); }
.care-result[hidden] { display: none; }
@keyframes finder-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.care-result-heading { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 17px; }
.care-result-heading span { color: var(--teal-700); font-size: .66rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.care-result-heading p { max-width: 450px; margin: 0; color: var(--ink-soft); font-size: .73rem; line-height: 1.45; text-align: right; }
.care-result-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.care-result-links a {
  display: grid; grid-template-columns: 37px 1fr 16px; gap: 9px; align-items: center; min-height: 70px; padding: 11px;
  color: var(--ink); background: #fbfdfc; border: 1px solid var(--line); border-radius: 14px; transition: color .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.care-result-links a:hover { color: var(--teal-800); border-color: var(--teal-100); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.care-result-links a > span { display: grid; width: 37px; height: 37px; color: var(--teal-700); background: var(--teal-50); border-radius: 11px; place-items: center; }
.care-result-links a:nth-child(2) > span { color: var(--coral); background: var(--coral-soft); }
.care-result-links a > span .icon { width: 17px; height: 17px; }
.care-result-links strong { font-size: .73rem; line-height: 1.25; }
.care-result-links a > .icon { width: 15px; height: 15px; color: var(--teal-600); transition: transform .25s; }
.care-result-links a:hover > .icon { transform: translateX(3px); }

/* Services */
.services-section { padding-top: clamp(110px, 11vw, 165px); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(12,73,66,.05); transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.service-card:nth-child(even) { transform: translateY(30px); }
.service-card:nth-child(even).is-visible { transform: translateY(30px); }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-9px); }
.service-card:nth-child(even):hover { transform: translateY(21px); }
.service-card-image { position: relative; display: block; height: 205px; overflow: hidden; }
.service-card-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(5,54,49,.28)); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-number { position: absolute; z-index: 2; right: 16px; bottom: 12px; color: rgba(255,255,255,.9); font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; }
.service-card-body { position: relative; padding: 31px 27px 28px; }
.service-icon {
  position: absolute; top: -26px; left: 26px; display: grid; width: 52px; height: 52px;
  color: var(--white); background: var(--teal-700); border: 5px solid var(--white); border-radius: 16px; box-shadow: 0 8px 20px rgba(8,94,84,.2); place-items: center;
}
.service-card:nth-child(even) .service-icon { background: var(--coral); }
.service-icon .icon { width: 21px; height: 21px; }
.service-card h3 { margin: 11px 0 13px; font-size: 1.32rem; letter-spacing: -.03em; }
.service-card h3 a::after { position: absolute; inset: 0; content: ""; }
.service-card p { min-height: 88px; margin-bottom: 23px; color: var(--ink-soft); font-size: .88rem; line-height: 1.65; }
.card-link { position: relative; z-index: 1; justify-content: space-between; width: 100%; padding-top: 16px; border-top: 1px solid var(--line); font-size: .79rem; }
.volunteer-callout {
  display: grid; grid-template-columns: .8fr 1.2fr; min-height: 360px; margin-top: 105px; overflow: hidden;
  color: var(--white); background: var(--teal-900); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.volunteer-visual { position: relative; overflow: hidden; }
.volunteer-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 55%, var(--teal-900)); }
.volunteer-visual img { width: 100%; height: 100%; object-fit: cover; }
.volunteer-copy { position: relative; align-self: center; padding: 55px 70px 55px 35px; }
.volunteer-copy::before { position: absolute; top: -80px; right: -70px; width: 250px; height: 250px; content: ""; border: 48px solid rgba(255,255,255,.04); border-radius: 50%; }
.volunteer-copy h3 { max-width: 580px; color: var(--white); font-size: clamp(2rem, 3.6vw, 3.6rem); }
.volunteer-copy p { max-width: 620px; color: rgba(255,255,255,.72); }

/* About */
.about-section { background: var(--sand); }
.about-section::before { position: absolute; top: 9%; right: 3%; width: 180px; height: 180px; content: ""; opacity: .4; background-image: radial-gradient(var(--coral) 1px, transparent 1px); background-size: 16px 16px; }
.about-grid { display: grid; grid-template-columns: .95fr 1fr; gap: clamp(70px, 9vw, 125px); align-items: center; }
.about-visual { position: relative; min-height: 655px; }
.about-image-main { position: absolute; top: 0; left: 0; width: 83%; height: 560px; overflow: hidden; border-radius: 160px 26px 160px 26px; box-shadow: var(--shadow-md); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-detail { position: absolute; right: 0; bottom: 0; width: 205px; height: 255px; overflow: hidden; border: 8px solid var(--sand); border-radius: 28px 90px 28px 90px; box-shadow: var(--shadow-sm); }
.about-image-detail img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-note {
  position: absolute; bottom: 25px; left: -28px; width: 270px; padding: 24px 25px;
  color: var(--white); background: var(--teal-800); border-radius: 20px; box-shadow: var(--shadow-md);
}
.about-note .icon { color: #88d6ca; }
.about-note p { margin: 7px 0 0; color: var(--white); font-family: var(--font-serif); font-size: 1.17rem; font-style: italic; line-height: 1.5; }
.about-copy .lead, .work-copy .lead { color: var(--ink); font-size: 1.13rem; line-height: 1.7; }
.about-copy > p:not(.lead) { color: var(--ink-soft); }
.check-list { display: grid; gap: 18px; margin: 30px 0 36px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list li > .icon { width: 26px; height: 26px; padding: 5px; color: var(--white); background: var(--coral); border-radius: 50%; }
.check-list li span { display: flex; flex-direction: column; }
.check-list strong { font-size: .94rem; }
.check-list small { color: var(--ink-soft); font-size: .78rem; }

/* Trust partners */
.partner-strip { position: relative; z-index: 3; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-strip-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; min-height: 142px; }
.partner-strip-copy { display: flex; align-items: center; gap: 15px; }
.partner-strip-copy > span { display: grid; width: 46px; height: 46px; color: var(--teal-700); background: var(--teal-50); border-radius: 14px; place-items: center; }
.partner-strip-copy p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.partner-strip-copy small { color: var(--ink-soft); font-size: .67rem; }
.partner-strip-copy strong { margin-top: 4px; font-size: .81rem; }
.partner-logos { display: flex; align-items: center; gap: 12px; }
.partner-logos a { display: grid; width: 92px; height: 70px; padding: 10px; overflow: hidden; background: var(--teal-50); border: 1px solid var(--line); border-radius: 14px; place-items: center; transition: transform .25s, box-shadow .25s; }
.partner-logos a:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.partner-logos a:nth-child(2) { width: 135px; padding-inline: 16px; background: var(--teal-800); }
.partner-logos img { max-width: 100%; max-height: 50px; object-fit: contain; }
.partner-quality-link { display: inline-flex; align-items: center; justify-self: end; gap: 10px; color: var(--teal-700); font-size: .75rem; font-weight: 760; }
.partner-quality-link .icon { width: 17px; height: 17px; transition: transform .25s; }
.partner-quality-link:hover .icon { transform: translateX(4px); }

/* Process */
.process-section { overflow: hidden; color: var(--white); background: var(--teal-950); }
.process-section::before { position: absolute; inset: 0; content: ""; opacity: .12; background: linear-gradient(115deg, transparent 50%, rgba(20,147,131,.5)); }
.process-blob { position: absolute; top: -250px; left: -160px; width: 600px; height: 600px; border: 110px solid rgba(255,255,255,.025); border-radius: 50%; }
.process-section h2, .process-section h3 { color: var(--white); }
.process-section .section-heading p { color: rgba(255,255,255,.65); }
.process-grid { position: relative; display: grid; grid-template-columns: 1fr 100px 1fr 100px 1fr; gap: 10px; align-items: start; }
.process-step { position: relative; text-align: center; }
.process-index { position: absolute; top: -10px; left: 50%; color: rgba(255,255,255,.06); font-size: 5.8rem; font-weight: 900; line-height: 1; transform: translateX(-50%); }
.process-icon { position: relative; z-index: 1; display: grid; width: 92px; height: 92px; margin: 0 auto 26px; color: var(--white); background: var(--teal-700); border: 1px solid rgba(255,255,255,.14); border-radius: 29px; box-shadow: 0 20px 40px rgba(0,0,0,.17); place-items: center; transform: rotate(4deg); }
.process-step:nth-of-type(3) .process-icon { background: var(--coral); transform: rotate(-4deg); }
.process-icon .icon { width: 37px; height: 37px; }
.process-step h3 { margin-bottom: 12px; font-size: 1.3rem; }
.process-step p { max-width: 280px; margin: 0 auto; color: rgba(255,255,255,.62); font-size: .85rem; }
.process-line { height: 90px; padding-top: 45px; }
.process-line span { display: block; height: 1px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 5px, transparent 5px 11px); }
.process-cta { margin-top: 55px; text-align: center; }

/* Work */
.work-section { overflow: hidden; }
.work-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.work-links { display: grid; gap: 10px; margin-top: 35px; }
.work-links > a { display: grid; grid-template-columns: 48px 1fr 24px; gap: 14px; align-items: center; padding: 16px 17px; border: 1px solid var(--line); border-radius: 16px; transition: border-color .25s, background .25s, transform .25s; }
.work-links > a:hover { background: var(--teal-50); border-color: var(--teal-100); transform: translateX(7px); }
.work-links > a > span { display: grid; width: 48px; height: 48px; color: var(--teal-700); background: var(--teal-50); border-radius: 14px; place-items: center; }
.work-links > a:nth-child(2) > span { color: var(--coral); background: var(--coral-soft); }
.work-links > a p { display: flex; flex-direction: column; margin: 0; line-height: 1.3; }
.work-links strong { font-size: .91rem; }
.work-links small { margin-top: 4px; color: var(--ink-soft); font-size: .72rem; }
.work-links > a > .icon { width: 19px; height: 19px; color: var(--teal-700); transition: transform .25s; }
.work-links > a:hover > .icon { transform: translateX(4px); }
.work-visual { position: relative; min-height: 610px; }
.work-visual::before { position: absolute; right: -20%; bottom: -10%; width: 520px; height: 520px; content: ""; background: var(--coral-soft); border-radius: 50%; }
.work-image { position: absolute; inset: 0 0 0 7%; overflow: hidden; border-radius: 35px 160px 35px 160px; box-shadow: var(--shadow-md); }
.work-image img { width: 100%; height: 100%; object-fit: cover; }
.work-sticker {
  position: absolute; right: -40px; bottom: 35px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 195px; height: 195px;
  color: var(--white); background: var(--coral); border: 7px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-md); line-height: 1.15; text-align: center; transform: rotate(7deg);
}
.work-sticker span { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.work-sticker strong { font-size: 1.28rem; }
.work-sticker em { font-family: var(--font-serif); font-size: 1rem; }

/* Quality */
.quality-section { background: var(--teal-50); }
.quality-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 25px; }
.quality-feature { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 430px; overflow: hidden; color: var(--white); background: var(--teal-900); border-radius: var(--radius-md); box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s; }
.quality-feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.quality-feature-image { position: relative; overflow: hidden; }
.quality-feature-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 35%, var(--teal-900)); }
.quality-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.quality-feature-copy { position: relative; align-self: center; padding: 45px 45px 45px 15px; }
.quality-feature-copy > span { display: inline-flex; padding: 4px 10px; color: var(--teal-950); background: #bce9de; border-radius: var(--radius-pill); font-size: .64rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.quality-feature-copy small { display: block; margin-top: 25px; color: #9fd9cf; font-size: .74rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.quality-feature-copy h3 { margin: 8px 0 20px; color: var(--white); font-size: 2.7rem; }
.quality-feature-copy p { color: rgba(255,255,255,.66); font-size: .84rem; }
.quality-feature-copy strong { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; font-size: .78rem; }
.quality-feature-copy .icon { width: 18px; }
.quality-list { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.quality-list > a { display: grid; grid-template-columns: 48px 1fr 20px; gap: 13px; align-items: center; padding: 24px 20px; background: var(--white); border: 1px solid transparent; border-radius: 19px; box-shadow: 0 10px 28px rgba(10,87,78,.06); transition: border-color .3s, transform .3s, box-shadow .3s; }
.quality-list > a:hover { border-color: var(--teal-100); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.quality-list > a > span { display: grid; width: 48px; height: 48px; color: var(--teal-700); background: var(--teal-50); border-radius: 14px; place-items: center; }
.quality-list > a:nth-child(n+3) > span { color: var(--coral); background: var(--coral-soft); }
.quality-list p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.quality-list small { color: var(--ink-soft); font-size: .65rem; }
.quality-list strong { margin-top: 4px; font-size: .84rem; }
.quality-list > a > .icon { width: 18px; color: var(--teal-700); }

/* Frequently asked questions */
.faq-section { background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(65px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p { max-width: 470px; color: var(--ink-soft); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; background: var(--white); border: 1px solid transparent; border-radius: 18px; box-shadow: 0 8px 25px rgba(20,61,57,.04); transition: border-color .25s, box-shadow .25s; }
.faq-list details[open] { border-color: var(--teal-100); box-shadow: var(--shadow-sm); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; padding: 18px 22px; color: var(--ink); font-size: .91rem; font-weight: 760; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { display: grid; width: 35px; height: 35px; color: var(--teal-700); background: var(--teal-50); border-radius: 50%; place-items: center; transition: color .25s, background .25s, transform .3s var(--ease); }
.faq-list summary i .icon { width: 16px; height: 16px; transform: rotate(90deg); }
.faq-list details[open] summary i { color: var(--white); background: var(--coral); transform: rotate(90deg); }
.faq-list details > div { padding: 0 74px 20px 22px; }
.faq-list details p { margin: 0; color: var(--ink-soft); font-size: .83rem; line-height: 1.7; }

/* Location */
.location-section { padding-bottom: clamp(100px, 12vw, 175px); }
.location-card { display: grid; grid-template-columns: 1fr .9fr; min-height: 520px; overflow: hidden; background: var(--sand); border-radius: var(--radius-lg); }
.location-copy { align-self: center; padding: clamp(45px, 6vw, 80px); }
.location-copy > p { max-width: 570px; color: var(--ink-soft); }
.location-details { display: grid; gap: 16px; margin: 30px 0 35px; }
.location-details a { display: flex; align-items: flex-start; gap: 14px; }
.location-details a > .icon { width: 26px; height: 26px; color: var(--coral); }
.location-details a span { display: flex; flex-direction: column; line-height: 1.45; }
.location-details small { color: var(--ink-soft); font-size: .68rem; }
.location-details strong { font-size: .84rem; }
.location-map { position: relative; min-height: 420px; overflow: hidden; background: #d9e8df; }
.map-grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 53px 53px; transform: rotate(8deg) scale(1.2); }
.map-road { position: absolute; height: 20px; background: rgba(255,255,255,.84); border: 1px solid rgba(11,104,94,.08); border-radius: 20px; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.map-road-one { top: 20%; left: -20%; width: 140%; transform: rotate(25deg); }
.map-road-two { top: 60%; left: -20%; width: 150%; transform: rotate(-15deg); }
.map-road-three { top: 0; left: 46%; width: 115%; transform: rotate(82deg); transform-origin: left; }
.map-pin { position: absolute; top: 42%; left: 51%; display: grid; width: 70px; height: 70px; color: var(--white); background: var(--coral); border: 7px solid rgba(255,255,255,.85); border-radius: 50% 50% 50% 10%; box-shadow: var(--shadow-md); place-items: center; transform: rotate(-45deg); }
.map-pin .icon { width: 29px; height: 29px; transform: rotate(45deg); }
.map-label { position: absolute; top: calc(42% + 80px); left: 50%; display: flex; flex-direction: column; min-width: 210px; padding: 15px 18px; background: var(--white); border-radius: 13px; box-shadow: var(--shadow-sm); transform: translateX(-37%); }
.map-label strong { font-size: .86rem; }
.map-label small { display: flex; align-items: center; gap: 7px; margin-top: 3px; color: var(--teal-700); font-size: .68rem; }
.map-label .icon { width: 14px; }

/* Inner page hero */
.entry-hero { position: relative; padding: clamp(70px, 8vw, 115px) 0 95px; overflow: hidden; background: linear-gradient(125deg, var(--teal-50), #f8f4ec); }
.entry-hero::before { position: absolute; right: -100px; bottom: -240px; width: 520px; height: 520px; content: ""; border: 85px solid rgba(11,123,110,.06); border-radius: 50%; }
.entry-hero-orb { position: absolute; top: -150px; left: -100px; width: 350px; height: 350px; background: rgba(237,118,95,.07); border-radius: 50%; }
.entry-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: center; }
.entry-hero-copy h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(3rem, 5.5vw, 5.8rem); overflow-wrap: anywhere; }
.entry-hero-copy > p { max-width: 590px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 34px; color: var(--ink-soft); font-size: .72rem; }
.breadcrumbs a { color: var(--teal-700); font-weight: 720; }
.breadcrumbs .icon { width: 12px; height: 12px; }
.entry-hero-visual { position: relative; height: 390px; }
.entry-hero-visual::before { position: absolute; inset: 12px -15px -15px 25px; content: ""; background: var(--teal-100); border-radius: 30px 100px 30px 100px; transform: rotate(4deg); }
.entry-hero-visual img { position: relative; width: 100%; height: 100%; object-fit: cover; border: 8px solid rgba(255,255,255,.8); border-radius: 30px 110px 30px 110px; box-shadow: var(--shadow-md); }
.entry-hero-mark { position: absolute; right: -26px; bottom: -26px; display: grid; width: 83px; height: 83px; color: var(--white); background: var(--coral); border: 7px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); place-items: center; }
.entry-hero-mark .icon { width: 34px; height: 34px; }
.entry-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(55px, 8vw, 110px); align-items: start; padding-top: clamp(80px, 9vw, 135px); padding-bottom: clamp(90px, 11vw, 160px); }
.entry-article { min-width: 0; }
.entry-content { color: #405957; font-size: 1rem; line-height: 1.82; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { margin: 1.35em 0 .55em; color: var(--ink); }
.entry-content h1 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
.entry-content h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); }
.entry-content h3 { font-size: 1.45rem; }
.entry-content p { margin-bottom: 1.4em; }
.entry-content a { color: var(--teal-700); font-weight: 680; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.entry-content ul, .entry-content ol { margin: 0 0 1.6em; padding-left: 1.25em; }
.entry-content li { margin-bottom: .55em; padding-left: .3em; }
.entry-content li::marker { color: var(--coral); font-weight: 800; }
.entry-content blockquote { margin: 2.2em 0; padding: 24px 30px; color: var(--teal-950); background: var(--teal-50); border-left: 4px solid var(--teal-700); border-radius: 0 17px 17px 0; font-family: var(--font-serif); font-size: 1.18rem; font-style: italic; }
.entry-content img { border-radius: 18px; }
.entry-content figure { max-width: 100%; margin: 2.2em 0; }
.entry-content figure.alignleft { float: none; margin: 0 0 2em; }
.entry-content figure img[src*="yilmazthuiszorg.jpg"], .entry-content figure img[src*="logo"] { max-width: 260px; border-radius: 0; }
.entry-content table { width: 100%; margin: 2em 0; border-collapse: collapse; font-size: .9rem; }
.entry-content th, .entry-content td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; }
.entry-content th { color: var(--teal-900); background: var(--teal-50); }
.entry-content iframe, .entry-content video { max-width: 100%; border: 0; border-radius: 18px; }
.entry-sidebar { position: sticky; top: 110px; display: grid; gap: 22px; }
.admin-bar .entry-sidebar { top: 142px; }
.entry-toc { padding: 24px 25px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.entry-toc > span { display: block; margin-bottom: 13px; color: var(--teal-700); font-size: .67rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.entry-toc ol { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.entry-toc li { counter-increment: toc; }
.entry-toc a { display: grid; grid-template-columns: 24px 1fr; gap: 5px; padding: 7px 0; color: var(--ink-soft); font-size: .74rem; font-weight: 650; line-height: 1.4; transition: color .2s; }
.entry-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--coral); font-family: var(--font-serif); font-size: .7rem; font-style: italic; }
.entry-toc a:hover, .entry-toc a.is-current { color: var(--teal-700); }
.sidebar-contact-card { padding: 34px 30px; color: var(--white); background: var(--teal-900); border-radius: 24px; box-shadow: var(--shadow-md); }
.sidebar-contact-card > span { display: grid; width: 52px; height: 52px; margin-bottom: 24px; color: var(--white); background: var(--coral); border-radius: 16px; place-items: center; transform: rotate(-5deg); }
.sidebar-contact-card > span .icon { width: 25px; height: 25px; }
.sidebar-contact-card h2 { color: var(--white); font-size: 1.55rem; }
.sidebar-contact-card p { color: rgba(255,255,255,.66); font-size: .83rem; line-height: 1.65; }
.sidebar-contact-card .button { margin-top: 8px; }
.sidebar-mail, .sidebar-phone { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 17px; color: #b3e3db; font-size: .73rem; font-weight: 730; }
.sidebar-mail .icon, .sidebar-phone .icon { width: 16px; }
.sidebar-links { padding: 27px 26px; background: var(--sand); border-radius: 21px; }
.sidebar-links h2 { margin-bottom: 16px; font-size: 1.05rem; }
.sidebar-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; color: var(--ink-soft); border-bottom: 1px solid var(--sand-dark); font-size: .78rem; font-weight: 680; }
.sidebar-links a:last-child { border-bottom: 0; }
.sidebar-links a:hover { color: var(--teal-700); }
.sidebar-links .icon { width: 14px; height: 14px; }

/* Forms generated by common WordPress plugins */
.entry-content form { margin-top: 30px; }
.entry-content label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 740; }
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content input[type="number"],
.entry-content input[type="date"],
.entry-content input[type="file"],
.entry-content select,
.entry-content textarea,
.search-field {
  width: 100%; min-height: 54px; padding: 13px 16px; color: var(--ink); background: #fbfdfc; border: 1px solid var(--line); border-radius: 12px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.entry-content textarea { min-height: 150px; resize: vertical; }
.entry-content input:focus, .entry-content select:focus, .entry-content textarea:focus, .search-field:focus { border-color: var(--teal-600); box-shadow: 0 0 0 4px rgba(20,147,131,.1); }
.entry-content input[type="submit"], .entry-content button[type="submit"] { min-height: 54px; padding: 13px 27px; color: var(--white); background: var(--teal-700); border: 0; border-radius: var(--radius-pill); font-weight: 760; cursor: pointer; }
.wpforms-container .wpforms-field, .wpcf7-form p { margin-bottom: 18px !important; }

/* Archive and 404 */
.archive-hero { padding: 100px 0; text-align: center; background: var(--teal-50); }
.archive-hero h1 { margin-bottom: 18px; font-size: clamp(3rem, 5.5vw, 5.5rem); }
.archive-hero p { margin: 0; color: var(--ink-soft); }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.archive-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.archive-card-image { display: block; height: 220px; overflow: hidden; }
.archive-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.archive-card:hover img { transform: scale(1.06); }
.archive-card-copy { padding: 28px; }
.archive-card-copy > span { color: var(--teal-700); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.archive-card h2 { margin: 10px 0 13px; font-size: 1.42rem; }
.archive-card p { color: var(--ink-soft); font-size: .83rem; }
.pagination { grid-column: 1 / -1; margin-top: 30px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.nav-links .page-numbers { display: grid; min-width: 42px; height: 42px; padding: 0 10px; color: var(--teal-800); background: var(--teal-50); border-radius: 50%; place-items: center; font-size: .8rem; font-weight: 750; }
.nav-links .current { color: var(--white); background: var(--teal-700); }
.empty-state { grid-column: 1 / -1; padding: 70px 30px; text-align: center; }
.empty-state > .icon { width: 55px; height: 55px; color: var(--teal-700); }
.not-found { position: relative; min-height: 680px; display: grid; overflow: hidden; background: linear-gradient(135deg, var(--teal-50), var(--sand)); place-items: center; }
.not-found-inner { position: relative; z-index: 1; max-width: 780px; padding: 100px 0; text-align: center; }
.not-found-number { display: block; margin-bottom: -25px; color: rgba(11,123,110,.09); font-size: clamp(8rem, 23vw, 16rem); font-weight: 900; line-height: .8; letter-spacing: -.09em; }
.not-found h1 { font-size: clamp(3rem, 5vw, 5rem); }
.not-found p { color: var(--ink-soft); }
.not-found-inner > div { display: flex; justify-content: center; align-items: center; gap: 25px; margin-top: 35px; }
.not-found-orb { position: absolute; right: -200px; bottom: -200px; width: 550px; height: 550px; border: 100px solid rgba(237,118,95,.07); border-radius: 50%; }

/* Footer */
.contact-ribbon { position: relative; overflow: hidden; padding: 70px 0; color: var(--white); background: var(--coral); }
.contact-ribbon::before, .contact-ribbon::after { position: absolute; content: ""; border: 40px solid rgba(255,255,255,.06); border-radius: 50%; }
.contact-ribbon::before { top: -100px; left: 5%; width: 250px; height: 250px; }
.contact-ribbon::after { right: 4%; bottom: -170px; width: 320px; height: 320px; }
.contact-ribbon-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-ribbon h2 { margin: 0; color: var(--white); font-size: clamp(2.2rem, 3.7vw, 3.7rem); }
.contact-ribbon .eyebrow { color: rgba(255,255,255,.75); }
.contact-ribbon-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.site-footer { color: rgba(255,255,255,.7); background: #062d2b; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1.15fr; gap: 55px; padding-top: 86px; padding-bottom: 70px; }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.55); }
.footer-brand-column > p { max-width: 330px; margin: 25px 0; font-size: .82rem; line-height: 1.75; }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; width: 38px; height: 38px; color: #9cd9cf; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 50%; place-items: center; transition: color .2s, background .2s, transform .2s; }
.social-links a:hover { color: var(--white); background: var(--coral); transform: translateY(-3px); }
.social-links .icon { width: 17px; height: 17px; }
.footer-column h3 { margin-bottom: 24px; color: var(--white); font-size: .93rem; letter-spacing: -.01em; }
.footer-column ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-column li { margin: 0; }
.footer-column li a { font-size: .77rem; transition: color .2s, transform .2s; }
.footer-column li a:hover { display: inline-block; color: var(--white); transform: translateX(4px); }
.footer-contact { display: grid; align-content: start; gap: 17px; }
.footer-contact h3 { margin-bottom: 7px; }
.footer-contact > a { display: flex; align-items: flex-start; gap: 12px; font-size: .76rem; }
.footer-contact > a > .icon { width: 19px; height: 19px; color: #80d1c5; }
.footer-contact > a span { display: flex; flex-direction: column; }
.footer-contact small { margin-top: 4px; color: rgba(255,255,255,.42); font-size: .66rem; }
.footer-credentials { display: grid; grid-template-columns: minmax(210px, .8fr) minmax(0, 3fr); align-items: center; gap: 45px; padding-top: 28px; padding-bottom: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-credentials-heading { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 13px; }
.footer-credentials-heading > span { width: 34px; height: 2px; background: var(--coral); }
.footer-credentials-heading h2 { margin: 0; color: rgba(255,255,255,.82); font-size: .75rem; line-height: 1.45; letter-spacing: .14em; text-transform: uppercase; }
.footer-credential-logos { display: grid; grid-template-columns: .7fr .9fr .8fr 1.8fr; gap: 12px; }
.footer-credential-logo { display: flex; min-width: 0; height: 112px; align-items: center; justify-content: center; padding: 11px 15px; overflow: hidden; background-color: #fff; background-repeat: no-repeat; background-position: center; background-size: contain; background-origin: content-box; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; box-shadow: 0 13px 30px rgba(0,0,0,.12); transition: transform .25s, box-shadow .25s, border-color .25s; }
.footer-credential-logo:hover { border-color: rgba(237,118,95,.6); box-shadow: 0 17px 38px rgba(0,0,0,.2); transform: translateY(-4px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 72px; border-top: 1px solid rgba(255,255,255,.08); font-size: .68rem; }
.footer-bottom p { margin: 0; }
.floating-call { position: fixed; z-index: 90; right: 22px; bottom: 24px; display: none; align-items: center; gap: 8px; min-height: 50px; padding: 12px 18px; color: var(--white); background: var(--coral); border-radius: var(--radius-pill); box-shadow: 0 15px 35px rgba(176,66,47,.28); font-size: .78rem; font-weight: 800; }
.floating-call .icon { width: 20px; height: 20px; }
.back-to-top { position: fixed; z-index: 88; right: 24px; bottom: 25px; display: grid; width: 44px; height: 44px; visibility: hidden; opacity: 0; color: var(--white); background: var(--teal-800); border: 0; border-radius: 50%; box-shadow: var(--shadow-sm); cursor: pointer; place-items: center; transform: translateY(10px); transition: .3s; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: none; }
.back-to-top .icon { width: 18px; height: 18px; transform: rotate(-90deg); }

/* The legacy WP Call Button plugin injects a full-width fixed bar. */
.wp-call-button { display: none !important; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: 1060px; }
  .main-nav { margin-left: 30px; }
  .nav-menu > li > a { padding-inline: 9px; font-size: .77rem; }
  .header-phone { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .service-card:nth-child(even), .service-card:nth-child(even).is-visible { transform: none; }
  .service-card:hover, .service-card:nth-child(even):hover { transform: translateY(-8px); }
  .service-card-image { height: 260px; }
  .service-card p { min-height: 0; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-list { grid-template-columns: repeat(4, 1fr); }
  .quality-list > a { grid-template-columns: 44px 1fr; }
  .quality-list > a > .icon { display: none; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .footer-contact h3 { grid-column: 1 / -1; }
  .footer-credentials { grid-template-columns: 1fr; gap: 22px; }
  .footer-credential-logos { grid-template-columns: .75fr .9fr .8fr 1.65fr; }
}

@media (max-width: 980px) {
  :root { --header-height: 77px; }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .utility-bar { display: none; }
  .site-shell { width: min(calc(100% - 36px), var(--shell)); }
  .header-inner { justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .header-actions .button { display: none; }
  .menu-toggle { display: grid; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; place-items: center; }
  .main-nav {
    position: fixed; z-index: 105; top: 0; right: 0; bottom: 0; width: min(88vw, 420px); margin: 0; padding: 22px 28px 30px;
    visibility: hidden; overflow-y: auto; opacity: 0; background: var(--white); box-shadow: -25px 0 65px rgba(4,43,40,.2); transform: translateX(100%); transition: visibility .4s, opacity .4s, transform .4s var(--ease);
  }
  .nav-open .main-nav { visibility: visible; opacity: 1; transform: none; }
  .nav-open .nav-backdrop { visibility: visible; opacity: 1; }
  .mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-weight: 800; }
  .nav-close { display: grid; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; place-items: center; }
  .nav-menu { display: block; }
  .nav-menu > li > a { min-height: 52px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-menu .sub-menu { position: static; display: block; min-width: 0; padding: 4px 0 9px 17px; visibility: visible; opacity: 1; background: transparent; border: 0; box-shadow: none; transform: none; }
  .nav-menu .sub-menu a { padding: 7px 0; }
  .mobile-nav-phone { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; padding: 14px; color: var(--white); background: var(--teal-800); border-radius: var(--radius-pill); font-size: .84rem; font-weight: 760; }
  .hero-home { min-height: 0; padding-top: 75px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 750px; text-align: center; margin-inline: auto; }
  .hero-kicker { margin-inline: auto; }
  .hero-copy h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(100%, 650px); min-height: 570px; margin-inline: auto; }
  .trust-strip { margin-top: -15px; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-grid > div:nth-child(2) { border-right: 0; }
  .trust-strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .care-finder-card { grid-template-columns: 1fr; gap: 30px; }
  .care-finder-intro { max-width: 680px; }
  .partner-strip-inner { grid-template-columns: 1fr auto; padding-block: 24px; }
  .partner-quality-link { grid-column: 1 / -1; justify-self: start; }
  .section-heading-split { grid-template-columns: 1fr; gap: 22px; }
  .about-grid, .work-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(100%, 650px); margin-inline: auto; }
  .work-copy { order: 2; }
  .work-visual { width: min(100%, 700px); margin-inline: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .process-line { display: none; }
  .process-step p { max-width: 430px; }
  .quality-list { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
  .location-card { grid-template-columns: 1fr; }
  .entry-hero-grid { grid-template-columns: 1fr .62fr; gap: 50px; }
  .entry-layout { grid-template-columns: 1fr; }
  .entry-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .contact-ribbon-inner { display: grid; text-align: center; }
  .contact-ribbon .eyebrow { justify-content: center; }
  .contact-ribbon-actions { justify-content: center; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 82px 0; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 1.28rem; }
  .header-actions { gap: 8px; }
  .hero-home { padding: 58px 0 100px; }
  .hero-home::before { display: none; }
  .hero-grid, .hero-copy, .hero-actions { width: 100%; min-width: 0; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(2.85rem, 12.5vw, 4.15rem); overflow-wrap: normal; }
  .hero-second-line { display: contents; white-space: normal; }
  .hero-copy h1 .hero-second-line em { display: inline; }
  .hero-copy h1 em { display: inline; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; max-width: 100%; }
  .hero-trust { margin-top: 32px; }
  .hero-visual { min-height: 470px; }
  .hero-image-frame { width: 94%; height: 88%; right: 3%; border-width: 7px; }
  .hero-badge { min-width: 160px; padding: 10px 12px; }
  .hero-badge-care { top: 3%; left: 0; }
  .hero-badge-location { right: 0; bottom: 8%; }
  .hero-heart-line { display: none; }
  .trust-strip-grid { grid-template-columns: 1fr; padding: 10px 17px; }
  .trust-strip-grid > div { padding: 15px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip-grid > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .trust-strip-grid > div:last-child { border-bottom: 0; }
  .care-finder-section { padding: 70px 0 0; }
  .care-finder-card { gap: 25px; padding: 25px 18px 18px; border-radius: 25px; }
  .care-finder-intro { grid-template-columns: 44px 1fr; gap: 12px; padding: 2px 5px; }
  .care-finder-icon { width: 44px; height: 44px; border-radius: 14px; }
  .care-finder-icon .icon { width: 21px; height: 21px; }
  .care-finder-intro h2 { font-size: 2rem; }
  .care-finder-tabs { grid-template-columns: 1fr; }
  .care-finder-tabs button { justify-content: flex-start; min-height: 48px; padding-inline: 15px; }
  .care-finder-results { min-height: 0; }
  .care-result { padding: 20px 4px 3px; }
  .care-result-heading { display: block; }
  .care-result-heading p { margin-top: 7px; text-align: left; }
  .care-result-links { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-image { height: 235px; }
  .volunteer-callout { grid-template-columns: 1fr; margin-top: 65px; border-radius: 27px; }
  .volunteer-visual { min-height: 250px; }
  .volunteer-visual::after { background: linear-gradient(180deg, transparent 55%, var(--teal-900)); }
  .volunteer-copy { padding: 38px 28px 43px; }
  .about-grid { gap: 65px; }
  .about-visual { min-height: 555px; }
  .about-image-main { width: 91%; height: 480px; border-radius: 100px 24px 100px 24px; }
  .about-image-detail { width: 155px; height: 205px; }
  .about-note { bottom: 0; left: -5px; width: 235px; padding: 20px; }
  .work-visual { min-height: 480px; }
  .work-image { left: 0; border-radius: 25px 100px 25px 100px; }
  .work-sticker { right: -6px; bottom: -25px; width: 155px; height: 155px; }
  .quality-feature { grid-template-columns: 1fr; }
  .quality-feature-image { min-height: 220px; }
  .quality-feature-image::after { background: linear-gradient(180deg, transparent 30%, var(--teal-900)); }
  .quality-feature-copy { padding: 25px 28px 38px; }
  .quality-list { grid-template-columns: 1fr; }
  .location-copy { padding: 42px 27px; }
  .location-map { min-height: 380px; }
  .entry-hero { padding: 60px 0 78px; }
  .entry-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .entry-hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .entry-hero-visual { height: 300px; }
  .entry-hero-mark { right: 0; }
  .entry-layout { gap: 55px; padding-top: 70px; }
  .entry-sidebar { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .contact-ribbon { padding: 60px 0; }
  .contact-ribbon-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding-top: 70px; }
  .footer-brand-column { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .footer-contact h3 { grid-column: auto; }
  .footer-credential-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-credential-logo { height: 106px; }
  .footer-credential-logo-4 { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 7px; justify-content: start; padding: 20px 0; }
  .back-to-top { display: none; }
  .floating-call { display: flex; }
}

@media (max-width: 430px) {
  .brand-copy small { letter-spacing: .16em; }
  .hero-kicker { font-size: .66rem; }
  .hero-visual { min-height: 400px; }
  .hero-badge-care { left: -4px; }
  .hero-badge-location { bottom: 3%; }
  .hero-badge small { font-size: .6rem; }
  .hero-badge strong { font-size: .78rem; }
  .service-card-image { height: 215px; }
  .about-visual { min-height: 500px; }
  .about-image-main { height: 420px; }
  .about-note { width: 210px; }
  .about-note p { font-size: 1rem; }
  .partner-strip-inner { grid-template-columns: 1fr; gap: 20px; padding-block: 30px; }
  .partner-logos { justify-content: flex-start; }
  .partner-quality-link { grid-column: auto; }
  .work-visual { min-height: 410px; }
  .work-sticker { width: 137px; height: 137px; }
  .quality-feature-copy h3 { font-size: 2.2rem; }
  .faq-list summary { min-height: 68px; padding: 16px; font-size: .83rem; }
  .faq-list details > div { padding: 0 58px 18px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column { grid-column: auto; }
  .footer-credentials { padding-top: 24px; padding-bottom: 24px; }
  .footer-credential-logos { gap: 9px; }
  .footer-credential-logo { height: 96px; padding: 9px 12px; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
