:root {
  --bg: #f6f1ea;              /* warm cream */
  --bg-2: #fbf7f1;            /* soft cream for alt sections */
  --paper: #ffffff;
  --forest: #1f6b39;          /* brand green from logo */
  --forest-deep: #134426;     /* deep green for dark sections */
  --leaf: #4a9b48;
  --blue: #1c6bb8;            /* royal blue from logo "Care" */
  --blue-deep: #134e8a;       /* deep navy for trust sections */
  --blue-soft: #e5eff8;
  --tan: #2d8a3e;             /* vibrant logo green — italic accent */
  --tan-soft: #b8d9b5;
  --ink: #2e445c;             /* soft deep slate-blue for headings */
  --ink-soft: #5b6b7d;
  --muted: #7a8597;
  --line: #e4e8ee;
  --line-soft: #eef2f6;

  /* legacy aliases (some classes still reference these) */
  --cream: var(--bg);
  --cream-2: var(--bg-2);

  /* density tokens */
  --section-py: clamp(40px, 6vw, 80px);
  --hero-py-bottom: clamp(32px, 5vw, 64px);
  --hero-py-top: clamp(12px, 3vw, 28px);
  --card-py: 28px;
  --card-px: 24px;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;

  --display: "Lora", "Source Serif Pro", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ============ NAV ============ */
.nav {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  z-index: 50;
}
.nav.scrolled { border-bottom-color: transparent; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 140px;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 879px) {
  html { scroll-padding-top: 80px; }
  .nav { position: sticky; top: 0; }
  .nav-inner { min-height: 0; padding-top: 6px; padding-bottom: 6px; }
  .logo img { height: 56px; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-toggle svg { width: 22px; height: 22px; }
}
.logo {
  display: inline-flex; align-items: center;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.logo img {
  height: 80px;
  width: auto;
  display: block;
}
@media (min-width: 880px) {
  .logo img { height: 104px; }
}
/* Fallback text wordmark (used in footer) */
.logo-text {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--display);
  font-size: 30px;
}
.logo-text .take { color: var(--forest); }
.logo-text .care { color: var(--blue); font-style: italic; }
.logo-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
}
.logo-mark svg { width: 16px; height: 16px; }

.menu { display: none; }
@media (min-width: 880px) {
  .menu {
    display: flex; align-items: center; gap: 28px;
    font-size: 16px; font-weight: 500; color: var(--ink-soft);
  }
  .menu a { position: relative; padding: 6px 0; }
  .menu a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--ink-soft);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
  }
  .menu a:hover::after { transform: scaleX(1); }
}
@media (min-width: 1100px) {
  .menu { gap: 40px; font-size: 19px; }
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 2px 12px -2px rgba(28,107,184,0.35);
}
.nav-cta:hover { background: var(--blue-deep); }
.nav-cta svg { width: 16px; height: 16px; }
@media (min-width: 1100px) {
  .nav-cta { gap: 10px; padding: 13px 22px; font-size: 16px; }
}

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }
@media (min-width: 880px) { .nav-toggle { display: none; } }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right .nav-cta-phone { display: none; }
@media (min-width: 540px) {
  .nav-right .nav-cta-phone { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 0; z-index: 40;
  background: var(--bg);
  transform: translateY(-110%); transition: transform .3s ease;
  padding: 88px var(--pad) 32px;
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
}
.drawer.open { transform: translateY(0); }
.drawer nav { display: flex; flex-direction: column; gap: 10px; }
.drawer nav a {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color .2s ease, color .2s ease;
}
.drawer nav a:hover { border-color: var(--blue); color: var(--blue); }
.drawer nav a .icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}
.drawer nav a .icon svg { width: 22px; height: 22px; }
@media (min-width: 880px) { .drawer { display: none; } }

/* ============ HERO ============ */
.hero { padding-top: var(--hero-py-top); padding-bottom: var(--hero-py-bottom); }
.hero-grid {
  display: grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; align-items: center; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--tan);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 18px 0 36px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic; color: var(--tan);
  display: inline-block;
}
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 30em;
  text-wrap: pretty;
  margin: 0 0 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  padding: 16px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px -6px rgba(28,107,184,0.4);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 30px -8px rgba(28,107,184,0.5); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--forest); font-size: 15px; font-weight: 500;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  white-space: nowrap;
  transition: background .2s ease;
}
.btn-ghost:hover { background: rgba(31,107,57,0.06); }

.hero-meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 26px;
  color: var(--ink-soft); font-size: 14px;
}
.hero-meta .dot { width: 6px; height: 6px; background: var(--tan); border-radius: 50%; }
.hero-meta .item { display: inline-flex; align-items: center; gap: 10px; }

/* Hero image */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
}
@media (min-width: 920px) {
  .hero-art { aspect-ratio: 5/6; }
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 30px rgba(31, 51, 41, 0.12);
  max-width: calc(100% - 36px);
}
.hero-badge .avs {
  display: flex;
}
.hero-badge .avs span {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-left: -10px;
  background: var(--tan);
}
.hero-badge .avs span:first-child { margin-left: 0; background: #4a9b48; }
.hero-badge .avs span:nth-child(2) { background: #1f6fb8; }
.hero-badge .avs span:nth-child(3) { background: #ed7a2f; }
.hero-badge .txt { font-size: 13px; color: var(--ink); line-height: 1.3; }
.hero-badge .txt strong { color: var(--forest); font-weight: 600; display: block; font-size: 14px; }

.hero-quote {
  position: absolute; right: 18px; top: 18px;
  background: rgba(19, 78, 138, 0.92);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  max-width: min(280px, 78%);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.35;
  backdrop-filter: blur(8px);
}
.hero-quote::before {
  content: "“"; font-size: 36px; line-height: 0; position: relative; top: 12px; margin-right: 4px; color: var(--tan);
}

/* ============ SECTION CHROME ============ */
section { padding: var(--section-py) 0; }
.section-head { display: grid; gap: 14px; margin-bottom: clamp(36px, 5vw, 64px); max-width: 720px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--tan); }
.section-head p { color: var(--ink-soft); font-size: 17px; margin: 0; max-width: 38em; text-wrap: pretty; }

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  align-items: center;
}
@media (min-width: 720px) {
  .trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 32px;
  }
  .trust-label { margin-right: auto; max-width: 12em; }
}
.trust-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  grid-column: 1 / -1;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.15;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue); }

/* ============ SERVICES ============ */
#services { background: var(--bg); }

.services-tier { margin-top: clamp(36px, 4vw, 52px); }
.services-tier:first-of-type { margin-top: 0; }
.services-tier-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 24px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.services-tier-head h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.services-tier-head .tier-note {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.services-tier-head .tier-note svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

.services-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .services-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--card-py) var(--card-px);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(22, 32, 43, 0.18);
}
.service .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.service .icon svg { width: 22px; height: 22px; }
.service h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.service p {
  margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55;
}

/* What's included list (used on the two flagship cards) */
.service-includes {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.service-includes li {
  display: flex; align-items: flex-start; gap: 10px;
}
.service-includes li svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-includes li strong { color: var(--ink); font-weight: 600; }
.service-includes li span { color: var(--ink-soft); }

/* Medical / specialized variant */
.service.service-medical .icon {
  background: var(--bg-2);
  color: var(--blue-deep);
}
.med-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: -4px;
}
.med-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.med-badge.medical {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.med-badge.trained {
  background: var(--tan-soft);
  color: var(--ink);
}

/* ============ TESTIMONIALS (CAROUSEL) ============ */
#testimonials { background: var(--bg-2); }

.testi-slider { position: relative; }
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  align-items: center;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi {
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 56px);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  min-width: 0;
}
.testi .quote-mark {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.5;
  color: var(--tan);
  font-style: italic;
  height: 22px;
  user-select: none;
}
.testi blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.003em;
  text-wrap: pretty;
  width: 100%;
  max-width: 640px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.testi.expanded blockquote {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.testi-more {
  background: none;
  border: 0;
  padding: 0;
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: none;
}
.testi-more:hover { text-decoration: underline; }
.testi.has-overflow .testi-more { display: inline-block; }
.testi.expanded .testi-more { display: none; }
.testi .name {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testi .name::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 14px;
}

.testi-nav {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 10px;
}
.testi-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.testi-arrow:hover:not(:disabled) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.testi-arrow:disabled { opacity: 0.35; cursor: default; }
.testi-arrow svg { width: 18px; height: 18px; }

/* ============ CAREERS ============ */
#careers { background: var(--bg); }
.careers-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.careers-wrap .eyebrow { justify-content: center; }
.careers-wrap h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.careers-wrap h2 em { font-style: italic; color: var(--tan); }
.careers-wrap p.lede { color: var(--ink-soft); margin: 18px auto 0; max-width: 38em; font-size: 17px; }
.perks {
  display: grid;
  gap: 12px;
  margin: 40px auto 0;
  padding: 0;
  max-width: 520px;
  text-align: left;
}
.perks li {
  list-style: none;
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; color: var(--ink);
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.perks li svg { color: var(--tan); width: 18px; height: 18px; flex-shrink: 0; }
.careers-cta {
  margin-top: 44px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  padding: 16px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px -6px rgba(28,107,184,0.4);
}
.careers-cta:hover { background: var(--blue-deep); box-shadow: 0 10px 30px -8px rgba(28,107,184,0.5); }
.careers-cta svg { width: 16px; height: 16px; }

/* ============ CONTACT ============ */
#contact {
  background: var(--bg-2);
  color: var(--ink);
}
#contact .section-head h2 { color: var(--ink); }
#contact .section-head h2 em { color: var(--tan); font-style: italic; }
#contact .section-head p { color: var(--ink-soft); }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  box-shadow: 0 20px 50px -30px rgba(15, 25, 45, 0.25);
}

.contact-portrait {
  position: relative;
  background: var(--bg-2);
  min-height: 420px;
}
.contact-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.contact-body {
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.contact-person {
  display: flex; flex-direction: column;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-person .name {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 30px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.contact-person .role {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.contact-row {
  display: flex; align-items: center; gap: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-row:hover { color: var(--blue); }
.contact-row .icon-bubble {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.contact-row:hover .icon-bubble { background: var(--blue); color: #fff; }
.contact-row .icon-bubble svg { width: 20px; height: 20px; }
.contact-row .info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-row .info .label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-row .info .value {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.1;
  word-break: break-word;
}
.contact-divider {
  height: 1px; background: var(--line); margin: 2px 0;
}

@media (max-width: 820px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-portrait { min-height: 320px; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--paper);
  color: var(--ink-soft);
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-top {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .foot-top { grid-template-columns: 1.5fr 1fr 1fr; } }

footer .logo { color: var(--forest); }
footer .logo img { height: 88px; }
.foot-top .logo { filter: brightness(1.05) saturate(1.05); }
@media (max-width: 720px) {
  footer { padding: 20px 0; }
  .foot-top { display: none; }
  .foot-bot { border-top: 0; padding-top: 0; }
}
footer .blurb { margin-top: 18px; max-width: 28em; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

.foot-col h5 {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 6px 0 16px; font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a {
  position: relative;
  font-size: 15px; color: var(--ink);
  padding: 2px 0;
}
.foot-col a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.foot-col a:hover::after { transform: scaleX(1); }
.foot-col a[href^="tel:"],
.foot-col a[href^="mailto:"] { font-weight: 700; }

.foot-bot {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px; color: var(--muted);
}

/* Visually hidden */
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
