/* ============================================================
   Pathways For All People — design system
   "One continuous line that becomes a heart."
   Palette (locked): amber #eda444 · orange #f1642b · indigo #3b3a64
                     cream #fcf7f6 · mint #daf2e6 · ink #09202c
   Type: Gentium Book Plus (display serif) + Inter (UI/body)
   ============================================================ */

:root {
  --amber: #eda444;
  --amber-deep: #d98a1f;
  --orange: #f1642b;
  --indigo: #3b3a64;
  --ink: #09202c;
  --cream: #fcf7f6;
  --mint: #daf2e6;
  --white: #ffffff;

  --amber-12: rgba(237, 164, 68, .12);
  --amber-22: rgba(237, 164, 68, .22);
  --indigo-08: rgba(59, 58, 100, .08);
  --indigo-14: rgba(59, 58, 100, .14);
  --indigo-55: rgba(59, 58, 100, .55);
  --mint-45: rgba(218, 242, 230, .45);

  --serif: "Gentium Book Plus", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --w-wide: 76rem;
  --w-text: 46rem;

  --shadow-soft: 0 1px 2px rgba(9, 32, 44, .05), 0 12px 32px -12px rgba(59, 58, 100, .18);
  --shadow-lift: 0 2px 4px rgba(9, 32, 44, .06), 0 24px 48px -16px rgba(59, 58, 100, .28);
  --radius: 18px;
  --ease: cubic-bezier(.22, .8, .32, 1);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--indigo);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo); text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--amber-deep); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; color: var(--indigo); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1.15em; }
em.hl { font-family: var(--serif); font-style: italic; color: var(--amber-deep); }
strong { color: inherit; }
::selection { background: var(--amber-22); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--indigo); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* subtle paper grain over everything */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.93 0 0 0 0 0.9 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(var(--w-wide), 92vw); margin-inline: auto; position: relative; }
.wrap-text { width: min(var(--w-text), 92vw); margin-inline: auto; }

/* ---------- eyebrow + hand-drawn underline ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 2.2rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}
.u-hand {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10 C 40 4, 90 3, 130 7 S 200 12, 217 6' fill='none' stroke='%23eda444' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 0 100%; background-size: 100% .42em;
  padding-bottom: .18em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font: 600 1rem/1 var(--sans);
  padding: 1rem 1.7rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-solid { background: var(--amber); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(237, 164, 68, .65); }
.btn-solid:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(217, 138, 31, .55); }
.btn-outline { border-color: var(--indigo-14); color: var(--indigo); background: transparent; }
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn-ghost-dark { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-dark:hover { border-color: var(--amber); color: var(--amber); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px;
}
.btn:focus-visible { border-radius: 999px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--indigo-08);
}
/* blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed-position mobile menu */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(252, 247, 246, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; gap: 1.6rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; margin-right: auto; }
.brand img { width: 62px; height: 62px; border-radius: 14px; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; line-height: 1.05; color: var(--indigo); display: block; }
.brand-tag { font-size: .84rem; letter-spacing: .04em; color: var(--indigo-55); display: block; margin-top: .2rem; font-style: italic; font-family: var(--serif); }

.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav > ul { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.site-nav a.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .65rem .85rem; border-radius: 10px;
  font: 500 .95rem/1 var(--sans); color: var(--indigo); text-decoration: none;
  transition: background .2s, color .2s;
}
.site-nav a.nav-link:hover { background: var(--amber-12); color: var(--indigo); }
.site-nav a.nav-link.is-active { color: var(--amber-deep); font-weight: 600; }
.site-nav a.nav-link.is-active::after { content: ""; }
.nav-caret { width: .6rem; height: .6rem; opacity: .5; }

.has-menu { position: relative; }
.submenu {
  position: absolute; top: calc(100% + .4rem); left: 0; min-width: 17rem;
  background: #fff; border: 1px solid var(--indigo-08); border-radius: 14px;
  box-shadow: var(--shadow-lift); padding: .5rem; margin: 0; list-style: none;
  opacity: 0; transform: translateY(8px); visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu {
  opacity: 1; transform: none; visibility: visible;
}
.submenu a {
  display: block; padding: .6rem .8rem; border-radius: 9px;
  font: 500 .92rem/1.35 var(--sans); color: var(--indigo); text-decoration: none;
}
.submenu a:hover { background: var(--amber-12); color: var(--amber-deep); }
.submenu .submenu-lead { font-weight: 600; border-bottom: 1px dashed var(--indigo-14); border-radius: 9px 9px 0 0; margin-bottom: .3rem; }

.nav-donate { margin-left: .6rem; padding: .78rem 1.35rem; }

.nav-toggle {
  display: none; background: none; border: 0; padding: .6rem; cursor: pointer; margin-left: auto;
}
.nav-toggle svg { width: 1.7rem; height: 1.7rem; stroke: var(--indigo); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0; top: 4.6rem; z-index: 90;
    background: var(--cream); flex-direction: column; align-items: stretch;
    padding: 1.5rem 5vw 3rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .3s var(--ease);
  }
  .site-nav.open { transform: none; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .site-nav a.nav-link { padding: .9rem .6rem; font-size: 1.1rem; border-bottom: 1px solid var(--indigo-08); border-radius: 0; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: 0 0 0 1rem;
  }
  .submenu a { font-size: 1rem; padding: .7rem .6rem; }
  .nav-donate { margin: 1.2rem 0 0; justify-content: center; }
}
@media (max-width: 480px) {
  .brand img { width: 52px; height: 52px; }
  .brand-name { font-size: 1.22rem; }
  .brand-tag { font-size: .74rem; }
}

/* ============================================================
   HERO (shared bones; per-page variants)
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-home { padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .82rem; font-weight: 600; color: var(--indigo-55);
  background: #fff; border: 1px solid var(--indigo-08); border-radius: 999px;
  padding: .45rem 1rem; margin-bottom: 1.6rem; box-shadow: var(--shadow-soft);
}
.hero-kicker .dot { width: .45rem; height: .45rem; border-radius: 50%; background: var(--amber); }
.hero h1 { margin-bottom: .35em; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--indigo); max-width: 34em; opacity: .88; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-note { margin-top: 1.4rem; font-size: .88rem; color: var(--indigo-55); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { width: 1rem; height: 1rem; flex: none; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; }

/* framed portrait photo (founder) */
.portrait {
  position: relative; margin: 0 auto; max-width: 21rem;
  background: #fff; padding: .7rem .7rem 0; border-radius: 20px;
  border: 1px solid var(--indigo-08); box-shadow: var(--shadow-lift);
  transform: rotate(-1.5deg);
}
.portrait img { border-radius: 14px; width: 100%; height: auto; display: block; }
.portrait figcaption {
  font: italic 400 1.02rem/1.4 var(--serif); color: var(--indigo);
  text-align: center; padding: .85rem .5rem 1rem;
}
.portrait-heart {
  position: absolute; top: -.9rem; right: -.9rem; width: 2.9rem; height: 2.9rem;
  background: var(--amber); border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(217, 138, 31, .6); border: 3px solid var(--cream);
}
.portrait-heart svg { width: 1.4rem; height: 1.4rem; }
.hero-tint-ink .portrait figcaption { color: var(--indigo); }

/* interior page hero */
.hero-page { padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(2.2rem, 4vw, 3.4rem); }
.hero-page .crumb { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo-55); margin-bottom: 1rem; }
.hero-page .crumb a { color: var(--amber-deep); text-decoration: none; }
.hero-page .crumb a:hover { text-decoration: underline; }
.hero-page-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .hero-page-grid { grid-template-columns: 1fr; } .hero-page-grid .hero-art { max-width: 26rem; } }
.hero-page .lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); opacity: .88; max-width: 36em; }

/* tinted hero panels */
.hero-tint-mint { background: linear-gradient(180deg, var(--mint-45), rgba(218,242,230,0) 78%); }
.hero-tint-amber { background: linear-gradient(180deg, rgba(237,164,68,.14), rgba(237,164,68,0) 78%); }
.hero-tint-ink { background: linear-gradient(160deg, var(--ink), var(--indigo) 130%); }
.hero-tint-ink h1, .hero-tint-ink .lede, .hero-tint-ink .crumb { color: #fff; }
.hero-tint-ink .crumb a { color: var(--amber); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3rem, 7vw, 5.6rem) 0; position: relative; }
.section-tight { padding: clamp(2.2rem, 5vw, 3.6rem) 0; }
.section-head { max-width: 44rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head p { opacity: .85; }
.on-mint { background: var(--mint-45); }
.on-white { background: #fff; }
.on-ink { background: linear-gradient(175deg, var(--indigo), var(--ink) 140%); color: rgba(255,255,255,.85); }
.on-ink h2, .on-ink h3 { color: #fff; }
.on-ink .eyebrow { color: var(--amber); }

/* wavy divider between sections */
.divider { display: block; width: 100%; height: 34px; color: var(--cream); }
.divider.flip { transform: scaleY(-1); }

/* ---------- prose (long-form pages) ---------- */
.prose { max-width: var(--w-text); }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--amber-deep); }

/* ---------- stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.6rem .8rem; border-radius: var(--radius); }
.stat b { display: block; font: 400 clamp(2.2rem, 4vw, 3.2rem)/1 var(--serif); color: var(--amber); margin-bottom: .35rem; }
.stat span { font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; opacity: .75; }

/* ---------- stepping-stone service cards ---------- */
.stones { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem clamp(1.4rem, 4vw, 4rem); counter-reset: stone; }
@media (max-width: 780px) { .stones { grid-template-columns: 1fr; } }
.stone {
  counter-increment: stone;
  position: relative; background: #fff; border: 1px solid var(--indigo-08);
  border-radius: var(--radius); padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft); text-decoration: none; display: block;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.stone:nth-child(even) { transform: translateY(clamp(0px, 2vw, 22px)); }
.stone:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--amber-22); }
.stone:nth-child(even):hover { transform: translateY(calc(clamp(0px, 2vw, 22px) - 6px)); }
.stone::after {
  content: "0" counter(stone);
  position: absolute; top: 1.4rem; right: 1.6rem;
  font: italic 400 1.05rem/1 var(--serif); color: var(--amber-deep); opacity: .55;
}
.stone .icon {
  width: 3.4rem; height: 3.4rem; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--amber-12);
}
.stone .icon svg { width: 1.9rem; height: 1.9rem; stroke: var(--amber-deep); }
.stone h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.stone p { font-size: .95rem; opacity: .82; margin-bottom: .9rem; }
.stone .more { font: 600 .9rem/1 var(--sans); color: var(--amber-deep); display: inline-flex; align-items: center; gap: .4rem; }
.stone .more svg { width: .95rem; height: .95rem; transition: transform .25s var(--ease); }
.stone:hover .more svg { transform: translateX(4px); }

/* ---------- quote band ---------- */
.quote-band { position: relative; }
.quote-band blockquote {
  margin: 0; font: italic 400 clamp(1.5rem, 3vw, 2.3rem)/1.4 var(--serif);
  color: var(--indigo); max-width: 30em;
}
.quote-band blockquote::before {
  content: "\201C"; display: block; font: 400 6rem/0.6 var(--serif);
  color: var(--amber); margin-bottom: .2em;
}
.quote-band cite { display: block; margin-top: 1.4rem; font: 600 .92rem/1.4 var(--sans); font-style: normal; color: var(--indigo-55); }

/* ---------- value chips ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.1rem; }
.value-card {
  background: #fff; border: 1px solid var(--indigo-08); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem; box-shadow: var(--shadow-soft);
}
.value-card h3 { font-size: 1.18rem; display: flex; gap: .6rem; align-items: baseline; }
.value-card h3::before { content: "\2740"; color: var(--amber); font-size: 1rem; }
.value-card p { font-size: .93rem; opacity: .82; margin: 0; }

/* ---------- article/blog cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--indigo-08); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); text-decoration: none; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card .card-art { aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; }
.card .card-art svg { width: 100%; height: 100%; }
.card .card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-art img { transform: scale(1.04); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-cat { font: 600 .72rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--amber-deep); }
.card h3 { font-size: 1.3rem; margin: 0; }
.card p { font-size: .92rem; opacity: .8; margin: 0; }
.card .more { margin-top: auto; padding-top: .8rem; font: 600 .88rem/1 var(--sans); color: var(--amber-deep); }

/* ---------- CTA band (the heart) ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative; background: linear-gradient(140deg, var(--indigo), var(--ink) 120%);
  border-radius: calc(var(--radius) * 1.6); padding: clamp(2.4rem, 6vw, 4.4rem);
  color: rgba(255,255,255,.88); overflow: hidden;
}
.cta-inner h2 { color: #fff; max-width: 15em; }
.cta-inner .heart-line { position: absolute; right: clamp(1.5rem, 5%, 4rem); top: 50%; transform: translateY(-50%); width: clamp(13rem, 24vw, 21rem); opacity: .9; pointer-events: none; }
.cta-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; max-width: 44rem; }
@media (max-width: 1100px) { .cta-inner .heart-line { display: none; } }
@media (max-width: 720px) { .cta-choices { grid-template-columns: 1fr; } }
.cta-choice {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: rgba(255,255,255,.85);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.cta-choice:hover { background: rgba(237,164,68,.14); border-color: var(--amber); transform: translateY(-3px); color: #fff; }
.cta-choice b { display: block; font: 400 1.45rem/1.2 var(--serif); color: #fff; margin-bottom: .3rem; }
.cta-choice span { font-size: .92rem; }
.cta-contact { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.6rem; font-weight: 600; }
.cta-contact a { color: var(--amber); text-decoration: none; display: inline-flex; gap: .5rem; align-items: center; }
.cta-contact a:hover { color: #fff; }
.cta-contact svg { width: 1.1rem; height: 1.1rem; }

/* ---------- sponsor paving stones ---------- */
.gratitude { position: relative; }
.gratitude .thread-flat {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.pavers {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 1.2rem; align-items: stretch;
}
.paver {
  background: #fff; border: 1px solid var(--indigo-08); border-radius: 16px;
  padding: 1.1rem 1rem .9rem; text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: .7rem; justify-content: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
/* gently askew, like stones laid by hand — straighten on hover */
.paver:nth-child(3n+1) { transform: rotate(-1.6deg); }
.paver:nth-child(3n+2) { transform: rotate(1.2deg) translateY(6px); }
.paver:nth-child(4n+3) { transform: rotate(-0.8deg) translateY(-4px); }
.paver:hover, .paver:focus-visible {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-lift); border-color: var(--amber-22);
}
.paver.lit {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-22), var(--shadow-lift);
}
.paver .logo-well {
  height: 4.6rem; display: grid; place-items: center;
}
.paver img { max-height: 4.6rem; max-width: 100%; width: auto; object-fit: contain; }
.paver figcaption {
  font: 600 .78rem/1.35 var(--sans); letter-spacing: .02em; color: var(--indigo);
  opacity: .75;
}
.paver-note {
  margin-top: 2rem; font-size: .9rem; opacity: .75; max-width: 42rem;
}
@media (prefers-reduced-motion: reduce) {
  .paver, .paver:nth-child(n) { transform: none; }
}

/* ---------- doc list ---------- */
.doc-list { display: grid; gap: 1rem; max-width: 52rem; }
.doc {
  display: flex; gap: 1.2rem; align-items: center;
  background: #fff; border: 1px solid var(--indigo-08); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; box-shadow: var(--shadow-soft); text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.doc:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--amber-22); }
.doc .icon { flex: none; width: 3rem; height: 3rem; border-radius: 12px; background: var(--amber-12); display: grid; place-items: center; }
.doc .icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--amber-deep); }
.doc b { font: 600 1.05rem/1.3 var(--sans); color: var(--indigo); display: block; }
.doc span { font-size: .88rem; opacity: .75; }
.doc .dl { margin-left: auto; flex: none; font: 600 .85rem/1 var(--sans); color: var(--amber-deep); display: inline-flex; gap: .4rem; align-items: center; }
.doc .dl svg { width: 1rem; height: 1rem; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font: 600 .88rem/1.2 var(--sans); }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  font: 400 1rem/1.5 var(--sans); color: var(--indigo);
  background: #fff; border: 1.5px solid var(--indigo-14); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--amber-deep); box-shadow: 0 0 0 4px var(--amber-22);
}
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; grid-column: 1 / -1; }
.check input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; accent-color: var(--amber-deep); }
.form-note { font-size: .85rem; opacity: .7; }

/* ---------- footer ---------- */
.site-footer { background: linear-gradient(175deg, var(--indigo), var(--ink) 150%); color: rgba(255,255,255,.78); margin-top: clamp(3rem, 7vw, 5rem); position: relative; }
.footer-path { display: block; width: 100%; height: 60px; color: var(--cream); background: transparent; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding: 3.2rem 0 2.4rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font: 600 .85rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--amber); }
.footer-brand { display: flex; gap: .9rem; align-items: center; margin-bottom: 1.1rem; }
.footer-brand img { width: 46px; height: 46px; border-radius: 10px; }
.footer-brand b { font: 400 1.2rem/1.15 var(--serif); color: #fff; display: block; }
.footer-brand span { font-size: .78rem; opacity: .7; }
.footer-mission { font-size: .92rem; line-height: 1.65; opacity: .85; max-width: 24em; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.footer-contact svg { width: 1.05rem; height: 1.05rem; flex: none; margin-top: .25rem; stroke: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0 1.8rem;
  display: flex; flex-wrap: wrap; gap: .8rem 2rem; align-items: center; justify-content: space-between;
  font-size: .84rem; opacity: .85;
}
.footer-bottom .made { display: inline-flex; align-items: center; gap: .45rem; }
.footer-bottom .made svg { width: .95rem; height: .95rem; }

/* ---------- reveal-on-scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }

/* ---------- the golden thread (scroll-drawn path) ---------- */
.thread { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: visible; }
.thread path { stroke: var(--amber); stroke-width: 3; fill: none; stroke-linecap: round; opacity: .55; }
.section > .wrap, .hero > .wrap { z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* print */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body::before { display: none; }
}
