/* ==========================================================================
   Jon Fournier, LMFT
   A calm, clean, blue palette. Unhurried type, generous whitespace,
   nothing that flashes or demands attention.
   ========================================================================== */

:root {
  /* blues */
  --ink:        #16293c;   /* deepest text */
  --navy:       #1c4066;   /* headings, primary surfaces */
  --blue:       #2c6b9e;   /* primary action */
  --blue-mid:   #4189bd;   /* hover */
  --blue-soft:  #96c1de;   /* accents on dark */
  --blue-pale:  #dceaf4;   /* tints, chips */
  --blue-wash:  #eef5fa;   /* alternating section */

  /* neutrals */
  --bg:         #f8fbfd;
  --white:      #ffffff;
  --body:       #46606f;   /* body copy */
  --mute:       #6d8494;   /* secondary copy */
  --line:       #d9e5ee;
  --line-soft:  #e8f0f6;

  /* a little warmth so the blue never reads clinical */
  --warm:       #c9855c;
  --warm-deep:  #a86a44;
  --warm-pale:  #fbf1e8;

  --shadow-sm: 0 1px 2px rgba(22, 41, 60, .05), 0 2px 8px rgba(22, 41, 60, .05);
  --shadow-md: 0 2px 6px rgba(22, 41, 60, .05), 0 14px 34px rgba(22, 41, 60, .08);
  --shadow-lg: 0 4px 10px rgba(22, 41, 60, .05), 0 28px 64px rgba(22, 41, 60, .12);

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1140px;
  --wrap-narrow: 730px;
  --radius: 14px;
  --radius-lg: 24px;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.012em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.45rem); }
h2 { font-size: clamp(1.72rem, 3.3vw, 2.35rem); }
h3 { font-size: 1.27rem; line-height: 1.38; }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 600; letter-spacing: .01em; color: var(--ink); }

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

a {
  color: var(--blue);
  text-decoration-color: rgba(44, 107, 158, .32);
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}
a:hover { color: var(--navy); text-decoration-color: var(--navy); }

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

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

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

/* --------------------------------------------------------------- layout -- */

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

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tight { padding: clamp(46px, 6vw, 72px) 0; }
.section--wash { background: var(--blue-wash); }
.section--white { background: var(--white); }

.eyebrow {
  display: block;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .95rem;
}

.lede {
  font-size: clamp(1.09rem, 1.8vw, 1.26rem);
  line-height: 1.68;
  color: var(--body);
}

.center { text-align: center; }
.center .lede { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-c { max-width: 62ch; margin-inline: auto; }

.section-head { margin-bottom: clamp(36px, 5vw, 58px); }

/* values the practice still needs to fill in before launch */
.tbd {
  background: #fff4d6;
  border-bottom: 1px dashed #d3a520;
  padding: 0 4px;
  border-radius: 2px;
  font-style: normal;
  color: #6d5410;
}

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }

.btn--ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-wash); }

.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--blue-pale); color: var(--navy); }

.btn--outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------- header -- */

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  z-index: 200; text-decoration: none; font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 251, 253, .9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 22px rgba(22, 41, 60, .05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand:hover { color: inherit; }
.brand-mark {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue) 0%, var(--navy) 100%);
  display: grid; place-items: center;
  color: #fff;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { line-height: 1.22; }
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.16rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-cred {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--blue); background: var(--blue-pale); }
.nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav .btn { margin-left: 10px; padding: 11px 22px; color: #fff; }
.nav .btn:hover { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 19px; height: 1.8px;
  background: var(--navy); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease, background .18s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 26px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { margin: 16px 0 0; border-bottom: 0; justify-content: center; }
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(85rem 42rem at 76% -16%, rgba(150, 193, 222, .38), transparent 62%),
    radial-gradient(56rem 38rem at 2% 110%, rgba(220, 234, 244, .9), transparent 62%),
    var(--bg);
  padding: clamp(58px, 8.5vw, 104px) 0 clamp(62px, 9vw, 104px);
}

/* soft horizon line, like light on water */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hero h1 { margin-bottom: .45em; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero .lede { max-width: 50ch; }
.hero .btn-row { margin-top: 34px; }

.hero-note {
  margin-top: 28px;
  font-size: .89rem;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-note svg { width: 16px; height: 16px; flex: none; color: var(--blue-mid); }

.hero-figure { position: relative; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 210px 210px 20px 20px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--blue-pale) 0%, var(--blue-soft) 60%, #7fb0d2 100%);
  box-shadow: var(--shadow-lg);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* The headshot was cut out onto a white background, and the page behind it is
   also near-white, so without this the frame would dissolve into the page and
   Jon would appear to float. A hairline inside the curve gives the shape an
   edge without putting a hard border around his face. */
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(28, 64, 102, .12);
  pointer-events: none;
}
.portrait-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  align-content: center;
  text-align: center;
  padding: 32px;
  color: rgba(22, 41, 60, .5);
  font-size: .85rem;
  line-height: 1.55;
}
.portrait-fallback svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: .55; }

.hero-badge {
  position: absolute;
  left: -22px;
  bottom: 36px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.hero-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 500;
}
.hero-badge span { font-size: .78rem; color: var(--mute); letter-spacing: .05em; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 360px; margin-inline: auto; order: -1; }
  .portrait { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); }
  .hero-badge { left: auto; right: -6px; bottom: -18px; padding: 13px 19px; }
  .hero-badge strong { font-size: 1.3rem; }
}

/* ---------------------------------------------------------------- quote -- */

.quote-band {
  background: linear-gradient(150deg, var(--navy) 0%, #12314f 100%);
  color: #fff;
  padding: clamp(58px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  right: -8%; bottom: -62%;
  width: 36rem; height: 36rem;
  border-radius: 50%;
  background: rgba(150, 193, 222, .09);
}
.quote-band .wrap { position: relative; }
.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.8vw, 1.95rem);
  line-height: 1.52;
  color: #fff;
  text-align: center;
}
.quote-band cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* ---------------------------------------------------------------- cards -- */

.grid { display: grid; gap: 22px; }
.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: 1000px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-soft);
}
.card h3 { margin-bottom: .5em; }
.card p { font-size: .96rem; }

.card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--blue-pale);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.card-icon svg { width: 23px; height: 23px; }

.chip-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 19px;
  font-size: .93rem;
  color: var(--navy);
}
.chip-list--plain li { background: var(--blue-pale); border-color: transparent; }

/* ------------------------------------------------------------ split/panel -- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5.5vw, 72px);
  align-items: center;
}
.split--narrow { grid-template-columns: .88fr 1.12fr; }
.split--top { align-items: start; }
@media (max-width: 900px) { .split, .split--narrow { grid-template-columns: 1fr; } }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.panel--navy {
  background: linear-gradient(155deg, var(--navy) 0%, #12314f 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, .84);
}
.panel--navy h2, .panel--navy h3, .panel--navy h4 { color: #fff; }
.panel--navy .eyebrow { color: var(--blue-soft); }
.panel--navy a { color: var(--blue-soft); }

/* numbered steps */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 32px 64px;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: -2px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.steps li::after {
  content: "";
  position: absolute;
  left: 21px; top: 48px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: .35em; }
.steps p { font-size: .97rem; }

/* definition list */
.deflist { margin: 0; }
.deflist dt {
  font-family: var(--serif);
  font-size: 1.14rem;
  color: var(--navy);
  margin-top: 28px;
}
.deflist dt:first-of-type { margin-top: 0; }
.deflist dd { margin: .35em 0 0; font-size: .97rem; }

/* ------------------------------------------------------------------ FAQ -- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 5px 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 46px 21px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.13rem;
  color: var(--navy);
  transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 10px; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.8px solid var(--blue);
  border-bottom: 1.8px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq .faq-body { padding: 0 8% 26px 0; font-size: .98rem; }

/* ---------------------------------------------------------------- forms -- */

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: .89rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .hint { display: block; font-weight: 400; color: var(--mute); font-size: .83rem; margin-top: 3px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 152px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 107, 158, .14);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.check input { width: 18px; height: 18px; margin-top: 5px; flex: none; accent-color: var(--blue); }

.form-note {
  font-size: .88rem;
  color: var(--body);
  background: var(--blue-wash);
  border-left: 3px solid var(--blue-soft);
  border-radius: 0 8px 8px 0;
  padding: 15px 19px;
  margin-bottom: 26px;
}

.form-status {
  margin-top: 18px;
  padding: 15px 19px;
  border-radius: 10px;
  background: var(--warm-pale);
  border: 1px solid #edd6c0;
  color: #7a5033;
  font-size: .93rem;
}

/* --------------------------------------------------------------- crisis -- */

.crisis {
  background: var(--warm-pale);
  border: 1px solid #eed9c6;
  border-radius: var(--radius);
  padding: 26px 30px;
}
.crisis h3 { color: var(--warm-deep); margin-bottom: .45em; }
.crisis p, .crisis li { color: #7c5334; font-size: .95rem; }
.crisis ul { margin: .85em 0 0; padding-left: 20px; }
.crisis li { margin-bottom: .45em; }
.crisis a { color: var(--warm-deep); font-weight: 600; text-decoration-color: rgba(168,106,68,.4); }
.crisis a:hover { color: #8a4a24; }

/* ----------------------------------------------------------------- misc -- */

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }

.page-head {
  background:
    radial-gradient(66rem 30rem at 84% -34%, rgba(150, 193, 222, .32), transparent 62%),
    var(--blue-wash);
  padding: clamp(50px, 7vw, 82px) 0 clamp(44px, 6vw, 66px);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: .35em; }
.page-head .lede { max-width: 62ch; }

.meta-list { list-style: none; margin: 0; padding: 0; }
.meta-list li {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.meta-list li:last-child { border-bottom: 0; }
.meta-list .label {
  flex: none;
  width: 136px;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 520px) {
  .meta-list li { flex-direction: column; gap: 3px; }
  .meta-list .label { width: auto; }
}

.cta-band {
  background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 62%, #12314f 100%);
  color: #fff;
  text-align: center;
  padding: clamp(58px, 8vw, 96px) 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .84); max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 32px; }

/* --------------------------------------------------------------- footer -- */

.site-footer {
  background: #12283c;
  color: rgba(255, 255, 255, .66);
  padding: clamp(50px, 6vw, 74px) 0 32px;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: #fff;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.15em;
}
.site-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .65em; }

.footer-brand .brand-name { color: #fff; font-size: 1.24rem; }
.footer-brand .brand-cred { color: var(--blue-soft); }
.footer-brand p { margin-top: 1.1em; max-width: 36ch; font-size: .92rem; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  font-size: .84rem;
  color: rgba(255, 255, 255, .48);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }

.footer-crisis {
  margin-top: 26px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(201, 133, 92, .15);
  border: 1px solid rgba(201, 133, 92, .32);
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
}
.footer-crisis a { color: #e9b993; font-weight: 600; }
.footer-crisis a:hover { color: #f5d3b8; }

/* ------------------------------------------------------------ animation -- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .card, .panel { border: 1px solid #ccc; box-shadow: none; }
}
