/* ==========================================================================
   CareHearths — site-wide theme layer for UIkit 3
   --------------------------------------------------------------------------
   Structural layout (grid, spacing, form scaffolding, nav behavior) comes
   from UIkit 3 classes in the HTML. This file holds:
     1. Brand design tokens (colors, type, spacing)
     2. Small overrides that theme UIkit components to the brand
     3. Accessibility guarantees (focus states, tap targets, readable type)
   Shared across index.html, about.html, staff.html, services.html and
   contact.html so the five pages read as one consistent site.
   ========================================================================== */

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("assets/fonts/nunito-sans-variable.woff2") format("woff2");
}

:root {
  /* Brand colors — sampled from the CareHearths logo */
  --navy:        #17255a;   /* primary brand / CH monogram / CTAs */
  --navy-600:    #22337a;   /* hover state for navy */
  --ocean:       #2e6ea6;   /* ribbon blue / links */
  --teal:        #5bb0b4;   /* heart teal / accents */
  --teal-100:    #e3f1f1;   /* faint teal wash */
  --teal-50:     #f2f9f9;   /* section tint background */

  /* Neutrals — soft off-black / off-white, never pure #000 / #fff,
     to hit strict WCAG AA contrast without harsh glare for older eyes. */
  --off-black:   #1a1a1a;
  --off-white:   #f9f9f9;
  --ink:         var(--off-black);
  --ink-soft:    #4a4a4a;
  --surface:     #ffffff;
  --line:        #e2e2e2;

  /* Fluid type scale — clamp(min, preferred, max). Body copy never drops
     below 18px, per WCAG readability guardrail for a senior audience. */
  --fs-eyebrow:  clamp(0.82rem, 0.4vw + 0.75rem, 0.95rem);
  --fs-small:    clamp(0.95rem, 0.2vw + 0.9rem, 1.05rem);
  --fs-body:     clamp(1.125rem, 0.35vw + 1.05rem, 1.25rem);
  --fs-lead:     clamp(1.15rem, 0.5vw + 1rem, 1.4rem);
  --fs-h4:       clamp(1.15rem, 0.5vw + 1rem, 1.3rem);
  --fs-h3:       clamp(1.3rem, 0.7vw + 1.1rem, 1.6rem);
  --fs-h2:       clamp(1.6rem, 1.2vw + 1.3rem, 2.25rem);
  --fs-h1:       clamp(2rem, 2vw + 1.6rem, 3.25rem);

  --lh-body:     1.65;
  --radius:      16px;
  --radius-sm:   12px;
  --shadow:      0 18px 50px -24px rgba(23, 37, 90, 0.28);
  --shadow-sm:   0 8px 24px -16px rgba(23, 37, 90, 0.3);
  --tap:         48px;      /* min interactive size, exceeds 44x44 requirement */
  --container-pad: clamp(1.1rem, 4vw, 3rem);
}

/* --------------------------------------------------------------------------
   BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

body {
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background-color: var(--off-white);
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Nunito Sans", sans-serif;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 900;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); font-weight: 800; }
a { color: var(--ocean); }

/* Skip link for keyboard/screen-reader users */
.ch-skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--navy); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); font-weight: 800; z-index: 1000;
  transition: top 0.15s ease;
}
.ch-skip-link:focus { top: 1rem; }

/* Global focus visibility for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.uk-navbar-toggle:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 2px;
}

/* Ensure every interactive element meets the 44x44 minimum tap target */
a.uk-button, button, .ch-phone, .uk-input, .uk-select, .uk-textarea,
.uk-navbar-toggle, .uk-close-large {
  min-height: var(--tap);
}

.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; line-height: 1.2;
  font-size: var(--fs-eyebrow); font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  background: var(--teal-100); padding: 0.35rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(91, 176, 180, 0.45);
}

.ch-section { padding: clamp(2.5rem, 6vh, 5rem) 0; }
.ch-section--tint { background: var(--teal-50); }
.ch-section--navy { background: var(--navy); color: #fff; }
.ch-section--navy h2, .ch-section--navy h3 { color: #fff; }
.ch-section-head { max-width: 62ch; margin: 0 auto clamp(1.75rem, 4vh, 3rem); text-align: center; }
.ch-section-head p { color: var(--ink-soft); font-size: var(--fs-lead); }
.ch-container { max-width: 1240px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.ch-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: var(--tap); padding: 0 1.6rem;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  cursor: pointer; transition: background-color 0.15s ease, transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ch-btn:active { transform: translateY(1px); }
.ch-btn--primary { background: var(--navy); color: #fff; }
.ch-btn--primary:hover { background: var(--navy-600); color: #fff; }
.ch-btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.ch-btn--outline:hover { background: var(--navy); color: #fff; }
.ch-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.ch-btn--outline-light:hover { background: #fff; color: var(--navy); }
.ch-btn--white { background: #fff; color: var(--navy); border-color: #fff; }
.ch-btn--white:hover { background: var(--teal-100); color: var(--navy); }
.ch-btn--block { width: 100%; }
.ch-btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --------------------------------------------------------------------------
   HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.ch-header {
  background: rgba(249, 249, 249, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.uk-navbar-sticky { box-shadow: var(--shadow-sm); }

.ch-navbar { padding: 0.6rem 0; min-height: 84px; }

.ch-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.ch-brand img { width: clamp(52px, 6vw, 64px); height: auto; display: block; }
.ch-brand__wordmark { display: flex; flex-direction: column; gap: 0; }
.ch-brand__name { font-weight: 900; font-size: 1.35rem; color: var(--navy); line-height: 1.1; }
.ch-brand__tag  { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.03em; line-height: 1.2; }

.ch-nav { gap: 0.25rem; }
.ch-nav > li > a {
  display: flex; align-items: center; min-height: var(--tap);
  padding: 0 1rem; font-weight: 700; color: var(--ink);
  text-decoration: none; border-radius: var(--radius-sm);
}
.ch-nav > li > a:hover,
.ch-nav > li > a:focus-visible { color: var(--navy); background: var(--teal-100); }
.ch-nav > li.uk-active > a { color: var(--navy); background: var(--teal-100); }

.ch-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: var(--tap); padding: 0 1.15rem;
  border-radius: 999px; border: 1.5px solid var(--line);
  color: var(--navy); font-weight: 800; text-decoration: none;
  background: var(--surface); white-space: nowrap;
}
.ch-phone:hover { border-color: var(--teal); color: var(--navy); }

.ch-navbar-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap); height: var(--tap);
  color: var(--navy); border-radius: var(--radius-sm);
}
.ch-navbar-toggle:hover { background: var(--teal-100); }

.ch-offcanvas .uk-offcanvas-bar { width: 320px; max-width: 85vw; background: var(--off-white); color: var(--ink); padding: 1.5rem; }
.ch-offcanvas .uk-nav-default > li > a { color: var(--ink); font-weight: 700; font-size: 1.1rem; min-height: var(--tap); display: flex; align-items: center; }
.ch-offcanvas .uk-nav-default > li > a:hover { color: var (--navy); }
.ch-offcanvas .ch-phone { margin-top: 1rem; }
.ch-offcanvas .ch-phone { margin-top: 1rem; color: var(--navy);}
.ch-offcanvas .uk-offcanvas-bar .uk-close { color: var(--navy); }
.ch-offcanvas .uk-offcanvas-bar .uk-close:hover { color: var(--navy-600); }
.ch-offcanvas__cta { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   HOME HERO
   -------------------------------------------------------------------------- */
.ch-hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--off-white) 100%);
  padding: clamp(2.5rem, 6vh, 4.5rem) 0 clamp(2.5rem, 5vh, 4rem);
}
.ch-hero__intro { max-width: 54ch; }
.ch-hero__phone { margin-top: 1.25rem; }
.ch-h1 { margin: clamp(0.6rem, 1.5vh, 1rem) 0 clamp(0.5rem, 1vh, 0.85rem); }
.ch-lead { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 46ch; margin-bottom: clamp(0.75rem, 1.5vh, 1.25rem); }
.ch-hero__note {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 1.25rem 0 0; font-weight: 700; color: var(--navy); font-size: var(--fs-small);
}
.ch-hero__note [uk-icon] {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: #fff;
}

/* City list disclosure — hover on desktop, tap on touch/mobile */
.ch-city-pop { position: relative; }
.ch-city-pop__trigger {
  font-weight: 800; color: var(--navy);
  cursor: pointer; text-decoration: underline;
  text-decoration-style: dotted; text-decoration-color: var(--teal);
  text-underline-offset: 4px; text-decoration-thickness: 2px;
}
.ch-city-pop__trigger:hover { color: var(--ocean); }
.ch-city-pop__trigger:focus-visible {
  outline: 3px solid var(--ocean); outline-offset: 2px;
}
.ch-city-pop__panel {
  position: absolute; left: 50%; top: calc(100% + 12px);
  transform: translateX(-50%) translateY(-6px);
  z-index: 20; width: max-content; max-width: min(300px, calc(100vw - 2.5rem));
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 0.85rem 1.1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.ch-city-pop__panel::before {
  content: ""; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; margin-left: -6px;
  background: var(--surface);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.ch-city-pop__panel strong {
  display: block; font-size: var(--fs-small); color: var(--navy);
  margin-bottom: 0.5rem; text-align: left;
}
.ch-city-pop__list {
  display: block; columns: 2; column-gap: 1.5rem;
  font-size: var(--fs-small); font-weight: 400; color: var(--ink-soft);
  text-align: left;
}
.ch-city-pop__list span { display: block; break-inside: avoid; white-space: nowrap; padding: 0.15rem 0; }

/* Real hover devices (desktop): reveal on mouse hover */
@media (hover: hover) and (pointer: fine) {
  .ch-city-pop:hover .ch-city-pop__panel,
  .ch-city-pop__trigger:focus-visible ~ .ch-city-pop__panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
/* Touch devices: JS toggles this class on tap since hover isn't available */
.ch-city-pop__panel.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ch-hero__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
}
.ch-hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}

/* --------------------------------------------------------------------------
   TRUST GRID
   -------------------------------------------------------------------------- */
.ch-trust__item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  height: 100%;
}
.ch-trust__icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal-100); color: var(--navy);
}
.ch-trust__item h3 { font-size: var(--fs-h4); margin: 0 0 0.4rem; }
.ch-trust__item p { color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   SERVICE CARDS
   -------------------------------------------------------------------------- */
.ch-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 2.5vw, 2rem);
  height: 100%; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.ch-card__icon {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 14px; background: var(--navy); color: #fff; margin-bottom: 1rem;
}
.ch-card h3 { margin: 0 0 0.5rem; }
.ch-card__desc { color: var(--ink-soft); margin-bottom: 1rem; }
.ch-card__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; flex: 1 1 auto; }
.ch-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; }
.ch-card__list .ch-check {
  flex: 0 0 auto; margin-top: 0.2rem; display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: #fff;
}
.ch-card .ch-btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   ABOUT SPLIT (home page)
   -------------------------------------------------------------------------- */
.ch-about__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
}
.ch-about__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.ch-about__copy p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   CONTACT / INTAKE FORM
   -------------------------------------------------------------------------- */
.ch-formcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
}
.ch-formcard h2, .ch-formcard h3 { font-size: var(--fs-h3); font-weight: 900; margin: 0 0 0.35rem; }
.ch-formcard__sub { color: var(--ink-soft); margin-bottom: clamp(1rem, 2vh, 1.5rem); }

.ch-formcard .uk-margin { margin-top: clamp(0.85rem, 1.8vh, 1.25rem); }
.ch-formcard .uk-margin:first-child { margin-top: 0; }

.ch-formcard .uk-form-label { font-weight: 800; color: var(--navy); font-size: 1rem; margin-bottom: 0.35rem; }
.ch-formcard .uk-form-label::after { content: ' *'; color: #b91c1c; font-weight: 700; }

.ch-formcard .uk-input,
.ch-formcard .uk-select,
.ch-formcard .uk-textarea {
  min-height: var(--tap);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--off-white);
  color: var(--ink);
  font-size: 1.0625rem;
  padding: 0.6rem 1rem;
}
.ch-formcard .uk-input { height: var(--tap); }
.ch-formcard .uk-input::placeholder, .ch-formcard .uk-textarea::placeholder { color: #767676; }
.ch-formcard .uk-input:focus,
.ch-formcard .uk-select:focus,
.ch-formcard .uk-textarea:focus {
  border-color: var(--ocean);
  background-color: var(--surface);
  box-shadow: 0 0 0 4px rgba(46, 110, 166, 0.18);
  outline: none;
}

.ch-submit {
  min-height: var(--tap);
  width: 100%;
  border: none; border-radius: var(--radius-sm);
  background: var(--navy); color: #f4f7fb;
  font-weight: 900; font-size: 1.1rem; letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.ch-submit:hover { background: var(--navy-600); }
.ch-submit:active { transform: translateY(1px); }

.ch-privacy { font-size: var(--fs-small); color: var(--ink-soft); margin: clamp(0.75rem, 1.5vh, 1rem) 0 0; display: flex; gap: 0.5rem; align-items: flex-start; }
.ch-hp { position: absolute !important; left: -9999px; top: -9999px; }

.ch-contact-info { display: grid; gap: 1.25rem; }
.ch-contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.ch-contact-info__icon { flex: 0 0 auto; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--teal-100); color: var(--navy); }
.ch-contact-info__item h3 { font-size: var(--fs-h4); margin: 0 0 0.25rem; }
.ch-contact-info__item p { color: var(--ink-soft); margin: 0; }
.ch-contact-info__item a { color: var(--navy); font-weight: 700; }

/* --------------------------------------------------------------------------
   INNER PAGE BANNER (about / staff / services / contact hero)
   -------------------------------------------------------------------------- */
.ch-banner {
  position: relative;
  padding: clamp(3rem, 10vh, 6rem) var(--container-pad) clamp(2.5rem, 7vh, 4rem);
  background: linear-gradient(rgba(23, 37, 90, 0.82), rgba(23, 37, 90, 0.82)), var(--banner-img, none) center / cover no-repeat;
  color: #fff; text-align: center;
}
.ch-banner h1 { color: #fff; margin: 0 0 0.75rem; }
.ch-banner p { color: rgba(255,255,255,0.9); font-size: var(--fs-lead); max-width: 60ch; margin: 0 auto; }
.ch-banner .ch-eyebrow { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }

/* --------------------------------------------------------------------------
   ABOUT PAGE — value list
   -------------------------------------------------------------------------- */
.ch-value {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
}
.ch-value:last-child { border-bottom: none; }
.ch-value__icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: #fff;
}
.ch-value h3 { margin: 0 0 0.35rem; font-size: var(--fs-h4); }
.ch-value p { color: var(--ink-soft); margin: 0; }

.ch-mission {
  background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.ch-mission h2 { color: #fff; }
.ch-mission p { color: rgba(255,255,255,0.92); font-size: var(--fs-lead); margin: 0; }

/* --------------------------------------------------------------------------
   STAFF CARDS
   -------------------------------------------------------------------------- */
.ch-staff-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.ch-staff-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--teal-100); }
.ch-staff-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 35%; display: block;
}
.ch-staff-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.ch-staff-card__role {
  display: inline-block; align-self: flex-start; margin-bottom: 0.6rem;
  font-size: var(--fs-small); font-weight: 800; color: var(--navy);
  background: var(--teal-100); padding: 0.4rem 0.85rem; border-radius: var(--radius-sm);
  line-height: 1.3;
}
.ch-staff-card h2, .ch-staff-card h3 { margin: 0 0 0.15rem; }
.ch-staff-card__credential { display: block; color: var(--ink-soft); font-weight: 700; font-size: var(--fs-small); margin-bottom: 0.85rem; }
.ch-staff-card__bio { color: var(--ink-soft); }
.ch-staff-card__bio p { margin-bottom: 0.85rem; }

/* --------------------------------------------------------------------------
   SERVICES PAGE — detailed tiers
   -------------------------------------------------------------------------- */
.ch-tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.ch-tier + .ch-tier { margin-top: clamp(1.75rem, 4vh, 2.5rem); }
.ch-tier__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 900; font-size: 1.15rem;
  margin-bottom: 1rem;
}
.ch-tier__best { color: var(--ocean); font-weight: 800; margin-bottom: 0.75rem; }
.ch-tier__list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.ch-tier__list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.ch-tier__list .ch-check {
  flex: 0 0 auto; margin-top: 0.2rem; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: #fff;
}
.ch-tier__list strong { display: block; }
.ch-tier__list span { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   CTA BANNER
   -------------------------------------------------------------------------- */
.ch-cta {
  background: var(--navy); color: #fff; text-align: center;
  padding: clamp(2.5rem, 6vh, 4rem) var(--container-pad);
}
.ch-cta h2 { color: #fff; margin: 0 0 0.75rem; }
.ch-cta p { color: rgba(255,255,255,0.88); font-size: var(--fs-lead); max-width: 56ch; margin: 0 auto 1.75rem; }
.ch-cta .ch-btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.ch-footer { background: var(--off-black); color: rgba(249,249,249,0.85); padding: clamp(2.5rem, 5vh, 3.5rem) 0 1.5rem; }
.ch-footer a { color: rgba(249,249,249,0.85); text-decoration: none; }
.ch-footer a:hover { color: #fff; text-decoration: underline; }
.ch-footer h2, .ch-footer h3 { color: #fff; }
.ch-footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.ch-footer__brand img { width: 46px; height: auto; }
.ch-footer__brand span { font-weight: 900; font-size: 1.2rem; color: #fff; }
.ch-footer__tagline { max-width: 40ch; color: rgba(249,249,249,0.7); }
.ch-footer__heading { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.ch-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.ch-footer__bottom { border-top: 1px solid rgba(249,249,249,0.15); margin-top: 2.5rem; padding-top: 1.5rem; font-size: var(--fs-small); color: rgba(249,249,249,0.6); display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 959px) {
  .ch-phone__number { display: none; }
  .ch-hero { text-align: left; }
  .ch-navbar-toggle { margin-right: 0.75rem; }
}

.ch-sticky-cta {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 990;
  display: flex; align-items: center; gap: 0.75rem;
}
.ch-sticky-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; flex: 0 0 auto;
  background: var(--navy); color: #fff;
  box-shadow: var(--shadow-sm); text-decoration: none;
}
.ch-sticky-btn:hover,
.ch-sticky-btn:focus-visible { background: var(--navy-600); color: #fff; }
