/* ============================================================
   Valence Clinic — Website Stylesheet (v1)
   Brand: gold + cream + charcoal. Built to WCAG 2.1 AA.
   No external fonts (privacy + performance): system stacks only.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --cream:        #FBF8F0;  /* page background */
  --cream-2:      #F4EEDF;  /* alternating section background */
  --cream-3:      #EDE4D0;  /* deep cream / subtle fills */
  --white:        #FFFFFF;
  --charcoal:     #2C2A26;  /* body text */
  --charcoal-2:   #221F1C;  /* footer background */
  --ink-soft:     #55514A;  /* muted/secondary text (7.4:1 on cream) */
  --gold:         #C9A14B;  /* brand gold — button fills, accents */
  --gold-deep:    #7A5E1F;  /* deep gold for text on light — passes 4.5:1 on cream, cream-2 and sage tint */
  --gold-hover:   #BC9038;  /* button hover */
  --sage:         #6E7C56;  /* decorative secondary accent */
  --sage-soft:    #E7E9DD;  /* soft sage tint background */
  --line:         #E2D8BE;  /* hairline borders on cream */
  --line-dark:    #3A3733;  /* hairline borders on charcoal */
  --danger:       #B23B2E;  /* error text (5.2:1 on white) */

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

  /* Layout */
  --container: 1140px;
  --measure: 68ch;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(44, 42, 38, 0.08);
  --shadow-md: 0 6px 24px rgba(44, 42, 38, 0.10);

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold-deep); }
a:hover { color: var(--charcoal); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.22;
  color: var(--charcoal);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.35rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.3rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + 0.6vw, 1.42rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.3rem; }
li { margin-bottom: 0.4rem; }

strong { font-weight: 700; }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important;
  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: 0; top: -100%;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0; color: var(--cream); }

/* Visible focus indicator everywhere */
:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: var(--space-5); }
.section--alt   { background: var(--cream-2); }
.section--deep  { background: var(--charcoal); color: var(--cream); }
.section--sage  { background: var(--sage-soft); }
.section--tight { padding-block: var(--space-4); }

.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--cream); }

.measure { max-width: var(--measure); }
.center  { text-align: center; }
.center .measure { margin-inline: auto; }

.section-head { max-width: 56ch; margin-bottom: var(--space-3); }
.section-head.center { margin-inline: auto; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}
/* On dark sections the eyebrow needs the lighter gold for AA contrast */
.cta-band .eyebrow,
.section--deep .eyebrow { color: var(--gold); }

.lead { font-size: 1.18rem; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.05s ease,
              color 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--charcoal); }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }

/* Buttons placed on a dark background */
.on-dark .btn-secondary { color: var(--cream); border-color: var(--cream); }
.on-dark .btn-secondary:hover { background: var(--cream); color: var(--charcoal); }

.btn-lg { padding: 1rem 2rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-logo { width: 46px; height: 46px; flex: none; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--gold-deep); }

/* Navigation */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.nav-link:hover { color: var(--gold-deep); background: var(--cream-2); }
.nav-link[aria-current="page"] {
  color: var(--gold-deep);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
}
.nav-toggle .bars {
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--charcoal);
  position: relative;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--charcoal);
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after  { top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.is-open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
  }
  .nav-link { padding: 0.85rem 0.6rem; font-size: 1.05rem; }
  .nav-link[aria-current="page"] { box-shadow: inset 4px 0 0 var(--gold); }
  .nav-cta { margin: 0.6rem 0.6rem 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(60% 90% at 88% 8%, rgba(201, 161, 75, 0.16), transparent 70%),
    radial-gradient(50% 70% at 5% 100%, rgba(110, 124, 86, 0.12), transparent 70%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-4);
  align-items: center;
  padding-block: clamp(3rem, 1.5rem + 6vw, 6rem);
}
.hero h1 { margin-bottom: 0.4em; }
.hero .lead { margin-bottom: 1.6rem; }
.hero-actions { margin-top: 1.6rem; }

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art svg { width: 100%; max-width: 320px; height: auto; }

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.coming-soon-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex: none;
}

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-3); }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 210px; }
}

/* ---------- Generic content blocks ---------- */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.4rem; }
.prose > :first-child { margin-top: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}
@media (max-width: 780px) { .split { grid-template-columns: 1fr; gap: var(--space-3); } }

/* ---------- Feature / service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0.4rem; }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 44px; height: 44px;
  color: var(--gold-deep);
}

/* Numbered / plain feature list */
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.feature-list li {
  display: flex;
  gap: 0.85rem;
  margin: 0;
}
.feature-list .leaf-bullet {
  flex: none;
  width: 26px; height: 26px;
  color: var(--gold-deep);
  margin-top: 2px;
}

/* ---------- Condition tags ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tag-list li {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.tag-list li.is-more {
  background: transparent;
  border-style: dashed;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Provider block ---------- */
.provider {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-4);
  align-items: start;
}
.provider-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--cream-3);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.provider-photo svg, .provider-photo img { width: 100%; height: 100%; }
.provider-name { margin-bottom: 0.15rem; }
.provider-role {
  font-family: var(--font-sans);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.photo-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  text-align: center;
}
@media (max-width: 640px) {
  .provider { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .provider-photo { width: 170px; height: 170px; }
}

/* ---------- Call-to-action band ---------- */
.cta-band {
  background:
    radial-gradient(50% 120% at 100% 0%, rgba(201,161,75,0.22), transparent 60%),
    var(--charcoal);
  color: var(--cream);
  text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: #D8D2C4; max-width: 52ch; margin-inline: auto; }

/* ---------- FAQ (native details/summary) ---------- */
.faq {
  display: grid;
  gap: 0.85rem;
  max-width: var(--measure);
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-deep);
  flex: none;
}
.faq details[open] summary::after { content: "\2013"; }
.faq summary:hover { color: var(--gold-deep); }
.faq .faq-answer { padding: 0 1.3rem 1.2rem; }
.faq .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: var(--space-4);
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}

.form-field { margin-bottom: 1.25rem; }
.form-field label,
.form-legend {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.req { color: var(--danger); font-weight: 700; }
.optional { color: var(--ink-soft); font-weight: 400; font-style: italic; }

.field-hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 0.45rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid #BDB48F;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
}
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M1 4l6 6 6-6' fill='none' stroke='%237A5E1F' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
  padding-right: 2.3rem;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-deep);
  background: var(--white);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #FBF1EF;
}

.field-error {
  display: none;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--danger);
}
.field-error.is-shown { display: flex; gap: 0.35rem; align-items: flex-start; }
.field-error::before { content: "\26A0"; flex: none; }

.form-notice {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  font-size: 0.92rem;
  margin: 1.4rem 0;
}
.form-notice strong { color: var(--charcoal); }

.form-status {
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.form-status[hidden] { display: none; }
.form-status.is-success {
  background: #ECF3E6;
  border: 1px solid #9DB683;
  color: #38502A;
}
.form-status.is-error {
  background: #FBF1EF;
  border: 1px solid #D6A39C;
  color: var(--danger);
}

.turnstile-wrap { margin-bottom: 1.25rem; min-height: 65px; }

/* ---------- Info / contact aside ---------- */
.info-card {
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.info-card + .info-card { margin-top: 1.25rem; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.info-list li { margin: 0; display: flex; gap: 0.7rem; }
.info-list .info-ico { flex: none; width: 22px; height: 22px; color: var(--gold-deep); margin-top: 3px; }
.info-list a { font-weight: 600; }

/* ---------- Callout box ---------- */
.callout {
  background: var(--sage-soft);
  border: 1px solid #C7CFB6;
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.4rem 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Legal pages ---------- */
.legal-meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1.6rem;
}
.legal-toc {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
}
.legal-toc h2 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.legal-toc ol { margin: 0; }

/* ---------- Crisis bar ---------- */
.crisis-bar {
  background: var(--charcoal-2);
  border-top: 3px solid var(--gold);
  color: var(--cream);
}
.crisis-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-block: 0.95rem;
  font-size: 0.96rem;
}
.crisis-inner .crisis-ico { flex: none; width: 26px; height: 26px; color: var(--gold); }
.crisis-bar strong { color: var(--white); }
.crisis-bar a { color: var(--gold); font-weight: 700; }
.crisis-bar a:hover { color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-2);
  color: #CFC9BB;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-4);
  padding-block: var(--space-4);
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { color: #B7B1A3; max-width: 34ch; margin-top: 0.8rem; }
.footer-col h2 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: #CFC9BB; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-col address { font-style: normal; color: #CFC9BB; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.88rem;
  color: #A8A294;
}
.footer-bottom a { color: #A8A294; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }

.site-footer :focus-visible,
.crisis-bar :focus-visible,
.section--deep :focus-visible,
.cta-band :focus-visible { outline-color: var(--gold); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 440px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Cookie notice ---------- */
.cookie-notice {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 540px;
  margin-inline: auto;
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  font-size: 0.9rem;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; flex: 1 1 240px; }
.cookie-notice a { color: var(--gold); }
.cookie-notice .btn { padding: 0.55rem 1.1rem; font-size: 0.92rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(55% 120% at 92% 0%, rgba(201,161,75,0.16), transparent 65%),
    var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.4rem, 1.5rem + 4vw, 4rem);
}
.page-hero .eyebrow { margin-bottom: 0.5rem; }
.page-hero h1 { margin-bottom: 0.4rem; }
.page-hero p { max-width: 56ch; margin-bottom: 0; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.85rem; margin-bottom: 0.8rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }

/* ---------- Misc utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1rem; }
.divider-leaf { display: flex; justify-content: center; margin: 0; color: var(--gold); }
.divider-leaf svg { width: 54px; height: auto; }

/* ---------- Motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (forced-colors: active) {
  .btn { border: 2px solid currentColor; }
  .card, .faq details, .form-card, .info-card { border: 1px solid currentColor; }
  .nav-link[aria-current="page"] { box-shadow: none; text-decoration: underline; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .crisis-bar, .cookie-notice,
  .nav-toggle, .hero-art, .cta-band { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
}
