/* ============================================================
   Second Path Reentry Network
   Site stylesheet — plain CSS, no build tools required.
   Colors are taken from the organization's seal.
   ============================================================ */

:root {
  --ink:        #0E1F3C;
  --ink-deep:   #081328;
  --ink-soft:   #17305A;
  --gold:       #C29433;
  --gold-light: #E6C572;
  --cream:      #FBF6EC;
  --cream-warm: #F4EDDE;
  --paper:      #FFFFFF;
  --sage:       #4B6A45;
  --text:       #1B2331;
  --text-mute:  #4E5766;
  --line:       #DED4C0;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Karla", "Segoe UI", Helvetica, sans-serif;

  --wrap: 1180px;
  --narrow: 760px;
  --r: 4px;
  --shadow: 0 18px 40px -24px rgba(14, 31, 60, .45);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper grain so large cream areas don't read as flat white */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image: radial-gradient(rgba(14,31,60,.05) 1px, transparent 1px);
  background-size: 4px 4px;
}
body > * { position: relative; z-index: 1; }

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

a { color: var(--ink); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink-deep);
  padding: .8rem 1.2rem;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.05rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); letter-spacing: -.005em; }

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

.eyebrow {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 90px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 90px;
  background: linear-gradient(to left, var(--gold), transparent);
}

.lede {
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  line-height: 1.62;
  color: var(--text-mute);
}
.band--navy .lede,
.hero .lede,
.page-head .lede,
.cta .lede { color: rgba(251, 246, 236, .86); }

.tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
}

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

.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 3rem, var(--narrow)); margin-inline: auto; }

.band { padding: clamp(3.6rem, 8vw, 6.4rem) 0; }
.band--cream { background: var(--cream); }
.band--warm  { background: var(--cream-warm); }
.band--paper { background: var(--paper); }

.band--navy {
  background: var(--ink);
  color: var(--cream);
  background-image:
    radial-gradient(120% 80% at 80% 0%, rgba(226, 190, 102, .13), transparent 62%),
    radial-gradient(90% 70% at 0% 100%, rgba(75, 106, 69, .22), transparent 60%);
}
.band--navy h1, .band--navy h2, .band--navy h3 { color: var(--cream); }
.band--navy a { color: var(--gold-light); }

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--even { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .split, .split--even { grid-template-columns: 1fr; } }

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

.site-header {
  background: var(--ink-deep);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(194, 148, 51, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: var(--cream);
  flex: 0 0 auto;
}
.brand img {
  width: 54px;
  height: 54px;
  /* No circular clip: the seal art extends past a perfect circle, and it is
     already transparent outside its own edge. */
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: rgba(251, 246, 236, .88);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  padding: .35rem 0;
  position: relative;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav .btn-nav { padding: .5rem 1.05rem; }
.site-nav .btn-nav::after { display: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(226, 190, 102, .5);
  color: var(--cream);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem .9rem;
  border-radius: var(--r);
  cursor: pointer;
}

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    margin: 0;
    padding-bottom: .9rem;
  }
  .site-nav.is-open { display: block; }
  .header-inner { flex-wrap: wrap; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-top: 1px solid rgba(251, 246, 236, .12); }
  .site-nav a { display: block; padding: .85rem .2rem; font-size: 1rem; }
  .site-nav a::after { display: none; }
  .site-nav .btn-nav { margin-top: .9rem; text-align: center; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--ink-deep);
  box-shadow: 0 10px 22px -14px rgba(194, 148, 51, .9);
}
.btn--gold:hover { background: var(--gold-light); color: var(--ink-deep); }

.btn--outline {
  border-color: rgba(226, 190, 102, .75);
  color: var(--cream);
}
.btn--outline:hover { background: rgba(226, 190, 102, .14); color: #fff; }

.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover { background: var(--ink-soft); color: #fff; }

.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

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

.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  background-image:
    radial-gradient(100% 80% at 78% 8%, rgba(226, 190, 102, .18), transparent 58%),
    radial-gradient(90% 70% at 5% 100%, rgba(75, 106, 69, .3), transparent 62%);
}

.hero-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .22;
}
.hero-path path {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.6;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 3.4s cubic-bezier(.6,.05,.2,1) .3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-seal { order: -1; max-width: 240px; }
}

.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

.hero-seal img,
.hero-seal picture { width: 100%; display: block; }
.hero-seal img {
  /* Transparent PNG/WebP: drop-shadow follows the seal's own edge, so the
     artwork melts into the background instead of sitting on a clipped disc. */
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, .55));
}

.hero-motto {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(226, 190, 102, .3);
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Staggered entrance */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .9s cubic-bezier(.2,.7,.3,1) forwards; }
.reveal--1 { animation-delay: .05s; }
.reveal--2 { animation-delay: .18s; }
.reveal--3 { animation-delay: .31s; }
.reveal--4 { animation-delay: .44s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Page header (interior pages) ---------- */

.page-head {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.6rem, 6vw, 4rem);
  background-image: radial-gradient(90% 100% at 85% 0%, rgba(226, 190, 102, .16), transparent 60%);
  border-bottom: 3px solid var(--gold);
}
.page-head h1 { margin-bottom: .5rem; }
.page-head .lede { max-width: 62ch; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 1.9rem 1.7rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-mute); font-size: .98rem; }

.card-num {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .18em;
  display: block;
  margin-bottom: .8rem;
}

/* Pillars strip (Support / Strength / Second Chances / Brighter Futures) */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(226, 190, 102, .35);
  border: 1px solid rgba(226, 190, 102, .35);
  border-radius: var(--r);
  overflow: hidden;
}
.pillars div {
  background: var(--ink);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.pillars strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: .2rem;
}
.pillars span { font-size: .85rem; color: rgba(251, 246, 236, .72); }
@media (max-width: 720px) { .pillars { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Prose blocks ---------- */

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }

.pull {
  margin: 2.6rem 0;
  padding: 1.6rem 0 1.6rem 1.9rem;
  border-left: 3px solid var(--gold);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
}
.band--navy .pull { color: var(--gold-light); }

.signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
}
.signature span {
  display: block;
  font-family: var(--body);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: .3rem;
}

/* ---------- Steps (enrollment) ---------- */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  position: relative;
  padding: 0 0 2.2rem 4.2rem;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}
.steps li::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 2.9rem;
  bottom: .4rem;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gold) 0 6px, transparent 6px 12px);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: .3rem; }
.steps p { color: var(--text-mute); font-size: .98rem; }

/* ---------- Checklist ---------- */

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.checklist li {
  position: relative;
  padding-left: 2.1rem;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

/* ---------- Divider glyph ---------- */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2.6rem;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(to right, transparent, currentColor);
}
.divider::after { background: linear-gradient(to left, transparent, currentColor); }

/* ---------- CTA band ---------- */

.cta {
  background: var(--ink-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background-image: radial-gradient(80% 120% at 50% 0%, rgba(226, 190, 102, .16), transparent 60%);
}
.cta h2 { color: var(--cream); }
.cta .btn-row { justify-content: center; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .45rem;
}
.field .hint { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-mute); font-size: .85rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .8rem .9rem;
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--paper);
  border-color: var(--gold);
}

.form-note {
  font-size: .9rem;
  color: var(--text-mute);
  margin-top: 1.2rem;
}

/* Checkbox group */
fieldset.checks {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.1rem 1.2rem 1.2rem;
  margin: 0 0 1.4rem;
}
fieldset.checks legend {
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 .4rem;
}
fieldset.checks label {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
  padding: .32rem 0;
  cursor: pointer;
}
fieldset.checks input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.hp { position: absolute; left: -9999px; }

/* ---------- Contact detail block ---------- */

.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3rem; }
.detail-list dt, .detail-list .label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.detail-list .value { font-size: 1.08rem; }

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

.site-footer {
  background: var(--ink-deep);
  color: rgba(251, 246, 236, .78);
  padding: clamp(2.8rem, 6vw, 4rem) 0 2rem;
  font-size: .95rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(251, 246, 236, .14);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.site-footer h4 {
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(251, 246, 236, .82); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { width: 66px; height: 66px; }
.footer-motto {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-top: .5rem;
}
.footer-legal {
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(251, 246, 236, .6);
}

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

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1.1rem; }
.tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(194, 148, 51, .5);
  border-radius: 100px;
  padding: .3rem .85rem;
}

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

@media print {
  .site-header, .site-nav, .cta, .nav-toggle { display: none !important; }
  body { background: #fff; font-size: 12pt; }
}

/* ---------- Fresh Start Self-Care Services panel (Get Help page) ---------- */

.fresh {
  margin-top: 2.6rem;
  padding: clamp(1.6rem, 3.5vw, 2.3rem);
  border-radius: var(--r);
  border: 1px solid rgba(226, 190, 102, .45);
  background: var(--ink);
  background-image:
    radial-gradient(110% 90% at 88% 0%, rgba(226, 190, 102, .18), transparent 60%),
    radial-gradient(90% 80% at 0% 100%, rgba(75, 106, 69, .28), transparent 62%);
  color: rgba(251, 246, 236, .88);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* the winding-path motif, echoed from the seal */
.fresh::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(226, 190, 102, .18);
  pointer-events: none;
}

.fresh h3 {
  color: var(--gold-light);
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  margin-bottom: .8rem;
}

.fresh p { color: rgba(251, 246, 236, .82); font-size: .99rem; }

.fresh-label {
  margin-top: 1.4rem;
  margin-bottom: .9rem !important;
  font-weight: 700;
  color: var(--cream) !important;
  letter-spacing: .01em;
}

.fresh-list {
  margin-bottom: 1.4rem;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: .7rem 1.6rem;
}
.fresh-list li { color: rgba(251, 246, 236, .9); font-size: .96rem; }
@media (max-width: 620px) { .fresh-list { grid-template-columns: 1fr; } }

.fresh-quote {
  margin-top: 1.6rem !important;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(226, 190, 102, .3);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  line-height: 1.45;
  color: var(--gold-light) !important;
}

.fresh-motto {
  margin-top: 1.1rem !important;
  font-size: .72rem !important;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(226, 190, 102, .75) !important;
}

.fresh-doc { margin-top: 1.5rem !important; }
.fresh-doc a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
  border: 1px solid rgba(226, 190, 102, .55);
  border-radius: var(--r);
  padding: .6rem 1.1rem;
  transition: background .2s ease, color .2s ease;
}
.fresh-doc a::before { content: "\2193"; font-size: 1rem; }
.fresh-doc a:hover { background: rgba(226, 190, 102, .16); color: #fff; }

/* Anchor target offset so the sticky header doesn't cover the panel */
#fresh-start { scroll-margin-top: 6.5rem; }

/* ---------- Domestic Violence & Safety Support page ---------- */

.safety-bar {
  background: #7A1B1B;
  color: #FDF3F0;
  font-size: .95rem;
}
.safety-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  flex-wrap: wrap;
}
.safety-bar p { margin: 0; }
.safety-bar a { color: #FFD9A8; }

.quick-exit {
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7A1B1B;
  background: #FDF3F0;
  border: 0;
  border-radius: var(--r);
  padding: .6rem 1.2rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.quick-exit:hover { background: #fff; transform: translateY(-1px); }

.urgent {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid #7A1B1B;
  border-radius: var(--r);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
}
@media (max-width: 780px) { .urgent { grid-template-columns: 1fr; } }
.urgent p { color: var(--text-mute); }
.urgent .eyebrow { color: #7A1B1B; }
.urgent .eyebrow::after { background: linear-gradient(to right, #7A1B1B, transparent); }

.urgent-lines { text-align: right; }
@media (max-width: 780px) { .urgent-lines { text-align: left; } }

.urgent-num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: .5rem !important;
}
.urgent-num a { color: var(--ink); text-decoration: none; }
.urgent-num a:hover { color: #7A1B1B; }
.urgent-alt { font-size: .95rem; }

/* Entry point shown on the Get Help page */
.safety-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid #7A1B1B;
  border-radius: var(--r);
  padding: 1.15rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.safety-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.safety-link strong { display: block; font-family: var(--display); font-size: 1.12rem; margin-bottom: .1rem; }
.safety-link span { font-size: .97rem; color: var(--text-mute); }
.safety-link-cta {
  font-size: .8rem !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7A1B1B !important;
  white-space: nowrap;
}

/* Final card keeps normal size but sits in the middle column, directly
   beneath card 08, instead of trailing off in the left slot. */
.card--center { grid-column: auto; }
@media (min-width: 980px) { .card--center { grid-column: 2; } }
