/* ==========================================================================
   Hold My Heart: global stylesheet
   Derived from Brand + Website Content Guide, Section 6 (Visual Identity)
   and Section 7 (Content and Image Standards).
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Core palette (guide 6) */
  --green:        #6CC24A;  /* logo, key actions, rules, restrained highlights */
  --green-ink:    #3D7A24;  /* darkened green ONLY for small text, keeps WCAG AA */
  --green-wash:   #EEF7E9;  /* very light green, used sparingly for emphasis blocks */
  --ink:          #111111;  /* headings, body copy, footer */
  --paper:        #FFFFFF;  /* main background */
  --soft:         #F3F5F1;  /* section backgrounds, cards */
  --muted:        #5A5A5A;  /* secondary copy and labels */
  --line:         #E2E5DF;  /* hairlines */

  /* Type */
  --font-display: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-body:    "Avenir Next", Aptos, "Segoe UI", "Montserrat", Arial, sans-serif;

  /* Type scale (guide 6: mobile min, desktop max) */
  --t-hero:  clamp(2.375rem, 1.35rem + 4.2vw, 4rem);    /* 38 -> 64 */
  --t-h1:    clamp(2.125rem, 1.45rem + 2.9vw, 3.25rem); /* 34 -> 52 */
  --t-h2:    clamp(1.625rem, 1.30rem + 1.4vw, 2.25rem); /* 26 -> 36 */
  --t-h3:    clamp(1.25rem,  1.13rem + 0.5vw, 1.625rem);/* 20 -> 26 */
  --t-eyebrow: 0.75rem;                                  /* 12 -> 13 */
  --t-lead:  clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);/* 18 -> 22 */
  --t-body:  clamp(1rem, 0.97rem + 0.15vw, 1.125rem);    /* 16 -> 18 */
  --t-small: 0.9375rem;                                  /* 15 */
  --t-btn:   clamp(0.9375rem, 0.90rem + 0.15vw, 1.0625rem);

  /* Space */
  --gap:      1.25rem;
  --shell:    72rem;   /* 1152px content shell */
  --shell-nar: 46rem;  /* reading measure for long-form text */
  --pad-x:    clamp(1.25rem, 4vw, 3rem);
  --sec-y:    clamp(3.5rem, 7vw, 7rem);
  --radius:   6px;     /* "rounded corners only subtly" */
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.015em; }
h1 { font-size: var(--t-h1); font-weight: 700; }
h2 { font-size: var(--t-h2); font-weight: 700; }
h3 { font-size: var(--t-h3); font-weight: 700; letter-spacing: -0.01em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--ink); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--green); }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--gap) 0; }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--green-ink);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Utilities ---------------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad-x); }
.shell--narrow { max-width: var(--shell-nar); }
.lead { font-size: var(--t-lead); line-height: 1.5; }
.small { font-size: var(--t-small); color: var(--muted); }
.visually-hidden {
  position: absolute; 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: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius); font-weight: 700; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

/* Eyebrow: the "hold rule". Signature device: a short green bar that marks
   every section opening, echoing the crossbar of the logo mark. */
.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: var(--t-eyebrow); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-ink);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; display: block; width: 2rem; height: 3px;
  background: var(--green); flex: none;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--t-btn); font-weight: 700; line-height: 1.2;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--primary { background: var(--green); border-color: var(--green); color: var(--ink); }
.btn--primary:hover { background: #5BB03A; border-color: #5BB03A; }
.btn--secondary { background: transparent; color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: #fff; }
.btn--onink { background: transparent; border-color: #fff; color: #fff; }
.btn--onink:hover { background: #fff; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.quiet-link {
  display: inline-block; margin-top: 1.25rem;
  font-size: var(--t-small); color: var(--muted);
}
.quiet-link a { color: var(--muted); }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(6px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap);
  min-height: 4.75rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand img { width: 78px; height: auto; }
.brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.375rem; letter-spacing: -0.015em; line-height: 1.1;
}
.brand__tag {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.nav__list a:hover { border-bottom-color: var(--green); }
.nav__list a[aria-current="page"] { border-bottom-color: var(--green); }
.nav .btn { padding: 0.7rem 1.15rem; }

.nav-toggle {
  display: none; align-items: center; gap: 0.5rem;
  background: none; border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 0.55rem 0.85rem; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
  color: var(--ink);
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-x) 1.5rem;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav__list a:hover, .nav__list a[aria-current="page"] { border-bottom-color: var(--green); }
  .nav .btn { margin-top: 1rem; width: 100%; }
}

/* --- Sections ----------------------------------------------------------- */
.band { padding-block: var(--sec-y); }
.band--soft { background: var(--soft); }
.band--ink { background: var(--ink); color: #fff; }
.band--ink h2, .band--ink h3 { color: #fff; }
.band--ink .eyebrow { color: var(--green); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.band + .band--soft, .band--soft + .band { border-top: 0; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); }
.band--ink .section-head p { color: #D9DDD6; }

/* --- Hero --------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 7vw, 6.5rem) clamp(3rem, 6vw, 5.5rem); }
.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__title { font-size: var(--t-hero); font-weight: 700; margin-bottom: 1rem; }
.hero__body { font-size: var(--t-lead); line-height: 1.5; max-width: 34em; }

/* Page hero for interior pages */
.page-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 18em; }
.page-hero .lead { max-width: 40em; color: var(--muted); }

/* --- Image placeholders -------------------------------------------------
   No photography has been approved yet. These frames hold the exact crop the
   guide calls for; replace the <div> with an <img> plus real alt text.
   ------------------------------------------------------------------------ */
.photo {
  position: relative; background: var(--soft);
  border: 1px dashed #C7CFC1; border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; min-height: 18rem;
}
.photo--tall { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo__note {
  font-size: 0.8125rem; line-height: 1.5; color: var(--muted);
  font-family: var(--font-display); font-weight: 600;
}
.photo__note strong { display: block; color: var(--ink); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }

/* Real photography */
.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%; height: auto; border-radius: var(--radius);
  aspect-ratio: 4 / 5; object-fit: cover;
}

/* --- Cards -------------------------------------------------------------- */
.cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 780px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  border-top: 3px solid var(--green);
}
.band--soft .card { background: var(--paper); }
.card h3 { font-size: 1.0625rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 1rem; margin-bottom: 1.25rem; }
.card__link {
  margin-top: auto; font-family: var(--font-display); font-weight: 700;
  font-size: 0.9375rem; text-decoration: none;
  border-bottom: 2px solid var(--green); align-self: flex-start; padding-bottom: 2px;
}
.card__link:hover { border-bottom-color: var(--ink); }

/* Ways-to-help list (no link, plain descriptive blocks) */
.stack-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
@media (min-width: 780px) { .stack-list--2 { grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; } }
.stack-list h3 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.stack-list p { color: var(--muted); margin: 0; }
.stack-list li { border-left: 3px solid var(--green); padding-left: 1.15rem; margin: 0; }
.band--ink .stack-list p { color: #D9DDD6; }
.stack-list--spaced { margin-top: clamp(2rem, 4vw, 2.75rem); }

/* --- Numbered process --------------------------------------------------- */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.steps li { counter-increment: step; margin: 0; padding-top: 1.25rem; border-top: 3px solid var(--green); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.1em; color: var(--green-ink); margin-bottom: 0.5rem;
}
.steps p { margin: 0; }

/* Emphasis line under the steps */
.proof-line {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 1.5rem;
  padding: 1.25rem 1.5rem; background: var(--green-wash); border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: var(--t-lead);
}
.proof-line span { font-family: var(--font-body); font-weight: 400; font-size: var(--t-body); color: var(--muted); }

/* --- Pull statement ----------------------------------------------------- */
.statement { max-width: 44rem; }
.statement p { font-size: var(--t-lead); line-height: 1.5; }

/* --- Closing CTA -------------------------------------------------------- */
.closing { text-align: left; }
.closing h2 { max-width: 16em; }
.closing p { max-width: 40em; color: #D9DDD6; font-size: var(--t-lead); }

/* --- Contact / forms ---------------------------------------------------- */
.form-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 940px) { .form-grid { grid-template-columns: 1.15fr 0.85fr; } }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.field .hint { display: block; font-weight: 400; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: 0.875rem; color: var(--muted); margin-top: 0.2rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper);
  padding: 0.8rem 0.9rem;
  border: 2px solid #C7CFC1; border-radius: var(--radius);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-ink); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #A32020; }
.field-error { display: none; color: #A32020; font-size: 0.875rem; font-weight: 700; margin-top: 0.35rem; }
.field-error.is-shown { display: block; }

.form-note { font-size: var(--t-small); color: var(--muted); margin-top: 1rem; max-width: 40em; }
.form-status {
  margin-top: 1.25rem; padding: 1rem 1.15rem; border-radius: var(--radius);
  background: var(--soft); border-left: 3px solid var(--muted);
  font-size: var(--t-small);
}
.form-status[hidden] { display: none; }
.form-status--ok      { background: var(--green-wash); border-left-color: var(--green); }
.form-status--pending { background: var(--soft);       border-left-color: var(--muted); }
.form-status--error   { background: #FCEDED;           border-left-color: #A32020; }

/* Honeypot: visually and audibly hidden, still fillable by bots */
.field--trap {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0;
}

button[disabled] { opacity: 0.6; cursor: progress; }

.contact-aside { align-self: start; }
.contact-aside .draft-note { margin: 2rem 0 0; }
.contact-aside dl { margin: 0; }
.contact-aside dt {
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  margin-top: 1.5rem;
}
.contact-aside dt:first-child { margin-top: 0; }
.contact-aside dd { margin: 0.25rem 0 0; font-size: var(--t-body); }

/* Routing list on contact page */
.routes { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .routes { grid-template-columns: repeat(2, 1fr); } }
.routes li { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.35rem; background: var(--paper); }
.routes h3 { font-size: 0.9375rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; }
.routes p { margin: 0 0 0.9rem; color: var(--muted); font-size: 1rem; }
.routes button {
  font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
  background: none; border: 0; border-bottom: 2px solid var(--green);
  padding: 0 0 2px; cursor: pointer; color: var(--ink);
}
.routes button:hover { border-bottom-color: var(--ink); }

/* --- Legal / long form -------------------------------------------------- */
.legal-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 940px) { .legal-layout { grid-template-columns: 16rem 1fr; align-items: start; } }
.legal-toc { position: sticky; top: 6.5rem; }
.legal-toc h2 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.legal-toc ul { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
.legal-toc li { margin: 0; }
.legal-toc a { display: block; padding: 0.5rem 0 0.5rem 1rem; margin-left: -1px; border-left: 2px solid transparent; text-decoration: none; font-size: 0.9375rem; }
.legal-toc a:hover { border-left-color: var(--green); }
@media (max-width: 939px) { .legal-toc { position: static; } }

.legal-doc > section { padding-bottom: clamp(2.5rem, 5vw, 4rem); margin-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.legal-doc > section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.legal-doc h2 { font-size: var(--t-h2); margin-bottom: 0.75rem; }
.legal-doc h3 { font-size: 1.125rem; margin-top: 2rem; }
.legal-doc p, .legal-doc li { max-width: 44em; }

/* Draft / placeholder callout, must be removed before launch */
.draft-note {
  background: #FFF8E1; border: 1px solid #E6D08A; border-left: 4px solid #C99700;
  border-radius: var(--radius); padding: 1rem 1.25rem; margin: 0 0 2rem;
  font-size: var(--t-small); line-height: 1.6;
}
.draft-note strong { display: block; font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.35rem; }
mark.tbd { background: #FFF0B3; color: var(--ink); padding: 0 0.25em; font-weight: 700; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #D9DDD6; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: #fff; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer__logo { width: 190px; margin-bottom: 1.25rem; }
.footer__statement { max-width: 34em; font-size: var(--t-small); line-height: 1.7; }
.footer__tag { color: var(--green); font-family: var(--font-display); font-weight: 700; margin-top: 0.75rem; display: block; }
.footer h2 {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #9AA394; margin-bottom: 0.9rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 0.6rem; }
.footer__list a { text-decoration: none; }
.footer__list a:hover { text-decoration: underline; text-decoration-color: var(--green); }
.footer__bar {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #2C2C2C;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.8125rem; color: #9AA394;
}
.footer__bar a { color: #9AA394; }

/* ==========================================================================
   HOMEPAGE: THE LETTER LAYOUT
   One centred column with a narrow measure, paced like correspondence rather
   than a brochure of modules. Palette and type stack above are unchanged.
   ========================================================================== */

/* --- Scroll reveal ------------------------------------------------------
   Elements settle into place as they enter the viewport. No storage, no
   dependency, and switched off entirely for reduced motion.
   ------------------------------------------------------------------------ */
.rise { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.rise.is-in { opacity: 1; transform: none; }
.lt-hero .rise:nth-child(1) { transition-delay: 0.05s; }
.lt-hero .rise:nth-child(2) { transition-delay: 0.14s; }
.lt-hero .rise:nth-child(3) { transition-delay: 0.23s; }
.lt-hero .rise:nth-child(4) { transition-delay: 0.32s; }
.lt-hero .rise:nth-child(5) { transition-delay: 0.39s; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  .lt-hero .rise { transition-delay: 0s; }
}

/* --- Hero ---------------------------------------------------------------- */
.lt-hero { text-align: center; padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem); }
.lt-hero .eyebrow { justify-content: center; }
.lt-hero h1 { font-size: clamp(2.125rem, 1.2rem + 3.6vw, 3.25rem); max-width: 15em; margin-inline: auto; }
.lt-hero .lead { max-width: 34em; margin-inline: auto; color: var(--muted); }
.lt-hero .btn-row { justify-content: center; }
.lt-hero .quiet-link { display: block; }

/* --- Section marker -----------------------------------------------------
   The green bar from the logo crossbar, standing alone. Same device as the
   eyebrow rule elsewhere on the site, used without a label.
   ------------------------------------------------------------------------ */
.lt-rule { display: block; width: 2.5rem; height: 3px; background: var(--green); margin: 0 0 clamp(1.5rem, 3vw, 2rem); }
.lt-passage--centre .lt-rule { margin-inline: auto; }

/* --- Passages ------------------------------------------------------------ */
.lt-passage p { font-size: clamp(1.125rem, 1.02rem + 0.5vw, 1.375rem); line-height: 1.65; }
.lt-passage--centre { max-width: 36rem; margin-inline: auto; text-align: center; }

/* --- Photograph paired with the first passage ---------------------------
   Source is 980 x 1232, a portrait macro. Shown below native size so it is
   sharp rather than enlarged, and placed beside the idea it supports rather
   than across the top of the page.
   ------------------------------------------------------------------------ */
.lt-pair { display: grid; gap: clamp(1.75rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: center; max-width: 58rem; margin-inline: auto; }
@media (min-width: 820px) { .lt-pair { grid-template-columns: 22rem 1fr; } }
.lt-figure { margin: 0; }
.lt-figure img { width: 100%; height: auto; border-radius: var(--radius); }
.lt-figure figcaption { font-size: var(--t-small); color: var(--muted); margin-top: 0.9rem; }

/* --- Founder letter ------------------------------------------------------ */
.lt-letter { max-width: 38rem; margin-inline: auto; }
.lt-letter p { margin-bottom: 1.4em; }
.lt-letter p:first-of-type { font-size: 1.25rem; line-height: 1.6; }
.lt-sign { margin-top: 2.25rem; padding-top: 1.5rem; border-top: 3px solid var(--green); display: inline-block; }
.lt-sign strong { display: block; font-family: var(--font-display); font-size: 1.125rem; }
.lt-sign span { font-size: var(--t-small); color: var(--muted); }

/* --- Process as a vertical timeline -------------------------------------
   Slower to read than a row of four, which is the point: it is a sequence a
   grieving person actually walks, not a feature grid.
   ------------------------------------------------------------------------ */
.lt-steps { list-style: none; margin: 0 auto; padding: 0; max-width: 40rem; counter-reset: s; }
.lt-steps li { counter-increment: s; margin: 0 0 0 0.9rem; padding: 0 0 2.25rem 3.75rem; position: relative; border-left: 1px solid var(--line); }
.lt-steps li:last-child { padding-bottom: 0; border-left-color: transparent; }
.lt-steps li::before {
  content: counter(s); position: absolute; left: -0.9rem; top: -0.15rem;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: var(--green); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem;
  display: flex; align-items: center; justify-content: center;
}
.lt-steps h3 { font-size: 1.125rem; margin-bottom: 0.35rem; }
.lt-steps p { color: var(--muted); margin: 0; }
.lt-note { max-width: 40rem; margin: 2.5rem auto 0; padding-left: 4.65rem; font-size: var(--t-small); color: var(--muted); }
@media (max-width: 560px) { .lt-steps li { padding-left: 2.75rem; } .lt-note { padding-left: 3.65rem; } }

/* --- One line alone on a screen ------------------------------------------ */
.lt-promise { text-align: center; padding-block: clamp(4rem, 10vw, 8rem); }
.lt-promise p {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em;
  font-size: clamp(1.625rem, 0.9rem + 3vw, 2.75rem); line-height: 1.3;
  max-width: 20em; margin-inline: auto;
}

/* --- Action paths as rows, not a grid of boxes --------------------------- */
.lt-paths { list-style: none; margin: 0 auto; padding: 0; max-width: 44rem; border-top: 1px solid var(--line); }
.lt-paths li { margin: 0; border-bottom: 1px solid var(--line); }
.lt-paths a {
  display: grid; gap: 0.25rem 1.5rem; grid-template-columns: 1fr auto; align-items: center;
  padding: 1.6rem 0.5rem 1.6rem 0; text-decoration: none; transition: padding .2s ease;
}
.lt-paths a:hover { padding-left: 0.75rem; padding-right: 0.25rem; }
.lt-paths h3 { grid-column: 1; margin: 0 0 0.15rem; font-size: 1.1875rem; }
.lt-paths p { grid-column: 1; margin: 0; color: var(--muted); font-size: 1rem; }
.lt-paths svg { grid-column: 2; grid-row: 1 / 3; width: 22px; height: 22px; color: var(--green-ink); flex: none; }
@media (prefers-reduced-motion: reduce) { .lt-paths a { transition: none; } }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 44rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.5rem; top: 1.7rem;
  width: 11px; height: 11px; border-right: 3px solid var(--green); border-bottom: 3px solid var(--green);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.95rem; }
.faq details p { color: var(--muted); margin: 0 0 1.35rem; }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

/* ==========================================================================
   FOOTER BRAND
   The supplied lockup is a flat file with a white background and black
   wordmark, so it cannot sit on the dark footer. Until a reversed master
   asset exists, the footer pairs the knocked-out mark with the wordmark set
   in Montserrat, which is the same arrangement the header already uses.
   The mark itself is not recoloured or redrawn.
   ========================================================================== */
.footer__brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; margin-bottom: 1.35rem; }
.footer__brand img { width: 86px; height: auto; }
.footer__brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4375rem;
  line-height: 1.1; color: #fff;
}
.footer__brand-name span {
  display: block; margin-top: 5px;
  font-family: var(--font-body); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
}
.footer__brand:hover .footer__brand-name span { color: #fff; }

/* Narrow phones: keep the header lockup on two lines rather than three */
@media (max-width: 430px) {
  .brand img { width: 60px; height: auto; }
  .brand__name { font-size: 0.9375rem; }
  .brand__tag { font-size: 0.625rem; letter-spacing: 0.05em; }
  .site-header__inner { min-height: 4rem; }
}

/* --- State charitable solicitation disclosure ---------------------------
   Required on the giving page: donors must be able to see which states
   Hold My Heart is currently able to accept contributions from.
   ------------------------------------------------------------------------ */
.states {
  display: grid; gap: 1.25rem 2.5rem; grid-template-columns: 1fr;
  margin: 1.75rem 0; padding: 1.5rem 1.6rem;
  background: var(--soft); border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
@media (min-width: 760px) { .states { grid-template-columns: repeat(2, 1fr); } }
.states h3 {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.6rem;
}
.states ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 1.5rem; font-size: var(--t-small); }
.states li { margin-bottom: 0.3rem; break-inside: avoid; }
.states__note { grid-column: 1 / -1; margin: 0; font-size: var(--t-small); color: var(--muted); }
.states__note strong { font-family: var(--font-display); }

/* Short lists read better in a single column */
.states__short ul { columns: 1; }

/* --- Homepage hero brand lockup -----------------------------------------
   The mark and the organization name lead the page. The tagline sits under
   the name and is deliberately subordinate: in the supplied logo artwork the
   name is 1.83 times the tagline, and nothing here goes below that ratio.
   ------------------------------------------------------------------------ */
.lt-brand { margin: 0 0 clamp(1.5rem, 3vw, 2.25rem); }
.lt-brand img {
  width: clamp(112px, 13vw, 148px); height: auto;
  margin: 0 auto clamp(0.9rem, 2vw, 1.15rem);
}
.lt-brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.875rem, 1.1rem + 2.6vw, 2.75rem);
  letter-spacing: -0.02em; line-height: 1.05;
  margin: 0 0 0.55rem;
}
.lt-brand__tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-ink); margin: 0;
}
@media (max-width: 480px) { .lt-brand__tag { font-size: 0.8125rem; letter-spacing: 0.1em; } }
