/* =====================================================
   KINDHEART SOLUTIONS — GLOBAL STYLES
   ===================================================== */

:root {
  --bg-page:   #f4f3ed;
  --bg-panel:  #f8f7f2;
  --bg-white:  #ffffff;
  --text:      #1d2220;
  --muted:     #52605a;
  --accent:    #3c5039;
  --accent-h:  #2f3f2d;
  --line:      #d8d7d1;
  --shadow:    0 6px 20px rgba(18, 24, 18, 0.07);
  --font-sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-serif:"Fraunces", "Baskerville", Georgia, serif;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-panel);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; top: 1rem; left: 1rem;
  transform: translateY(-200%);
  background: var(--accent); color: #fff;
  padding: 0.55rem 0.75rem; z-index: 10;
}
.skip-link:focus { transform: translateY(0); }
.site-shell { width: 100%; margin: 0; background: var(--bg-panel); }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 82rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.25rem);
}

/* HEADER */
.site-header {
  border-bottom: 1px solid var(--line);
  background: #f6f5f0;
  height: 120px;
  position: sticky; top: 0; z-index: 20;
}
.site-header__inner {
  height: 100%;
  padding-block: 0;
  position: relative;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  overflow: visible;
  line-height: 0;
}
.brand__logo {
  height: clamp(3.8rem, 6.4vw, 4.8rem);
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex-wrap: wrap;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.site-nav a {
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.8rem;
  padding: 0.68rem 0.9rem; color: #505953; font-weight: 700; white-space: nowrap;
}
.site-nav a[aria-current="page"] { color: var(--text); }
.site-nav__cta {
  margin-left: 0.6rem; background: #4a6043;
  color: #fff !important; padding: 0.74rem 1.24rem !important;
}
.site-nav__cta:hover { background: var(--accent-h); }

.mobile-nav__toggle,
.mobile-nav__overlay,
.mobile-nav__panel {
  display: none;
}

.mobile-nav__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav__toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #c6c9bf;
  border-radius: 0.45rem;
  background: #fefdf8;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}
.mobile-nav__toggle span {
  width: 1.15rem;
  height: 2px;
  background: #3e4841;
  display: block;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 16, 0.34);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(22rem, 86vw);
  background: #f8f7f2;
  border-left: 1px solid var(--line);
  padding: 1rem 1rem 1.2rem;
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.mobile-nav__header p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #59645b;
  font-weight: 700;
}
.mobile-nav__close {
  font-size: 1.5rem;
  line-height: 1;
  color: #3f4a41;
  cursor: pointer;
}
.mobile-nav__links {
  display: grid;
  gap: 0.28rem;
}
.mobile-nav__links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #38413a;
  padding: 0.7rem 0.55rem;
  border-radius: 0.4rem;
}
.mobile-nav__links a:hover,
.mobile-nav__links a[aria-current="page"] {
  background: #ecefe7;
}
.mobile-nav__cta {
  margin-top: 0.55rem;
  background: #4a6043;
  color: #fff !important;
  text-align: center;
}

.mobile-nav__checkbox:checked ~ .mobile-nav__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__checkbox:checked ~ .mobile-nav__panel {
  transform: translateX(0);
}
main { display: block; }

/* BUTTONS */
.button-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; }
.button {
  display: inline-flex; align-items: center; gap: 0.3rem;
  border: 1px solid transparent; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.07em;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.85rem 1.2rem; min-height: 2.8rem; cursor: pointer;
}
.button--primary { background: #3c5039; color: #fff; }
.button--primary:hover { background: var(--accent-h); }
.button--secondary { border-color: #b5b8b0; color: #383f38; background: #fff; }
.button--secondary:hover { background: #eeede8; }

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase; font-size: 0.7rem;
  letter-spacing: 0.14em; color: #677466; font-weight: 700;
}
.text-link {
  display: inline-block; text-transform: uppercase;
  letter-spacing: 0.09em; font-size: 0.7rem; font-weight: 700;
  color: #3a4e38; text-decoration: none; margin-top: 1.1rem;
}
.text-link:hover { color: var(--accent-h); }

/* HERO — full bleed, content padded left, image flush right */
.home-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: #faf9f5; min-height: 36rem;
}
.home-hero__content {
  padding-left: max(clamp(1.25rem, 4vw, 3.25rem), calc((100vw - 82rem) / 2 + clamp(1.25rem, 4vw, 3.25rem)));
  padding-right: 3.5rem;
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(3rem, 5vw, 4.5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.home-hero h1 {
  margin: 0; font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.1; font-weight: 400; max-width: 14ch;
}
.home-hero h1 span { color: #748060; }
.hero-rule { border: 0; border-top: 1.5px solid var(--line); margin: 1.5rem 0; width: 3rem; }
.home-hero p { max-width: 34rem; color: #49524a; font-size: 0.97rem; margin: 0; }
.hero-signals {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem;
  color: #566057; font-size: 0.82rem;
}
.hero-signals li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-signals i { color: #8a9679; font-size: 0.85rem; }

/* Image placeholders */
.image-placeholder {
  display: grid; place-items: center;
  background: linear-gradient(155deg, #dedad2 0%, #ccc9be 100%);
  border-left: 1px solid var(--line);
}
.image-placeholder span {
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem;
  color: #696d64; background: rgba(249,248,244,0.9);
  border: 1px solid #c3c4ba; padding: 0.45rem 0.75rem;
}
.image-placeholder--hero { min-height: 36rem; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; display: block; border-left: 1px solid var(--line); }

/* STRIPS — full-bleed sections, content in .container */
.home-strip { border-bottom: 1px solid var(--line); }
.home-strip--light { background: #f6f5f0; }
.home-strip--medium { background: #eeede7; }
.home-strip__inner { padding-block: 3.5rem; }

.strip-heading {
  margin: 0 0 2.5rem; font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem); color: var(--text); text-align: center;
}

.icon-grid { display: grid; }
.icon-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.5rem; }
.icon-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.icon-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.icon-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }

.icon-card {
  text-align: center;
  padding: 0 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-card__mark {
  width: 3.4rem; height: 3.4rem; margin: 0 auto 1.1rem;
  border-radius: 50%; display: grid; place-items: center;
  background: #e5e9df; color: #5a6e55; border: 1px solid #cdd1c7; font-size: 1.1rem;
}
.icon-card h3 { margin: 0; font-size: 0.88rem; font-weight: 700; }
.icon-card p { margin: 0.4rem auto 0; font-size: 0.82rem; color: #585f58; max-width: 13rem; }

.help-card {
  text-align: center;
  padding: 1.9rem 1.6rem;
  border-right: 1px solid var(--line);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}
.help-card:last-child { border-right: 0; }
.help-card > i,
.help-card > svg {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #6c7d60;
  color: #f4f6f2;
  border: 1px solid #5a6c4f;
  padding: 0.7rem;
}
.help-card > svg {
  justify-self: center;
  align-self: center;
}
.help-card h3 {
  margin: 0.2rem 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-card p { margin: 0.5rem auto 0; font-size: 0.88rem; color: #576058; max-width: 18rem; }
/* HOW WE WORK */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.process-card {
  background: #fbfaf6;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(2.8rem, auto) 1fr;
  align-content: start;
}
.process-card__step {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: #677466;
  font-weight: 700;
}
.process-card h3 {
  margin: 0;
  line-height: 1.25;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}
.process-card p {
  margin: 0.35rem 0 0;
  align-self: start;
  color: #556057;
  font-size: 0.9rem;
  max-width: 42ch;
}

/* FOUNDER */
.home-founder {
  display: grid; grid-template-columns: 0.8fr 1.25fr 0.85fr;
  border-bottom: 1px solid var(--line); background: #faf9f5;
}
.image-placeholder--portrait {
  min-height: 22rem; border-left: 0; border-right: 1px solid var(--line);
}
.founder-copy { padding: 2.75rem 2.25rem; }
.founder-copy .eyebrow { margin-bottom: 0.3rem; }
.founder-copy h2 {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 400; color: var(--text); margin: 0 0 0.85rem; line-height: 1.1;
}
.founder-copy p { margin: 0 0 0.75rem; color: #49524b; font-size: 0.93rem; max-width: 32rem; }
.founder-copy p:last-of-type { margin-bottom: 0; }
.founder-note {
  border-left: 1px solid var(--line); background: #efeee8;
  padding: 2.75rem 2rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.founder-note h3 {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--text); margin: 0; line-height: 1.2;
}
.founder-note p { font-size: 0.88rem; color: #536056; margin: 0; }
.founder-note > i { font-size: 1.5rem; color: #8b9878; margin-top: auto; }

/* CTA */
.home-cta { background: #f6f5f0; }
.home-cta__inner { padding-block: 3.75rem; text-align: center; }
.home-cta__inner > h2 {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 400; color: var(--text); margin: 0 0 0.5rem;
}
.home-cta__inner > p { color: #525b53; font-size: 0.93rem; margin: 0 0 2.5rem; }
.cta-grid { text-align: left; }
.cta-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  border-top: 1px solid var(--line);
  padding: 1.75rem 1.5rem 1.75rem 0;
  height: 100%;
}
.cta-card + .cta-card {
  border-left: 1px solid var(--line); padding-left: 1.5rem;
}
.cta-card__icon {
  flex-shrink: 0; width: 3rem; height: 3rem;
  border-radius: 50%; display: grid; place-items: center;
  background: #6c7d60; color: #fff; font-size: 1rem;
}
.cta-card__body { display: flex; flex-direction: column; gap: 0.3rem; }
.cta-card h3 { margin: 0; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; }
.cta-card p { margin: 0; color: #576059; font-size: 0.86rem; max-width: 24rem; }
.cta-card .text-link { margin-top: auto; padding-top: 0.6rem; }

/* INNER PAGES */
.section { padding-block: 2rem; }
.section--tight { padding-top: 1.25rem; }
.section-heading { display: grid; gap: 0.6rem; margin-bottom: 1.5rem; }
.section-heading h2, .panel-title, .card h3, .page-panel h2, .form-card h2 {
  margin: 0; font-family: var(--font-serif); font-weight: 400; color: var(--text); line-height: 1;
}
.section-heading h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.section-heading__lede, .page-lede { color: var(--muted); font-size: 1.02rem; margin: 0; }
.resources-intro { max-width: 46rem; }

.card-grid, .problem-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 1fr; align-items: start; }
.card-grid, .problem-grid, .resource-grid, .contact-grid { display: grid; gap: 1.2rem; }

.card, .problem-card, .form-card, .page-panel, .callout, .resource-card {
  background: var(--bg-white); border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 1.75rem;
}
.principles-grid { align-items: stretch; }
.principle-card {
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
}
.principle-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5e9df;
  color: #5a6e55;
  border: 1px solid #cdd1c7;
}
.principle-card h3 { margin: 0; }
.principle-card p {
  margin: 0;
  max-width: 24ch;
  color: #566057;
  font-size: 0.88rem;
}
.service-card { display: grid; gap: 1rem; }
.service-card__label, .resource-card__tag {
  margin: 0; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.64rem; color: #677360; font-weight: 700;
}
.service-card h3, .problem-card h3, .resource-card h3 {
  margin: 0; font-size: 1.35rem; font-family: var(--font-serif); font-weight: 400;
}
.service-card__group { border-top: 1px solid var(--line); padding-top: 0.85rem; }
.service-card__kicker {
  margin: 0 0 0.25rem; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.09em; font-weight: 700; color: #4a5649;
}
.service-card__text, .service-card__summary { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card p, .problem-card p, .resource-card p, .page-panel p, .form-card p { color: var(--muted); margin: 0.5rem 0 0; }
.legal-panel h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}
.legal-panel a {
  color: #2f564f;
  text-underline-offset: 0.12em;
}
.legal-panel a:hover { color: #1e3f39; }

.value-list, .feature-list, .problem-list, .resource-list { list-style: none; margin: 0; padding: 0; }
.value-list li, .feature-list li, .problem-list li, .resource-list li { position: relative; padding-left: 1rem; }
.value-list li + li, .feature-list li + li, .problem-list li + li, .resource-list li + li { margin-top: 0.55rem; }
.value-list li::before, .feature-list li::before, .problem-list li::before, .resource-list li::before {
  content: ""; width: 0.32rem; height: 0.32rem; border-radius: 50%;
  background: #748060; position: absolute; top: 0.58em; left: 0;
}

.form { display: grid; gap: 1.15rem; margin-top: 1rem; }
.field-group { display: grid; gap: 0.45rem; }
.field-group label, .field-label { font-size: 0.9rem; font-weight: 700; color: #38443a; margin: 0; }
.field-group input, .field-group textarea {
  width: 100%; border: 1px solid #c3c5bc;
  border-radius: 0.6rem;
  padding: 0.85rem 0.95rem; background: #fefefb;
  font: inherit; font-size: 0.95rem; color: var(--text);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field-group input:hover, .field-group textarea:hover { border-color: #adb4a7; }
.field-group input:focus, .field-group textarea:focus {
  border-color: #6a7a61;
  box-shadow: 0 0 0 3px rgba(106, 122, 97, 0.16);
  outline: none;
}
.field-group textarea { min-height: 9.5rem; resize: vertical; }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c5cabc;
  border-radius: 999px;
  background: #f5f7f2;
  color: #3c463e;
  font-size: 0.84rem;
  line-height: 1.25;
  padding: 0.5rem 0.78rem;
  cursor: pointer;
  transition: all 0.16s ease;
}
.chip:hover {
  background: #edf1e9;
  border-color: #aeb7a5;
}
.chip-input:focus-visible + .chip {
  outline: 2px solid #6a7a61;
  outline-offset: 2px;
}
.chip-input:checked + .chip {
  background: #5f7054;
  border-color: #5f7054;
  color: #fff;
}

.stack { display: grid; gap: 0.75rem; }
.muted { color: var(--muted); }

/* FOOTER */
.site-footer {
  border-top: 1px solid #38503a;
  background: linear-gradient(100deg, #1d2d1f 0%, #2c4230 52%, #192819 100%);
}
.site-footer__inner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 0;
}
.site-footer__inner > div { display: flex; align-items: center; justify-content: center; overflow: visible; }
.footer__logo {
  height: clamp(4.6rem, 7.8vw, 5.8rem);
  width: auto;
  max-width: none;
  display: block;
  margin-bottom: 0;
  object-fit: contain;
}

.sub-footer {
  border-top: 1px solid rgba(191, 202, 187, 0.22);
  padding: 0.52rem clamp(1rem, 3.2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sub-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sub-footer__links a {
  color: #bfcabb;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sub-footer__links a:hover {
  color: #fff;
}
.sub-footer__copyright {
  color: #bfcabb;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sub-footer__copyright:hover { color: #fff; }

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent__inner {
  width: 100%;
  border: 1px solid #d0d5ca;
  border-left: 0;
  border-right: 0;
  background: linear-gradient(120deg, #f6f5f0 0%, #eeefe8 100%);
  box-shadow: 0 16px 34px rgba(18, 24, 18, 0.14);
  padding: 0.72rem 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: nowrap;
}
.cookie-consent__text {
  margin: 0;
  color: #435046;
  font-size: 0.84rem;
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  margin-left: auto;
}
.cookie-consent__button {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 2.35rem;
  padding: 0.52rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  cursor: pointer;
}
.cookie-consent__button--accept {
  background: #3f543a;
  color: #fff;
}
.cookie-consent__button--accept:hover {
  background: #2f422b;
}
.cookie-consent__button--decline {
  background: #f9faf6;
  color: #3d483f;
  border-color: #b8beb0;
}
.cookie-consent__button--decline:hover {
  background: #ecefe7;
}

body.has-cookie-consent {
  padding-bottom: 4rem;
}

/* RESPONSIVE */
@media (max-width: 1060px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero__content { padding: 2.75rem clamp(1.25rem, 4vw, 3.25rem); }
  .image-placeholder--hero { border-left: 0; border-top: 1px solid var(--line); min-height: 22rem; }
  .hero-image { border-left: 0; border-top: 1px solid var(--line); max-height: 28rem; }
  .home-founder { grid-template-columns: 1fr; }
  .image-placeholder--portrait { border-right: 0; border-bottom: 1px solid var(--line); min-height: 20rem; }
  .founder-note { border-left: 0; border-top: 1px solid var(--line); }
  .help-card { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .help-card:last-child { border-bottom: 0; }
  .icon-grid--3, .icon-grid--4 { grid-template-columns: 1fr; }
  .icon-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__inner { height: auto; min-height: 120px; flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 820px) {
  .site-header { height: 120px; padding: 0; }
  .site-header__inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-block: 0;
  }
  .brand { margin-inline: auto; }
  .brand__logo { height: clamp(3.4rem, 10vw, 4.2rem); }
  .site-nav { display: none; }
  .mobile-nav__toggle {
    display: inline-flex;
    position: absolute;
    right: clamp(1rem, 4vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 55;
  }
  .mobile-nav__panel { display: flex; }
  .icon-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-grid--4 { grid-template-columns: 1fr; }
  .icon-grid--2, .contact-grid, .card-grid, .problem-grid, .resource-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-signals { display: none; }
  .home-cta .cta-grid { text-align: center; }
  .home-cta .cta-card {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }
  .home-cta .cta-card__body { align-items: center; }
  .home-cta .cta-card p { margin-inline: auto; }
  .chip-group { justify-content: center; }
  .cta-card + .cta-card { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.75rem; }
  .chip-group { justify-content: center; }
  .chip {
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 24rem;
  }
  .sub-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .sub-footer__links {
    flex-direction: column;
    gap: 0.45rem;
  }
  .cookie-consent {
    left: 0;
    right: 0;
    bottom: 0;
  }
  .cookie-consent__inner {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.9rem;
  }
  .cookie-consent__text {
    width: 100%;
    text-align: center;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
  .cookie-consent__button {
    flex: 0 0 auto;
  }
  body.has-cookie-consent {
    padding-bottom: 7rem;
  }
}

@media (max-width: 500px) {
  .icon-grid--5, .icon-grid--3 { grid-template-columns: 1fr; }
  .button-row { flex-direction: column; }
  .button { width: 100%; justify-content: center; }
  .cta-card { flex-direction: column; gap: 1rem; }
}
