/* =========================================================
   From His Fullness Ministries — site styles
   Palette: deep ink navy + burnished gold on a cool white
   ========================================================= */

:root {
  --ink: #1B2540;
  --ink-2: #2B3A5E;
  --paper: #F7F8FA;
  --white: #FFFFFF;
  --line: #DCE1E9;
  --muted: #566076;
  --gold: #C39433;
  --gold-deep: #8A6415;   /* gold dark enough for text on white */
  --gold-soft: #F3EAD6;

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7rem);
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; max-width: 66ch; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.5;
}
.small { font-size: 0.95rem; color: var(--muted); }

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

.skip {
  position: absolute; left: -9999px; top: 0.5rem;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 100;
}
.skip:focus { left: 0.5rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4em;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  text-decoration: none; line-height: 1.2;
  border: 2px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #D6A844; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.text-link {
  color: var(--gold-deep); font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--gold-soft);
  transition: border-color .2s;
}
.text-link:hover { border-color: var(--gold); }

.plain-links a {
  text-decoration: none;
  display: inline-block; padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}
.plain-links a:hover { border-color: currentColor; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
}
/* The frosted-glass effect lives on a pseudo-element: putting backdrop-filter on the
   header itself would trap the fixed-position mobile menu inside the header's box. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(247, 248, 250, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }

.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  background: none; border: 0; font: inherit; font-weight: 500; font-size: 0.98rem;
  color: var(--ink); padding: 0.6rem 0.85rem; cursor: pointer; border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-link::after {
  content: ""; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s;
}
.nav-link[aria-expanded="true"]::after { transform: rotate(-135deg) translateY(-1px); }
.nav-link:hover { background: var(--gold-soft); }
.nav-donate { margin-left: 0.5rem; }
.nav-donate .btn { padding: 0.6rem 1.15rem; }

.sub {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px; padding: 0.5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 18px 40px -18px rgba(27, 37, 64, 0.35);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.sub a {
  display: block; padding: 0.5rem 0.75rem; border-radius: 4px;
  text-decoration: none; font-size: 0.95rem;
}
.sub a:hover { background: var(--paper); color: var(--gold-deep); }
.nav-item.open > .sub { opacity: 1; visibility: visible; transform: none; }

.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  align-items: center; gap: 0.5rem; font: inherit; font-weight: 600; color: var(--ink);
  padding: 0.5rem;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block; width: 22px; height: 2px; background: var(--ink); position: relative;
  transition: transform .2s, background-color .2s;
}
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero: the ministry's reach, drawn as a map ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 90% at 70% 40%, #24345a 0%, var(--ink) 60%);
  min-height: min(86vh, 760px); display: flex; align-items: center;
}
.hero-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-map .land { fill: none; stroke: rgba(255,255,255,.2); stroke-width: 3.4; stroke-linecap: round; }
.hero-map .arc {
  fill: none; stroke: var(--gold); stroke-width: 1.7; opacity: .8;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: fhf-draw 1.3s cubic-bezier(.3,.6,.2,1) forwards;
  animation-delay: calc(.35s + var(--i) * .08s);
}
.hero-map .pin { opacity: 0; animation: fhf-fade .5s ease-out forwards; animation-delay: calc(1.2s + var(--i) * .08s); }
.hero-map .pin circle { fill: var(--gold); }
.hero-map .pin .halo { fill: rgba(195,148,51,.25); }
.hero-map .home circle { fill: #fff; }
.hero-map .home .halo { fill: rgba(255,255,255,.18); }
@keyframes fhf-draw { to { stroke-dashoffset: 0; } }
@keyframes fhf-fade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero-map .arc { stroke-dashoffset: 0; animation: none; }
  .hero-map .pin { opacity: 1; animation: none; }
}
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(27,37,64,.94) 0%, rgba(27,37,64,.82) 32%, rgba(27,37,64,.25) 62%, rgba(27,37,64,0) 100%),
              linear-gradient(0deg, rgba(27,37,64,.7) 0%, rgba(27,37,64,0) 30%);
}
.hero-inner { position: relative; width: 100%; padding-top: clamp(4rem, 9vw, 7rem); padding-bottom: clamp(5rem, 10vw, 7.5rem); }
.hero-kicker { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold); margin-bottom: 1rem; }
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.4rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.02em;
  max-width: 17ch; margin-bottom: 2rem; text-shadow: 0 2px 24px rgba(15,22,40,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-legend {
  position: absolute; right: var(--gutter); bottom: 1.25rem; margin: 0;
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,.7);
}
.hero-legend .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(195,148,51,.25); }
@media (max-width: 760px) {
  .hero { align-items: flex-end; min-height: 88vh; }
  .hero-map { opacity: .8; }
  .hero-shade { background: linear-gradient(0deg, rgba(27,37,64,.97) 0%, rgba(27,37,64,.85) 45%, rgba(27,37,64,.2) 80%, rgba(27,37,64,.1) 100%); }
  .hero-inner { padding-bottom: 4.5rem; }
  .hero-legend { left: var(--gutter); right: auto; }
}

/* ---------- Welcome ---------- */
.welcome { background: var(--white); }
.welcome-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.signature { font-family: var(--serif); font-style: italic; font-size: 1.15rem; margin-top: 1.5rem; }
.welcome-photo { margin: 0; }
.welcome-photo img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* The gap — the one bold moment on the page */
.gap {
  margin: clamp(3.5rem, 8vw, 6rem) 0 0;
  padding-top: 2.5rem; border-top: 1px solid var(--line);
}
.gap-row { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: center; padding: 1rem 0; }
.gap-label { display: flex; flex-direction: column; }
.gap-where { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.gap-num {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1.1;
  font-variant-numeric: lining-nums tabular-nums;
}
.gap-num-big { font-size: clamp(2.4rem, 5.5vw, 3.8rem); color: var(--ink); }
.gap-track { height: 14px; background: var(--paper); border-radius: 2px; position: relative; }
.gap-bar {
  height: 100%; border-radius: 2px;
  width: 0; min-width: 4px;
  transition: width 1.6s cubic-bezier(.2,.7,.2,1);
}
.gap-bar-us { background: var(--ink); }
.gap-bar-world { background: var(--gold); }
.gap.in-view .gap-bar { width: var(--w); }
.gap figcaption { font-size: 0.92rem; color: var(--muted); margin-top: 1rem; max-width: 60ch; }

/* ---------- The Way ---------- */
.the-way { background: var(--ink); color: #fff; }
.way-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: end; }
.the-way h2 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-style: italic; font-weight: 400; margin-bottom: 0.2em; }
.way-sub { color: rgba(255,255,255,.78); font-size: 1.15rem; }
.langs { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.18); }
.langs li { padding: 1.25rem 1rem 0 0; display: flex; flex-direction: column; }
.langs em { font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--gold); }
.langs span { font-size: 0.9rem; color: rgba(255,255,255,.65); }
.way-actions .plain-links { margin-top: 1.5rem; }
.way-actions .plain-links a { color: rgba(255,255,255,.88); }

/* ---------- Resources ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-text .btn { margin-top: 0.5rem; }

.resource-index {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 2.5rem;
  border-top: 1px solid var(--line);
}
.resource-index li { border-bottom: 1px solid var(--line); }
.resource-index a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1rem 1.25rem 0; text-decoration: none;
  font-family: var(--serif); font-size: 1.3rem;
  transition: color .2s, padding-left .2s;
}
.resource-index a::after {
  content: ""; width: 8px; height: 8px;
  border-top: 1.5px solid var(--gold-deep); border-right: 1.5px solid var(--gold-deep);
  transform: rotate(45deg);
}
.resource-index a:hover { color: var(--gold-deep); padding-left: 0.4rem; }

/* ---------- Who we are ---------- */
.who { background: var(--white); }
.who-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.mv { margin: 2rem 0; display: grid; gap: 1.25rem; }
.mv div { border-left: 3px solid var(--gold); padding-left: 1.25rem; }
.mv dt { font-weight: 600; font-size: 0.95rem; color: var(--gold-deep); }
.mv dd { margin: 0.2rem 0 0; font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; }
.who-side { background: var(--paper); border-radius: 8px; padding: clamp(1.5rem, 3vw, 2.25rem); align-self: start; }
.who-side h3 { margin-top: 0; }
.who-side h3 + .small { margin-top: -0.3rem; }
.countries { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 2.25rem; }
.countries li {
  font-size: 0.9rem; padding: 0.3rem 0.7rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px;
}

/* ---------- What we do ---------- */
.what-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.what-head h2 { margin: 0; }
.audiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.audience {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; text-decoration: none; color: #fff; background: var(--ink);
}
.audience img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.audience::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,37,64,0) 40%, rgba(27,37,64,.88) 100%);
}
.aud-name {
  position: absolute; left: 1.5rem; bottom: 1.25rem; z-index: 1;
  font-family: var(--serif); font-size: 1.7rem;
}
.audience:hover img { transform: scale(1.04); }

/* ---------- Contact ---------- */
.contact { background: var(--ink-2); color: #fff; padding: clamp(3.5rem, 7vw, 5rem) 0; }
.contact-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.contact p { color: rgba(255,255,255,.85); }
.contact .btn-row { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 3.5rem 0 1.5rem; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-family: var(--serif); font-style: italic; max-width: 32ch; }
.footer-base { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.5rem; padding-top: 1.25rem; }
.footer-base p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,.55); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 72px); height: calc(100dvh - 72px);
    background: var(--paper); overflow-y: auto; overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 1rem var(--gutter) 2.5rem;
    transform: translateX(100%); visibility: hidden;
    transition: transform .25s ease, visibility .25s;
  }
  .site-nav.open { transform: none; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 1.1rem 0; font-size: 1.15rem; font-family: var(--serif); border-radius: 0; }
  .nav-link:hover { background: none; }
  .sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: none; padding: 0 0 0.75rem;
    display: none; min-width: 0;
  }
  .nav-item.open > .sub { display: block; }
  .sub a { padding: 0.6rem 0.25rem; font-size: 1rem; }
  .nav-donate { border: 0; margin: 1.5rem 0 0; }
  .nav-donate .btn { width: 100%; padding: 1rem; }
  body.nav-open { touch-action: none; }
  body.nav-open .site-nav { touch-action: pan-y; }

  .welcome-grid, .split, .who-grid, .way-grid { grid-template-columns: 1fr; }
  .welcome-photo { max-width: 460px; }
  .resource-index { grid-template-columns: repeat(2, 1fr); }
  .langs { grid-template-columns: repeat(2, 1fr); }
  .langs li { padding-bottom: 1rem; }
  .gap-row { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .header-inner { height: 64px; }
  .site-nav { top: 64px; height: calc(100vh - 64px); height: calc(100dvh - 64px); }
  .brand span { font-size: 1.1rem; }
  .brand img { width: 38px; height: 38px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .audiences { grid-template-columns: 1fr; }
  .audience { aspect-ratio: 16 / 10; }
  .resource-index { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact .btn-row .btn { flex: 1; }
}

/* =========================================================
   Inner pages
   ========================================================= */
.nav-item.is-current > .nav-link { color: var(--gold-deep); }
.sub a[aria-current="page"] { color: var(--gold-deep); font-weight: 600; }

.page-hero { background: var(--ink); color: #fff; padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.25rem, 5vw, 3.25rem); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; margin: 0; letter-spacing: -0.02em; }
.crumb { font-family: var(--serif); font-style: italic; color: var(--gold); margin: 0 0 0.5rem; font-size: 1.1rem; }

.page-body { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.prose > * + * { margin-top: 0; }
.prose p, .prose li { max-width: 68ch; }
.prose h2 { margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.4rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.25rem; }
.prose ul { list-style: disc; }
.prose li { margin-bottom: 0.35rem; }
.prose li::marker { color: var(--gold-deep); }
.prose a:not(.btn) { color: var(--ink-2); text-decoration-color: var(--gold); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:not(.btn):hover { color: var(--gold-deep); }
.prose blockquote {
  margin: 1.75rem 0; padding: 0.25rem 0 0.25rem 1.5rem; border-left: 3px solid var(--gold);
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.55; max-width: 64ch;
}
.prose blockquote p { margin-bottom: 0.5rem; }
.prose img { border-radius: var(--radius); }
.prose .wide { width: 100%; max-height: 460px; object-fit: cover; margin-bottom: 2.25rem; }
.inline-img { float: right; width: min(42%, 340px); margin: 0.3rem 0 1rem 1.75rem; }
.inline-fig { margin: 1.5rem 0 2rem; }
.inline-fig figcaption, figure figcaption { font-size: 0.9rem; color: var(--muted); margin-top: 0.6rem; max-width: 68ch; }
.btn-row .btn, .prose p > .btn { margin-right: 0.5rem; }
.prose p > .btn + .btn { margin-top: 0.5rem; }

.belief { font-family: var(--serif); font-size: 1.2rem; line-height: 1.6; padding: 1.25rem 0 1.25rem 1.5rem; border-left: 3px solid var(--gold); margin-bottom: 1.5rem; }
.belief strong em, .belief em strong { color: var(--gold-deep); }

.doc-links p { display: flex; flex-direction: column; gap: 0.75rem; max-width: none; }
.doc-links a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.35rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--serif); font-size: 1.2rem; text-decoration: none !important; color: var(--ink) !important;
}
.doc-links a::after { content: "PDF"; font-family: var(--sans); font-size: 0.75rem; font-weight: 600; color: var(--gold-deep); border: 1px solid var(--gold-soft); padding: 0.15rem 0.45rem; border-radius: 3px; }
.doc-links a:hover { border-color: var(--gold); }

/* People */
.prose ul.people { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.75rem 1.5rem; margin: 1rem 0 2.5rem; }
.people li { max-width: none; margin: 0; }
.people img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; margin-bottom: 0.8rem; background: var(--line); }
.people h3 { font-size: 1.15rem; margin: 0 0 0.2rem; }
.people .role { margin: 0; font-size: 0.95rem; }
.people .meta { margin: 0.2rem 0 0; font-size: 0.88rem; color: var(--muted); }

/* Timeline */
.year { border-top: 1px solid var(--line); padding-top: 2rem; margin-top: 2.5rem; display: flow-root; }
.year > h2 { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 0; }
.year > h2 span { font-size: 1.1rem; font-style: italic; color: var(--gold-deep); }
.year h3 { font-size: 1.15rem; }

.hymn { columns: 2 260px; column-gap: 2.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.75rem 2rem; margin: 1.5rem 0 2.5rem; font-family: var(--serif); }
.hymn p { break-inside: avoid; font-size: 1.02rem; }
.memorial { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem 1.75rem; margin: 1.25rem 0; }
.memorial h3 { margin-top: 0; display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: baseline; }
.memorial h3 span { font-size: 0.95rem; font-family: var(--sans); color: var(--muted); font-weight: 400; }
.memorial p:last-child { margin-bottom: 0; }

.influence, .course, .book { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.course, .book { grid-template-columns: 220px 1fr; }
.influence img, .course > img, .book > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.book > img { aspect-ratio: auto; }
.influence h3, .course h2, .book h2 { margin-top: 0; }
.book h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.book-meta { color: var(--muted); font-size: 0.95rem; }
.book-quote { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.4; color: var(--gold-deep); border-left: 3px solid var(--gold); padding-left: 1rem; align-self: start; }
.prose ul.formats { list-style: none; padding: 0; }
.formats li { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.buy a { display: inline-block; margin: 0.25rem 0.4rem 0.25rem 0; padding: 0.35rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); text-decoration: none !important; font-size: 0.92rem; }
.buy a:hover { border-color: var(--gold); }
.prose ul.modules, .prose ul.meta-list { list-style: none; padding: 0; }
.modules li { border-top: 1px solid var(--line); margin: 0; max-width: none; }
.modules li:last-child { border-bottom: 1px solid var(--line); }
.modules a { display: block; padding: 0.75rem 0; font-weight: 500; }
.meta-list li { margin: 0; font-size: 0.95rem; color: var(--muted); }
.review { grid-template-columns: 150px 1fr; }

.callout { background: var(--gold-soft); border-radius: 8px; padding: 1.75rem 2rem; margin: 2rem 0; }
.callout p:last-child { margin-bottom: 0; }
.prose ul.partner-list { columns: 2 280px; column-gap: 2.5rem; }
.partner-list li { break-inside: avoid; }

/* FAQ / details */
details.faq { border-top: 1px solid var(--line); padding: 0; }
details.faq:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; }
details.faq summary {
  cursor: pointer; list-style: none; padding: 1.2rem 2.5rem 1.2rem 0; position: relative;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.6rem; color: var(--gold-deep); transition: transform .2s; }
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details.faq > *:not(summary) { margin-left: 0; }
details.faq[open] { padding-bottom: 1rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); margin: 1.5rem 0 2rem; align-items: start; }
.two-col h3:first-of-type { margin-top: 0.5rem; }

.visit { display: grid; grid-template-columns: 300px 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.visit figure { margin: 0; }
.visit img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.visit h3 { margin-top: 0; font-size: 1.35rem; }

.quotes { display: grid; gap: 1.25rem; margin: 1rem 0 2rem; }
.prose blockquote.quote { margin: 0; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1.4rem 1.6rem; max-width: none; font-size: 1.1rem; }
.quote cite { display: block; margin-top: 0.75rem; font-family: var(--sans); font-style: normal; font-size: 0.92rem; color: var(--muted); }
.quote p { max-width: 70ch; }
.prose h2.from { font-size: 1.5rem; margin-top: 2.25rem; }
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.5rem 0 1rem; }
.photo-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.stage-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0; }
.stage-nav a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem 0.55rem 0.55rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); text-decoration: none !important; font-size: 0.95rem; color: var(--ink) !important; }
.stage-nav a span { display: grid; place-items: center; width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--ink); color: #fff; font-size: 0.85rem; font-weight: 600; }
.stage-nav a:hover { border-color: var(--gold); }
.stage { border-top: 1px solid var(--line); padding-top: 2.5rem; margin-top: 2.5rem; scroll-margin-top: 90px; }

.prose ul.way-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0; }
.way-links li { margin: 0; }
.way-links a { display: block; padding: 0.7rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none !important; font-weight: 500; color: var(--ink) !important; }
.way-links a:hover { border-color: var(--gold); }

/* Issues */
.prose h2.issue-quarter { font-size: 1.5rem; border-top: 1px solid var(--line); padding-top: 1.75rem; margin-top: 2.25rem; }
.prose ul.issues { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.issues li { margin: 0; max-width: none; }
.issues a { display: flex; flex-direction: column; height: 100%; text-decoration: none !important; color: var(--ink) !important; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.issues a:hover { border-color: var(--gold); }
.issues img { width: 100%; aspect-ratio: 1216 / 430; object-fit: cover; border-radius: 0; background: var(--line); }
.issue-name { font-family: var(--serif); font-style: italic; font-size: 1.15rem; padding: 0.75rem 0.9rem 0.1rem; color: var(--gold-deep); }
.issue-sub { font-size: 0.9rem; padding: 0 0.9rem 0.9rem; line-height: 1.4; }

/* Articles library */
.library { columns: 3 250px; column-gap: 2.5rem; margin-top: 2rem; }
.shelf { break-inside: avoid; margin-bottom: 2rem; }
.prose .shelf h2 { font-size: 1.2rem; margin: 0 0 0.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.prose .shelf ul { list-style: none; padding: 0; margin: 0; }
.shelf li { margin: 0; padding: 0.45rem 0; border-bottom: 1px solid var(--line); font-size: 0.97rem; line-height: 1.4; }
.shelf a { text-decoration: none !important; }
.shelf a:hover { color: var(--gold-deep) !important; }

.interviews { display: grid; gap: 1rem; }
.interview { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem 1.75rem; }
.int-date { font-size: 0.9rem; color: var(--gold-deep); font-weight: 600; margin: 0 0 0.25rem; }
.interview h3 { margin-top: 0; font-size: 1.25rem; }
.interview dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.25rem 1rem; margin: 0.75rem 0 0; font-size: 0.95rem; }
.interview dt { color: var(--muted); }
.interview dd { margin: 0; }

.video { border-top: 1px solid var(--line); padding-top: 2rem; margin-top: 2rem; }
.video-slot { aspect-ratio: 16 / 9; background: var(--ink); border-radius: var(--radius); display: grid; place-items: center; color: rgba(255,255,255,.6); margin: 1rem 0; overflow: hidden; }
.video-slot p { margin: 0; font-size: 0.95rem; }
.video-slot iframe { width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.video-grid h3 { margin-top: 0; }

.give-box { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; background: var(--ink); color: #fff; border-radius: 10px; padding: clamp(1.75rem, 4vw, 2.75rem); margin: 2rem 0 2.5rem; }
.give-box h2 { margin-top: 0; color: #fff; }
.give-box p { color: rgba(255,255,255,.85); }
.give-box .small, .give-box a:not(.btn) { color: rgba(255,255,255,.7) !important; }
.give-actions .btn { width: 100%; margin-bottom: 1rem; }

.prose ol.rules { counter-reset: r; list-style: none; padding: 0; }
.rules li { counter-increment: r; position: relative; padding: 1rem 0 1rem 3.25rem; border-top: 1px solid var(--line); margin: 0; max-width: 72ch; }
.rules li::before { content: counter(r); position: absolute; left: 0; top: 0.95rem; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; font-weight: 600; }

.mv { margin: 2rem 0; }

/* Forms */
.form { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.5rem, 3vw, 2rem); display: grid; gap: 1rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.92rem; font-weight: 500; }
.form input[type=text], .form input[type=email], .form textarea {
  font: inherit; font-size: 1rem; padding: 0.7rem 0.85rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); width: 100%;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1rem; margin: 0; }
.form legend { font-size: 0.92rem; font-weight: 500; padding: 0 0.35rem; }
.form label.check { display: flex; align-items: center; gap: 0.6rem; font-weight: 400; font-size: 0.97rem; padding: 0.25rem 0; }
.form input[type=checkbox] { width: 1.1rem; height: 1.1rem; accent-color: var(--ink); }
.form .hp { position: absolute; left: -9999px; }
.form button { justify-self: start; }
.multilang p { font-size: 0.97rem; color: var(--muted); }

.way-band { background: var(--gold-soft); }
.way-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap; padding-top: 1.75rem; padding-bottom: 1.75rem; }
.way-band p { margin: 0; font-family: var(--serif); font-size: 1.2rem; }

@media (max-width: 980px) {
  .prose ul.issues { grid-template-columns: repeat(2, 1fr); }
  .visit { grid-template-columns: 220px 1fr; }
  .give-box { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .two-col, .field-row, .video-grid { grid-template-columns: 1fr; }
  .influence, .course, .book, .visit, .review { grid-template-columns: 1fr; gap: 1rem; }
  .influence img { width: 120px; }
  .course > img, .book > img { max-width: 260px; }
  .inline-img { float: none; width: 100%; margin: 0.5rem 0 1rem; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .hymn { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .prose ul.issues { grid-template-columns: 1fr; }
}

/* Sermon series list */
.series ul { list-style: none; padding: 0; }
.series li { padding: 0.7rem 0; border-bottom: 1px solid var(--line); margin: 0; max-width: 72ch; }
.series li span { display: block; font-size: 0.88rem; color: var(--muted); margin-top: 0.15rem; }
.series h2 { font-size: 1.4rem; margin-top: 2.25rem; }

/* Issue search */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.issue-tools { position: sticky; top: 72px; z-index: 5; background: var(--paper); padding: 1rem 0 0.75rem; margin: 1.5rem 0 0.5rem; border-bottom: 1px solid var(--line); }
.issue-tools input[type=search] {
  width: 100%; font: inherit; font-size: 1.05rem; padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white) no-repeat 0.95rem center / 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566076' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
  color: var(--ink);
}
.issue-tools input[type=search]:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.lang-filter { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.75rem; }
.chip { font: inherit; font-size: 0.92rem; padding: 0.4rem 0.95rem; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; }
.chip:hover { border-color: var(--gold); }
.chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.issue-count { margin: 0.6rem 0 0; font-size: 0.88rem; color: var(--muted); }
.issue-empty { padding: 2rem 0; font-size: 1.05rem; }
.issues li[hidden], h2.issue-quarter[hidden], ul.issues[hidden] { display: none !important; }
@media (max-width: 640px) { .issue-tools { top: 64px; } }

/* ---- Menu v2: hints, group headings, Contact link ---- */
.site-nav .sub a small { display: block; font-size: 0.8rem; line-height: 1.3; color: var(--muted); font-weight: 400; margin-top: 0.15rem; }
.sub .sub-head {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep); padding: 0.7rem 0.75rem 0.25rem;
}
.sub .sub-head:first-child { padding-top: 0.35rem; }
.nav-plain { display: block; padding: 0.6rem 0.85rem; text-decoration: none; font-weight: 500; font-size: 0.98rem; border-radius: var(--radius); }
.nav-plain:hover, .nav-plain[aria-current="page"] { background: var(--gold-soft); }
.nav-contact { margin-left: 0.25rem; }

/* ---- Our Story ---- */
.story-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 1rem; }
.story-nav a { padding: 0.55rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); text-decoration: none !important; color: var(--ink) !important; font-weight: 500; }
.story-nav a:hover { border-color: var(--gold); }
.story-section { border-top: 2px solid var(--ink); margin-top: 3.5rem; padding-top: 2rem; scroll-margin-top: 90px; }
.prose h2.story-head { font-size: clamp(2rem, 4.5vw, 2.8rem); margin: 0 0 1.25rem; }

@media (max-width: 980px) {
  .site-nav .sub a small { font-size: 0.85rem; }
  .sub .sub-head { padding: 0.9rem 0.25rem 0.2rem; }
  .nav-contact { border-bottom: 1px solid var(--line); margin: 0; }
  .nav-plain { padding: 1.1rem 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; border-radius: 0; }
  .nav-plain:hover { background: none; }
}

.give-form { margin: 0 0 1rem; }
.give-form .btn { width: 100%; }

/* Research articles */
.back-link { margin: 0 0 1.5rem; font-size: 0.95rem; }
.back-link a, .next-link a { text-decoration: none !important; font-weight: 600; color: var(--gold-deep) !important; }
.next-link { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.byline { font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: -0.5rem; }
.prose h3.q { font-size: 1.25rem; line-height: 1.4; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.prose h2[id] { scroll-margin-top: 90px; }
.footnotes-block { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--muted); }
.prose ul.article-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.article-list li { margin: 0; max-width: none; border-bottom: 1px solid var(--line); }
.article-list a { display: flex; flex-direction: column; padding: 1rem 0; text-decoration: none !important; color: var(--ink) !important; transition: padding-left .2s; }
.article-list a:hover { padding-left: 0.4rem; }
.al-title { font-family: var(--serif); font-size: 1.25rem; }
.al-sub { font-size: 0.92rem; color: var(--muted); }

/* Articles search */
.library .shelf[hidden], .library li[hidden] { display: none !important; }
.article-tools .lang-filter { max-height: none; }
@media (max-width: 640px) {
  .article-tools .lang-filter { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.35rem; -webkit-overflow-scrolling: touch; }
  .article-tools .chip { flex: 0 0 auto; }
}

.prose .btn-row .btn, .prose p.btn-row > .btn + .btn { margin: 0; }

/* ===== Homepage v3 ===== */
/* The Way: latest covers */
.the-way .way-grid { align-items: center; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.the-way .way-actions { margin-top: 2rem; }
.latest-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.35rem; }
.latest-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 400; margin: 0 0 1.25rem; color: #fff; }
.latest-covers { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.latest-covers a { display: block; text-decoration: none; color: rgba(255,255,255,.8); font-size: 0.85rem; }
.latest-covers img { width: 100%; aspect-ratio: 1216 / 430; object-fit: cover; border-radius: 4px; background: var(--ink-2); outline: 1px solid rgba(255,255,255,.12); transition: transform .25s, outline-color .25s; }
.latest-covers span { display: block; margin-top: 0.35rem; }
.latest-covers a:hover img { transform: translateY(-3px); outline-color: var(--gold); }

/* What We Do cards: subtitle */
.aud-name small { display: block; font-family: var(--sans); font-size: 0.9rem; color: rgba(255,255,255,.8); margin-top: 0.2rem; }

/* Voice from the field */
.field-quote { background: var(--gold-soft); padding: clamp(3rem, 7vw, 5rem) 0; }
.field-quote figure { margin: 0 auto; max-width: 52rem; text-align: center; }
.field-quote blockquote { margin: 0; }
.field-quote blockquote p { font-family: var(--serif); font-size: clamp(1.35rem, 2.8vw, 2rem); line-height: 1.35; color: var(--ink); margin: 0 auto 1.25rem; max-width: none; }
.field-quote figcaption { font-size: 0.95rem; color: var(--muted); }
.field-quote figcaption a { color: var(--gold-deep); font-weight: 600; text-decoration: none; margin-left: 0.25rem; }

/* Partner band */
.partner { background: var(--white); border-top: 1px solid var(--line); }
.partner-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.partner h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.partner .btn-row { justify-content: flex-end; }

/* Map tooltips */
.hero-inner { pointer-events: none; }
.hero-inner a, .hero-inner button { pointer-events: auto; }
.hero-map .pin { cursor: pointer; outline: none; }
.hero-map .pin .hit { fill: transparent; }
.hero-map .pin circle:not(.hit):not(.halo) { transition: r .2s; }
.hero-map .pin:hover circle:not(.hit):not(.halo), .hero-map .pin.is-active circle:not(.hit):not(.halo), .hero-map .pin:focus-visible circle:not(.hit):not(.halo) { r: 6; }
.hero-map .pin:focus-visible .halo { fill: rgba(255,255,255,.35); }
.map-tip {
  position: absolute; z-index: 5; pointer-events: none; transform: translate(-50%, calc(-100% - 14px));
  background: var(--white); color: var(--ink); border-radius: 6px; padding: 0.55rem 0.8rem; min-width: 11rem; max-width: 16rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); font-size: 0.85rem; line-height: 1.35;
}
.map-tip strong { display: block; font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.map-tip::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px; background: var(--white); transform: translateX(-50%) rotate(45deg); }
.legend-hint { color: var(--gold); }

@media (max-width: 860px) {
  .the-way .way-grid, .partner-inner { grid-template-columns: 1fr; }
  .partner .btn-row { justify-content: flex-start; }
}


/* What We Do: interactive trip map */
.trip-map-wrap { position: relative; margin: 2rem 0 2.5rem; background: var(--ink); border-radius: 10px; padding: clamp(1rem, 3vw, 1.75rem); overflow: hidden; }
.trip-map { display: block; width: 100%; height: auto; }
.trip-map .land { fill: none; stroke: rgba(255,255,255,.22); stroke-width: 2.8; stroke-linecap: round; }
.trip-map .pin { cursor: pointer; outline: none; }
.trip-map .pin .hit { fill: transparent; }
.trip-map .pin .halo { fill: rgba(195,148,51,.28); transition: fill .2s; }
.trip-map .pin circle:not(.hit):not(.halo) { fill: var(--gold); transition: r .2s; }
.trip-map .pin:hover circle:not(.hit):not(.halo), .trip-map .pin.is-active circle:not(.hit):not(.halo), .trip-map .pin:focus-visible circle:not(.hit):not(.halo) { r: 6; }
.trip-map .pin:hover .halo, .trip-map .pin.is-active .halo, .trip-map .pin:focus-visible .halo { fill: rgba(195,148,51,.5); }
.trip-map-wrap .trip-hint { color: rgba(255,255,255,.75); font-size: 0.9rem; margin: 0.75rem 0 0.25rem; max-width: none; }
.trip-map-wrap figcaption { color: rgba(255,255,255,.65) !important; }
.visit { scroll-margin-top: 90px; }
.visit.flash, .visit:target { animation: fhf-flash 2.4s ease-out; }
@keyframes fhf-flash { 0%, 40% { background: var(--gold-soft); box-shadow: -1rem 0 0 var(--gold-soft), 1rem 0 0 var(--gold-soft); } 100% { background: transparent; box-shadow: none; } }
.map-tip .tip-more { display: block; font-style: normal; font-size: 0.78rem; color: var(--gold-deep); margin-top: 0.25rem; }
.trip-map-wrap .map-tip { z-index: 5; }

/* Read The Way: language growth */
.growth { margin: 2rem 0 0.5rem; padding: 1.25rem 1.5rem 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.growth figcaption { font-size: 0.95rem; color: var(--muted); margin: 0 0 1rem; }
.growth figcaption strong { color: var(--ink); font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin-right: 0.25rem; }
.g-row { display: grid; grid-template-columns: 11.5rem 1fr; gap: 1rem; align-items: center; padding: 0.35rem 0; }
.g-label em { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-deep); display: block; line-height: 1.2; }
.g-label span { font-size: 0.8rem; color: var(--muted); }
.g-track { position: relative; height: 12px; background: var(--paper); border-radius: 999px; }
.g-bar { position: absolute; top: 0; bottom: 0; right: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gold), #d9b25a); }
.g-axis .g-track { background: none; height: 1.2rem; }
.g-ticks span { position: absolute; top: 0; transform: translateX(-50%); font-size: 0.75rem; color: var(--muted); }
.g-ticks span:first-child { transform: none; }
@media (max-width: 560px) {
  .g-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .g-axis .g-label { display: none; }
}

/* Our Story: vertical timeline */
#timeline .year { position: relative; padding-left: 2.5rem; border-top: 0; margin-top: 0; padding-top: 1.75rem; }
#timeline .year::before { content: ""; position: absolute; left: 0.55rem; top: 0; bottom: 0; width: 2px; background: var(--line); }
#timeline .year > h2::before {
  content: ""; position: absolute; left: 0; margin-top: 0.55em; width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 5px var(--paper), 0 0 0 6px var(--gold-soft);
}
#timeline .year > h2 { position: static; }
#timeline .year h3 { position: relative; }
#timeline .year h3::before {
  content: ""; position: absolute; left: -2.13rem; top: 0.55em; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--ink-2);
}
@media (max-width: 700px) {
  #timeline .year { padding-left: 2rem; }
  #timeline .year h3::before { left: -1.63rem; }
  #timeline .inline-img { margin-left: 0; }
}
.the-way .langs { grid-template-columns: repeat(2, 1fr); column-gap: 1.5rem; }
.the-way .langs li { padding-bottom: 0.75rem; }
.partner .btn-row { flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.partner .btn-row .btn { min-width: 15rem; }
@media (max-width: 860px) { .partner .btn-row { align-items: stretch; } .partner .btn-row .btn { min-width: 0; } }
