@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  --navy: #18241d;
  --navy-2: #243428;
  --navy-deep: #101812;
  --ink: #17231f;
  --muted: #647064;
  --warm-muted: #645b49;
  --sand: #f5edda;
  --paper: #fff8e8;
  --white: #fff;
  --amber: #e7b93f;
  --amber-bright: #f4c95d;
  --amber-dark: #9b6a12;
  --teal: #a8c9ad;
  --teal-deep: #54745b;
  --daylight: #fffaf0;
  --sky-soft: #f7edc9;
  --sun-soft: #fff1b8;
  --sky-mist: #f6f0dd;
  --lavender-soft: #efe7cb;
  --cobalt: #d9a928;
  --cobalt-deep: #a87413;
  --indigo-ink: #203024;
  --line: #e2dccb;
  --line-soft: rgba(46, 58, 41, .1);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(60, 75, 47, .14);
  --shadow-soft: 0 14px 38px rgba(60, 75, 47, .1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Figtree", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(244, 201, 93, .16), transparent 48%),
    radial-gradient(90% 60% at 100% 8%, rgba(168, 201, 173, .14), transparent 42%),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--amber-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 16px; }
.header-sentinel {
  position: absolute;
  top: 18px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* Utility + header */
.utility {
  background: linear-gradient(90deg, #d7aa2f, #f1cb61 58%, #b7c9a8);
  color: #17231f;
  font-size: 12px;
  letter-spacing: .01em;
}
.utility .shell {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 24, 18, .94);
  color: #fffaf0;
  border-bottom: 1px solid rgba(244, 201, 93, .18);
  backdrop-filter: saturate(160%) blur(18px);
  transition: background .35s var(--ease-soft), box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.site-header.is-scrolled {
  background: rgba(16, 24, 18, .98);
  border-bottom-color: rgba(244, 201, 93, .28);
  box-shadow: 0 16px 40px rgba(8, 14, 10, .24);
}
.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 280px;
  transition: opacity .25s ease;
}
.brand:hover { opacity: .88; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 201, 93, .36);
  border-radius: var(--radius);
  background: rgba(244, 201, 93, .1);
  color: var(--amber-bright);
  display: grid;
  place-items: center;
  flex: none;
}
.brand-mark .icon { width: 21px; height: 21px; }
.brand strong {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .01em;
}
.brand small {
  margin-top: 6px;
  color: #b8c5b2;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 13px;
  font-weight: 560;
}
.primary-nav a {
  position: relative;
  text-decoration: none;
  color: #edf2e9;
  transition: color .25s ease;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta)[aria-current="page"]::after {
  transform: scaleX(1);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--amber-bright); }
.primary-nav .nav-cta {
  border: 1px solid rgba(155, 106, 18, .22);
  border-radius: var(--radius);
  padding: 10px 17px;
  color: #211807;
  background: linear-gradient(180deg, #f6d86f, #d9a928);
  box-shadow: 0 12px 30px rgba(217, 169, 40, .2);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.primary-nav .nav-cta:hover {
  background: var(--amber);
  color: #221a08;
  border-color: var(--amber);
  transform: translateY(-1px);
}
.menu-button { display: none; }

/* Hero */
.page-hero {
  min-height: 650px;
  position: relative;
  isolation: isolate;
  color: var(--ink);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--daylight);
}
.home-hero {
  min-height: 720px;
  color: #fffaf0;
  background:
    radial-gradient(55% 60% at 17% 34%, rgba(244, 201, 93, .18), transparent 60%),
    linear-gradient(135deg, #101812 0%, #1d2d21 46%, #4f5a36 100%);
}
.service-hero,
.location-hero,
.article-hero {
  min-height: 620px;
  color: #fffaf0;
  background: linear-gradient(135deg, #121d17 0%, #1f2f24 50%, #44502d 100%);
}
.home-hero::before,
.home-hero::after,
.service-hero::before,
.service-hero::after,
.location-hero::before,
.location-hero::after,
.article-hero::before,
.article-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.home-hero::before,
.service-hero::before,
.location-hero::before,
.article-hero::before {
  width: min(40vw, 560px);
  aspect-ratio: 1;
  top: -24%;
  right: -7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 201, 93, .45) 0 16%, rgba(217, 169, 40, .18) 34%, rgba(16, 24, 18, 0) 70%);
  animation: daylight-breathe 8s ease-in-out infinite;
}
.home-hero::after,
.service-hero::after,
.location-hero::after,
.article-hero::after {
  right: -10%;
  bottom: -18%;
  width: 70%;
  height: 52%;
  border-radius: 50% 0 0 0;
  background: radial-gradient(ellipse at center, rgba(168, 201, 173, .22), rgba(16, 24, 18, 0) 67%);
}
.article-hero { min-height: 640px; }
.utility-hero { min-height: 560px; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  z-index: -2;
  background:
    radial-gradient(115% 130% at 88% 0%, rgba(230, 160, 51, .3), transparent 58%),
    linear-gradient(105deg, rgba(248, 249, 247, .98) 0%, rgba(245, 244, 238, .94) 32%, rgba(226, 229, 226, .58) 58%, rgba(231, 229, 219, .14) 82%, rgba(231, 229, 219, .04) 100%),
    linear-gradient(0deg, rgba(242, 244, 241, .92) 0%, rgba(242, 244, 241, 0) 46%);
}
.hero-content { position: relative; padding-block: 108px 58px; }
.home-hero .hero-shade,
.service-hero .hero-shade,
.location-hero .hero-shade,
.article-hero .hero-shade {
  background:
    radial-gradient(70% 90% at 82% 4%, rgba(244, 201, 93, .32), transparent 54%),
    radial-gradient(58% 62% at 11% 58%, rgba(168, 201, 173, .18), transparent 62%),
    linear-gradient(92deg, rgba(16, 24, 18, .98) 0%, rgba(18, 28, 22, .94) 39%, rgba(24, 36, 29, .7) 58%, rgba(24, 36, 29, .34) 78%, rgba(16, 24, 18, .24) 100%),
    linear-gradient(0deg, rgba(16, 24, 18, .82) 0%, rgba(16, 24, 18, 0) 50%);
}
.home-hero .hero-image,
.service-hero .hero-image,
.location-hero .hero-image,
.article-hero .hero-image {
  object-position: 70% center;
  filter: brightness(.84) saturate(.86) contrast(1.04);
  transform-origin: 72% 50%;
  animation: hero-image-arrive 1.8s var(--ease-out) both;
}
.home-hero .hero-content,
.service-hero .hero-content,
.location-hero .hero-content,
.article-hero .hero-content { z-index: 1; padding-block: 86px 52px; }
.home-hero .hero-content h1,
.service-hero .hero-content h1,
.location-hero .hero-content h1,
.article-hero .hero-content h1 {
  max-width: 790px;
  color: #fffaf0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .28);
}
.home-hero .hero-content > p,
.service-hero .hero-content > p,
.location-hero .hero-content > p,
.article-hero .hero-content > p {
  max-width: 700px;
  color: #e0eadc;
}
.home-hero .eyebrow,
.service-hero .eyebrow,
.location-hero .eyebrow,
.article-hero .eyebrow { color: var(--amber-bright); }
.home-hero .hero-actions .button-dark,
.service-hero .hero-actions .button-dark,
.location-hero .hero-actions .button-dark,
.article-hero .hero-actions .button-dark {
  color: #fffaf0;
  border: 1px solid rgba(255, 250, 240, .34);
  background: rgba(16, 24, 18, .58);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}
.home-hero .hero-actions .button-dark:hover,
.service-hero .hero-actions .button-dark:hover,
.location-hero .hero-actions .button-dark:hover,
.article-hero .hero-actions .button-dark:hover {
  color: #211807;
  border-color: var(--amber-bright);
  background: var(--amber-bright);
}
.home-hero .hero-proof,
.service-hero .hero-proof,
.location-hero .hero-proof,
.article-hero .hero-proof {
  max-width: 670px;
  color: #c8d3c2;
  border-color: rgba(244, 201, 93, .24);
}
.home-hero .hero-media-note,
.service-hero .hero-media-note,
.location-hero .hero-media-note,
.article-hero .hero-media-note { color: rgba(232, 238, 227, .68); }
.hero-symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-symptoms span {
  padding: 9px 12px;
  border: 1px solid rgba(244, 201, 93, .38);
  border-radius: 999px;
  color: #fff4cf;
  background: linear-gradient(180deg, rgba(73, 58, 23, .72), rgba(16, 24, 18, .56));
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(10px);
}
.hero-reassurance {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(100%, 700px);
  margin: -10px 0 28px;
  padding: 12px;
  border: 1px solid rgba(244, 201, 93, .3);
  border-radius: calc(var(--radius) + 8px);
  color: #f8f0d5;
  background: rgba(16, 24, 18, .48);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}
.hero-reassurance span:first-child {
  padding: 9px 12px;
  border-radius: 999px;
  color: #221a08;
  background: linear-gradient(180deg, #fff1a8, var(--amber-bright));
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.hero-reassurance span:last-child {
  font-size: 13px;
  line-height: 1.45;
  color: #dce8d7;
}
.hero-care-story,
.hero-sub-card {
  position: relative;
  width: min(100%, 920px);
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: var(--radius);
  color: var(--navy-deep);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(244, 201, 93, .24), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(250, 244, 225, .95));
  box-shadow: 0 28px 70px rgba(7, 15, 10, .12), 0 10px 24px rgba(60, 75, 47, .1);
  backdrop-filter: blur(18px);
}
.hero-care-story::after,
.hero-sub-card::after {
  content: "";
  position: absolute;
  inset: -60% 55% -60% -35%;
  transform: translateX(-100%) rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 220, 117, .3), transparent);
  animation: hero-care-sweep 5.5s ease-in-out 1.8s infinite;
  pointer-events: none;
}
.hero-local-signal {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--cobalt-deep);
  background: #fff1b8;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .01em;
}
.hero-care-kicker {
  display: block;
  margin-bottom: 10px;
  color: #6b713a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .01em;
}
.hero-care-story h2,
.hero-sub-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1.05;
  font-weight: 540;
}
.hero-care-copy {
  margin: 0 0 18px;
  color: #445c48;
  font-size: 13px;
  line-height: 1.55;
}
.hero-care-story ol,
.hero-sub-card ol { margin: 0; padding: 0; list-style: none; }
.hero-care-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(84, 116, 91, .16);
}
.hero-care-step b {
  color: var(--amber);
  font-size: 11px;
  letter-spacing: .08em;
}
.hero-care-step span { display: grid; gap: 3px; }
.hero-care-step strong { color: var(--navy-deep); font-size: 14px; }
.hero-care-step small { color: #587078; font-size: 12px; line-height: 1.4; }
.hero-daylight-cue {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: 5%;
  width: 290px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 199, .72), rgba(255, 255, 255, 0) 68%);
  animation: daylight-breathe 7s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero-daylight-cue span {
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(230, 160, 51, .24);
  border-radius: 50%;
}
.home-hero .hero-symptoms,
.home-hero .eyebrow,
.home-hero h1,
.home-hero .hero-content > p,
.home-hero .hero-reassurance,
.home-hero .hero-actions,
.home-hero .hero-proof,
.home-hero .hero-media-note {
  animation: hero-content-arrive .85s var(--ease-out) both;
}
.home-hero .eyebrow { animation-delay: .08s; }
.home-hero h1 { animation-delay: .15s; }
.home-hero .hero-content > p { animation-delay: .22s; }
.home-hero .hero-reassurance { animation-delay: .27s; }
.home-hero .hero-actions { animation-delay: .33s; }
.home-hero .hero-proof { animation-delay: .4s; }
.home-hero .hero-media-note { animation-delay: .47s; }
.section-care-follow .hero-care-story,
.section-care-follow .hero-sub-card { animation: hero-story-arrive 1s var(--ease-out) .12s both; }
.page-hero:not(.home-hero) .hero-content { animation: page-content-arrive .9s var(--ease-out) both; }
@keyframes hero-image-arrive {
  from { opacity: .76; transform: scale(1.06) translateX(1.5%); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes hero-content-arrive {
  from { transform: translateY(22px); }
  to { transform: translateY(0); }
}
@keyframes hero-story-arrive {
  from { transform: translateY(18px) scale(.992); }
  to { transform: none; }
}
@keyframes hero-care-sweep {
  0%, 42% { transform: translateX(-100%) rotate(12deg); }
  72%, 100% { transform: translateX(420%) rotate(12deg); }
}
@keyframes daylight-breathe {
  0%, 100% { opacity: .72; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes page-content-arrive {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}
.hero-content h1 {
  max-width: 920px;
  margin: 16px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.9vw, 5.55rem);
  line-height: .94;
  letter-spacing: -.035em;
  font-weight: 520;
  text-wrap: balance;
}
.page-hero:not(.home-hero) .hero-content h1 {
  max-width: 970px;
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
}
.hero-content > p {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--warm-muted);
  font-size: 19px;
  line-height: 1.55;
}
.eyebrow, .kicker {
  display: block;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
}
.section-dark .kicker,
.section-dark .eyebrow { color: var(--amber); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Buttons */
.button {
  position: relative;
  min-height: 49px;
  padding: 12px 19px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  overflow: hidden;
  transition: transform .28s var(--ease-out), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 21, 35, .14);
}
.button:hover::before { transform: translateX(120%); }
.button-primary {
  background: linear-gradient(180deg, #f7d86f, var(--cobalt));
  color: #221a08;
  box-shadow: 0 12px 28px rgba(155, 106, 18, .24);
}
.button-primary:hover { background: linear-gradient(180deg, #ffdf79, var(--cobalt-deep)); }
.button-light { background: var(--white); color: var(--navy); }
.button-dark { background: var(--navy); color: var(--white); }
.button-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
}
.icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.hero-proof {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(7,26,44,.12);
  color: var(--warm-muted);
  font-size: 13px;
}
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-media-note {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  color: rgba(92, 81, 64, .78);
  font-size: 10px;
  letter-spacing: .02em;
}

/* Trust strip */
.trust-strip {
  position: relative;
  background:
    radial-gradient(80% 90% at 18% 0%, rgba(244, 201, 93, .18), transparent 55%),
    linear-gradient(90deg, #fffdf7, #fff4c8 42%, #edf5e8 100%);
  color: #5d6d51;
  border-top: 1px solid rgba(155, 106, 18, .14);
  border-bottom: 1px solid rgba(84, 116, 91, .14);
  overflow: hidden;
}
.trust-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(320px, 1.25fr);
  gap: 24px 42px;
  align-items: end;
  padding-block: 42px 22px;
}
.trust-heading h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--navy-deep);
}
.trust-heading p {
  margin: 0;
  max-width: 700px;
  color: #586855;
  font-size: 15px;
}
.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #fffdf7 0%, transparent 12%, transparent 88%, #edf5e8 100%);
}
.trust-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.72) 50%, transparent 70%);
  pointer-events: none;
}
.trust-marquee {
  position: relative;
  z-index: 3;
  min-height: 118px;
  display: flex;
  align-items: center;
  width: max-content;
  padding-bottom: 34px;
  animation: trust-badges-slide 42s linear infinite;
}
.trust-strip:hover .trust-marquee { animation-play-state: paused; }
.trust-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 7px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #243428;
  border: 1px solid rgba(84, 116, 91, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 10px 28px rgba(84, 116, 91, .08), inset 0 1px 0 rgba(255,255,255,.76);
}
.trust-badge .icon {
  width: 16px;
  height: 16px;
  color: var(--amber-dark);
  stroke-width: 2.4;
}
.client-logo-marquee { animation-duration: 46s; }
.client-logo-badge {
  min-width: 198px;
  min-height: 82px;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
}
.client-logo-badge img {
  display: block;
  width: 180px;
  height: 68px;
  object-fit: contain;
}
.client-logo-badge small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
@keyframes trust-badges-slide {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.section.section-care-follow {
  padding-block: 36px 12px;
  background:
    linear-gradient(180deg, rgba(244, 250, 246, .9), rgba(255, 253, 247, .35));
}
.section.section-care-follow .hero-care-story,
.section.section-care-follow .hero-sub-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(100%, 920px);
  margin: 0;
}

/* Sections */
.section { padding-block: 118px; }
.section-light {
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(168, 201, 173, .08), transparent 56%),
    linear-gradient(180deg, rgba(255,253,247,.94), rgba(255,255,255,.98)),
    var(--daylight);
}
.section-sand {
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(244, 201, 93, .18), transparent 55%),
    linear-gradient(180deg, #fff8e8, var(--sand));
}
.section-dark {
  position: relative;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(244, 201, 93, .18), transparent 45%),
    radial-gradient(70% 60% at 0% 100%, rgba(168, 201, 173, .18), transparent 50%),
    linear-gradient(160deg, #243428, #101812);
  color: var(--white);
  overflow: hidden;
}
.section-heading { max-width: 860px; margin-bottom: 52px; }
.section-heading.compact { margin-bottom: 34px; }
.section-heading h2,
.media-copy h2,
.split-content h2,
.contact-grid h2,
.closing-cta h2 {
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.section-heading p,
.media-copy > p,
.split-content > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-bright), var(--teal));
}
.section-dark .media-copy > p { color: #ccd6c6; }

/* Cards */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(244, 201, 93, .12), transparent 45%),
    rgba(255, 255, 255, .94);
  border: 1px solid rgba(84, 116, 91, .14);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  transition: transform .35s var(--ease-out), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber-bright));
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.section-light .card { background: rgba(255, 255, 255, .92); }
.section-light .three-col > .card-link {
  min-height: 330px;
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(244, 201, 93, .16), transparent 46%),
    linear-gradient(180deg, #fffdf7, #fff);
}
.section-light .three-col > .card-link:nth-child(2) {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(168, 201, 173, .18), transparent 48%),
    linear-gradient(180deg, #fffdf7, #fff);
}
.section-light .three-col > .card-link:nth-child(3) {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(244, 201, 93, .14), transparent 40%),
    radial-gradient(80% 80% at 0% 100%, rgba(168, 201, 173, .12), transparent 48%),
    linear-gradient(180deg, #fffdf7, #fff);
}
.section-sand .card,
.blog-library .card,
.blog-featured .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
}
a.card-link { text-decoration: none; color: inherit; }
a.card-link:hover {
  transform: translateY(-8px) rotateX(.5deg);
  border-color: rgba(155, 106, 18, .28);
  box-shadow: var(--shadow);
  background: var(--white);
}
a.card-link:hover::before { transform: scaleX(1); }
a.card-link .text-link { margin-top: auto; }
.card-label {
  color: var(--cobalt-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .01em;
}
.card h3 {
  margin: 48px 0 14px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -.015em;
}
.section-light .three-col > .card-link h3 { margin-top: 54px; }
.card p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.blog-topics a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}
.blog-topics a:hover { color: var(--amber-dark); }
.blog-topics small { margin-left: 6px; color: var(--muted); font-weight: 600; }
.blog-library .card, .blog-featured .card { min-height: 0; }
.blog-library .card h3, .section .card-link h3 { font-size: 24px; margin-top: 28px; }
.blog-category { scroll-margin-top: 100px; }
.blog-category .three-col { margin-top: 28px; }
.text-link {
  margin-top: auto;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.text-link span {
  color: var(--amber-dark);
  margin-left: 5px;
  display: inline-block;
  transition: transform .28s var(--ease-out);
}
a:hover > .text-link span,
.text-link:hover span { transform: translateX(4px); }
.text-link.prominent { display: inline-block; margin-top: 32px; font-size: 16px; }
.text-link.prominent:hover { color: var(--amber-dark); }

/* Media + process */
.media-grid {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 72px;
  align-items: center;
}
.media-copy { padding-block: 26px; }
.feature-image { margin: 0; }
.feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 201, 93, .16);
  box-shadow: 0 28px 80px rgba(0,0,0,.28), 0 0 0 10px rgba(255, 248, 232, .04);
  transition: transform .7s var(--ease-out), box-shadow .7s ease;
}
.feature-image:hover img {
  transform: scale(1.015);
  box-shadow: 0 34px 90px rgba(0,0,0,.34), 0 0 0 10px rgba(244, 201, 93, .08);
}
.feature-image figcaption, .article figcaption {
  color: #aebba5;
  font-size: 11px;
  margin-top: 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
  color: #dce5eb;
}
.check-list li { display: flex; align-items: center; gap: 12px; }
.check-list .icon { color: var(--teal); }
.process { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, padding-left .35s var(--ease-out);
}
.process li:hover {
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(244, 201, 93, .08), transparent 68%);
}
.process li > span {
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
.process h3 { margin: 0 0 6px; font-size: 20px; font-family: var(--font-display); font-weight: 520; }
.process p { margin: 0; color: var(--muted); font-size: 15px; }

/* Areas */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-grid a {
  position: relative;
  min-height: 260px;
  padding: 30px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 232, 159, .5), transparent 52%),
    linear-gradient(145deg, #fffdf7, #eef5e7);
  color: var(--navy-deep);
  border: 1px solid rgba(84, 116, 91, .14);
  box-shadow: 0 14px 36px rgba(60, 75, 47, .09), 0 1px 0 rgba(255,255,255,.72) inset;
  border-radius: var(--radius);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s var(--ease-out), background .35s ease, box-shadow .35s ease;
}
.area-grid a::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(168, 201, 173, .2);
  transition: transform .5s var(--ease-out);
}
.area-grid a:hover {
  transform: translateY(-8px);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 232, 159, .62), transparent 50%),
    var(--white);
  box-shadow: var(--shadow);
}
.area-grid a:hover::before { transform: scale(1.35) translate(-10px, -10px); }
.area-grid span { position: relative; color: var(--teal-deep); font-size: 12px; letter-spacing: .08em; }
.area-grid strong {
  position: relative;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 520;
  letter-spacing: -.015em;
}
.area-grid small { position: relative; margin-top: 8px; color: #65725e; font-size: 13px; }

.split-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.stacked-cards { display: grid; gap: 12px; }
.stacked-cards .card {
  min-height: 0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
}
.stacked-cards .card h3 { margin: 0; font-size: 24px; }
.stacked-cards .card p { grid-column: 2 / -1; margin: -8px 0 0; }
.stacked-cards .text-link { grid-column: 3; grid-row: 1; }
.note-block {
  padding: 20px;
  border-left: 3px solid var(--amber);
  background: #f3f2ec;
  font-size: 14px !important;
}
.area-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-detail > div {
  padding: 32px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.area-detail h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 520;
}
.area-detail p { color: var(--muted); }
.editorial-quote { max-width: 950px; text-align: center; }
.editorial-quote > span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.editorial-quote blockquote {
  margin: 28px auto 42px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

/* Article */
.article-layout { background: var(--white); }
.article { max-width: 800px; }
.article-lead {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -.01em;
}
.article h2 {
  margin: 54px 0 14px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 520;
  letter-spacing: -.015em;
}
.article p, .article li { color: #4f604b; }
.article strong { color: var(--navy); font-weight: 750; }
.article figure { margin: 52px 0; }
.article figure img { display: block; border-radius: var(--radius); }
.article figcaption { color: var(--muted); }
.quick-answer,
.everyday-example,
.message-template {
  margin: 40px 0;
  padding: 30px 32px;
  border-radius: var(--radius);
}
.quick-answer {
  border-left: 5px solid var(--amber);
  background: var(--navy);
}
.quick-answer h2,
.quick-answer p,
.quick-answer strong { color: var(--white); }
.quick-answer h2,
.everyday-example h2,
.message-template h2 { margin-top: 0; font-size: 27px; }
.quick-answer p,
.everyday-example p,
.message-template p { margin-bottom: 0; }
.everyday-example {
  border: 1px solid var(--line);
  background: var(--sand);
}
.message-template {
  border: 1px solid rgba(84, 116, 91, .18);
  background: #fffaf0;
}
.message-template blockquote {
  margin: 18px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: 0 10px 10px 0;
}
.article-faq { margin-top: 52px; }
.article-faq > h2 { margin-top: 0; }
.article-callout {
  margin: 52px -40px;
  padding: 40px;
  background:
    radial-gradient(90% 80% at 0% 0%, rgba(244, 201, 93, .18), transparent 50%),
    var(--sand);
  border-radius: var(--radius);
}
.article-callout h2 { margin-top: 0; }
.article-kicker {
  margin: 0 0 10px;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}
.article-meta time { font-variant-numeric: tabular-nums; }
.blog-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 42px; }
.blog-stats span {
  padding: 22px 24px;
  background: var(--sand);
  border-radius: var(--radius);
  color: var(--muted);
}
.blog-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 520;
}
.blog-library { display: grid; gap: 72px; }
.related-reads { margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--line); }
.related-reads h2 { margin-top: 0; }
.related-links { display: grid; gap: 14px; margin-top: 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-cards { display: grid; gap: 12px; margin-top: 35px; }
.contact-cards a {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  transition: transform .3s var(--ease-out), border-color .3s ease, box-shadow .3s ease;
}
.contact-cards a:hover {
  transform: translateY(-3px);
  border-color: #c9b48a;
  box-shadow: var(--shadow-soft);
}
.contact-cards small { color: var(--muted); }
.contact-cards strong { grid-column: 1; font-size: 25px; font-family: var(--font-display); font-weight: 520; }
.contact-cards span {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 800;
}
.request-card {
  padding: 42px;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(244, 201, 93, .2), transparent 55%),
    var(--sand);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 180, 138, .35);
}
.faq { max-width: 880px; border-top: 1px solid #cdd3d5; }
.faq details { border-bottom: 1px solid #cdd3d5; }
.faq summary {
  padding: 24px 45px 24px 0;
  cursor: pointer;
  font-weight: 750;
  position: relative;
  list-style: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  font-size: 24px;
  color: var(--amber-dark);
  transition: transform .25s var(--ease-out);
}
.faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq p { margin: 0 0 24px; color: var(--muted); }
.principles { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principles > div {
  padding: 28px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px;
}
.principles strong { color: var(--amber-dark); font-size: 12px; letter-spacing: .06em; }
.principles h3 { margin: 0; font-family: var(--font-display); font-weight: 520; }
.principles p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; }

/* Closing CTA + footer */
.closing-cta {
  position: relative;
  padding-block: 100px;
  background:
    radial-gradient(90% 90% at 0% 50%, rgba(168, 201, 173, .28), transparent 50%),
    radial-gradient(70% 80% at 100% 0%, rgba(255,255,255,.72), transparent 45%),
    linear-gradient(135deg, #fff5cf, #f4edd6 55%, #edf5e8);
  overflow: hidden;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 55%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  filter: blur(10px);
  pointer-events: none;
}
.closing-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: center;
}
.closing-cta h2 { font-size: clamp(2.1rem, 4vw, 3.35rem); }
.closing-cta p { max-width: 680px; color: var(--muted); }
.closing-actions { display: grid; gap: 10px; }
.closing-actions .button-outline {
  color: var(--navy);
  border-color: rgba(14, 28, 42, .28);
  background: rgba(255,255,255,.35);
}
.closing-actions .button-outline:hover {
  background: var(--white);
  border-color: var(--navy);
}
.site-footer {
  background:
    radial-gradient(70% 45% at 0% 0%, rgba(244, 201, 93, .18), transparent 46%),
    radial-gradient(80% 55% at 100% 10%, rgba(168, 201, 173, .1), transparent 48%),
    var(--navy-deep);
  color: #e2eadc;
  padding: 76px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 54px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand-lockup { display: flex; align-items: center; gap: 12px; }
.footer-brand strong {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
}
.footer-brand small {
  margin-top: 6px;
  color: #aab8a2;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .02em;
}
.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
  color: #9eae97;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
.site-footer h2 {
  margin: 0 0 18px;
  color: #8f9f88;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.site-footer a {
  display: block;
  margin: 9px 0;
  color: #d5dfcf;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color .2s ease, transform .2s ease;
}
.site-footer a:hover {
  color: var(--amber);
  transform: translateX(3px);
}
.legal {
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid #2d3d30;
  color: #8b9a84;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}
.legal a {
  display: inline;
  margin: 0;
  color: #b7c6af;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 198, 175, .35);
}
.legal a:hover {
  color: var(--amber);
  border-bottom-color: rgba(244, 201, 93, .55);
  transform: none;
}
.mobile-actions { display: none; }

/* Scroll reveal */
.reveal {
  transform: translateY(24px) scale(.992);
  transition: transform .85s var(--ease-out), box-shadow .85s var(--ease-out);
  will-change: transform;
}
.reveal.is-visible {
  transform: none;
  will-change: auto;
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: .04s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: .28s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: .36s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: .44s; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .utility { display: none; }
  .menu-button {
    display: grid;
    width: 48px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fffaf0;
    align-content: center;
    justify-items: end;
    gap: 5px;
    cursor: pointer;
  }
  .menu-button span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s var(--ease-out), opacity .2s ease;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .menu-button b { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    padding: 24px;
    background: rgba(16, 24, 18, .99);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(244, 201, 93, .2);
    backdrop-filter: blur(16px);
  }
  html.js .primary-nav { display: none; }
  html.js .primary-nav.open { display: flex; animation: rise-in .4s var(--ease-out); }
  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 201, 93, .14);
    font-size: 16px;
  }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .primary-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
    border: 1px solid rgba(84, 116, 91, .28);
  }
  .home-hero { min-height: auto; }
  .home-hero .hero-content { padding-block: 72px 54px; }
  .home-hero .hero-content h1 { max-width: 780px; }
  .hero-reassurance { max-width: 640px; }
  .section-care-follow .hero-care-story,
  .section-care-follow .hero-sub-card {
    width: min(100%, 640px);
  }
  .three-col, .area-grid, .area-detail { grid-template-columns: 1fr 1fr; }
  .three-col .card:last-child,
  .area-grid a:last-child,
  .area-detail > div:last-child { grid-column: 1 / -1; }
  .blog-stats { grid-template-columns: 1fr; }
  .media-grid, .split-content, .contact-grid, .closing-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 32px, 1180px); }
  .nav-wrap { min-height: 68px; }
  :root { --header-h: 68px; }
  .brand { min-width: 0; max-width: 280px; }
  .brand { gap: 9px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-mark .icon { width: 19px; height: 19px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 9px; }
  .page-hero { min-height: 610px; }
  .home-hero { min-height: auto; }
  .hero-shade {
    background:
      radial-gradient(140% 90% at 78% 0%, rgba(230,160,51,.28), transparent 55%),
      linear-gradient(100deg, rgba(248,249,247,.98) 0%, rgba(241,241,235,.93) 55%, rgba(224,226,222,.58) 100%),
      linear-gradient(0deg, rgba(242,244,241,.95), transparent 62%);
  }
  .hero-content { padding-block: 56px 28px; }
  .home-hero .hero-content { padding-block: 48px 36px; }
  .home-hero .hero-image {
    object-position: 82% center;
    filter: brightness(.76) saturate(.82) contrast(1.05);
  }
  .home-hero .hero-content h1 {
    margin-top: 14px;
    font-size: clamp(2.45rem, 11vw, 3.05rem);
    line-height: .96;
  }
  .hero-symptoms { gap: 7px; margin-bottom: 18px; }
  .hero-symptoms span { padding: 7px 9px; font-size: 9px; }
  .hero-reassurance {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: -4px 0 22px;
  }
  .hero-reassurance span:first-child { width: max-content; max-width: 100%; white-space: normal; }
  .section-care-follow .hero-care-story,
  .section-care-follow .hero-sub-card { padding: 24px; }
  .section-care-follow .hero-care-story h2,
  .section-care-follow .hero-sub-card h2 { font-size: 24px; }
  .hero-care-copy { font-size: 12px; }
  .hero-content > p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 10px 18px; margin-top: 22px; padding-top: 18px; }
  .trust-heading {
    grid-template-columns: 1fr;
    padding-block: 34px 14px;
  }
  .trust-heading p { font-size: 14px; }
  .trust-marquee { min-height: 84px; }
  .trust-badge { min-height: 42px; padding: 9px 14px; font-size: 12px; }
  .client-logo-marquee { min-height: 104px; padding-bottom: 28px; }
  .client-logo-badge { min-width: 168px; min-height: 72px; }
  .client-logo-badge img { width: 150px; height: auto; }
  .section { padding-block: 78px; }
  .section-heading { margin-bottom: 34px; }
  .three-col, .area-grid, .area-detail { grid-template-columns: 1fr; }
  .three-col .card:last-child,
  .area-grid a:last-child,
  .area-detail > div:last-child { grid-column: auto; }
  .card { min-height: 280px; padding: 28px; }
  .area-grid a { min-height: 220px; }
  .process li { grid-template-columns: 48px 1fr; }
  .process li:hover { padding-left: 0; }
  .stacked-cards .card { grid-template-columns: 45px 1fr; }
  .stacked-cards .card p { grid-column: 2; }
  .stacked-cards .text-link { grid-column: 2; grid-row: auto; }
  .article-callout { margin-inline: 0; padding: 28px; }
  .quick-answer,
  .everyday-example,
  .message-template { padding: 24px; }
  .message-template blockquote { padding: 18px; }
  .article-lead { font-size: 22px; }
  .request-card { padding: 28px; }
  .contact-cards a { grid-template-columns: 1fr; }
  .contact-cards span { grid-column: 1; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .legal { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    z-index: 40;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
    transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
  }
  .mobile-actions.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-actions a {
    padding: 14px;
    background: linear-gradient(180deg, var(--amber-bright), var(--amber));
    color: #20180a;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
  }
  .mobile-actions a + a {
    background: var(--white);
    color: var(--navy);
  }
  .site-footer { padding-bottom: 90px; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .article-callout { margin-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .trust-strip::before,
  .trust-strip::after { display: none; }
  .trust-marquee {
    width: auto;
    padding: 18px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-track { flex-wrap: wrap; justify-content: center; }
  .trust-track[aria-hidden="true"] { display: none; }
}

/* Breadcrumbs */
.breadcrumbs-wrap {
  padding-block: 16px 4px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--border);
  font-weight: 700;
}
.breadcrumbs a {
  color: var(--pine);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.breadcrumbs a:hover {
  color: var(--amber-dark);
  text-decoration: underline;
}
.breadcrumbs span {
  color: var(--ink);
  font-weight: 600;
}

/* Diagnostic Widget */
.section-diagnostic {
  background: var(--light-sand);
}
.diagnostic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  max-width: 780px;
  margin-inline: auto;
}
.diagnostic-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(36, 88, 62, 0.08);
  color: var(--pine);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.diagnostic-step h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--ink);
  margin: 0;
}
.diagnostic-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.diag-opt {
  padding: 16px 20px;
  background: var(--daylight);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.diag-opt:hover {
  background: #ffffff;
  border-color: var(--pine);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.diagnostic-result {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.3s ease;
}
.result-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
}
.diagnostic-result h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--pine);
  margin: 0;
}
.diagnostic-result p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

/* Prep Checklist */
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.three-col .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--pine);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

/* Area SEO Keywords Component */
.area-seo-keywords {
  margin-top: 24px;
  padding: 20px;
  background: var(--daylight);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.keyword-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.keyword-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-2);
  background: rgba(36, 52, 40, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(36, 52, 40, 0.12);
}
