/* ============================================================
   ENRICH HOME SUPPORTS — Design System
   Direction: Warm Editorial. Navy + Cream. Outfit + Lato + Inter (client brand fonts — matches live site).
   Audience: Older Australians (65+) and adult children.
   ============================================================ */

/* ------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------ */
:root {
  /* Brand */
  --navy:        #011BA0;
  --navy-deep:   #010F62;
  --navy-soft:   #2A3FBC;
  --navy-100:    rgba(1, 27, 160, 0.08);
  --navy-50:     rgba(1, 27, 160, 0.04);

  --pink:        #E970C0;
  --pink-deep:   #C24A99;
  --pink-soft:   #F5AED9;
  --pink-100:    rgba(233, 112, 192, 0.12);
  --pink-50:     rgba(233, 112, 192, 0.06);

  --purple:      #673DAE;
  --purple-deep: #4F2D89;
  --purple-soft: #9C7AD0;
  --purple-100:  rgba(103, 61, 174, 0.10);
  --purple-50:   rgba(103, 61, 174, 0.05);

  /* Surfaces */
  --cream:       #FBF7F2;
  --cream-deep:  #F4ECE0;
  --paper:       #FFFFFF;
  --paper-warm:  #FDFAF5;

  /* Ink */
  --ink:         #0A0E2E;        /* near-black w/ navy bias */
  --ink-soft:    #2B2F47;
  --ink-mute:    #5C6079;
  --ink-faint:   #8E92A8;
  --rule:        #E5DFD3;        /* warm hairline */
  --rule-soft:   #EFE9DC;

  /* Typography */
  --serif:  'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:   'Lato', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type scale — fluid, magazine-led. Bumped for 65+ audience. */
  --fs-xs:   0.8125rem;   /* 13 — was 12, eyebrow minimum */
  --fs-sm:   0.9375rem;   /* 15 — was 14 */
  --fs-base: 1.0625rem;   /* 17 — was 16, body minimum for older eyes */
  --fs-lg:   1.1875rem;   /* 19 — was 18 */
  --fs-xl:   1.3125rem;   /* 21 — was 20 */
  --fs-2xl:  clamp(1.5rem, 1.3rem + 0.9vw, 1.875rem);   /* 24→30 */
  --fs-3xl:  clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);   /* 30→40 */
  --fs-4xl:  clamp(2.25rem, 1.7rem + 2.4vw, 3.25rem);   /* 36→52 */
  --fs-5xl:  clamp(2.75rem, 1.9rem + 3.6vw, 4.5rem);    /* 44→72 */
  --fs-6xl:  clamp(3.25rem, 2.1rem + 5vw, 6rem);        /* 52→96 */

  /* Spacing — generous, editorial */
  --sp-1:    0.25rem;
  --sp-2:    0.5rem;
  --sp-3:    0.75rem;
  --sp-4:    1rem;
  --sp-5:    1.5rem;
  --sp-6:    2rem;
  --sp-7:    3rem;
  --sp-8:    4rem;
  --sp-9:    6rem;
  --sp-10:   8rem;
  --sp-11:   10rem;
  --sp-12:   12rem;

  /* Layout */
  --max:      1280px;
  --max-wide: 1440px;
  --max-text: 720px;
  --gutter:   max(1.25rem, 4vw);

  /* Radius — keep modest, editorial not bubbly */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Shadow */
  --shadow-xs:  0 1px 2px rgba(1, 15, 98, 0.04);
  --shadow-sm:  0 2px 8px rgba(1, 15, 98, 0.06);
  --shadow-md:  0 12px 32px rgba(1, 15, 98, 0.08);
  --shadow-lg:  0 28px 64px rgba(1, 15, 98, 0.12);
  --shadow-pink:0 24px 48px rgba(233, 112, 192, 0.22);

  /* Motion */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:         320ms;
  --dur-slow:    560ms;
}

/* ------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'kern', 'liga', 'cv11';
  overflow-x: clip;
}
@media (max-width: 540px) { html { font-size: 16px; } }
main, section { overflow-x: clip; }
h1, h2, h3, h4 { overflow-wrap: break-word; }
img, video { max-width: 100%; height: auto; display: block; }
/* Inline SVG default — small icon at 1em, opt out via class */
svg { display: inline-block; width: 1em; height: 1em; flex: 0 0 auto; vertical-align: -0.125em; fill: currentColor; }
svg.svc-icon { width: 92px; height: 92px; vertical-align: baseline; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--navy); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
.serif { font-family: var(--serif); }
.sans  { font-family: var(--sans); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-6xl);
  font-weight: 700;
  letter-spacing: -0.035em;
}
h2 {
  font-size: var(--fs-5xl);
  font-weight: 700;
  letter-spacing: -0.028em;
}
h3 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.15;
}
h4 {
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.3;
}
h5 { font-size: var(--fs-lg, 1.125rem); font-weight: 700; }
h6 { font-size: var(--fs-base, 1rem); font-weight: 700; }

p { color: var(--ink-soft); line-height: 1.7; font-size: var(--fs-base); }
p + p { margin-top: 1em; }
strong, b { font-weight: 600; color: var(--ink); }
em, i { font-style: normal; font-weight: 700; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8125rem;        /* 13px — readable but still small-caps */
  font-weight: 600;            /* was 500 — heavier for AA against cream */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);          /* full navy on cream = AAA */
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;                 /* was 1px — visible accent */
  background: var(--purple);   /* was currentColor (navy). Pink reserved for CTAs. */
  display: inline-block;
}
.bg-navy .eyebrow, [class*="specialist"] .eyebrow, .testimonial-section .eyebrow {
  color: var(--cream);
  opacity: 0.85;
}
.bg-navy .eyebrow::before, .testimonial-section .eyebrow::before { background: var(--pink); }

.numeral {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  color: var(--purple);        /* was pink — pink reserved for CTAs */
  letter-spacing: -0.04em;
  line-height: 1;
}

.pull-quote {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 0.9vw, 2rem);
  line-height: 1.35;
  color: var(--navy);
  text-wrap: balance;
}

/* Drop cap — used in the home intro article */
.dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  padding: 0.18em 0.14em 0 0;
  color: var(--pink);
  letter-spacing: -0.04em;
}

/* ------------------------------------------------------------
   4. Layout primitives
   ------------------------------------------------------------ */
.wrap        { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide   { width: 100%; max-width: var(--max-wide); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-text   { width: 100%; max-width: var(--max-text); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(4rem, 3rem + 5vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.section--hero  { padding-block: clamp(3rem, 2rem + 4vw, 5rem) clamp(3rem, 2rem + 4vw, 6rem); }

.bg-cream      { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-paper      { background: var(--paper); }
.bg-navy       { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream); }
.bg-navy p { color: rgba(251, 247, 242, 0.78); }
.bg-navy .eyebrow { color: var(--pink-soft); }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  width: 100%;
}
.rule--short { width: 64px; height: 2px; background: var(--purple); }

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--pink {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--pink:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.btn--navy {
  background: var(--navy);
  color: var(--cream);
}
.btn--navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 247, 242, 0.4);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.btn--link {
  padding: 0.25rem 0;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--purple);
  border-radius: 0;
  min-height: auto;
  background: transparent;
}
.btn--link:hover {
  color: var(--purple-deep);
  border-color: var(--purple-deep);
}

/* ------------------------------------------------------------
   6. Header
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
  will-change: transform;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  background: rgba(251, 247, 242, 0.96);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
  .site-header.is-hidden { transform: none; }
}

.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: var(--fs-sm);
  color: var(--ink-mute);
}
.header-top a { display: inline-flex; align-items: center; gap: 0.4rem; }
.header-top a svg { width: 14px; height: 14px; }
.header-top a:hover { color: var(--navy); }
.header-top .phone {
  color: var(--navy);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: 0.01em;
}
.header-top .phone svg { width: 16px; height: 16px; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .brand img { height: 48px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
  transition: color var(--dur) var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a.is-active { color: var(--navy); }
.nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-cta .btn { padding: 0.75rem 1.25rem; min-height: 44px; font-size: var(--fs-sm); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  .header-top .secondary { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream);
  padding: 5rem var(--gutter) 2rem;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: var(--gutter);
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--navy);
}
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
  border-bottom: 1px solid var(--rule);
  letter-spacing: -0.02em;
}
.mobile-nav .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.125rem 1.75rem;
  text-align: center;
  font-family: var(--sans);
  letter-spacing: 0.01em;
  border-bottom: 0;
}
.mobile-nav .contact-block {
  margin-top: auto;
  padding-top: 2rem;
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  line-height: 1.7;
}
.mobile-nav .contact-block a { font-family: var(--sans); font-size: var(--fs-base); border: 0; padding: 0.2rem 0; }
.mobile-nav .contact-block .phone { color: var(--navy); font-weight: 600; }

/* Sticky mobile phone bar */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 0.875rem 1rem;
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: 0.01em;
  box-shadow: 0 -6px 20px rgba(1,15,98,0.18);
}
.mobile-phone-bar a { color: inherit; display: inline-flex; align-items: center; gap: 0.5rem; }
.mobile-phone-bar svg { width: 18px; height: 18px; }
@media (max-width: 680px) {
  .mobile-phone-bar { display: block; }
  body { padding-bottom: 3.25rem; }
}

/* ------------------------------------------------------------
   7. Cards & shared bits
   ------------------------------------------------------------ */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}
.card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.card p { color: var(--ink-mute); font-size: var(--fs-base); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--pink-100);
  color: var(--pink-deep);
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* ------------------------------------------------------------
   8. Service icon system — duotone navy + pink
   ------------------------------------------------------------ */
.svc-icon {
  width: 80px; height: 80px;
  display: block;
}
.svc-icon .stroke {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-icon .accent {
  fill: var(--pink);
  opacity: 0.85;
}
.svc-icon .accent-purple {
  fill: var(--purple);
  opacity: 0.7;
}
.svc-icon .accent-soft {
  fill: var(--pink);
  opacity: 0.18;
}

/* ------------------------------------------------------------
   9. Service tile (used in services index, home)
   ------------------------------------------------------------ */
.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.25rem 2rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.svc-tile::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--pink-100) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  pointer-events: none;
}
.svc-tile:hover {
  transform: translateY(-4px);
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}
.svc-tile:hover::after { opacity: 1; }
.svc-tile .svc-icon-frame {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--pink-50) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: all var(--dur) var(--ease);
}
.svc-tile .svc-icon-frame::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 28px;
  border: 1px solid var(--rule);
  pointer-events: none;
  opacity: 0.5;
}
.svc-tile:hover .svc-icon-frame {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
  transform: scale(1.04);
}
.svc-tile .svc-icon-frame .svc-icon { width: 64px; height: 64px; margin: 0; }
.svc-tile .svc-icon { margin-bottom: 0.5rem; }
.svc-tile h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}
.svc-tile p { font-size: var(--fs-base); color: var(--ink-mute); }
.svc-tile .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.svc-tile .more svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.svc-tile:hover .more svg { transform: translateX(4px); }

/* ------------------------------------------------------------
   10. Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy);
  color: rgba(251, 247, 242, 0.78);
  padding: 5rem 0 1.5rem;
}
.site-footer h5 {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1rem;
  font-weight: 700;
}
.site-footer a { color: rgba(251, 247, 242, 0.78); transition: color var(--dur) var(--ease); }
.site-footer a:hover { color: var(--cream); }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 3rem;
}
.footer-grid .footer-brand img { height: 56px; margin-bottom: 1.25rem; }
.footer-grid .footer-brand p {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--cream);
  line-height: 1.45;
  font-style: normal;
  max-width: 28ch;
}
.footer-list li { margin-bottom: 0.55rem; line-height: 1.4; }
.footer-list a { font-size: var(--fs-base); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 247, 242, 0.14);
  font-size: var(--fs-xs);
  color: rgba(251, 247, 242, 0.55);
  letter-spacing: 0.04em;
}
.footer-bottom .badges {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------
   11. Reveal animation — progressive. The element is fully
   visible by default (no-JS / headless / slow renderers all OK).
   When IntersectionObserver fires, we replay the entry as a
   subtle fade-in. No flash because the observer adds is-in on
   the first frame for anything already visible.
   ------------------------------------------------------------ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
/* If JS is alive, we hide elements that are *below* the fold until they
   come into view. The .reveal--pre marker is added by JS at boot. */
.reveal.reveal--pre {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}
.reveal.reveal--pre.is-in,
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------
   12. Forms
   ------------------------------------------------------------ */
.field {
  display: block;
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-100);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   13. FAQ accordion
   ------------------------------------------------------------ */
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1rem + 0.3vw, 1.375rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.faq-question .plus {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}
.faq-question .plus svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.faq-item.is-open .faq-question .plus { background: var(--navy); color: var(--cream); }
.faq-item.is-open .faq-question .plus svg { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  max-width: 64ch;
  color: var(--ink-soft);
}
.faq-item.is-open .faq-answer-inner { padding-bottom: 1.5rem; }

/* ------------------------------------------------------------
   14. Page heroes (sub-pages)
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0 clamp(3rem, 2rem + 3vw, 5rem);
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 30%; right: -8%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--pink-100) 0%, transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: min(620px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule) 30%, var(--rule) 70%, transparent);
  transform: translate(-50%, 0);
  bottom: 0;
  top: auto;
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}
.page-hero .crumbs a:hover { color: var(--navy); }
.page-hero .crumbs span { color: var(--ink-faint); }
.page-hero h1 {
  font-size: var(--fs-5xl);
  max-width: 16ch;
  margin-bottom: 1.25rem;
}
.page-hero .lede { max-width: 60ch; }

/* ------------------------------------------------------------
   15. Stats strip
   ------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: 1.75rem 1.5rem;
  text-align: left;
}
.stat .n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.stat .l {
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------------------------------------
   16. Bands / banners (CTA strip)
   ------------------------------------------------------------ */
.cta-band {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 2rem + 3vw, 4rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(233, 112, 192, 0.4) 0%, transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  max-width: 18ch;
}
.cta-band p { color: rgba(251, 247, 242, 0.82); max-width: 48ch; }
.cta-band .cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-content: flex-start; }
}

/* ------------------------------------------------------------
   17. Image frame — editorial offset
   ------------------------------------------------------------ */
.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
}
.frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.frame:hover img { transform: scale(1.03); }

.frame-offset {
  position: relative;
}
.frame-offset::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--navy);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 0;
}
.frame-offset .frame { position: relative; z-index: 1; }

/* Photo placeholder (when no image supplied yet) — intentional editorial fill */
.photo-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    linear-gradient(155deg, #F5C9E2 0%, #E58FC4 25%, #B96BB4 55%, #6D4AA1 85%, #2D2270 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: var(--cream);
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.0625rem;
  text-align: center;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  line-height: 1.45;
}
.photo-ph::before {
  content: '';
  position: absolute;
  top: 18%; left: 50%;
  transform: translateX(-50%);
  width: 56%; height: 56%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
}
.photo-ph::after {
  content: '';
  position: absolute;
  top: 22%; left: 50%;
  transform: translateX(-50%);
  width: 38%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(251, 247, 242, 0.6);
}
.photo-ph span {
  position: relative; z-index: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.photo-ph.is-wide { aspect-ratio: 16 / 10; }
.photo-ph.is-square { aspect-ratio: 1 / 1; }

/* ------------------------------------------------------------
   18. Utility
   ------------------------------------------------------------ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; } .gap-5 { gap: 1.5rem; } .gap-6 { gap: 2rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; } .mt-6 { margin-top: 2rem; }
.mt-7 { margin-top: 3rem; } .mt-8 { margin-top: 4rem; }
.mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; } .mb-6 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.muted { color: var(--ink-mute); }
.navy { color: var(--navy); }
.pink { color: var(--pink); }
.no-wrap { white-space: nowrap; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}

.kicker {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--pink);
  font-weight: 400;
}

/* Two-up content + media */
.two-up {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.two-up--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .two-up { grid-template-columns: 1fr; }
  .two-up--reverse > :first-child { order: 0; }
}

/* Responsive grids */
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); }
.grid-2 { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Pricing table */
.price-table-wrap {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
.price-table-wrap + .price-table-wrap { margin-top: 2rem; }
.price-table-head {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.price-table-head h3 {
  font-size: 1.5rem;
  color: var(--navy);
}
.price-table-head .note { font-size: var(--fs-sm); color: var(--ink-mute); }
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 1rem 2rem;
  text-align: left;
  font-size: var(--fs-base);
  border-bottom: 1px solid var(--rule-soft);
}
.price-table th {
  background: var(--cream);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.price-table td:last-child {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--cream); }
@media (max-width: 540px) {
  .price-table th, .price-table td { padding: 0.85rem 1rem; }
  .price-table-head { padding: 1.25rem 1rem 0.75rem; }
}

/* Step list — used on Support at Home */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.05em;
}
.step h4 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.step p { font-size: var(--fs-base); color: var(--ink-mute); }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

/* Region list */
.regions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.regions-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
}
.regions-list li:nth-child(odd) { padding-right: 2rem; }
.regions-list li:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--rule); }
.regions-list li .num {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 720px) {
  .regions-list { grid-template-columns: 1fr; }
  .regions-list li:nth-child(even) { padding-left: 0; border-left: 0; }
  .regions-list li:nth-child(odd) { padding-right: 0; }
}

/* ============================================================
   ENRICHMENT v2 — photo system, trust strip, region pills,
   after-hours card, services stack. Added 2026-05-11.
   ============================================================ */

/* --- 19. Photo (responsive img wrapper) --- */
.photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
  isolation: isolate;
}
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.photo:hover img { transform: scale(1.03); }
.photo.is-portrait { aspect-ratio: 4 / 5; }
.photo.is-landscape { aspect-ratio: 16 / 10; }
.photo.is-square { aspect-ratio: 1 / 1; }
.photo.is-tall { aspect-ratio: 3 / 4; }
.photo.is-hero { aspect-ratio: 5 / 6; }
@media (max-width: 720px) {
  .photo.is-hero { aspect-ratio: 4 / 5; }
}

/* Editorial offset frame using real photo */
.photo-offset { position: relative; }
.photo-offset::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--navy);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.photo-offset .photo { position: relative; z-index: 1; }
@media (max-width: 600px) {
  .photo-offset::before { inset: 14px -14px -14px 14px; }
}

/* --- 20. Trust strip v2 (improved) --- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.trust-pill svg { width: 16px; height: 16px; }
.trust-pill svg .ic-stroke { stroke: var(--purple); stroke-width: 2; }
.trust-pill .dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  flex: 0 0 auto;
}
.trust-pill.is-strong { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.trust-pill.is-strong .dot { background: var(--pink); }
.trust-pill.is-strong svg .ic-stroke { stroke: var(--pink-soft); }

/* --- 21. Region pill grid (replaces regions-list visual) --- */
.regions-pillgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.region-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}
.region-pill .num {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  font-weight: 600;
}
.region-pill::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--purple);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.region-pill:hover {
  border-color: var(--purple);
  background: var(--cream);
  transform: translateY(-2px);
}
.region-pill:hover::after { opacity: 1; }

/* --- 22. Service photo card (Home + Services pages) --- */
.svc-photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.svc-photo-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}
.svc-photo-card .photo {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  flex: 0 0 auto;
}
.svc-photo-card .body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.svc-photo-card .body h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.svc-photo-card .body p {
  font-size: var(--fs-base);
  color: var(--ink-mute);
  line-height: 1.55;
  margin: 0;
}
.svc-photo-card .body .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.svc-photo-card .body .more svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.svc-photo-card:hover .body .more svg { transform: translateX(4px); }
.svc-photo-card:hover .body .more { color: var(--purple-deep); }

/* --- 23. Services stack — large alternating editorial articles --- */
.svc-stack-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 0;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 120px;
}
.svc-stack-article:last-child { border-bottom: 0; }
.svc-stack-article--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .svc-stack-article { grid-template-columns: 1fr; }
  .svc-stack-article--reverse > :first-child { order: 0; }
}
.svc-stack-article .photo { aspect-ratio: 5 / 4; }
.svc-stack-article .copy { max-width: 56ch; }
.svc-stack-article .num {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 2.75rem;
  color: var(--purple);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.svc-stack-article h2 {
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  font-weight: 700;
  max-width: 18ch;
}
.svc-stack-article .lede-line {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.25rem;
  color: var(--purple-deep);
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 38ch;
}
.svc-stack-article p { color: var(--ink-soft); }
.svc-stack-article p + p { margin-top: 0.9rem; }
.svc-stack-article .actions { margin-top: 1.75rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* --- 24. About hero photo block --- */
.about-hero-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: end;
}
@media (max-width: 880px) { .about-hero-row { grid-template-columns: 1fr; } }

/* About credentials horizontal strip */
.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 2rem;
}
.cred-strip .item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cred-strip .item .k {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cred-strip .item .l {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 720px) { .cred-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .cred-strip { grid-template-columns: 1fr; gap: 1rem; } }

/* --- 25. Footer enrichment — after-hours card + dense layout --- */
.site-footer {
  padding-top: 5.5rem;
}
.footer-after-hours {
  background: rgba(251, 247, 242, 0.06);
  border: 1px solid rgba(251, 247, 242, 0.18);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
  margin-top: 1rem;
}
.footer-after-hours .label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-after-hours .number {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.footer-after-hours .number a { color: inherit; }
.footer-after-hours .meta {
  font-size: 0.8125rem;
  color: rgba(251, 247, 242, 0.7);
  line-height: 1.55;
}
.footer-after-hours .meta strong { color: var(--cream); font-weight: 600; }

.footer-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-creds .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(251, 247, 242, 0.08);
  border: 1px solid rgba(251, 247, 242, 0.18);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-creds .pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.footer-reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(251, 247, 242, 0.06);
  border: 1px solid rgba(251, 247, 242, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--cream);
  margin-top: 1rem;
  transition: all var(--dur) var(--ease);
}
.footer-reviews-cta:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* --- 26. Authority line — small clinical credential under headings --- */
.authority-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--purple-deep);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.authority-line::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--purple);
}
.bg-navy .authority-line, .testimonial-section .authority-line,
.specialist-section .authority-line {
  color: var(--pink-soft);
}
.bg-navy .authority-line::before, .testimonial-section .authority-line::before,
.specialist-section .authority-line::before { background: var(--pink); }

/* --- 27. Section image (full-width-ish editorial accent) --- */
.section-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.section-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .section-image { aspect-ratio: 4 / 3; } }

/* --- 28. Tighten 'pink' accent overrides on legacy elements --- */
.stat .n { color: var(--navy); }
.svc-rail-head h2 .ital,
.process-head h2 .ital,
.specialist-banner h3 .ital,
.svc-rail-head h2 .serif,
.process-head h2 .serif { color: var(--purple); }
/* The home-page hero kicker italic 'stay home' stays pink — the one expressive moment. */

/* ============================================================
   ENRICHMENT v3 — trust badges, stat band, hero photo overlays,
   sidebar callouts. Added 2026-05-11 (continuation).
   ============================================================ */

/* --- 29. Trust badge row v3 — icon-led, four-column system --- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  background: transparent;
}
.trust-badges-wrap {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(2rem, 1.5rem + 1.5vw, 3rem) 0;
}
.trust-badges .label-cap {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}
.trust-badge:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.trust-badge .ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.trust-badge .ic::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--purple-100);
}
.trust-badge .ic svg { width: 22px; height: 22px; }
.trust-badge .ic svg .ic-stroke { stroke: var(--purple-deep); stroke-width: 1.8; }
.trust-badge .body { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-badge .t {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.trust-badge .s {
  font-size: 0.75rem;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .trust-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .trust-badges { grid-template-columns: 1fr; }
}

/* --- 30. Stat band v2 — marquee proof bar with display-size numerals --- */
.stat-band {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(2.75rem, 2rem + 3vw, 4.5rem) clamp(1.75rem, 1rem + 2.5vw, 3.5rem);
  margin-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(233, 112, 192, 0.32) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(10px);
}
.stat-band::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(103, 61, 174, 0.32) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(10px);
}
.stat-band-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.stat-band-head h3 {
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  max-width: 22ch;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.stat-band-head h3 .ital {
  font-style: normal;
  font-weight: 700;
  color: var(--pink-soft);
}
.stat-band-head .eyebrow { color: var(--pink-soft); margin-bottom: 1rem; }
.stat-band-head .eyebrow::before { background: var(--pink); }
.stat-band-head p {
  max-width: 38ch;
  font-size: var(--fs-sm);
  color: rgba(251, 247, 242, 0.78);
  line-height: 1.6;
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(251, 247, 242, 0.16);
  padding-top: 2rem;
}
.stat-band-item {
  position: relative;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(251, 247, 242, 0.16);
}
.stat-band-item:last-child { border-right: 0; }
.stat-band-item:first-child { padding-left: 0; }
.stat-band-item:last-child { padding-right: 0; }
.stat-band-item .big {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 2.2rem + 4vw, 5.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 0.85rem;
}
.stat-band-item .big .plus {
  font-style: normal;
  font-weight: 300;
  color: var(--pink);
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 0.05em;
  letter-spacing: 0;
}
.stat-band-item .big.alpha {
  font-size: clamp(2.5rem, 1.7rem + 3vw, 4rem);
  font-style: normal;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.04em;
}
.stat-band-item .big.alpha .accent { color: var(--pink); font-weight: 300; }
.stat-band-item .lbl {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6875rem;
  margin-bottom: 0.2rem;
}
.stat-band-item .sub {
  display: block;
  font-size: 0.875rem;
  color: rgba(251, 247, 242, 0.7);
  line-height: 1.45;
  font-weight: 400;
  font-family: var(--serif);
  font-style: normal;
}
@media (max-width: 900px) {
  .stat-band-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 0; }
  .stat-band-item { padding: 1rem 1.25rem !important; border-bottom: 1px solid rgba(251, 247, 242, 0.12); }
  .stat-band-item:nth-child(odd) { padding-left: 0 !important; }
  .stat-band-item:nth-child(even) { padding-right: 0 !important; }
  .stat-band-item:nth-child(2) { border-right: 0; }
  .stat-band-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .stat-band-grid { grid-template-columns: 1fr; }
  .stat-band-item { padding: 1.25rem 0 !important; border-right: 0; border-bottom: 1px solid rgba(251, 247, 242, 0.12); }
  .stat-band-item:last-child { border-bottom: 0; }
}

/* --- 31. Hero photo (page-hero with photo aside) --- */
.page-hero--photo { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.page-hero--photo::before { opacity: 0.35; top: 10%; right: -12%; width: 280px; height: 280px; }
.page-hero--photo .hero-photo-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4.5rem);
  align-items: center;
  margin-top: 1rem;
}
.page-hero--photo .hero-photo-row .photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.page-hero--photo .hero-photo-row .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 880px) {
  .page-hero--photo .hero-photo-row { grid-template-columns: 1fr; }
  .page-hero--photo .hero-photo-row .photo { aspect-ratio: 5 / 4; max-height: 480px; }
}

/* --- 32. Side callout card (reusable) --- */
.side-callout {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.side-callout .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
}
.side-callout p {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

/* --- 33. 404 accent photo --- */
.err-photo-accent {
  position: absolute;
  bottom: 8%;
  left: 4%;
  width: clamp(160px, 16vw, 240px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-md);
  z-index: 2;
  transform: rotate(-6deg);
}
.err-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .err-photo-accent {
    position: relative;
    margin: 2rem auto 0;
    bottom: auto; left: auto;
    transform: rotate(-4deg);
  }
}

/* --- 34. Specialist photo banner --- */
.photo-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  isolation: isolate;
}
.photo-banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s var(--ease);
}
.photo-banner:hover img { transform: scale(1.04); }
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(1, 27, 160, 0.7) 0%, rgba(1, 27, 160, 0.28) 55%, transparent 75%);
  z-index: 1;
}
.photo-banner .copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 1.5rem + 3vw, 4rem);
  max-width: 60%;
  color: var(--cream);
}
.photo-banner .copy h3 {
  color: var(--cream);
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.photo-banner .copy p {
  color: rgba(251, 247, 242, 0.9);
  font-size: var(--fs-base);
  max-width: 42ch;
}
.photo-banner .copy .eyebrow { color: var(--pink-soft); margin-bottom: 1rem; }
.photo-banner .copy .eyebrow::before { background: var(--pink); }
.photo-banner .actions { margin-top: 1.5rem; }
@media (max-width: 720px) {
  .photo-banner { aspect-ratio: 5 / 6; }
  .photo-banner .copy { max-width: 100%; }
  .photo-banner::after { background: linear-gradient(180deg, rgba(1,27,160,0.3) 0%, rgba(1,27,160,0.82) 75%); }
}

/* --- 35. Inline photo accent --- */
.photo-inset {
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
}
.photo-inset img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- 36. Body type bump for older eyes — safety net --- */
.lede {
  font-size: clamp(1.1875rem, 1rem + 0.6vw, 1.4375rem);
  line-height: 1.5;
}

/* --- 37. Contact info & form labels (accessibility) --- */
.contact-info .group h4 {
  font-size: 0.8125rem;
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.field label {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 700;
}
.field input, .field textarea, .field select {
  font-size: 1.0625rem;
  padding: 1rem 1.15rem;
}

/* --- 38. Authority pull-line --- */
.hero-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: var(--purple-deep);
  font-weight: 600;
}
.hero-line::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--purple);
}

/* --- 39. Aabha portrait --- */
.aabha-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
}
.aabha-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- 40. FAQ refinements: bigger answer text --- */
.faq-answer-inner p {
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-answer-inner p + p { margin-top: 0.85rem; }

/* --- 41. Careers/Referrals photo column hero --- */
.hero-with-aside {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4.5rem);
  align-items: center;
  margin-top: 1.5rem;
}
.hero-with-aside .photo {
  aspect-ratio: 5 / 6;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-with-aside .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 880px) {
  .hero-with-aside { grid-template-columns: 1fr; }
  .hero-with-aside .photo { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* --- 42. Mini trust strip (used on careers/referrals/about) --- */
.mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.mini-trust .chip-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mini-trust .chip-trust .dot {
  width: 7px; height: 7px;
  background: var(--purple);
  border-radius: 50%;
}

/* ============================================================
   WHO WE ARE — v2 (simple, bold, balanced)
   Replaces the editorial intro-section/intro-grid with a centred
   headline + lead + two strong feature cards for Purpose/Promise.
   ============================================================ */
.who-section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: var(--cream, #FBF7F2);
}
.who-head {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.who-head .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy, #011BA0);
}
.who-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy, #011BA0);
  margin: 0 0 1.25rem;
}
.who-lead {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.7;
  color: var(--ink, #1f2433);
  margin: 0;
}
.who-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 980px;
  margin: 0 auto;
}
.who-card {
  background: #fff;
  border: 1px solid rgba(1, 27, 160, 0.10);
  border-radius: 14px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur, 200ms) ease, transform var(--dur, 200ms) ease;
}
.who-card:hover {
  border-color: rgba(1, 27, 160, 0.25);
  transform: translateY(-2px);
}
.who-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--navy, #011BA0);
  border-radius: 14px 14px 0 0;
}
.who-card--accent::before {
  background: var(--pink, #E970C0);
}
.who-card__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy, #011BA0);
  margin-bottom: 0.875rem;
}
.who-card--accent .who-card__label {
  color: var(--pink, #E970C0);
}
.who-card__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.4;
  color: var(--navy, #011BA0);
  margin: 0;
  letter-spacing: -0.005em;
}
.who-cta {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 720px) {
  .who-pair {
    grid-template-columns: 1fr;
  }
  .who-head {
    margin-bottom: 2.5rem;
    text-align: left;
  }
}

/* ============================================================
   VALUE CARDS — simple bold (replaces editorial numerals)
   Used in about.html "How We Work" grid.
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.values-grid .value {
  background: #fff;
  border: 1px solid rgba(1, 27, 160, 0.10);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur, 200ms) ease, transform var(--dur, 200ms) ease;
}
.values-grid .value:hover {
  border-color: rgba(1, 27, 160, 0.25);
  transform: translateY(-2px);
}
.values-grid .value::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--navy, #011BA0);
}
.values-grid .value:nth-child(even)::before { background: var(--pink, #E970C0); }
.values-grid .value-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy, #011BA0);
  margin-bottom: 0.75rem;
}
.values-grid .value:nth-child(even) .value-label { color: var(--pink, #E970C0); }
.values-grid .value h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--navy, #011BA0);
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}
.values-grid .value p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-mute, #4a5168);
  margin: 0;
}

/* ============================================================
   WHY CARDS — small tinted number badge variant
   Used in careers.html (Why Join Us) + contact.html (How it works).
   The big italic-pink ".n" / inline numeral has been replaced
   with a small tinted square badge that whispers, not shouts.
   ============================================================ */
.why-card .badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(1, 27, 160, 0.08);
  color: var(--navy, #011BA0);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-feature-settings: "tnum";
}
.why-card:nth-child(even) .badge-num { background: rgba(233, 112, 192, 0.12); color: var(--pink-deep, #B3478C); }

/* ============================================================
   ACCESS-FLOW STEP NUMBER — small tinted badge variant
   Used in support-at-home.html "How to access" 3-step row.
   ============================================================ */
.access-flow .step-card .step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: rgba(1, 27, 160, 0.08);
  color: var(--navy, #011BA0);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  font-feature-settings: "tnum";
}

/* ============================================================
   INTRO-ARTICLE — marker without editorial numeral
   Used in support-at-home.html "What is Support at Home" /
   "Support at Home Services" two intro sections.
   ============================================================ */
.intro-article .marker .marker-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep, #B3478C);
  margin-bottom: 0.75rem;
}

/* ============================================================
   PRICING HIGHLIGHTS (home page testimonial-section right column)
   ============================================================ */
.pricing-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.price-highlight {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #fff;
}
.price-highlight__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-soft, #F4A8DA);
}
.price-highlight__value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.price-highlight__unit {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.25rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.price-list li {
  font-family: 'Lato', sans-serif;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price-list .price-check {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--pink-soft, #F4A8DA);
}
