/* ==========================================================================
   DFW SAP — Dallas Ft. Worth Substance Abuse Professionals
   Static rebuild (HTML / CSS / JS) of dfwsap.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --accent: #1e73be;
  --accent-dark: #175a95;
  --accent-soft: #eaf2fa;

  --ink: #333333;
  --ink-strong: #1d2229;
  --muted: #6b7482;
  --line: #e4e8ee;

  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --footer-bg: #2b3038;
  --footer-ink: #c3c9d2;

  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(20, 28, 40, .08);
  --shadow-md: 0 6px 24px rgba(20, 28, 40, .10);

  --header-h: 84px;
  --wrap: 1140px;

  --font: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  color: var(--ink-strong);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.01em;
}
h1 { font-size: 2.6rem; font-weight: 300; }
h2 { font-size: 2rem;   font-weight: 300; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover, a:focus { color: var(--accent-dark); text-decoration: underline; }

ul, ol { margin: 0 0 1.25em; padding-left: 1.3em; }
li { margin-bottom: .5em; }

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; text-decoration: none; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 52px 0; }

.text-center { text-align: center; }

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease,
              transform .2s ease;
}
.btn:hover, .btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover, .btn--ghost:focus { background: var(--accent); color: #fff; }

.btn--light { background: transparent; border-color: #fff; color: #fff; }
.btn--light:hover, .btn--light:focus {
  background: #fff; border-color: #fff; color: var(--ink-strong);
}

.btn--lg { padding: 16px 44px; font-size: .88rem; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.site-logo img { width: 204px; height: 70px; }

.nav-tools { display: flex; align-items: center; gap: 4px; }

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li { position: relative; margin: 0; }

.menu > li > a,
.menu .sub-menu a {
  display: block;
  padding: 10px 13px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu > li > a:hover,
.menu > li > a:focus,
.menu > li.is-current > a { color: var(--accent); text-decoration: none; }

.menu > li.is-current > a { box-shadow: inset 0 -2px 0 var(--accent); }

.has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 232px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu,
.has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu a { padding: 9px 18px; text-transform: none; letter-spacing: .02em; font-size: .85rem; }
.sub-menu a:hover, .sub-menu a:focus { background: var(--accent-soft); color: var(--accent); text-decoration: none; }

/* icon buttons */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover, .icon-btn:focus { background: var(--bg-alt); color: var(--accent); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   6. Search overlay
   -------------------------------------------------------------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
  background: rgba(23, 28, 36, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-panel { width: 100%; max-width: 640px; }

.search-form { display: flex; gap: 10px; }
.search-form input[type="search"] {
  flex: 1;
  padding: 16px 18px;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: #fff;
}
.search-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.search-results {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  max-height: 55vh;
  overflow-y: auto;
}
.search-results li { margin: 0 0 10px; }
.search-results a {
  display: block;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
}
.search-results a:hover, .search-results a:focus { background: var(--accent-soft); text-decoration: none; }
.search-results .result-title { display: block; font-weight: 700; color: var(--ink-strong); }
.search-results .result-snippet { display: block; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.search-results mark { background: #fff2b0; color: inherit; padding: 0 2px; }
.search-empty { margin-top: 22px; color: #dfe4ea; text-align: center; }

/* --------------------------------------------------------------------------
   7. Hero (parallax cover)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  padding: 90px 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: -12% 0;
  background: url("../assets/dallas-skyline.jpg") center/cover no-repeat;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,22,34,.72), rgba(14,22,34,.58));
}
.hero__inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 300;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 2rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* --------------------------------------------------------------------------
   8. Page banner (inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: 72px 0;
  text-align: center;
  color: #fff;
  background: url("../assets/dallas-skyline.jpg") center 35%/cover no-repeat fixed;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14,22,34,.72);
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: .2em; }
.breadcrumbs { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.breadcrumbs a { color: rgba(255,255,255,.82); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; opacity: .6; }

/* --------------------------------------------------------------------------
   9. Content + sidebar
   -------------------------------------------------------------------------- */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 56px;
  align-items: start;
}
.entry-content > :first-child { margin-top: 0; }
.entry-content h1 { font-size: 2.1rem; }
.entry-content h2 { margin-top: 1.8em; font-size: 1.2rem; color: var(--accent); }
.entry-content ul { padding-left: 1.25em; }
.entry-content ul li::marker { color: var(--accent); }

.widget {
  padding: 26px 24px;
  margin-bottom: 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.widget h2, .widget h3 {
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { margin-bottom: 10px; }

.contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line svg {
  flex: none; width: 19px; height: 19px; margin-top: 4px;
  stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-line .label {
  display: block; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.contact-line .value { font-weight: 600; color: var(--ink-strong); }
.contact-line a.value { color: var(--accent); }

.phone-cta {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
}

/* --------------------------------------------------------------------------
   10. Cards / steps / features
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
/* narrower content column (next to the sidebar) still fits three across */
.entry-content .card-grid { grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); gap: 20px; }
.entry-content .card { padding: 26px 22px; }
.card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h2, .card h3 { font-size: 1.15rem; font-weight: 600; }
.card p { color: var(--muted); margin-bottom: 0; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.card__icon svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps > li {
  position: relative;
  padding: 0 0 30px 74px;
  margin: 0;
  counter-increment: step;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.steps > li::after {
  content: "";
  position: absolute;
  left: 23px; top: 56px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.steps > li:last-child { padding-bottom: 0; }
.steps > li:last-child::after { display: none; }
.steps h2, .steps h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .35em; }
.steps p { margin-bottom: 0; }
.steps a { word-break: break-word; }

.notice {
  padding: 20px 24px;
  margin: 30px 0 0;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.notice strong { color: var(--accent-dark); letter-spacing: .04em; }

/* office / location list */
.office-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.office-list li { margin: 0; }
.office-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  height: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.office-list a:hover, .office-list a:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  text-decoration: none;
}
.office-list svg { flex: none; width: 19px; height: 19px; margin-top: 4px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   11. Contact strip (home) + contact form
   -------------------------------------------------------------------------- */
.contact-strip {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: var(--ink-strong);
}
.contact-strip h2 { color: #fff; }
.contact-strip a { color: #fff; }
.contact-strip .contact-line .label { color: rgba(255,255,255,.62); }
.contact-strip .contact-line .value { color: #fff; }
.contact-strip .contact-line svg { stroke: #fff; }
.contact-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.contact-form { display: grid; gap: 16px; max-width: 560px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.field textarea { min-height: 148px; resize: vertical; }
.field .optional { font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); }
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) { border-color: #c0392b; }
.form-note { font-size: .88rem; color: var(--muted); }

/* submit + result blocks (same contract as the other sites: .form-wrapper
   holds the form plus a hidden .form-done and .form-fail) */
.contact-form button[type="submit"][disabled] { opacity: .6; cursor: progress; transform: none; }

.form-status {
  max-width: 560px;
  padding: 20px 24px;
  margin-top: 4px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--accent-soft);
}
.form-status p { margin: 0; }
.form-status strong { color: var(--accent-dark); }
.form-fail { border-left-color: #c0392b; background: #fdeeec; }
.form-fail strong { color: #a5281b; }

/* --------------------------------------------------------------------------
   12. Payment card
   -------------------------------------------------------------------------- */
.pay-card {
  max-width: 460px;
  padding: 36px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.pay-card h3 { margin-bottom: .4em; }
.pay-card p { color: var(--muted); }
.pay-card .btn { width: 100%; margin-top: 8px; }
.pay-card .pay-status { margin-top: 14px; font-size: .9rem; color: var(--muted); min-height: 1.4em; }
.pay-card .secure {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; font-size: .8rem; color: var(--muted);
}
.pay-card .secure svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 62px 0 0;
  background: var(--footer-bg);
  color: var(--footer-ink);
  font-size: .94rem;
}
.site-footer h3 {
  color: #fff;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding-bottom: 46px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.site-footer .contact-line svg { stroke: var(--accent); }
.site-footer .contact-line .label { color: rgba(255,255,255,.5); }
.site-footer .contact-line .value { color: #fff; }
.footer-credits {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .84rem;
  text-align: center;
}

/* back to top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: var(--shadow-md);
  transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent-dark); }
.to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   14. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: inline-flex; }

  .site-logo img { width: 170px; height: auto; }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 20px 40px;
    background: #fff;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .primary-nav.is-open { transform: translateX(0); }

  .menu { display: block; }
  .menu > li { border-bottom: 1px solid var(--line); }
  .menu > li > a { padding: 15px 4px; font-size: .84rem; }
  .menu > li.is-current > a { box-shadow: none; }

  .has-children > a::after { float: right; margin-top: 9px; transition: transform .2s ease; }
  .has-children.is-open > a::after { transform: rotate(180deg) translateY(-2px); }

  .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .has-children.is-open > .sub-menu { display: block; }
  .has-children:hover > .sub-menu { display: none; }
  .has-children.is-open:hover > .sub-menu { display: block; }

  .content-grid { grid-template-columns: 1fr; gap: 44px; }

  .page-banner { background-attachment: scroll; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 54px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 82vh; }
  .steps > li { padding-left: 60px; }
  .steps > li::before { width: 40px; height: 40px; font-size: 1rem; }
  .steps > li::after { left: 19px; top: 48px; }
  .contact-cols { text-align: center; }
  .contact-cols .contact-line { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .to-top, .search-overlay, .hero__bg { display: none !important; }
  body { color: #000; }
}
