/* =========================================================================
   Psychiatry practice site — design system
   Single stylesheet. No frameworks, no external font requests.
   Fonts are system stacks on purpose: zero third-party network calls keeps
   a health-related site private and fast. See README.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */

/* LIGHT ONLY — this site does not follow the visitor's dark-mode preference.
   That is deliberate: a practice site should look the same for every patient
   and match printed materials. `color-scheme: light` below also keeps form
   fields, dropdowns and scrollbars light for visitors whose OS is in dark mode.
   (Dark-mode support was removed in full; re-adding it means restyling the
   inverted sections — .section--deep, .site-footer, .btn--primary — not just
   flipping the tokens.) */

/* PREVIOUS PALETTE — deep teal and warm sand. To restore it, put these back:
     --deep: #1f4a43;  --deep-dark: #14332e;  --sage: #7ea395;
     --sand: #f3ede4;  --paper: #fffdfa;      --ink:  #17211f;
     --muted: #5d6d68; --line: #e2dcd2;       --line-soft: #efeae2;
     --focus: #b4562a;
   and change the .site-header background back to rgba(255, 253, 250, 0.92).
   Everything else re-themes automatically. */

:root {
  color-scheme: light;

  /* Brand palette — navy and brass, ported from the companion site so the two
     read as one practice. Change these six values to re-skin everything.
     Contrast ratios below are measured against the surfaces each is used on;
     see the note on --sage, which is the one that needs care. */
  --deep:      #0b2447;   /* primary — navy. #fff on this = 13.9:1 */
  --deep-dark: #05121f;   /* footer, hovers. #fff on this = 18.9:1 */
  --sage:      #7d5d26;   /* accent — brass. 5.6:1 on --paper, 5.4:1 on --sand.
                             Do NOT lighten this: the mid-brass tones common in
                             this palette (#b8924f) fall to ~2.8:1 on a cream
                             background and fail on every light page. */
  --sand:      #f4f1ea;   /* section background */
  --paper:     #fbfaf7;   /* page background */
  --ink:       #16202b;   /* body text — 15.3:1 on --paper */

  --muted:     #4a5665;   /* 7.4:1 on --paper */
  --line:      #e3ded4;
  --line-soft: #eeeae1;
  --white:     #ffffff;

  --focus:     #9a7433;   /* focus ring — brass, distinct from the navy primary
                             so it never blends into a focused button */

  /* Type */
  --font-display: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype",
                  "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6.5rem;

  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(22, 32, 43, 0.05),
               0 2px 8px rgba(22, 32, 43, 0.04);
  --shadow-md: 0 2px 6px rgba(22, 32, 43, 0.06),
               0 12px 32px rgba(22, 32, 43, 0.08);

  --measure: 68ch;
  --container: 1140px;
}

/* ---------- 2. Reset ----------------------------------------------------- */

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-2);
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 1.25rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); }
h4 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 650; }

p { margin: 0 0 var(--s-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--deep-dark); }

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

hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-5) 0; }

/* ---------- 3. Layout helpers -------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}
.container--narrow { max-width: 760px; }

.section { padding-block: var(--s-6); }
.section--tight { padding-block: var(--s-5); }
.section--sand { background: var(--sand); }
.section--deep { background: var(--deep); color: var(--white); }

.section--deep h2,
.section--deep h3 { color: inherit; }
.section--deep a { color: inherit; }

.stack > * + * { margin-top: var(--s-2); }
.center { text-align: center; }
.measure { max-width: var(--measure); }
.center .measure { margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--s-2); top: -4rem;
  z-index: 100; background: var(--deep); color: #fff;
  padding: var(--s-1) var(--s-2); border-radius: var(--radius);
  transition: top 0.15s ease;
}
.skip-link:focus { top: var(--s-2); }

/* ---------- 4. Eyebrow / lede -------------------------------------------- */

.eyebrow {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 var(--s-2);
}
.section--deep .eyebrow { color: rgba(255, 255, 255, 0.72); }

.lede {
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- 5. Buttons --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
              border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

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

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

.btn--light { background: #fff; color: var(--deep-dark); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.center .btn-row { justify-content: center; }

/* ---------- 6. Header / nav ---------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 4.75rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--ink);
}
.nav__toggle svg { width: 20px; height: 20px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav__link:hover { border-bottom-color: var(--sage); color: var(--ink); }
.nav__link[aria-current="page"] { border-bottom-color: var(--deep); font-weight: 650; }

.nav__cta { margin-left: var(--s-1); }
.nav__cta .btn { padding: 0.7rem 1.2rem; font-size: 0.78rem; white-space: nowrap; }
.brand__sub { white-space: nowrap; }

/* Seven nav links + brand + CTA is a wide header; collapse early enough that
   nothing wraps at intermediate desktop widths. */
@media (max-width: 1180px) {
  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: var(--s-2) var(--s-3) var(--s-3);
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { border-bottom: 1px solid var(--line-soft); }
  .nav__menu li:last-child { border-bottom: 0; }
  .nav__link { display: block; padding: 0.9rem 0; border-bottom: 0; font-size: 1rem; }
  .nav__link[aria-current="page"] { color: var(--deep); }
  .nav__cta { margin: var(--s-2) 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; padding: 0.9rem 1.2rem; }
}

/* ---------- 7. Hero ------------------------------------------------------ */

.hero {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-6);
  align-items: center;
  padding-block: var(--s-7);
}
.hero__title { margin-bottom: var(--s-3); }
.hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__note {
  margin-top: var(--s-3);
  font-size: 0.9rem;
  color: var(--muted);
}
.hero__note::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  margin-right: 0.5rem;
  vertical-align: 2px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding-block: var(--s-5);
  }
  .hero__media { aspect-ratio: 3 / 2; max-height: 380px; }
}

/* Compact page header for interior pages */
.page-head {
  background: var(--sand);
  padding-block: var(--s-6) var(--s-5);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: var(--s-2); }

.breadcrumb {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: var(--s-2);
}
.breadcrumb a { color: var(--muted); }

/* ---------- 8. Cards ----------------------------------------------------- */

.grid { display: grid; gap: var(--s-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

.card__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--deep);
  margin-bottom: var(--s-2);
}
.card__icon svg { width: 21px; height: 21px; }

.card__more {
  display: inline-block;
  margin-top: var(--s-2);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.card__more::after { content: " \2192"; }

/* Numbered process steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 3.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ---------- 9. Feature rows (alternating text + image) ------------------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.feature + .feature { margin-top: var(--s-6); }
.feature--flip .feature__media { order: -1; }
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 5 / 4;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: var(--s-3); }
  .feature--flip .feature__media { order: 0; }
  .feature + .feature { margin-top: var(--s-5); }
}

/* ---------- 10. Lists ---------------------------------------------------- */

.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.7rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.75rem; height: 0.42rem;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill-list li {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.4rem 0.95rem;
  font-size: 0.9rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
  color: var(--deep);
  line-height: 1;
}
.section--deep .stat__num { color: #fff; }
.stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}
.section--deep .stat__label { color: rgba(255,255,255,0.78); }
@media (max-width: 620px) { .stat-row { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ---------- 11. Quote / testimonial -------------------------------------- */

.quote {
  border-left: 3px solid var(--sage);
  padding-left: var(--s-3);
  margin: 0;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  line-height: 1.45;
}
.quote footer {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--s-2);
}

/* ---------- 12. FAQ (native details/summary) ----------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-3) 3rem var(--s-3) 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 0.5rem; top: 50%;
  width: 0.65rem; height: 0.65rem;
  border-right: 2px solid var(--deep);
  border-bottom: 2px solid var(--deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq__item summary:hover { color: var(--deep); }
.faq__answer { padding: 0 3rem var(--s-3) 0; color: var(--muted); }
.faq__answer > *:first-child { margin-top: 0; }

/* ---------- 13. Forms ---------------------------------------------------- */

.form { display: grid; gap: var(--s-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.88rem; font-weight: 600; }
.hint { font-size: 0.82rem; color: var(--muted); }
.req { color: var(--focus); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  width: 100%;
}
textarea { min-height: 9rem; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--deep); }

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.93rem;
}
.checkbox input { margin-top: 0.35rem; width: 1.05rem; height: 1.05rem; }

/* Spam honeypot — hidden from humans, visible to naive bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status { display: none; padding: var(--s-2); border-radius: var(--radius); font-size: 0.95rem; }
.form__status.is-visible { display: block; }
.form__status.is-ok { background: #f3efe4; border: 1px solid var(--sage); color: var(--deep-dark); }
.form__status.is-err { background: #fdeee6; border: 1px solid var(--focus); color: #7d3316; }

/* ---------- 14. Callouts ------------------------------------------------- */

.callout {
  border-left: 4px solid var(--focus);
  background: var(--sand);
  padding: var(--s-3);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; }
.callout p { margin-bottom: 0.6rem; }
.callout p:last-child { margin-bottom: 0; }
.callout--urgent { border-left-color: #b4262a; }

.notice {
  background: var(--sand);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: var(--s-2);
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- 15. Fee table ------------------------------------------------ */

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.fees {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.97rem;
}
table.fees th, table.fees td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.fees thead th {
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--line);
}
table.fees td:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ---------- 16. Article list / prose ------------------------------------- */

.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li { border-bottom: 1px solid var(--line); padding: var(--s-3) 0; }
.post-list li:first-child { border-top: 1px solid var(--line); }
.post__meta {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.post__title { font-size: 1.35rem; margin-bottom: 0.5rem; }
.post__title a { text-decoration: none; color: var(--ink); }
.post__title a:hover { color: var(--deep); text-decoration: underline; }

.prose { max-width: var(--measure); }
.prose h2 { margin-top: var(--s-5); }
.prose h3 { margin-top: var(--s-4); }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: var(--s-2); }
.prose li { margin-bottom: 0.5rem; }
.prose > *:first-child { margin-top: 0; }

/* ---------- 17. Footer --------------------------------------------------- */

.site-footer {
  background: var(--deep-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-block: var(--s-5) var(--s-3);
  font-size: 0.93rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__title {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--s-2);
}

.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 0.6rem; }

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: var(--s-1);
}

.footer__bottom {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

.crisis-bar {
  background: #7c1d20;
  color: #fff;
  text-align: center;
  padding: 0.7rem var(--s-3);
  font-size: 0.9rem;
}
.crisis-bar a { color: #fff; font-weight: 650; }

/* ---------- 18. Placeholder markers -------------------------------------- */
/* Every spot you must edit is wrapped in <span class="ph">…</span>.
   Delete the wrapper (keep your text) as you fill each one in.
   Run `npm run check` or the grep in README to list what's left.        */

.ph {
  background: rgba(240, 176, 90, 0.28);
  box-shadow: 0 0 0 1px rgba(180, 86, 42, 0.35);
  border-radius: 2px;
  padding: 0 2px;
}
/* Add ?clean to any URL, or set body.no-ph, to preview without highlights. */
body.no-ph .ph { background: none; box-shadow: none; padding: 0; }

/* ---------- 19. Print ---------------------------------------------------- */

@media print {
  .site-header, .site-footer, .crisis-bar, .btn-row, .nav__toggle { display: none !important; }
  body { font-size: 11pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
