@font-face {
  font-family: "Lora";
  src: url("/senior-care-platform/assets/Lora-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  color-scheme: light;
  --ink: #2a2421;
  --muted: #5f5753;
  --soft: #8a7d76;
  --cream: #fbf6ef;
  --warm: #f4f1ee;
  --paper: #fffdf8;
  --linen: #e9ded2;
  --linen-2: #d8c9c2;
  --dark: #0d131b;
  --dark-2: #15110f;
  --clay: #b56534;
  --clay-bright: #e66a3a;
  --clay-dark: #8f4728;
  --sage: #78866d;
  --blue: #6e8494;
  --line: #d8c9c2;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.07);
  --shadow-deep: 0 28px 90px rgba(16, 24, 32, 0.14);
  --heading: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--warm);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 17ch;
  font-size: 4.2rem;
  line-height: 1.05;
}

h2 {
  max-width: 22ch;
  font-size: 2.55rem;
  line-height: 1.12;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.16;
}

p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.wrap,
.hero-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(216, 201, 194, 0.82);
  background: rgba(244, 241, 238, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
  min-width: 0;
  color: rgba(42, 36, 33, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--clay-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0.68);
  transition: 160ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-cta,
.button.primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 14px 30px rgba(181, 101, 52, 0.24);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(181, 101, 52, 0.34);
  background: rgba(255, 253, 248, 0.86);
  color: var(--clay-dark);
}

.button.secondary:hover {
  border-color: rgba(230, 106, 58, 0.72);
  background: #fff;
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

.hero {
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 24%, rgba(181, 101, 52, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf6ef 0%, #f4f1ee 100%);
}

.hero-dark {
  background:
    radial-gradient(circle at 82% 20%, rgba(230, 106, 58, 0.22), transparent 26%),
    linear-gradient(135deg, #15110f 0%, #0d131b 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
  min-height: clamp(520px, 64vh, 720px);
  padding-block: clamp(52px, 7vw, 92px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: none !important;
}

.title-mark {
  display: none !important;
}

.hero-copy > p:not(.eyebrow),
.section-heading > p {
  max-width: 620px;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  justify-self: end;
  width: min(100%, 760px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 201, 194, 0.82);
  border-radius: 8px;
  background: #e9ded2;
  box-shadow: var(--shadow-deep);
}

.hero-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

.hero-dark h1,
.hero-dark p,
.hero-dark .eyebrow {
  color: #fff;
}

.hero-dark .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.hero-dark .hero-media {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding-block: clamp(56px, 6.5vw, 88px);
  border-bottom: 0;
  background: var(--warm);
}

.section:nth-of-type(even) {
  background: var(--cream);
}

.section.compact-section {
  padding-block: clamp(36px, 4.5vw, 60px);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.section-heading .eyebrow,
.section-heading p {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 680px;
}

.card-grid,
.concern-grid,
.article-grid,
.feature-pair,
.session-grid,
.story-steps,
.category-row {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concern-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.info-card,
.image-card,
.article-card,
.guide-block,
.chapter-nav,
.form-card,
.faq-list details,
.story-steps article,
.category-row a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.info-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 176px;
  padding: 24px 18px;
  text-align: center;
}

.concern-grid .info-card {
  min-height: 190px;
}

.info-card strong,
.category-row strong {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.12;
}

.info-card span:last-child,
.category-row span {
  max-width: 230px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.concern-grid .info-card span:last-child:empty {
  display: none;
}

.concern-grid .info-card::after {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1;
  content: "\2192";
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e7eee8;
  color: var(--sage);
}

.icon-badge.clay {
  background: #f4e7e1;
  color: var(--clay);
}

.icon-badge.blue {
  background: #e6edf3;
  color: var(--blue);
}

.icon-badge svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-deep);
}

.split-story.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.split-story figure,
.image-card .image-frame,
.article-image,
.wide-feature {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--linen);
}

.split-story figure img,
.image-card img,
.article-image img,
.wide-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.split-story > div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: clamp(30px, 5vw, 64px);
}

.split-story h2 {
  max-width: 13ch;
}

.feature-pair,
.session-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
}

.image-card .image-frame {
  min-height: 260px;
}

.image-card > div {
  display: grid;
  align-content: center;
  padding: 28px;
}

.image-card h3,
.article-card h3 {
  margin-bottom: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 16px;
  color: var(--clay-dark);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
}

.dark-section {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 106, 58, 0.18), transparent 26%),
    linear-gradient(135deg, #15110f 0%, #0d131b 100%) !important;
}

.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section .eyebrow,
.dark-section .info-card strong,
.dark-section .info-card span {
  color: #fff;
}

.dark-section .section-heading p,
.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .info-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.dark-section .icon-badge {
  background: rgba(230, 106, 58, 0.14);
  color: #e66a3a;
}

.notice-section {
  background: #efe6dd !important;
}

.newsletter-section {
  padding-block: clamp(38px, 5vw, 68px);
  background: var(--warm);
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.newsletter-band h2 {
  max-width: none;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.newsletter-band label span,
.resource-toolbar label span,
.search-row label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--linen-2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  outline: none;
}

textarea {
  min-height: 140px;
  padding-block: 14px;
  resize: vertical;
}

.newsletter-band form,
.search-row,
.resource-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.resource-toolbar {
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  margin: -36px 0 26px;
  padding: 0;
}

.resource-toolbar input,
.resource-toolbar select {
  min-height: 58px;
  box-shadow: var(--shadow);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto) minmax(170px, auto);
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
}

.directory-toolbar label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.directory-toolbar input,
.directory-toolbar select {
  min-height: 58px;
  box-shadow: var(--shadow);
}

.directory-grid,
.insight-grid,
.question-grid,
.directory-status-grid,
.checklist-layout,
.story-feature {
  display: grid;
  gap: 18px;
}

.directory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.directory-card,
.insight-card,
.question-card,
.directory-status-grid article,
.checklist-panel,
.prompt-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.directory-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 258px;
  padding: 24px;
}

.directory-count,
.checked-date,
.provider-organization {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.directory-count {
  margin-top: auto;
}

.directory-summary,
.provider-source-top,
.provider-facts,
.editorial-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.directory-summary {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.directory-summary strong {
  color: var(--ink);
}

.directory-results-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 58px 0 22px;
}

.directory-results-heading h2 {
  margin: 0 0 8px;
}

.directory-results-heading p {
  max-width: 720px;
  color: var(--muted);
}

.provider-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.provider-source-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.provider-source-top {
  justify-content: space-between;
  gap: 8px;
}

.provider-source-card h3 {
  margin: 4px 0 9px;
  font-size: 1.32rem;
}

.provider-organization {
  margin: 0;
  color: var(--clay-dark);
}

.provider-source-card > div > p:last-child,
.provider-use-case p {
  margin: 0;
  font-size: 0.94rem;
}

.provider-use-case {
  padding: 14px 0 0;
  border-top: 1px solid rgba(42, 36, 33, 0.1);
}

.provider-use-case strong,
.provider-facts dt {
  display: block;
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 850;
}

.provider-facts {
  align-items: start;
  gap: 14px 18px;
}

.provider-facts div {
  min-width: 100px;
}

.provider-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.4;
}

.provider-facts a {
  color: var(--clay-dark);
}

.provider-link {
  width: fit-content;
  margin-top: auto;
}

.directory-card h3,
.insight-card h3,
.question-card h3 {
  margin-top: 4px;
}

.directory-card p,
.insight-card p,
.question-card p,
.directory-status-grid p {
  font-size: 0.94rem;
}

.source-badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(120, 134, 109, 0.28);
  border-radius: 999px;
  background: rgba(231, 238, 232, 0.7);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
}

.empty-state {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}

.insight-grid,
.question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card,
.question-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
}

.checklist-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.checklist-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(42, 36, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.directory-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.directory-status-grid article {
  padding: 22px;
}

.directory-status-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.22rem;
  font-weight: 500;
}

.compact-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  max-width: none;
  align-items: end;
}

.compact-form .form-note {
  grid-column: 1 / -1;
}

.checklist-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: start;
}

.checklist-panel,
.prompt-panel {
  padding: clamp(24px, 4vw, 38px);
}

.checklist-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.check-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 201, 194, 0.72);
  border-radius: 8px;
  background: rgba(244, 241, 238, 0.62);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
}

.check-item input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--clay);
}

.checklist-actions {
  margin-top: 0;
}

.prompt-panel {
  display: grid;
  gap: 16px;
}

.prompt-panel textarea {
  min-height: 112px;
}

.story-feature {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-deep);
}

.story-feature figure {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 380px;
  margin: 0;
  background: var(--linen);
}

.story-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-feature > div {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 58px);
}

.form-note,
.disclaimer {
  color: var(--soft);
  font-size: 0.84rem;
}

.category-row {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 34px;
}

.category-row a {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 166px;
  padding: 20px 12px;
  text-align: center;
}

.category-row .icon-badge {
  width: 54px;
  height: 54px;
}

.category-row .icon-badge svg {
  width: 29px;
  height: 29px;
}

.category-row strong {
  font-size: 1rem;
}

.filter-pills,
.meta-row,
.mini-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resources-title-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 20px;
}

.resources-title-row h2 {
  max-width: none;
  margin: 0;
  font-size: 2.05rem;
}

.filter-pills span,
.filter-pills button,
.filter-pills a,
.meta-row span,
.mini-social span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.filter-pills button {
  appearance: none;
  cursor: pointer;
}

.filter-pills button.is-active,
.filter-pills span:first-child {
  border-color: rgba(230, 106, 58, 0.52);
  color: var(--clay-dark);
}

.article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-evidence {
  padding: 28px 0 12px;
  background: var(--linen);
}

.editorial-note {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.editorial-note strong {
  color: var(--ink);
}

.article-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.article-summary-grid p {
  margin: 0;
  padding: 4px 22px 4px 0;
  color: var(--ink);
  font-weight: 700;
}

.article-summary-grid p + p {
  padding-left: 22px;
  border-left: 1px solid rgba(42, 36, 33, 0.14);
}

.article-card {
  display: grid;
  overflow: hidden;
}

.article-card-text {
  min-height: 260px;
}

.article-image {
  aspect-ratio: 16 / 10;
}

.article-card > div {
  display: grid;
  align-content: start;
  padding: 22px;
}

.article-card .eyebrow {
  margin-bottom: 10px;
  font-size: 0.68rem;
}

.article-card h3 {
  font-size: 1.22rem;
}

.article-card p {
  font-size: 0.92rem;
}

.meta-row {
  margin-top: 18px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.chapter-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.chapter-nav strong {
  padding: 6px 12px 10px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.1rem;
}

.chapter-nav a {
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.chapter-nav a:hover {
  background: var(--linen);
  color: var(--ink);
}

.guide-body {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.guide-block {
  padding: clamp(24px, 4vw, 42px);
}

.callout-panel,
.source-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
}

.callout-panel {
  background: #efe5dc;
  color: var(--ink);
}

.callout-panel ul {
  display: grid;
  gap: 11px;
  padding-left: 20px;
}

.source-panel {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.8);
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.source-list a {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 36, 33, 0.12);
  color: var(--ink);
}

.source-list a:hover strong {
  color: var(--clay-dark);
}

.source-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.number-list {
  display: grid;
  gap: 14px;
}

.number-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.number-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f4e7e1;
  color: var(--clay);
  font-weight: 900;
}

.wide-feature {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 0;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.wide-feature > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 30px;
}

.wide-feature img {
  width: 100%;
  height: 100%;
}

.wide-feature-text {
  grid-template-columns: 1fr;
}

.story-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-steps article {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin-top: 10px;
}

.form-card {
  display: grid;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(128px, 0.64fr)) minmax(190px, 0.78fr);
  gap: clamp(24px, 3.2vw, 48px);
  align-items: start;
  padding: 58px clamp(20px, 6vw, 88px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer .brand {
  margin-bottom: 18px;
}

.footer p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer nav,
.footer-connect {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.footer strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
}

.footer a:hover {
  color: #fff;
}

.footer .mini-social span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
}

a:focus-visible,
button:focus-visible,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(230, 106, 58, 0.24);
  outline-offset: 2px;
}

.toast-note {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(320px, calc(100vw - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(216, 201, 194, 0.8);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 850;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    width: min(82vw, 320px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-deep);
  }

  .mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-menu nav a:hover {
    background: var(--warm);
    color: var(--ink);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-media {
    justify-self: start;
  }

  .concern-grid,
  .category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid,
  .card-grid.four,
  .article-grid,
  .story-steps,
  .directory-grid,
  .provider-results-grid,
  .insight-grid,
  .question-grid,
  .directory-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .wrap,
  .hero-inner {
    width: calc(100% - 28px);
    max-width: 520px;
    min-width: 0;
  }

  .site-header {
    position: sticky;
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand-logo {
    height: 28px;
  }

  .hero-inner {
    gap: 26px;
    padding-block: 38px 46px;
  }

  .hero-copy,
  .hero-copy > p:not(.eyebrow),
  .directory-card,
  .directory-card p,
  .provider-source-card,
  .provider-source-card p,
  .provider-source-card h3,
  .article-card,
  .article-card p,
  .article-card h3 {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy > p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
  }

  .hero-media,
  .split-story,
  .image-card,
  .article-card,
  .newsletter-band {
    width: 100%;
  }

  .hero-media img {
    max-height: none;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.72rem;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  h2 {
    max-width: 13.5ch;
    margin-inline: auto;
    font-size: 2.02rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h3,
  p,
  a,
  button,
  input,
  select,
  textarea {
    max-width: 100%;
  }

  .hero-copy > p:not(.eyebrow),
  .section-heading > p {
    font-size: 1rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
  }

  .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 14px;
  }

  .section {
    padding-block: 44px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .concern-grid,
  .category-row,
  .card-grid,
  .card-grid.four,
  .article-grid,
  .feature-pair,
  .session-grid,
  .story-steps,
  .split-story,
  .split-story.reverse,
  .image-card,
  .newsletter-band,
  .newsletter-band form,
  .search-row,
  .resource-toolbar,
  .directory-toolbar,
  .provider-results-grid,
  .guide-layout,
  .wide-feature,
  .directory-grid,
  .insight-grid,
  .question-grid,
  .directory-status-grid,
  .article-summary-grid,
  .checklist-layout,
  .compact-form,
  .story-feature {
    grid-template-columns: 1fr;
  }

  .resource-toolbar {
    margin-top: 0;
  }

  .directory-card {
    min-height: 0;
    padding: 20px;
  }

  .provider-source-card {
    padding: 20px;
  }

  .provider-source-top,
  .directory-results-heading {
    align-items: flex-start;
  }

  .article-summary-grid p,
  .article-summary-grid p + p {
    padding: 13px 0;
    border: 0;
    border-top: 1px solid rgba(42, 36, 33, 0.14);
  }

  .article-summary-grid p:first-child {
    border-top: 0;
  }

  .resources-title-row {
    display: grid;
    gap: 12px;
    align-items: start;
  }

  .resources-title-row h2 {
    margin-inline: 0;
  }

  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .info-card,
  .category-row a {
    width: 100%;
    min-height: 148px;
  }

  .concern-grid .info-card {
    min-height: 158px;
  }

  .split-story > div,
  .image-card > div,
  .article-card > div,
  .wide-feature > div {
    padding: 22px 18px;
  }

  .split-story figure,
  .image-card .image-frame,
  .story-feature figure {
    min-height: 220px;
  }

  .article-image {
    min-height: 190px;
  }

  .chapter-nav {
    position: static;
  }

  .number-list div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .number-list span {
    width: 38px;
    height: 38px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 42px 22px 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 380px) {
  .wrap,
  .hero-inner {
    width: calc(100% - 22px);
    max-width: 344px;
  }

  .site-header {
    padding-inline: 11px;
  }

  h1 {
    font-size: 2.32rem;
  }
}

@media print {
  .site-header,
  .footer,
  .hero-media,
  .newsletter-section,
  .actions,
  .button,
  .chapter-nav {
    display: none !important;
  }

  body,
  .section,
  .hero {
    background: #fff !important;
    color: #111 !important;
  }

  .hero-inner,
  .wrap {
    width: 100%;
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding: 0 0 20px;
  }

  .section {
    padding-block: 18px;
  }

  .checklist-layout {
    grid-template-columns: 1fr;
  }

  .checklist-panel,
  .prompt-panel,
  .check-item {
    box-shadow: none;
    break-inside: avoid;
  }
}
