/* ============================================================
   West LA Neuropsychology, PC
   Design system: "refined heritage"
   ============================================================ */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-italic-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("/assets/fonts/public-sans-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #262b5a;
  --ink-soft: #343a6e;
  --steel: #26609b;
  --steel-deep: #1d4d7e;
  --ivory: #faf8f4;
  --white: #ffffff;
  --sky: #eaf1f8;
  --sky-deep: #dbe7f3;
  --apricot: #e8a87c;
  --text: #33385f;
  --muted: #6b7194;
  --line: #dcdfec;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(38, 43, 90, 0.05), 0 8px 28px rgba(38, 43, 90, 0.07);
  --shadow-lift: 0 2px 4px rgba(38, 43, 90, 0.06), 0 16px 40px rgba(38, 43, 90, 0.12);
  --container: 72rem;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
}

/* ---------- Reset (lite) ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); letter-spacing: -0.005em; }
h3 { font-size: 1.3rem; line-height: 1.3; }
h4 { font-family: var(--font-text); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
p, li { max-width: 65ch; }
a { color: var(--steel); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--steel-deep); }
strong { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 2px;
  border-radius: 3px;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.center { text-align: center; }
.center p, .center li { margin-inline: auto; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 52rem; }
.section { padding-block: var(--section-pad); }
.section--white { background: var(--white); }
.section--sky { background: var(--sky); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-bottom: 0.75rem; }

.grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; color: var(--ivory); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn--primary { background: var(--steel); color: var(--white); }
.btn--primary:hover { background: var(--steel-deep); color: var(--white); transform: translateY(-1px); }
.btn--ghost { border-color: var(--steel); color: var(--steel); background: transparent; }
.btn--ghost:hover { background: var(--steel); color: var(--white); }
.btn--light { background: var(--ivory); color: var(--ink); }
.btn--light:hover { background: var(--white); color: var(--ink); transform: translateY(-1px); }
.btn--ghost-light { border-color: rgba(250, 248, 244, 0.6); color: var(--ivory); background: transparent; }
.btn--ghost-light:hover { border-color: var(--ivory); background: rgba(250, 248, 244, 0.1); color: var(--ivory); }
@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand__icon { width: 42px; height: 42px; color: var(--steel); flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1.1; }
.brand__top {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--steel);
  text-transform: uppercase;
}
.brand__main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-nav ul { display: flex; gap: 0.25rem; align-items: center; list-style: none; padding: 0; margin: 0; }
.site-nav a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover { background: var(--sky); color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--steel-deep); font-weight: 700; background: var(--sky); }
.header-call { flex: none; }

.nav-toggle {
  display: none;
  flex: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 999px) {
  .nav-toggle { display: inline-flex; }
  .header-call { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.75rem 1.25rem 1.25rem;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .site-nav a { padding: 0.7rem 0.9rem; font-size: 1rem; }
  .site-header.nav-open .site-nav { display: block; }
  .site-header.nav-open .nav-toggle .icon-menu { display: none; }
  .site-header.nav-open .nav-toggle .icon-close { display: block; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 40%, var(--sky) 100%);
}
.hero__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 7fr 5fr; }
}
.hero h1 { margin: 0.75rem 0 1.25rem; }
.hero .lede { margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__art { color: var(--steel); }
.hero__art svg { width: 100%; height: auto; }
@media (max-width: 899px) {
  .hero__art { max-width: 22rem; margin-inline: auto; opacity: 0.9; }
}
.u-thrive {
  position: relative;
  white-space: nowrap;
}
.u-thrive::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 9 C 30 3, 60 3, 118 7' fill='none' stroke='%23e8a87c' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ---------- Hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--ivory) 45%, var(--sky) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { padding-block: clamp(3rem, 6vw, 4.5rem); max-width: 52rem; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); margin-bottom: 1rem; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--steel); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--line); }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 500; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  background: var(--white);
}
.trust ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  padding-block: 1.75rem;
}
@media (min-width: 800px) { .trust ul { grid-template-columns: repeat(4, 1fr); } }
.trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  max-width: none;
}
.trust li svg { width: 22px; height: 22px; color: var(--apricot); flex: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
a.card { text-decoration: none; color: var(--text); display: block; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.97rem; }
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--steel);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card__more {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--steel);
}
a.card:hover .card__more { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Process timeline ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 2.25rem 4.25rem;
  max-width: 42rem;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--steel);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.375rem - 1px);
  top: 2.8rem;
  bottom: 0.3rem;
  width: 2px;
  background: var(--sky-deep);
}
.steps h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.steps p { font-size: 0.97rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { text-align: center; text-decoration: none; }
.team-card img {
  width: min(11rem, 70%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--sky-deep), var(--shadow);
}
.team-card h3 { font-size: 1.1rem; }
.team-card p { font-size: 0.88rem; color: var(--muted); margin: 0.25rem auto 0; }

.profile {
  display: grid;
  gap: 2rem;
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.profile + .profile { border-top: 1px solid var(--line); }
@media (min-width: 800px) {
  .profile { grid-template-columns: 16rem 1fr; gap: 3rem; }
}
.profile__photo img {
  width: min(13rem, 60vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: var(--sky);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--sky-deep), var(--shadow);
}
.profile__role { color: var(--steel-deep); font-weight: 700; margin: 0.3rem 0 0.2rem; }
.profile__creds { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.1rem; }
.profile p + p { margin-top: 0.9rem; }

/* ---------- Pull quote ---------- */
.quote-band { background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.quote-band .container { position: relative; }
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.quote-band blockquote::before { content: "\201C"; color: var(--apricot); }
.quote-band blockquote::after { content: "\201D"; color: var(--apricot); }
.quote-band figcaption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(250, 248, 244, 0.75);
}
.quote-band figcaption strong { color: var(--ivory); }
.quote-band__deco {
  position: absolute;
  inset: 0;
  color: rgba(250, 248, 244, 0.05);
  pointer-events: none;
}

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--white); }
.compare { border-collapse: collapse; width: 100%; min-width: 38rem; font-size: 0.95rem; }
.compare th, .compare td { padding: 1rem 1.25rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare thead th { background: var(--ink); color: var(--ivory); font-family: var(--font-text); font-weight: 700; font-size: 0.9rem; }
.compare tbody th { font-weight: 700; color: var(--ink); background: var(--sky); width: 11rem; }
.compare td { max-width: 26rem; }

/* ---------- Accordion (FAQ) ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--sky);
  color: var(--steel-deep);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq-item__body { padding: 0 1.5rem 1.35rem; }
.faq-item__body p + p { margin-top: 0.75rem; }

/* ---------- Domain grid ---------- */
.domains { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
.domains li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.93rem;
  max-width: none;
}
.domains li svg { width: 18px; height: 18px; color: var(--apricot); flex: none; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 0.7rem; }
@media (min-width: 800px) {
  .checklist--2col { grid-template-columns: 1fr 1fr; column-gap: 3rem; max-width: 60rem; }
}
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; color: var(--steel); flex: none; margin-top: 0.3rem; }

/* ---------- Resource lists ---------- */
.resource-list { display: grid; gap: 0.9rem; }
.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.resource-list a:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--steel-deep); }
.resource-list a::after { content: "\2197"; color: var(--steel); flex: none; font-weight: 400; }
.resource-list span { display: block; font-weight: 400; font-size: 0.87rem; color: var(--muted); margin-top: 0.15rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.cta-band__inner {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}
.cta-band h2 { color: var(--ivory); margin-bottom: 0.9rem; }
.cta-band p { margin: 0 auto 2rem; color: rgba(250, 248, 244, 0.85); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta-band__deco { position: absolute; inset: 0; color: rgba(250, 248, 244, 0.06); pointer-events: none; }
.cta-band__deco svg { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field label, .field legend {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  padding: 0.75rem 0.9rem;
  color: var(--text);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 3px solid rgba(38, 96, 155, 0.35);
  outline-offset: 0;
  border-color: var(--steel);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field fieldset { border: none; padding: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.choice-row label { display: flex; align-items: center; gap: 0.45rem; font-weight: 500; font-size: 0.95rem; margin: 0; }
.choice-row input { accent-color: var(--steel); width: 1.05rem; height: 1.05rem; }

/* ---------- Contact layout ---------- */
.contact-layout { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 950px) { .contact-layout { grid-template-columns: 7fr 5fr; } }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.info-card__body { padding: 1.75rem; display: grid; gap: 1.35rem; }
.info-row { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-row svg { width: 22px; height: 22px; color: var(--steel); flex: none; margin-top: 0.25rem; }
.info-row h3 { font-size: 0.85rem; font-family: var(--font-text); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.15rem; }
.info-card iframe { width: 100%; height: 15rem; border: 0; border-top: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250, 248, 244, 0.82); font-size: 0.94rem; }
.site-footer a { color: rgba(250, 248, 244, 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4rem) 2.5rem;
}
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { color: var(--ivory); margin: 0 0 1rem; }
.site-footer .brand__icon { color: var(--apricot); }
.site-footer .brand__top { color: rgba(250, 248, 244, 0.6); }
.site-footer h3 {
  color: var(--ivory);
  font-family: var(--font-text);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.site-footer ul { display: grid; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.site-footer address { font-style: normal; line-height: 1.8; }
.site-footer__bar {
  border-top: 1px solid rgba(250, 248, 244, 0.15);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.6);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .resource-list a { transition: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .hero__art { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
