/* ==========================================================================
   First Line
   A modern, confident depression-care authority brand.
   Thesis:    you do not have to wait until you are out of options.
   Concept:   "first-line" - the primary recommended step, sought early.
   Type:      Bricolage Grotesque (display + UI) / Newsreader (reading body) /
              JetBrains Mono (eyebrows, data labels).
   Colour:    warm bone paper, white panels, sage mist, deep spruce ink,
              evergreen primary, a single warm coral spark.
   Signature: the rising first line - a trajectory whose earliest segment
              lifts, marked by a coral node. It is the logo, the dividers,
              and the hover language.
   ========================================================================== */

:root {
  /* surfaces */
  --bone:      #f5f4ef;   /* warm paper           */
  --bone-2:    #efeee7;   /* soft panel           */
  --panel:     #ffffff;   /* card / clean panel   */
  --mist:      #e6ede8;   /* sage section wash    */
  --mist-2:    #dbe7e0;   /* deeper sage tint     */

  /* ink (deep spruce) */
  --spruce:    #14231e;   /* near-black surface + display text */
  --spruce-2:  #1c322a;   /* raised dark surface  */
  --ink:       #21322c;   /* body text            */
  --ink-soft:  #4f625b;   /* secondary text       */
  --ink-faint: #7c8a83;   /* meta / tertiary      */

  /* evergreen primary */
  --green:     #17604b;
  --green-deep:#0f4636;
  --green-brt: #2f9c77;   /* lighter accent / links on dark */
  --green-wash:#cfe0d6;

  /* the warm spark, used sparingly */
  --coral:     #e2623c;
  --coral-2:   #c94e2b;
  --coral-soft:#f2d6ca;

  /* lines */
  --line:      #dce1da;
  --line-2:    #e7e9e2;
  --line-dark: #2a3f36;

  --measure: 39rem;       /* reading measure ~ 68ch */
  --shell:   75rem;
  --radius:  16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bone);
  color: var(--ink);
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }

::selection { background: var(--coral-soft); color: var(--spruce); }

/* ---- shared type helpers -------------------------------------------------- */
.label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ui { font-family: 'Bricolage Grotesque', system-ui, sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  color: var(--spruce);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  font-optical-sizing: auto;
}

/* ---- layout shell --------------------------------------------------------- */
.site { overflow-x: hidden; }
.wrap { max-width: var(--shell); margin: 0 auto; padding: 0 clamp(1.15rem, 4vw, 2.5rem); }

/* ==========================================================================
   Crisis bar
   ========================================================================== */
.crisis {
  background: var(--spruce);
  color: #dfeae3;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.6rem 1.1rem;
  line-height: 1.45;
}
.crisis strong { color: #fff; font-weight: 700; }
.crisis a { color: var(--green-brt); text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Header
   ========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 244, 239, 0.86);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.85rem clamp(1.15rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: visible;
}
.nav > :last-child { margin-right: 2px; }

/* --- brandmark / logo --- */
.brandmark { display: inline-flex; align-items: center; gap: 0.62rem; }
.brandmark .mark { width: 34px; height: 34px; display: block; flex: none; }
.brandmark .mark svg { width: 100%; height: 100%; display: block; }
.wordmark {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
  color: var(--spruce);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
}
.wordmark .wm-line { position: relative; color: var(--green); }
.wordmark .wm-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.14em;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.brandmark:hover .wm-line::after { transform: scaleX(1); }

/* --- primary nav --- */
.nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a {
  color: var(--ink);
  position: relative;
  padding: 0.15rem 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.nav a:hover { color: var(--green-deep); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--green-deep); }

.nav-cta {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff !important;
  background: var(--green);
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  white-space: nowrap;
  flex: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

/* mobile nav toggle */
.nav-toggle { display: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn svg { width: 22px; height: 8px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--green-deep); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); background: var(--panel); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-2); transform: translateY(-1px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(2.4rem, 6vw, 4rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-bottom: 1.4rem;
}
.hero .eyebrow .tick { width: 26px; height: 12px; display: block; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--green); }
.hero h1 em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral-2);
  letter-spacing: -0.01em;
}
.hero .lede {
  font-size: 1.24rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.hero-note {
  margin-top: 1.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  line-height: 1.6;
}

/* --- signature: the rising-first-line figure --- */
.trajectory {
  background: var(--spruce);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.9rem 1.6rem;
  color: #cfe0d6;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(20, 35, 30, 0.5);
}
.trajectory .t-label {
  color: #8fb3a4;
  margin-bottom: 1.2rem;
  display: flex; justify-content: space-between; align-items: baseline;
}
.trajectory .t-fig { width: 100%; height: auto; display: block; }
.trajectory .t-legend {
  display: flex; gap: 1.4rem; margin-top: 1.1rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.82rem; color: #b9cec4;
}
.trajectory .t-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.trajectory .t-legend i { width: 20px; height: 0; border-top: 2px solid; display: inline-block; }
.trajectory .t-cap {
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem; letter-spacing: 0.05em; line-height: 1.6;
  color: #6f9184;
}

/* animate the rising path on load */
.t-rise {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw 1.9s var(--ease) 0.25s forwards;
}
.t-node { opacity: 0; animation: pop 0.5s var(--ease) 1.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; } }

/* ==========================================================================
   Section frame
   ========================================================================== */
section { position: relative; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--mist { background: var(--mist); }
.section--spruce { background: var(--spruce); color: #cfe0d6; }
.section--spruce h2, .section--spruce h3 { color: #fff; }

.sec-head { max-width: 44rem; margin-bottom: 2.6rem; }
.sec-head .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}
.sec-head p { font-size: 1.16rem; color: var(--ink-soft); margin: 0; max-width: 40rem; }
.section--spruce .sec-head p { color: #a8c2b7; }
.section--spruce .label { color: #7fa596; }

/* --- divider: rising line --- */
.rule {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.4rem, 3.5vw, 2.2rem) 0;
}
.rule svg { width: 220px; height: 26px; color: var(--line); }

/* ==========================================================================
   Contents / pillar cards
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px rgba(20,35,30,0.35); border-color: var(--green-wash); }
.card .c-folio {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.1em; color: var(--coral-2);
  margin-bottom: 1.15rem;
}
.card h3 { font-size: 1.32rem; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.card p { font-size: 1rem; color: var(--ink-soft); margin: 0 0 1.25rem; line-height: 1.55; }
.card .c-go {
  margin-top: auto;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600; font-size: 0.92rem; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.card .c-go svg { width: 22px; height: 8px; transition: transform 0.3s var(--ease); }
.card:hover .c-go svg { transform: translateX(4px); }

/* feature card (spans wide) */
.card--feature { grid-column: 1 / -1; background: var(--spruce); border-color: var(--line-dark); }
.card--feature h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.card--feature p { color: #a8c2b7; font-size: 1.1rem; max-width: 42rem; }
.card--feature .c-folio { color: var(--coral); }
.card--feature .c-go { color: var(--green-brt); }

/* ==========================================================================
   Stat / value strip (no fabricated numbers - qualitative statements)
   ========================================================================== */
.tenets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tenet { padding: 1.4rem 0; border-top: 2px solid var(--spruce); }
.tenet h4 { font-size: 1.16rem; margin-bottom: 0.5rem; }
.tenet p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.section--spruce .tenet { border-top-color: var(--green-brt); }
.section--spruce .tenet p { color: #a8c2b7; }

/* ==========================================================================
   Provider module
   ========================================================================== */
.provider { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.provider .p-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  box-shadow: 0 30px 60px -40px rgba(20,35,30,0.4);
}
.p-body { padding: clamp(1.8rem, 4vw, 2.8rem); }
.p-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--coral-soft);
  color: var(--coral-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.34rem 0.7rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.p-body h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.8rem; letter-spacing: -0.025em; }
.p-body p { color: var(--ink-soft); font-size: 1.04rem; margin: 0 0 1rem; }
.p-body .areas { font-size: 0.96rem; }
.p-body .areas strong { color: var(--ink); }
.p-feat { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.5rem; }
.p-feat span {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.82rem; font-weight: 500; color: var(--green-deep);
  background: var(--mist); border: 1px solid var(--mist-2);
  padding: 0.35rem 0.75rem; border-radius: 100px;
}
.p-disclosure {
  font-size: 0.86rem !important; color: var(--ink-faint) !important;
  border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 1.4rem !important;
  line-height: 1.55; font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}
.p-side {
  background: linear-gradient(160deg, var(--spruce) 0%, var(--green-deep) 130%);
  color: #cfe0d6;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.p-side .p-emblem { width: 46px; height: 46px; margin-bottom: 1.3rem; }
.p-side h4 { color: #fff; font-size: 1.15rem; margin-bottom: 0.4rem; }
.p-side ul { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.p-side li {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.95rem; color: #bcd2c8;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; gap: 0.6rem;
}
.p-side li svg { width: 16px; height: 16px; color: var(--green-brt); flex: none; }
.p-side .btn--coral { align-self: flex-start; }

/* ==========================================================================
   Article layout
   ========================================================================== */
.article-hero { padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(1.6rem, 4vw, 2.4rem); }
.breadcrumb {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--green); }
.article-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.035em; max-width: 20ch; margin-bottom: 1.1rem;
}
.article-hero .standfirst {
  font-size: 1.3rem; line-height: 1.5; color: var(--ink-soft); max-width: var(--measure);
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 1.6rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.04em; color: var(--ink-faint); align-items: center;
}
.article-meta .m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }

.article-body { max-width: var(--measure); margin: 0 auto; padding: clamp(1.5rem,4vw,2.5rem) 0 3rem; }
.article-body > * { margin-left: auto; margin-right: auto; }
.article-body p { margin: 0 0 1.35rem; }
.article-body h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem); margin: 2.8rem 0 1rem; letter-spacing: -0.025em;
  scroll-margin-top: 90px;
}
.article-body h3 { font-size: 1.3rem; margin: 2rem 0 0.7rem; }
.article-body a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--green-wash); }
.article-body a:hover { text-decoration-color: var(--green); }
.article-body ul, .article-body ol { margin: 0 0 1.5rem; padding-left: 1.3rem; }
.article-body li { margin-bottom: 0.6rem; }
.article-body li::marker { color: var(--coral-2); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body .lead-para { font-size: 1.2rem; color: var(--ink); line-height: 1.6; }

.pullquote {
  border: none; margin: 2.4rem auto; padding: 0 0 0 1.6rem;
  border-left: 3px solid var(--coral);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.5rem; line-height: 1.28; letter-spacing: -0.02em; color: var(--spruce); font-weight: 600;
}

.callout {
  background: var(--mist); border: 1px solid var(--mist-2);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; margin: 2.2rem auto;
}
.callout .label { color: var(--green-deep); margin-bottom: 0.6rem; display: block; }
.callout p { margin: 0; font-size: 1rem; color: var(--ink); }
.callout--coral { background: #fbeee8; border-color: var(--coral-soft); }
.callout--coral .label { color: var(--coral-2); }

.keypoints {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.7rem; margin: 2.2rem auto;
}
.keypoints .label { color: var(--green-deep); margin-bottom: 0.9rem; display: block; }
.keypoints ul { list-style: none; padding: 0; margin: 0; }
.keypoints li {
  padding: 0.55rem 0 0.55rem 1.8rem; position: relative;
  border-bottom: 1px solid var(--line-2); font-size: 1rem;
}
.keypoints li:last-child { border-bottom: none; }
.keypoints li::before {
  content: ""; position: absolute; left: 0; top: 0.95rem;
  width: 14px; height: 8px;
  border-left: 2px solid var(--coral); border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg); border-radius: 0 0 0 1px;
}

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */
.faq-list { max-width: var(--measure); margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600; font-size: 1.2rem; color: var(--spruce); letter-spacing: -0.015em;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-deep); }
.faq-item summary::after {
  content: ""; position: absolute; right: 4px; top: 1.7rem;
  width: 12px; height: 12px;
  border-right: 2px solid var(--coral); border-bottom: 2px solid var(--coral);
  transform: rotate(45deg); transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); top: 1.95rem; }
.faq-item .faq-a { padding: 0 2.5rem 1.5rem 0; }
.faq-item .faq-a p { margin: 0 0 0.9rem; color: var(--ink-soft); }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--spruce); color: #cfe0d6; padding: clamp(3rem, 7vw, 5rem) 0; text-align: center; }
.cta-band .emblem { width: 52px; height: 52px; margin: 0 auto 1.5rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.03em; margin-bottom: 1rem; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #a8c2b7; font-size: 1.16rem; max-width: 40rem; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--spruce); color: #9fb8ad; padding: clamp(2.8rem, 6vw, 4rem) 0 2rem; border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 2.5rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line-dark); }
.f-brand .brandmark { margin-bottom: 1rem; }
.f-brand .wordmark { color: #fff; }
.f-brand .wordmark .wm-line { color: var(--green-brt); }
.f-blurb { font-size: 1rem; color: #8ba79b; max-width: 30rem; line-height: 1.6; margin: 0; }
.f-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.f-col h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #6f9184; margin: 0 0 1rem; font-weight: 500;
}
.f-col a {
  display: block; font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.95rem; color: #bcd2c8; padding: 0.32rem 0; transition: color 0.2s var(--ease);
}
.f-col a:hover { color: #fff; }
.footer-bottom { padding-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: flex-start; }
.disclaimer { font-size: 0.82rem; color: #6f8a7f; max-width: 46rem; line-height: 1.6; margin: 0; font-family: 'Bricolage Grotesque', system-ui, sans-serif; }
.f-988 {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: #8ba79b;
  white-space: nowrap; letter-spacing: 0.03em;
}
.f-988 strong { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .trajectory { order: -1; }
  .provider .p-card { grid-template-columns: 1fr; }
  .p-side { order: -1; }
  .tenets { grid-template-columns: 1fr; gap: 0; }
  .tenet { border-top: none; border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
  .tenet:first-child { border-top: 2px solid var(--spruce); }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .f-cols { gap: 1.2rem; }

  /* mobile nav */
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 38px; background: var(--panel); border: 1px solid var(--line);
    border-radius: 10px; cursor: pointer; padding: 0; color: var(--spruce);
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--panel); flex-direction: column; align-items: flex-start;
    padding: 5rem 1.8rem 2rem; gap: 0.4rem; z-index: 60;
    transform: translateX(100%); transition: transform 0.36s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(20,35,30,0.4); border-left: 1px solid var(--line);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; padding: 0.5rem 0; width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 0.8rem; }
  .nav-backdrop {
    display: none; position: fixed; inset: 0; background: rgba(20,35,30,0.4);
    z-index: 55; opacity: 0; transition: opacity 0.3s var(--ease);
  }
  .nav-backdrop.show { display: block; opacity: 1; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 2.9rem); }
  .cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .p-feat span { font-size: 0.78rem; }
  .article-hero .standfirst { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .t-rise { stroke-dashoffset: 0; }
  .t-node { opacity: 1; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 3px;
}
