/* ==========================================================================
   ASRA Staffing Solutions Inc.
   Brand palette taken from the logo: bark brown wordmark, forest green subtext.
   ========================================================================== */

:root {
  /* Brand */
  --bark:        #6B3E1C;   /* logo wordmark brown */
  --bark-deep:   #4E2C13;
  --bark-tint:   #EFE3D6;
  --forest:      #2B4023;   /* logo subtext green */
  --forest-deep: #1D2C17;
  --sage:        #7D9269;
  --sage-light:  #B9C9A6;
  --sage-tint:   #E4EADC;

  /* Surfaces */
  --paper:       #FAF6F0;   /* warm off-white page background */
  --paper-warm:  #F2EADF;   /* recessed panels */
  --ink:         #241A12;
  --ink-soft:    #5A4B3E;
  --rule:        #DCD0C0;
  --rule-strong: #C3B29C;

  /* Type */
  --display: "Archivo", "Arial Narrow", Helvetica, Arial, sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --gutter: 1.5rem;
  --max: 74rem;
}

@media (min-width: 48em) { :root { --gutter: 2.5rem; } }
@media (min-width: 75em) { :root { --gutter: 3rem; } }

/* --------------------------------------------------------------- Reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1rem; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--bark); text-underline-offset: 0.18em; }
a:hover { color: var(--bark-deep); }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--bark);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible,
.band-forest :focus-visible,
.band-bark :focus-visible { outline-color: var(--sage-light); }

.skip-link {
  position: absolute; left: 0.5rem; top: -4rem; z-index: 200;
  background: var(--bark); color: #fff; padding: 0.75rem 1.25rem;
  font-weight: 700; text-decoration: none; border-radius: 0 0 4px 4px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* -------------------------------------------------------------- Layout -- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

/* Section heading: a rule, a number, a title. No all-caps eyebrows. */
.sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head__rule {
  display: block; width: 100%; height: 3px;
  background: var(--bark); margin-bottom: 1.25rem;
}
.sec-head h2 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  color: var(--forest);
  max-width: 20ch;
}
.sec-head p {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.sec-head--split { display: grid; gap: 1.25rem; }
@media (min-width: 60em) {
  .sec-head--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: end; }
  .sec-head--split .sec-head__rule { grid-column: 1 / -1; }
  .sec-head--split p { margin-top: 0; padding-bottom: 0.4rem; }
}

/* Dark bands */
.band-forest { background: var(--forest); color: var(--paper); }
.band-forest h2, .band-forest h3 { color: #fff; }
.band-forest a { color: var(--sage-light); }
.band-bark { background: var(--bark); color: #fff; }
.band-bark h2, .band-bark h3 { color: #fff; }
.band-warm { background: var(--paper-warm); }

.band-forest .sec-head__rule { background: var(--sage); }
.band-bark .sec-head__rule { background: rgba(255,255,255,0.55); }
.band-forest .sec-head p { color: var(--sage-light); }
.band-bark .sec-head p { color: rgba(255,255,255,0.85); }

/* -------------------------------------------------------------- Buttons -- */

.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.01em; line-height: 1;
  padding: 0.95rem 1.5rem;
  border: 2px solid var(--bark);
  background: var(--bark); color: #fff;
  text-decoration: none; border-radius: 2px; cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.btn:hover { background: var(--bark-deep); border-color: var(--bark-deep); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--bark); }
.btn--ghost:hover { background: var(--bark); color: #fff; }

.btn--green { background: var(--forest); border-color: var(--forest); }
.btn--green:hover { background: var(--forest-deep); border-color: var(--forest-deep); }

.btn--on-dark { background: var(--paper); border-color: var(--paper); color: var(--forest); }
.btn--on-dark:hover { background: #fff; border-color: #fff; color: var(--forest-deep); }

.btn--on-dark-ghost { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--on-dark-ghost:hover { background: #fff; border-color: #fff; color: var(--forest); }

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

/* -------------------------------------------------------------- Header -- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.5rem;
}
.brand { display: block; flex-shrink: 0; line-height: 0; }
.brand img { width: clamp(9rem, 24vw, 11.5rem); }

.nav { display: none; }
@media (min-width: 62em) {
  .nav { display: flex; align-items: center; gap: 1.75rem; }
  .nav a {
    font-family: var(--display); font-weight: 600; font-size: 0.9375rem;
    color: var(--forest); text-decoration: none; padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav a:hover { color: var(--bark); border-bottom-color: var(--bark); }
  .nav a[aria-current="page"] { color: var(--bark); border-bottom-color: var(--bark); }
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-actions .btn { padding: 0.7rem 1.1rem; font-size: 0.9375rem; }

/* The full number does not fit beside the logo and menu button on a phone.
   Show "Call" there and keep the number available to screen readers. */
.btn--call .is-short { display: none; }
@media (max-width: 61.99em) {
  .btn--call .is-short { display: inline; }
  .btn--call .is-num {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
  }
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 700; font-size: 0.9375rem;
  background: transparent; border: 2px solid var(--forest); color: var(--forest);
  padding: 0.62rem 0.9rem; border-radius: 2px; cursor: pointer;
}
@media (min-width: 62em) { .nav-toggle { display: none; } }
.nav-toggle__bars { display: block; width: 1.05rem; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after { top: 5px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding-block: 0.75rem 1.5rem;
}
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 62em) { .mobile-nav { display: none !important; } }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block; padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display); font-weight: 600; font-size: 1.125rem;
  color: var(--forest); text-decoration: none;
}
.mobile-nav a:hover { color: var(--bark); }
.mobile-nav .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- Hero -- */

.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 5.5rem) 0; }

/* Angular green motif echoing the brochure's triangle graphics. Decorative. */
.hero::after {
  content: "";
  position: absolute; right: -12%; bottom: -8%;
  width: 46rem; height: 30rem;
  background: linear-gradient(135deg, var(--sage-tint) 0%, rgba(228,234,220,0) 72%);
  clip-path: polygon(28% 0, 100% 46%, 62% 100%, 0 62%);
  z-index: 0; pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); }
@media (min-width: 64em) {
  .hero__inner { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: start; }
}

.hero h1 {
  font-size: clamp(2.5rem, 7.2vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  color: var(--forest);
}
.hero h1 em { font-style: normal; color: var(--bark); }

.hero__lead {
  margin-top: 1.5rem;
  font-size: clamp(1.0625rem, 1.9vw, 1.1875rem);
  color: var(--ink-soft);
  max-width: 54ch;
}
.hero .btn-row { margin-top: 2rem; }

.hero__note {
  margin-top: 1.5rem; font-size: 0.9375rem; color: var(--ink-soft);
}
.hero__note a { font-weight: 600; }

/* Green panel: quick facts */
.hero-panel {
  background: var(--forest); color: var(--paper);
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
  border-radius: 3px;
}
.hero-panel h2 {
  font-size: 1.0625rem; letter-spacing: 0.02em; color: #fff;
  padding-bottom: 0.9rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(185, 201, 166, 0.4);
}
.hero-panel dl { margin: 0; display: grid; gap: 1.15rem; }
.hero-panel dt {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  color: var(--sage-light); line-height: 1.1;
}
.hero-panel dd { margin: 0.2rem 0 0; font-size: 0.9375rem; color: rgba(250,246,240,0.88); }
.hero-panel__cta {
  margin-top: 1.6rem; padding-top: 1.35rem;
  border-top: 1px solid rgba(185, 201, 166, 0.4);
}
.hero-panel__phone {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3.6vw, 1.875rem);
  color: #fff; text-decoration: none; display: inline-block; line-height: 1.15;
}
.hero-panel__phone:hover { color: var(--sage-light); text-decoration: underline; }
.hero-panel__cta span { display: block; font-size: 0.875rem; color: var(--sage-light); margin-top: 0.3rem; }

/* Industry ticker strip under the hero */
.strip {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: 1.1rem;
  position: relative; z-index: 1;
}
.strip ul {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 0.6rem 1.75rem; align-items: baseline;
}
.strip li {
  font-family: var(--display); font-weight: 600; font-size: 0.9375rem;
  color: var(--forest); letter-spacing: 0.01em;
}
.strip li::before { content: "\25B8"; color: var(--sage); margin-right: 0.5rem; }

/* ---------------------------------------------------------- Industries -- */

/* Lattice grid: shared hairlines, no drop shadows. */
.lattice {
  display: grid; gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 34em) { .lattice { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60em) { .lattice { grid-template-columns: repeat(4, 1fr); } }

.cell {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.55rem;
  transition: background-color 0.18s ease, color 0.18s ease;
  min-height: 11rem;
}
.band-warm .cell { background: var(--paper-warm); }
.cell__num {
  font-family: var(--display); font-weight: 700; font-size: 0.8125rem;
  color: var(--sage); letter-spacing: 0.08em;
}
.cell h3 { font-size: 1.375rem; color: var(--forest); }
.cell p { font-size: 0.9375rem; color: var(--ink-soft); margin: 0; }
.cell:hover { background: var(--forest); }
.cell:hover h3 { color: #fff; }
.cell:hover p { color: rgba(250,246,240,0.85); }
.cell:hover .cell__num { color: var(--sage-light); }

/* ------------------------------------------------------------ Services -- */

.services { display: grid; gap: 0; }
@media (min-width: 56em) { .services { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 5vw, 4rem); } }

.service {
  display: grid; grid-template-columns: auto 1fr; gap: 0 1.25rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.service__mark {
  width: 0.75rem; height: 0.75rem; background: var(--sage);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(0.15rem);
}
.service h3 { font-size: 1.3125rem; color: var(--bark); }
.service p { grid-column: 2; margin: 0.4rem 0 0; font-size: 0.9375rem; color: var(--ink-soft); }

/* -------------------------------------------------------- 7-step process -- */

.steps { border-top: 2px solid var(--forest); }

.step {
  display: grid; gap: 0.5rem 1.5rem;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: auto 1fr;
}
@media (min-width: 56em) {
  .step { grid-template-columns: 6rem minmax(0, 22ch) minmax(0, 1fr); align-items: start; gap: 0 clamp(1.5rem, 4vw, 3rem); }
}

.step__num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  line-height: 0.85; color: var(--sage);
  letter-spacing: -0.04em;
  grid-row: span 2;
}
@media (min-width: 56em) { .step__num { grid-row: auto; text-align: right; } }
.step:nth-child(even) .step__num { color: var(--bark); }

.step h3 {
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  color: var(--forest);
  align-self: center;
}
.step p {
  grid-column: 2 / -1; margin: 0.5rem 0 0;
  color: var(--ink-soft); font-size: 1rem;
}
@media (min-width: 56em) {
  .step p { grid-column: 3; margin-top: 0; padding-top: 0.2rem; }
  .step h3 { align-self: start; }
}

/* ------------------------------------------------------- Differentiators -- */

.diffs { display: grid; gap: 1px; background: rgba(185, 201, 166, 0.28); }
@media (min-width: 44em) { .diffs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72em) { .diffs { grid-template-columns: repeat(4, 1fr); } }

.diff { background: var(--forest); padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem); }
.diff__num {
  font-family: var(--display); font-weight: 800; font-size: 2.25rem;
  color: var(--sage); line-height: 1; display: block; margin-bottom: 0.85rem;
}
.diff h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.diff p { font-size: 0.9375rem; color: rgba(250,246,240,0.85); margin: 0; }

/* ---------------------------------------------------------- Healthcare -- */

.spotlight { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 62em) { .spotlight { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }

.spotlight h2 { font-size: clamp(2rem, 5vw, 3rem); }
.spotlight__lead { margin-top: 1.1rem; color: rgba(255,255,255,0.88); font-size: 1.0625rem; }
.spotlight .btn-row { margin-top: 1.9rem; }

.role-list { list-style: none; display: grid; gap: 1px; background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.22); }
.role-list li {
  background: var(--bark); padding: 1rem 1.25rem;
  font-family: var(--display); font-weight: 600; font-size: 1.0625rem; color: #fff;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.role-list li span { font-family: var(--body); font-weight: 400; font-size: 0.8125rem; color: rgba(255,255,255,0.75); text-align: right; }

/* -------------------------------------------------------------- Safety -- */

.pillars { display: grid; gap: clamp(1.5rem, 3vw, 2rem); }
@media (min-width: 52em) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar { border-top: 3px solid var(--bark); padding-top: 1.35rem; }
.pillar:nth-child(2) { border-top-color: var(--sage); }
.pillar:nth-child(3) { border-top-color: var(--forest); }
.pillar h3 { font-size: 1.375rem; color: var(--forest); margin-bottom: 0.7rem; }
.pillar p { font-size: 0.9375rem; color: var(--ink-soft); margin: 0; }

/* Compliance marks. TEXT PLACEHOLDERS - swap for official logo files. */
.marks {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem; border-top: 1px solid var(--rule);
}
.marks > p {
  font-size: 0.8125rem; color: var(--ink-soft);
  letter-spacing: 0.04em; margin-bottom: 1rem; text-transform: uppercase;
  font-family: var(--display); font-weight: 600;
}
.marks ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.marks li {
  border: 1px solid var(--rule-strong); border-radius: 2px;
  padding: 0.5rem 0.85rem; font-size: 0.875rem; font-weight: 600; color: var(--forest);
  background: var(--paper);
}

/* ------------------------------------------------------------- Purpose -- */

.purpose { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 56em) { .purpose { grid-template-columns: repeat(2, 1fr); } }

.purpose__block h3 {
  font-size: 1.625rem; color: var(--bark); margin-bottom: 0.85rem;
  padding-bottom: 0.65rem; border-bottom: 2px solid var(--bark-tint);
}
.purpose__block p { color: var(--ink-soft); }

/* Values chevrons - a callback to the brochure's arrow band. */
.values { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.values h3 { font-size: 1.625rem; color: var(--forest); margin-bottom: 1.15rem; }
.values ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.values li {
  background: var(--forest); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
  letter-spacing: 0.01em;
  padding: 0.7rem 1.5rem 0.7rem 1.15rem;
  clip-path: polygon(0 0, calc(100% - 0.85rem) 0, 100% 50%, calc(100% - 0.85rem) 100%, 0 100%);
}
.values li:nth-child(even) { background: var(--bark); }

/* ------------------------------------------------------------- Contact -- */

.contact { display: grid; gap: clamp(2.25rem, 5vw, 4rem); }
@media (min-width: 60em) { .contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); } }

.contact__direct dl { margin: 0 0 2rem; }
.contact__direct dt {
  font-family: var(--display); font-weight: 600; font-size: 0.875rem;
  color: var(--sage-light); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.contact__direct dd { margin: 0 0 1.6rem; }
.contact__direct dd a {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.375rem, 3.4vw, 1.875rem);
  color: #fff; text-decoration: none; line-height: 1.15;
  overflow-wrap: break-word;
}
.contact__direct dd a:hover { color: var(--sage-light); text-decoration: underline; }
.contact__direct > p { color: rgba(250,246,240,0.85); font-size: 0.9375rem; }

.form-card {
  background: var(--paper); color: var(--ink);
  padding: clamp(1.5rem, 3.5vw, 2.25rem); border-radius: 3px;
}
.form-card h3 { font-size: 1.5rem; color: var(--forest); margin-bottom: 0.5rem; }
.form-card > p { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 1.5rem; }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 0.875rem; color: var(--forest); margin-bottom: 0.35rem;
}
.field .req { color: var(--bark); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--rule-strong); border-radius: 2px;
  padding: 0.7rem 0.85rem;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--bark); outline: 2px solid var(--bark); outline-offset: 0;
}
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 36em) { .field-row { grid-template-columns: repeat(2, 1fr); } }

.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.8125rem; color: var(--ink-soft); margin-top: 1rem; }

/* -------------------------------------------------------------- Footer -- */

.site-footer { background: var(--forest-deep); color: rgba(250,246,240,0.8); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: var(--sage-light); }

.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 52em) { .footer-grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 3rem; } }

.footer-brand img {
  width: 11rem; margin-bottom: 1.25rem;
  /* Logo is dark on transparent; lighten it for the dark footer. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p { font-size: 0.9375rem; max-width: 34ch; }

.footer-col h2 {
  font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.9375rem; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(185, 201, 166, 0.22);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(250,246,240,0.6);
}
.footer-bottom p { margin: 0; max-width: none; }

/* Association credibility line */
.assoc {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem; padding: 0.9rem 1.1rem;
  border: 1px solid rgba(185, 201, 166, 0.3); border-radius: 2px;
}
.assoc__label {
  font-family: var(--display); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--sage-light);
}
.assoc__body { font-size: 0.875rem; color: rgba(250,246,240,0.85); max-width: 40ch; margin: 0; }

/* ------------------------------------------------- Healthcare page bits -- */

.hero--care { background: var(--forest); color: var(--paper); padding-block: clamp(3.25rem, 7vw, 5.5rem); }
.hero--care::after {
  background: linear-gradient(135deg, rgba(125,146,105,0.4) 0%, rgba(125,146,105,0) 70%);
}
.hero--care h1 { color: #fff; }
.hero--care h1 em { color: var(--sage-light); }
.hero--care .hero__lead { color: rgba(250,246,240,0.88); }
.hero--care .hero-panel { background: rgba(0,0,0,0.22); border: 1px solid rgba(185,201,166,0.35); }

.breadcrumb { font-size: 0.875rem; margin-bottom: 1.5rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--sage); }
.hero--care .breadcrumb a { color: var(--sage-light); }
.hero--care .breadcrumb li[aria-current] { color: rgba(250,246,240,0.7); }

.care-pillars { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 52em) { .care-pillars { grid-template-columns: repeat(3, 1fr); } }
.care-pillar { background: var(--paper); padding: clamp(1.75rem, 3.5vw, 2.5rem); }
.care-pillar h3 { font-size: 1.5rem; color: var(--bark); margin-bottom: 0.75rem; }
.care-pillar p { font-size: 0.9375rem; color: var(--ink-soft); margin: 0; }

.roles { display: grid; gap: 1px; background: var(--rule-strong); border: 1px solid var(--rule-strong); }
@media (min-width: 46em) { .roles { grid-template-columns: repeat(2, 1fr); } }
.role { background: var(--paper-warm); padding: clamp(1.5rem, 3vw, 2rem); }
.role h3 { font-size: 1.3125rem; color: var(--forest); margin-bottom: 0.5rem; }
.role p { font-size: 0.9375rem; color: var(--ink-soft); margin: 0; }
.role__abbr { font-family: var(--display); font-size: 0.8125rem; color: var(--bark); font-weight: 700; letter-spacing: 0.06em; display: block; margin-bottom: 0.35rem; }

.settings-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.settings-list li {
  border: 1px solid rgba(255,255,255,0.35); border-radius: 2px;
  padding: 0.5rem 0.9rem; font-size: 0.9375rem; color: #fff;
}

.split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 60em) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.checklist { list-style: none; display: grid; gap: 0.9rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; font-size: 1rem; }
.checklist li::before {
  content: ""; width: 0.7rem; height: 0.7rem; margin-top: 0.5rem;
  background: var(--sage); clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.band-forest .checklist li { color: rgba(250,246,240,0.9); }

/* ------------------------------------------------------------ Utilities -- */

.lede { font-size: clamp(1.125rem, 2.4vw, 1.3125rem); line-height: 1.5; color: var(--ink-soft); max-width: 50ch; }
.band-forest .lede, .band-bark .lede { color: rgba(255,255,255,0.88); }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }

/* Placeholder image frames. Replace the SVG with a real photograph. */
.photo-slot {
  position: relative; background: var(--paper-warm);
  border: 1px dashed var(--rule-strong); border-radius: 3px; overflow: hidden;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }

@media print {
  .site-header, .mobile-nav, .nav-toggle, .form-card { display: none; }
  body { background: #fff; }
}
