/* ============================================================
   RTZ HOPE — Shared CSS
   Source: rtzhope.org (extracted 2026-05-14)
   System: National pregnancy + infant loss nonprofit
            Soft sky-blue + warm beige + cream
            Libre Baskerville (display) + DM Sans (body)
   Mobile responsiveness: ../mobile-responsive.css + ../mobile-nav.js
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,500;1,9..40,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Daylight palette (default) — direct from production CSS :root HSL */
  --rtz-blue:        #5D97BB;   /* THE accent — links, buttons, accent strokes */
  --rtz-blue-deep:   #3D7598;   /* hover/active */
  --rtz-blue-bright: #4F9CBF;   /* announcement bar variant */
  --rtz-blue-soft:   #EBF1F4;   /* pale icy section overlay */
  --rtz-warm:        #E0D5CC;   /* warm beige panels */
  --rtz-warm-soft:   #F2EBE4;   /* lighter warm beige */
  --rtz-slate:       #39444C;   /* footer, dark panels, deep accent */
  --rtz-slate-deep:  #232a30;   /* footer-deep */

  /* Universal aliases (mobile-responsive.css expects these names) */
  --ink:          #2B2B2B;       /* body text (soft near-black) */
  --ink-mid:      #4A5560;       /* secondary body */
  --ink-soft:     #6D7A85;       /* meta / captions */
  --ink-quiet:    #99A4AC;       /* tertiary, hairline labels */
  --bg:           #FFFFFF;
  --bg-pure:      #FFFFFF;
  --bg-warm:      #F8F3EE;       /* warm cream background */
  --bg-soft:      #EBF1F4;       /* pale icy section */
  --bg-deep:      #39444C;       /* slate footer */
  --surface:      #F8F9FA;
  --surface-2:    #ECF0F3;
  --border:       #E6E2DD;
  --border-strong:#C8C0B5;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.78);

  /* Type system */
  --font-display: 'Libre Baskerville', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-italic:  'Libre Baskerville', Georgia, serif;

  --text-display: clamp(2.5rem, 5.5vw, 4.5rem);
  --text-h1:      clamp(2rem, 4vw, 3.25rem);
  --text-h2:      clamp(1.625rem, 2.8vw, 2.5rem);
  --text-h3:      clamp(1.25rem, 1.8vw, 1.5rem);
  --text-body:    1rem;
  --text-lede:    1.1875rem;
  --text-meta:    0.8125rem;
  --text-eyebrow: 0.6875rem;

  /* Layout */
  --container:        1340px;
  --container-narrow: 920px;
  --container-prose:  680px;
  --gutter:           clamp(1.5rem, 4vw, 3rem);
  --section:          120px;   /* meditative, magazine-paced */
  --section-sm:       72px;
  --section-lg:       160px;

  /* Radii — brand uses softly chamfered 20px on photo cards */
  --r-sm:    6px;
  --r-md:    12px;
  --r-photo: 20px;   /* signature radius for photo cards */
  --r-pill:  999px;  /* buttons only */

  /* Motion */
  --ease-out:    cubic-bezier(.22, .61, .36, 1);
  --ease-quiet:  cubic-bezier(.4, 0, .2, 1);
  --t-fast:      160ms;
  --t-base:      240ms;
  --t-slow:      400ms;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--rtz-blue); text-decoration: none; transition: color var(--t-fast) ease; }
a:hover { color: var(--rtz-blue-deep); }
::selection { background: var(--rtz-blue); color: #fff; }

/* ============================================================
   TYPOGRAPHY
   The brand's signature move: italic-inside-roman headlines.
   Set the italic *phrase* with <em>, and we'll style it with
   a serif italic that reads warmer than the upright.
   ============================================================ */

.display, h1.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display em, h1.display em, .display .it {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;   /* italic Baskerville reads heavier — drop weight to balance */
  color: var(--rtz-blue);
}

.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h1);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h1 em, .h1 .it { font-style: italic; font-weight: 400; color: var(--rtz-blue); }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h2 em, .h2 .it { font-style: italic; font-weight: 400; color: var(--rtz-blue); }

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h3);
  line-height: 1.3;
  letter-spacing: -0.003em;
  color: var(--ink);
  margin: 0;
}
.h3 em, .h3 .it { font-style: italic; font-weight: 400; color: var(--rtz-blue); }

.lede {
  font-family: var(--font-body);
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--ink-mid);
  font-weight: 400;
  max-width: 56ch;
  margin: 0;
}
.body-copy {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 64ch;
}
.body-copy p + p { margin-top: 1.2em; }
.body-copy a { border-bottom: 1px solid currentColor; }
.meta {
  font-family: var(--font-body);
  font-size: var(--text-meta);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Eyebrow — uppercase tracked label sitting above headlines */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rtz-blue);
  margin: 0;
}
.eyebrow.warm { color: var(--rtz-slate); }
.eyebrow.on-dark { color: rgba(255, 255, 255, 0.75); }
.eyebrow.with-star::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--rtz-blue);
  transform: rotate(45deg) translateY(-1px);
  vertical-align: middle;
}
.eyebrow.on-dark.with-star::before { background: var(--rtz-blue-bright); }

/* Serif italic inline accent — for verbatim brand phrases */
.serif-it {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--rtz-slate);
}

/* H·O·P·E interpunct treatment — sparing, donation/value-statement use */
.hope-spaced { letter-spacing: 0.3em; font-feature-settings: "ss01" 1; }

/* Accent rule — 56x2 brand blue divider */
.rule {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--rtz-blue);
  border: 0;
  margin: 0;
}
.rule.long  { width: 120px; }
.rule.short { width: 32px; }
.rule.warm  { background: var(--rtz-warm); }
.rule.center { display: block; margin: 0 auto; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-prose {
  width: 100%;
  max-width: var(--container-prose);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}
.section-sm { padding-block: var(--section-sm); }
.section-lg { padding-block: var(--section-lg); }

.section.warm { background: var(--bg-warm); }
.section.soft { background: var(--bg-soft); }
.section.warm-panel { background: var(--rtz-warm); }
.section.dark { background: var(--rtz-slate); color: #fff; }
.section.dark .h1, .section.dark .h2, .section.dark .h3, .section.dark .display { color: #fff; }
.section.dark .lede, .section.dark .body-copy { color: rgba(255, 255, 255, 0.82); }
.section.dark em, .section.dark .it { color: var(--rtz-blue-bright); }

/* Grid utilities */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-md { gap: 32px; }
.gap-lg { gap: 48px; }
.gap-xl { gap: 64px; }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.row-2col.reverse > div:first-child { order: 2; }
.row-2col.narrow { grid-template-columns: 5fr 7fr; }
@media (max-width: 900px) {
  .row-2col, .row-2col.narrow {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .row-2col.reverse > div:first-child { order: 0; }
}

/* Center utility */
.center-text { text-align: center; }
.center-text .lede { margin-inline: auto; }

/* Spacing utilities */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-md { margin-top: 24px; }
.mb-md { margin-bottom: 24px; }

/* ============================================================
   BUTTONS
   Brand convention: pill-shaped buttons (border-radius: 999px),
   solid blue primary, outlined secondary. One CTA per section.
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast) ease, color var(--t-fast) ease,
              border-color var(--t-fast) ease, transform var(--t-fast) ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary, .btn.btn-blue {
  background: var(--rtz-blue);
  color: #fff;
  border-color: var(--rtz-blue);
}
.btn-primary:hover, .btn.btn-blue:hover {
  background: var(--rtz-blue-deep);
  border-color: var(--rtz-blue-deep);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--rtz-blue);
  border-color: var(--rtz-blue);
}
.btn-outline:hover {
  background: var(--rtz-blue);
  color: #fff;
}

.btn-slate {
  background: var(--rtz-slate);
  color: #fff;
  border-color: var(--rtz-slate);
}
.btn-slate:hover { background: var(--rtz-slate-deep); border-color: var(--rtz-slate-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--rtz-blue); color: var(--rtz-blue); }

/* Sizes */
.btn-sm { padding: 10px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* On-photo / on-dark variants */
.btn.on-photo, .btn.on-dark {
  background: rgba(255, 255, 255, 0.95);
  color: var(--rtz-slate);
  border-color: rgba(255, 255, 255, 0.95);
}
.btn.on-photo:hover, .btn.on-dark:hover {
  background: #fff;
  color: var(--rtz-blue-deep);
}
.btn.on-photo.outline, .btn.on-dark.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn.on-photo.outline:hover, .btn.on-dark.outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--rtz-slate);
}

/* Arrow link — text + arrow, no pill */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rtz-blue);
  text-decoration: none;
  border-bottom: 1.5px solid var(--rtz-blue);
  padding-bottom: 4px;
  transition: gap var(--t-fast) ease, color var(--t-fast) ease;
}
.btn-arrow::after { content: '→'; transition: transform var(--t-fast) ease; }
.btn-arrow:hover { color: var(--rtz-blue-deep); }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-arrow.on-dark { color: #fff; border-bottom-color: var(--rtz-blue-bright); }
.btn-arrow.on-dark:hover { color: var(--rtz-blue-bright); }

/* CTA row */
.cta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   NAV (Pattern B — .nav-brand + .nav-links + nav-cta)
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base) ease, padding var(--t-base) ease;
}
.nav.over-photo {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Soft top-down scrim so nav text stays readable when the underlying
   hero photo is bright (clouds, sky, snow). Sits behind the nav, fades
   out before reaching the headline. */
.nav.over-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: -1;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: 12px 36px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img { height: 40px; width: auto; }
.nav-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1;
}
.nav-brand .wordmark .sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-top: 4px;
}
.nav.over-photo .nav-brand .wordmark { color: #fff; }
.nav.over-photo .nav-brand .wordmark .sub { color: rgba(255, 255, 255, 0.78); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
.nav-links a:hover { color: var(--rtz-blue); }
.nav.over-photo .nav-links a { color: rgba(255, 255, 255, 0.86); }
.nav.over-photo .nav-links a:hover { color: #fff; }

.nav-cta {
  flex-shrink: 0;
}

/* mobile-responsive.css picks up `.nav-burger` when injected by mobile-nav.js */

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-block: var(--section);
  overflow: hidden;
}
.hero .display { max-width: 16ch; }   /* Force natural 2-line balance */
.hero .h1      { max-width: 18ch; }
.hero .hero-bg, .hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .hero-scrim, .hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(57, 68, 76, 0.45) 0%,
    rgba(57, 68, 76, 0.6) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; color: #fff; }
.hero .display, .hero .h1 { color: #fff; }
.hero .display em, .hero .h1 em,
.hero .display .it, .hero .h1 .it { color: var(--rtz-blue-bright); }
.hero .lede { color: rgba(255, 255, 255, 0.92); margin-top: 32px; }
.hero .eyebrow { color: var(--rtz-blue-bright); }
.hero .cta-row { margin-top: 40px; }

/* Light hero variant — no photo, warm cream bg */
.hero.light {
  background: var(--bg-warm);
  min-height: 70vh;
}
.hero.light .hero-scrim, .hero.light .scrim,
.hero.light .hero-bg, .hero.light .bg { display: none; }
.hero.light .container { color: var(--ink); }
.hero.light .display, .hero.light .h1 { color: var(--ink); }
.hero.light .display em, .hero.light .h1 em { color: var(--rtz-blue); }
.hero.light .lede { color: var(--ink-mid); }
.hero.light .eyebrow { color: var(--rtz-blue); }

/* ============================================================
   PHOTO TILE — signature 20px chamfer
   ============================================================ */

.photo-tile {
  position: relative;
  display: block;
  border-radius: var(--r-photo);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-quiet);
}
.photo-tile:hover img { transform: scale(1.03); }
.photo-tile.portrait { aspect-ratio: 4 / 5; }
.photo-tile.square { aspect-ratio: 1 / 1; }
.photo-tile.wide { aspect-ratio: 16 / 9; }

/* ============================================================
   THREE-STAGE SUPPORT CARDS (the recurring brand pattern)
   newly bereaved → navigating loss → after a diagnosis
   ============================================================ */

.support-stage {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-photo);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t-base) ease, box-shadow var(--t-base) ease,
              border-color var(--t-base) ease;
}
.support-stage:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(57, 68, 76, 0.18);
  border-color: var(--rtz-blue);
}
.support-stage .stage-num {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--rtz-blue);
  line-height: 1;
}
.support-stage .h3 { color: var(--ink); }
.support-stage p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-mid);
  margin: 0;
}
.support-stage .btn-arrow { margin-top: auto; align-self: flex-start; }

/* ============================================================
   PHILOSOPHY / PULL-BLOCK — italic serif on slate
   ============================================================ */

.philosophy {
  background: var(--rtz-slate);
  color: #fff;
  border-radius: var(--r-photo);
  padding: 80px clamp(2rem, 6vw, 4.5rem);
  position: relative;
}
.philosophy::before {
  content: '“';
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--rtz-blue-bright);
  opacity: 0.3;
  line-height: 1;
}
.philosophy blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.4;
  color: #fff;
  margin: 0;
  max-width: 32ch;
}
.philosophy .attribution {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 32px;
  display: block;
}

/* ============================================================
   THE CLOSING TRIAD — "Break the silence. Nurture healing. Inspire hope."
   Appears on every page. Signature pattern.
   ============================================================ */

.closing-triad {
  background: var(--bg-soft);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center;
}
.closing-triad p {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.45;
  color: var(--rtz-slate);
  margin: 0 auto;
  max-width: 24ch;
  text-wrap: balance;
}
.closing-triad.warm { background: var(--rtz-warm); }
.closing-triad.dark { background: var(--rtz-slate); }
.closing-triad.dark p { color: #fff; }

/* ============================================================
   BEACONS OF LOVE TRIBUTE WALL
   Vertical text-based memorial namelist — NOT a grid of cards.
   ============================================================ */

.tribute-wall {
  max-width: 720px;
  margin: 0 auto;
}
.tribute-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}
.tribute-list li {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--rtz-slate);
  text-align: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.tribute-list li:last-child { border-bottom: none; }
.tribute-list li .year {
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink-quiet);
  margin-left: 12px;
  vertical-align: middle;
}

/* ============================================================
   MEMORY-MAKING 9-CATEGORY GRID
   The brand's Dewey Decimal for grief artifacts.
   ============================================================ */

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.memory-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-photo);
  overflow: hidden;
  transition: transform var(--t-base) ease, border-color var(--t-base) ease,
              box-shadow var(--t-base) ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.memory-card:hover {
  transform: translateY(-3px);
  border-color: var(--rtz-blue);
  box-shadow: 0 16px 32px -16px rgba(57, 68, 76, 0.15);
}
.memory-card .photo-tile {
  border-radius: 0;
  aspect-ratio: 16 / 10;
}
.memory-card .body {
  padding: 24px 24px 28px;
}
.memory-card .h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.memory-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 980px) {
  .memory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .memory-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTHOUSE / GIVING CTA BAND
   Dark slate background, italic-inside-roman headline.
   ============================================================ */

.cta-band {
  background: var(--rtz-slate);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  text-align: center;
}
.cta-band .eyebrow { color: var(--rtz-blue-bright); }
.cta-band .h1, .cta-band .display {
  color: #fff;
  margin: 24px auto 0;
  max-width: 22ch;
}
.cta-band .h1 em, .cta-band .display em { color: var(--rtz-blue-bright); }
.cta-band .lede {
  color: rgba(255, 255, 255, 0.82);
  margin: 28px auto 0;
}
.cta-band .actions {
  display: inline-flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   STAT ROW — 1500+ families served etc
   ============================================================ */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: left;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--rtz-blue);
  letter-spacing: -0.015em;
  display: block;
}
.stat .label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  margin-top: 12px;
  display: block;
  max-width: 26ch;
}
.stat-row.on-dark .num { color: var(--rtz-blue-bright); }
.stat-row.on-dark .label { color: rgba(255, 255, 255, 0.82); }

@media (max-width: 900px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   STARRY SKY / CANDLE / LUMINARY DECORATIVE
   ============================================================ */

.star-glyph { color: var(--rtz-blue); display: inline-block; }
.star-row {
  display: inline-flex;
  gap: 10px;
  color: var(--rtz-blue);
  margin-bottom: 20px;
}
.star-row .star-glyph { font-size: 0.875rem; }

/* ============================================================
   INCLUSIVITY DISCLOSURE
   Brand-required pattern: visible italic disclaimer on gendered pages.
   ============================================================ */

.inclusivity-note {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  padding: 20px 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--rtz-blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 64ch;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--t-fast) ease;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--rtz-blue);
  box-shadow: 0 0 0 3px rgba(93, 151, 187, 0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--rtz-slate);
  color: rgba(255, 255, 255, 0.82);
  padding: 80px var(--gutter) 32px;
}
.footer-grid,
.footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 36ch;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 18px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
.footer a:hover { color: #fff; }
.footer-bottom,
.footer .legal {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}
.footer-bottom .socials,
.footer .socials {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .footer-grid, .footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .footer-grid, .footer .grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   DS CHROME — tab nav for the kit pages (catalog navigation)
   ============================================================ */

.ds-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.ds-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.ds-nav-brand small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-left: 12px;
}
.ds-nav-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.ds-nav-tabs a, .tabs .tab {
  display: block;
  padding: 8px 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--t-fast), color var(--t-fast);
}
.ds-nav-tabs a:hover, .tabs .tab:hover {
  background: var(--surface);
  color: var(--ink);
}
.ds-nav-tabs a.active, .tabs .tab.active {
  background: var(--rtz-blue);
  color: #fff;
}
.tabs { display: flex; gap: 4px; }

.ds-hero {
  padding: 80px 0 56px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.ds-section {
  padding-block: 72px;
  border-top: 1px solid var(--border);
}

/* DS spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
.spec-table thead th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-strong);
}
.spec-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  line-height: 1.55;
  vertical-align: top;
}
.spec-table code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.8125rem;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--rtz-blue-deep);
}

/* mark-thin — gentle underline emphasis */
.mark-thin {
  box-shadow: inset 0 -2px 0 var(--rtz-blue-bright);
  background: transparent;
  color: inherit;
  padding: 0 2px;
}

/* ============================================================
   PATTERN CATALOG (sections.html — pattern-toc + pattern-section)
   Cleaner layout vs sidebar — horizontal TOC + stacked patterns.
   ============================================================ */

.pattern-toc {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.pattern-toc .container {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.pattern-toc .label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  flex-shrink: 0;
}
.pattern-toc .links {
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
}
.pattern-toc .links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.pattern-toc .links a:hover {
  color: var(--rtz-blue);
  border-bottom-color: var(--rtz-blue);
}

.pattern-section {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}
.pattern-section:last-child { border-bottom: none; }
.pattern-section h3.pattern-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pattern-section h3.pattern-name code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--rtz-blue-deep);
  padding: 4px 10px;
  border-radius: 4px;
}
.pattern-section .pattern-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-mid);
  max-width: 64ch;
  margin: 0 0 28px;
  line-height: 1.65;
}
.pattern-section .preview {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--r-photo);
  overflow: hidden;
  position: relative;
}
.pattern-section .preview.bg-soft { background: var(--bg-soft); }
.pattern-section .preview.bg-warm { background: var(--bg-warm); }
.pattern-section .preview.bg-dark { background: var(--rtz-slate); color: #fff; }

.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rtz-blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.pill.warm { background: var(--rtz-warm); color: var(--rtz-slate); }
.pill.slate { background: var(--rtz-slate); color: #fff; }

/* ============================================================
   THREE-PILLAR FEATURE CARDS (the HOMEPAGE pattern)
   Different from .support-stage — the homepage uses three
   image-led cards with italic headlines + single CTA.
   newly bereaved → navigating → care
   ============================================================ */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 28px; }
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}
.pillar .photo-tile { aspect-ratio: 5 / 6; }
.pillar:hover .photo-tile img { transform: scale(1.03); }
.pillar .headline {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.pillar .btn-arrow { align-self: flex-start; }

/* ============================================================
   AUDIENCE-PIVOT BLOCK (homepage signature)
   "Supporting someone through loss?" / "Are you a care provider?"
   Two-column: photo left, copy right (or alternated).
   ============================================================ */

.audience-pivot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-soft);
  border-radius: var(--r-photo);
  overflow: hidden;
}
.audience-pivot.warm { background: var(--rtz-warm); }
.audience-pivot .photo-side {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
.audience-pivot .copy-side {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.audience-pivot .copy-side .h2 { margin: 0; }
.audience-pivot .copy-side p {
  font-family: var(--font-body);
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 36ch;
  margin: 0;
}
.audience-pivot .copy-side .btn-arrow { align-self: flex-start; }
.audience-pivot.reverse { direction: rtl; }
.audience-pivot.reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .audience-pivot { grid-template-columns: 1fr; }
  .audience-pivot .photo-side { min-height: 240px; }
  .audience-pivot.reverse { direction: ltr; }
}

/* ============================================================
   FOUNDER MESSAGE BLOCK (homepage signature)
   Long-form first-person paragraph, centered, with one CTA below.
   Carries the strongest brand promise: "you will find joy again."
   ============================================================ */

.founder-message {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-block: var(--section);
}
.founder-message .eyebrow { color: var(--rtz-blue); }
.founder-message .h2 {
  margin: 16px 0 32px;
  font-style: italic;
  font-weight: 400;
}
.founder-message p {
  font-family: var(--font-body);
  font-size: var(--text-lede);
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.founder-message .signature {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--rtz-slate);
  font-size: 1rem;
  margin-top: 24px;
  display: block;
}

/* ============================================================
   FEATURED STORIES GRID (4-up)
   Homepage Stories of Hope teaser — 4 stories in 4-col grid.
   Collapses 4 → 2 → 1.
   ============================================================ */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .stories-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px)  { .stories-grid { grid-template-columns: 1fr; } }

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.story-card .photo-tile { aspect-ratio: 4 / 5; }
.story-card .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.story-card .byline {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0;
}
.story-card:hover .title { color: var(--rtz-blue-deep); }
.story-card:hover .photo-tile img { transform: scale(1.03); }

/* ============================================================
   NEWSLETTER STRIP
   "Get support right in your inbox" — italic serif H2 + email form
   ============================================================ */

.newsletter-strip {
  background: var(--bg-warm);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
}
.newsletter-strip .h2 {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 24px;
  color: var(--rtz-slate);
}
.newsletter-strip form {
  display: inline-flex;
  gap: 12px;
  max-width: 480px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-strip input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}
.newsletter-strip input[type="email"]:focus {
  outline: none;
  border-color: var(--rtz-blue);
  box-shadow: 0 0 0 3px rgba(93, 151, 187, 0.15);
}

/* ============================================================
   CLOSING TRIAD + DONATE CTA (merged variant — homepage uses this)
   Triad as the H2, single donate CTA below.
   ============================================================ */

.closing-triad.with-cta {
  background: var(--rtz-slate);
  padding-block: clamp(5rem, 9vw, 8rem);
}
.closing-triad.with-cta p { color: #fff; }
.closing-triad.with-cta .actions {
  margin-top: 36px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   SX-SHELL — sections catalog (sections.html scaffold)
   ============================================================ */

.sx-shell {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
}
.sx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 32px 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.sx-header::before {
  content: '';
  display: block;
  height: 3px;
  width: 56px;
  background: var(--rtz-blue);
  margin-bottom: 14px;
}
.sx-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0;
}
.sx-header h1 small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-left: 16px;
}
.sx-header p {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  color: var(--ink-mid);
}

.sx-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
.sx-index {
  position: sticky;
  top: 84px;
  align-self: flex-start;
  padding: 24px 20px;
  background: var(--bg-soft);
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  border-right: 1px solid var(--border);
}
.sx-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sx-index a {
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.sx-index a::before {
  content: '✦';
  display: inline-block;
  margin-right: 8px;
  color: var(--rtz-blue);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.sx-index a:hover { background: rgba(93, 151, 187, 0.1); color: var(--ink); }
.sx-index a:hover::before { opacity: 1; }

.sx-main { padding: 32px 32px 96px; }
.sx-pattern {
  padding: 40px 0 56px;
  border-bottom: 1px solid var(--border);
}
.sx-pattern:last-child { border-bottom: none; }
.sx-pattern::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--rtz-blue);
  margin-bottom: 24px;
}
.sx-pattern .id {
  display: inline-block;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rtz-blue-deep);
  background: rgba(93, 151, 187, 0.12);
  padding: 6px 12px;
  border-left: 3px solid var(--rtz-blue);
  border-radius: 0 6px 6px 0;
  margin-bottom: 16px;
}
.sx-pattern h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 12px;
}
.sx-pattern > p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  max-width: 64ch;
  margin: 0 0 28px;
  line-height: 1.65;
}
.sx-demo {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--r-photo);
  padding: 32px;
  overflow: hidden;
  position: relative;
}
.sx-demo > .demo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rtz-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ============================================================
   PAGES GALLERY (pages.html)
   ============================================================ */

.pages-gallery {
  padding: 56px 32px 96px;
  background: var(--bg-soft);
  min-height: calc(100vh - 60px);
}
.pages-gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.page-card {
  background: #fff;
  border-radius: var(--r-photo);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(57, 68, 76, 0.18);
}
.page-card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-warm);
}
.page-card .body { padding: 24px 28px 28px; }
.page-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.page-card p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  margin: 0;
}

/* ============================================================
   BASELINE RESPONSIVE — desktop-aware breakpoints
   For mobile-specific overrides see ../mobile-responsive.css
   (auto-loaded by ../mobile-nav.js).
   ============================================================ */

@media (max-width: 1100px) {
  .nav { padding: 16px 28px; }
}
@media (max-width: 860px) {
  /* Hide desktop nav-links; mobile-nav.js will inject the hamburger and
     mobile-responsive.css will transform .nav-links into a drawer. */
  .nav-links { display: none; }
  .nav-brand .wordmark { font-size: 1rem; }
  .nav-brand .wordmark .sub { display: none; }
  .nav { padding: 14px 18px; }

  .hero { min-height: 70vh; padding-block: 80px; }
  .philosophy { padding: 56px 28px; }
  .philosophy::before { top: 12px; left: 18px; font-size: 6rem; }
}
@media (max-width: 640px) {
  :root {
    --section: 72px;
    --section-sm: 48px;
    --section-lg: 96px;
  }
  .cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-row .btn { width: 100%; }
  .closing-triad p { font-size: 1.25rem; }
}

/* ============================================================
   Print niceties
   ============================================================ */

@media print {
  .nav, .ds-nav, .footer, .cta-band { display: none; }
  .hero { min-height: auto; }
  .hero .hero-bg, .hero .hero-scrim { display: none; }
  .hero .container { color: var(--ink); }
  .hero .display, .hero .h1 { color: var(--ink); }
}
