/* ============================================================
   Living Through It - Global Stylesheet
   Workplace Investigation, Mediation & Restoration
   ============================================================ */

/* --- FONTS (self-hosted, latin subset) --------------------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/roboto-var.woff2') format('woff2');
}

/* --- TOKENS ------------------------------------------------ */
:root {
  /* Color - Primary (matches livingthrough-it.ca brand deep purple) */
  --color-primary:            #39035A;
  --color-primary-light:      #7021A6;

  /* Color - Secondary (brand teal) */
  --color-secondary:          #146F7F;
  --color-secondary-light:    #1E8FA0;

  /* Color - Accent (brand warm peach) */
  --color-accent:             #FFBC7D;
  --color-accent-hover:       #FFA85C;
  --color-accent-muted:       rgba(255,188,125,0.22);

  /* Color - Surfaces */
  --color-surface-cream:      #FAF6F0;
  --color-surface-paper:      #F0EBE1;
  --color-surface-warm:       #EDE6D8;
  --color-surface-white:      #FFFFFF;

  /* Color - Text */
  --color-text:               #1A1A1A;
  --color-text-muted:         #5C5C5C;
  --color-text-on-dark:       #F5F0E8;
  --color-text-on-dark-muted: #C9B8D6;

  /* Color - Dark strip */
  --color-dark-strip:         #2A0240;
  --color-dark-strip-border:  rgba(255,255,255,0.10);

  /* Color - Utility */
  --color-border:             #D6CEBC;
  --color-focus:              #FFBC7D;
  --color-overlay:            rgba(57,3,90,0.85);
  --color-error:              #C0392B;

  /* Typography */
  --font-display:  'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:     'Roboto', system-ui, -apple-system, sans-serif;

  --text-h1:    clamp(2.25rem, 5vw, 3.75rem);
  --text-h2:    clamp(1.625rem, 3.5vw, 2.5rem);
  --text-h3:    clamp(1.25rem, 2.5vw, 1.75rem);
  --text-h4:    clamp(1.1rem, 2vw, 1.375rem);
  --text-body:  clamp(1rem, 1.5vw, 1.125rem);
  --text-small: clamp(0.875rem, 1.2vw, 0.9375rem);
  --text-micro: 0.8125rem;

  --leading-body:    1.65;
  --leading-heading: 1.15;
  --measure:         65ch;

  /* Spacing */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-2xl:     6rem;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-btn:  6px;
  --radius-hero: 24px 24px 24px 80px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgb(0 0 0 / 0.08);
  --shadow-md:   0 4px 16px rgb(0 0 0 / 0.1);
  --shadow-card: 0 1px 4px rgb(0 0 0 / 0.06);

  /* Motion */
  --ease-reveal:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:        0.15s;
  --dur-hover:       0.2s;
  --dur-reveal:      0.6s;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;

  /* Layout */
  --container:        1200px;
  --container-narrow: 800px;
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
html, body { overflow-x: hidden; overflow-x: clip; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-text);
  background: var(--color-surface-cream);
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* --- UTILITIES --------------------------------------------- */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container--narrow {
  width: min(100% - 2rem, var(--container-narrow));
  margin-inline: auto;
}
.flow > * + * { margin-top: var(--space-md); }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.text-muted { color: var(--color-text-muted); }

/* --- SKIP LINK --------------------------------------------- */
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  z-index: 9999;
}
.skip-link:focus {
  position: fixed;
  top: 1rem; left: 1rem;
  width: auto; height: auto;
  padding: 0.75rem 1.25rem;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  z-index: 100000;
}

/* --- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--leading-heading);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--text-h1); font-weight: 800; }
h2 { font-size: var(--text-h2); font-weight: 700; }
h3 { font-size: var(--text-h3); font-weight: 600; }
h4 { font-size: var(--text-h4); font-weight: 600; }

.accent-word {
  color: var(--color-primary-light);
  font-style: italic;
}

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-small);
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.3;
  transition: background var(--dur-hover) ease,
              color var(--dur-hover) ease,
              border-color var(--dur-hover) ease,
              transform var(--dur-hover) var(--ease-reveal);
}
/* Per-variant color rules below set button text color.
   Each pair guarantees background and text are never the same value. */

.btn--primary,
a.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.btn--primary:hover,
a.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-primary);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn--ghost,
a.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--ghost:hover,
a.btn--ghost:hover {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--light,
a.btn--light {
  background: transparent;
  color: var(--color-text-on-dark);
  border-color: var(--color-text-on-dark);
}
.btn--light:hover,
a.btn--light:hover {
  background: var(--color-text-on-dark);
  color: var(--color-primary);
  border-color: var(--color-text-on-dark);
  transform: translateY(-2px);
}

.btn--full-width { width: 100%; }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* --- HEADER ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--dur-hover) ease;
  color: var(--color-text-on-dark);
}
.site-header .nav-links a,
.site-header .nav-toggle,
.site-header .nav-toggle__label { color: var(--color-text-on-dark); }
.site-header .nav-toggle__icon span { background: var(--color-text-on-dark); }
.site-header .brand__logo { filter: brightness(0) invert(1); }
.site-header .nav-links a:hover,
.site-header .nav-links a[aria-current="page"] { color: var(--color-accent); }
.site-header.is-scrolled {
  box-shadow: 0 1px 8px rgb(0 0 0 / 0.08);
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  max-width: var(--container);
  margin-inline: auto;
  width: min(100% - 2rem, var(--container));
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.brand__mark span { color: var(--color-accent); }
.brand__logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
}
.brand__logo--light {
  filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
  .brand__logo { height: 40px; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Desktop nav */
.nav-links {
  display: none;
  gap: var(--space-md);
  align-items: center;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--dur-fast) ease;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--dur-hover) var(--ease-reveal);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--color-primary); font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.dropdown-arrow {
  width: 12px; height: 12px;
  transition: transform var(--dur-fast) ease;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -0.5rem;
  min-width: 220px;
  background: var(--color-surface-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: var(--text-small);
}
.dropdown-menu a:hover { background: var(--color-surface-paper); }
.dropdown-menu a::after { display: none; }

/* Header CTA - desktop only */
.header-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  z-index: 55;
}
.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav-toggle__icon span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform var(--dur-hover) ease, opacity var(--dur-hover) ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle__label {
  font-size: var(--text-micro);
  font-weight: 500;
  color: var(--color-text);
}

/* Mobile drawer */
.site-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--color-primary);
  z-index: 45;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--dur-hover) var(--ease-reveal);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.site-nav[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
}
/* JS sets body.style.overflow = 'hidden' when the drawer opens; see js/components.js */

.site-nav .nav-links-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-nav .nav-links-mobile a {
  display: block;
  padding: 1rem 0;
  color: var(--color-text-on-dark);
  font-size: var(--text-body);
  font-weight: 500;
  border-bottom: 1px solid var(--color-dark-strip-border);
  min-height: 44px;
}
.site-nav .nav-links-mobile a:hover { color: var(--color-accent); }
.site-nav .nav-links-mobile .sub-link {
  padding-left: 1.5rem;
  font-size: var(--text-small);
  color: var(--color-text-on-dark-muted);
}
.site-nav .nav-cta {
  display: block;
  margin-top: var(--space-lg);
  text-align: center;
}

/* Drawer overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-hover) ease, visibility var(--dur-hover) ease;
}
.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-overlay { display: none; }
  .site-nav { display: none; }
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .brand__mark { font-size: 1.375rem; }
}

/* --- SECTIONS ---------------------------------------------- */
.section { padding: var(--space-section) 0; }
.section--compact { padding: var(--space-md) 0; }
.section--cream  { background: var(--color-surface-cream); }
.section--paper  { background: var(--color-surface-paper); }
.section--dark   { background: var(--color-dark-strip); color: var(--color-text-on-dark); }
.section--dark h2, .section--dark h3 { color: var(--color-text-on-dark); }
.section--primary { background: var(--color-primary); color: var(--color-text-on-dark); }
.section--primary h1, .section--primary h2 { color: var(--color-text-on-dark); }
.section--primary .hero__sub, .section--primary .hero__body { color: var(--color-text-on-dark-muted); }
.section--dark a:not(.btn) { color: var(--color-accent); }
.section--primary a:not(.btn) { color: var(--color-accent); }

.section__header {
  max-width: var(--measure);
  margin-bottom: var(--space-lg);
}
.section__header.text-center { margin-inline: auto; }
.section__header p {
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* --- PAGE HERO BANNER (constrained image) ------------------ */
.page-hero-banner {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  overflow: hidden;
  line-height: 0;
}
.page-hero-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-hero);
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- HERO -------------------------------------------------- */
.hero { padding: var(--space-xl) 0 var(--space-2xl); }
.hero__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
.hero__content { max-width: 560px; }
.hero__content h1 { margin-bottom: var(--space-md); }
.hero__sub {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  max-width: var(--measure);
}
.hero__body {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  max-width: var(--measure);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
  font-size: var(--text-micro);
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.hero__trust .sep { opacity: 0.4; }
.hero__image {
  position: relative;
}
.hero__image img {
  border-radius: var(--radius-hero);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero__badge {
  position: absolute;
  bottom: -1rem; left: 1rem;
  background: var(--color-surface-white);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-md);
  min-width: 140px;
}
.hero__badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.hero__badge-label {
  font-size: var(--text-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 0.125rem;
}
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 55fr 45fr; }
  .hero__badge { bottom: 1.5rem; left: -1rem; }
}

/* --- HERO SPLIT (homepage) --------------------------------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-primary);
}
.hero-split__text {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}
.hero-split__title {
  color: var(--color-text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}
.hero-split__sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-on-dark);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 34ch;
}
.hero-split__tag {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-on-dark-muted);
  max-width: 34ch;
}
.hero-split__image {
  position: relative;
  background: #1a0224;
}
.hero-split__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* --- ENGRAVED GRID ----------------------------------------- */
.engraved-grid {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.engraved-grid__item {
  background: var(--color-surface-cream);
  padding: 2.5rem 2rem;
  position: relative;
  min-width: 0;
}
.engraved-grid__item h3 { margin-bottom: var(--space-xs); }
.engraved-grid__item h4 { margin-top: var(--space-md); margin-bottom: var(--space-xs); }
.engraved-grid__item p { color: var(--color-text-muted); }
.engraved-grid__item.flow > * + * { margin-top: var(--space-sm); }
.engraved-grid__item.flow > h4 { margin-top: var(--space-md); }
.engraved-grid__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-hover) var(--ease-reveal);
}
.engraved-grid__item:hover::before { transform: scaleX(1); }
.engraved-grid__item .item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: var(--space-sm);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--color-accent);
}
.section--paper .engraved-grid__item { background: var(--color-surface-white); }
@media (min-width: 640px) {
  .engraved-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .engraved-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- DARK STRIP + HAIRLINE LIST ---------------------------- */
.dark-strip__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
.dark-strip__text p {
  color: var(--color-text-on-dark-muted);
  margin-top: var(--space-sm);
  max-width: var(--measure);
}
@media (min-width: 768px) {
  .dark-strip__text {
    position: sticky;
    top: calc(var(--space-lg) + 60px);
    align-self: start;
  }
}
.hairline-list { list-style: none; }
.hairline-list__item {
  border-top: 1px solid var(--color-dark-strip-border);
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hairline-list__item::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.75rem;
}
.hairline-list__title {
  font-weight: 600;
  color: var(--color-text-on-dark);
}
.hairline-list__detail {
  color: var(--color-text-on-dark-muted);
  font-size: var(--text-small);
  margin-top: 0.125rem;
}
@media (min-width: 768px) {
  .dark-strip__grid { grid-template-columns: 1fr 1fr; }
}

/* --- SPLIT LAYOUT ------------------------------------------ */
.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
.split__text { min-width: 0; }
.split__text h2 { margin-bottom: var(--space-sm); }
.split__text p { color: var(--color-text-muted); margin-top: var(--space-sm); max-width: var(--measure); }
.split__text p:first-of-type { color: var(--color-text); }
.split__text p strong { color: var(--color-primary); }
.split__image img {
  border-radius: var(--radius-hero);
  width: 100%;
  object-fit: cover;
}
.split__image--portrait {
  max-width: 460px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__image { order: -1; }
}

/* --- PULL QUOTE -------------------------------------------- */
.pull-quote {
  max-width: 50ch;
  margin-inline: auto;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-primary);
}
.pull-quote figcaption {
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-small);
}
.pull-quote .accent-line {
  display: block;
  width: 48px; height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-md);
  border-radius: 2px;
}

/* --- CTA BANNER -------------------------------------------- */
.cta-banner {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}
.cta-banner h2 {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-sm);
}
.cta-banner p {
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
  margin-inline: auto;
}
.cta-banner .btn-group { justify-content: center; }

/* --- PHOTO CARDS (3-up image services, matches original) -- */
.photo-cards {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .photo-cards { grid-template-columns: 1fr; } }

.photo-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: transform var(--dur-hover) var(--ease-reveal);
}
.photo-card p { flex: 1; }
.photo-card:hover { transform: translateY(-2px); }
.photo-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
}
.photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-xs);
}
.photo-card__rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.photo-card p { color: var(--color-text-muted); }

/* --- ISSUE CAROUSEL ---------------------------------------- */
.issue-carousel {
  position: relative;
  padding: 0 2rem;
}
.issue-carousel__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.issue-carousel__track::-webkit-scrollbar { display: none; }
.issue-carousel__track .issue-tile {
  flex: 0 0 calc((100% - 2 * var(--space-md)) / 3);
  scroll-snap-align: start;
}
.issue-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.issue-carousel__btn:hover { background: var(--color-primary-light); }
.issue-carousel__btn:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; }
.issue-carousel__prev { left: 0; }
.issue-carousel__next { right: 0; }
.issue-carousel__swipe-hint {
  display: none;
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  letter-spacing: 0.03em;
}
.issue-carousel__swipe-hint::before { content: '\2190\00a0'; }
.issue-carousel__swipe-hint::after  { content: '\00a0\2192'; }
@media (max-width: 900px) {
  .issue-carousel { padding: 0; }
  .issue-carousel__track .issue-tile { flex: 0 0 85%; }
  .issue-carousel__btn { display: none; }
  .issue-carousel__swipe-hint { display: block; }
}

/* --- ISSUE TILES (image cards, matches original carousel) - */
.issue-tiles {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .issue-tiles { grid-template-columns: 1fr; } }

.issue-tile {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.issue-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
  transition: opacity var(--dur-hover) ease;
}
.issue-tile:hover::before { opacity: 0.85; }
.issue-tile--teal::before   { background: #277D7E; }
.issue-tile--purple::before { background: #4F0883; }
.issue-tile--violet::before { background: #3004A8; }

.issue-tile__inner {
  padding: var(--space-lg) var(--space-md);
  color: #fff;
}
.issue-tile__inner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.issue-tile__inner p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* --- ISSUE TAGS -------------------------------------------- */
.issue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.issue-tags span {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface-white);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.issue-tags span:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-muted);
}

/* --- ISSUE CARDS (icon grid) ------------------------------- */
.issue-cards {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.issue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--color-surface-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform var(--dur-hover) var(--ease-reveal),
              box-shadow var(--dur-hover) ease,
              border-color var(--dur-hover) ease;
}
.issue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.issue-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--color-accent-muted);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: background var(--dur-hover) ease, color var(--dur-hover) ease;
}
.issue-card:hover .issue-card__icon {
  background: var(--color-accent);
  color: var(--color-primary);
}
.issue-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.issue-card h3 {
  font-size: var(--text-h4);
  margin: 0;
}
.issue-card p {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  margin: 0;
}
@media (min-width: 600px) {
  .issue-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .issue-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Issue cards on purple background */
.section--primary .issue-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.section--primary .issue-card h3 { color: var(--color-text-on-dark); }
.section--primary .issue-card p  { color: var(--color-text-on-dark-muted); }
.section--primary .issue-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-accent);
}
.section--primary .issue-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-accent);
}
.section--primary .issue-card:hover .issue-card__icon {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* --- NUMBERED STEPS ---------------------------------------- */
.steps {
  display: grid;
  gap: var(--space-md);
}
.step {
  position: relative;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-surface-white);
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-hover) var(--ease-reveal),
              box-shadow var(--dur-hover) ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.step h3 { margin-bottom: var(--space-xs); font-size: var(--text-h4); }
.step p { color: var(--color-text-muted); font-size: var(--text-small); }

@media (max-width: 767px) {
  .step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--space-sm);
    row-gap: var(--space-xs);
    padding: var(--space-md);
  }
  .step__number {
    grid-row: 1 / 3;
    align-self: start;
  }
}

@media (min-width: 768px) {
  .steps--horizontal {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
  }
  .steps--horizontal .step {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
  }
  /* Connector line between horizontal cards */
  .steps--horizontal .step::after {
    content: '';
    position: absolute;
    top: calc(var(--space-lg) + 1.5rem);
    right: calc(var(--space-lg) * -0.5 - 2px);
    width: var(--space-lg);
    height: 2px;
    background: var(--color-accent-muted);
    border-top: 1px dashed var(--color-primary-light);
    opacity: 0.6;
  }
  .steps--horizontal .step:last-child::after { display: none; }
  .steps--horizontal .step__number {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.375rem;
  }
}

/* --- FORMS ------------------------------------------------- */
.form__group {
  margin-bottom: var(--space-md);
}
.form__group label {
  display: block;
  font-weight: 500;
  font-size: var(--text-small);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}
.form__group .required { color: var(--color-error); }
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: var(--color-surface-white);
  font-size: max(16px, 1rem);
  color: var(--color-text);
  transition: border-color var(--dur-fast) ease;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-focus);
  outline-offset: 1px;
}
.form__group textarea { min-height: 140px; resize: vertical; }
.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5C5C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__error {
  display: none;
  font-size: var(--text-small);
  color: var(--color-error);
  margin-top: 0.25rem;
}
.form__group--error input,
.form__group--error textarea,
.form__group--error select {
  border-color: var(--color-error);
}
.form__group--error .form__error { display: block; }
.form__hint {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}
.form__honeypot { position: absolute; left: -9999px; }
.form__success {
  padding: var(--space-lg);
  background: var(--color-accent-muted);
  border-radius: var(--radius-md);
  text-align: center;
}
.form__success h3 { margin-bottom: var(--space-xs); }

/* --- FOOTER ------------------------------------------------ */
.site-footer {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: var(--space-2xl) 0 0;
}
.footer__grid {
  display: grid;
  gap: var(--space-xl);
}
.footer__brand .brand__mark { color: var(--color-text-on-dark); }
.footer__brand .brand__mark span { color: var(--color-accent); }
.footer__about {
  color: var(--color-text-on-dark-muted);
  font-size: var(--text-small);
  margin-top: var(--space-sm);
  max-width: 35ch;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-sm);
}
.footer__links a {
  display: block;
  padding: 0.375rem 0;
  color: var(--color-text-on-dark-muted);
  font-size: var(--text-small);
  transition: color var(--dur-fast) ease;
}
.footer__links a:hover { color: var(--color-accent); }
.footer__contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-on-dark-muted);
  font-size: var(--text-small);
  padding: 0.375rem 0;
  transition: color var(--dur-fast) ease;
}
.footer__contact-info a:hover { color: var(--color-accent); }
.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--color-text-on-dark-muted);
  border: 1px solid var(--color-dark-strip-border);
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.footer__social a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__social svg[stroke="currentColor"] { fill: none; }

.footer-meta {
  margin-top: var(--space-xl);
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--text-micro);
  color: var(--color-text-on-dark-muted);
}
.footer-meta a { color: var(--color-text-on-dark-muted); transition: color var(--dur-fast) ease; }
.footer-meta a:hover { color: var(--color-accent); }
.footer-meta__links {
  display: flex;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-meta {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}

/* --- MOBILE CALL BAR --------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 30;
  background: var(--color-primary);
  padding: 0.625rem var(--space-sm);
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 10px rgb(0 0 0 / 0.15);
}
.mobile-bar__inner {
  display: flex;
  gap: 0.625rem;
  max-width: var(--container);
  margin-inline: auto;
}
.mobile-bar .btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.75rem 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .mobile-bar { display: block; }
  /* Reserve room so the fixed call bar can never cover the footer's bottom row
     when JS is delayed or IntersectionObserver fails. JS toggles display:none
     on the bar when the footer enters the viewport; this padding is the
     no-JS / pre-JS safety net. */
  .site-footer { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* --- LEGAL PAGES ------------------------------------------- */
.legal {
  max-width: 740px;
  margin-inline: auto;
  padding: var(--space-xl) var(--space-md);
}
.legal h1 { font-size: var(--text-h2); margin-bottom: var(--space-xs); }
.legal__meta {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  margin-bottom: var(--space-xl);
}
.legal h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.legal p, .legal li {
  line-height: var(--leading-body);
  margin-bottom: var(--space-sm);
}
.legal ul { padding-left: var(--space-lg); list-style: disc; }
.legal address {
  font-style: normal;
  line-height: var(--leading-body);
}
.legal section + section { margin-top: var(--space-lg); }

/* --- 404 --------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-sm);
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.error-page h1 { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.error-page p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }

/* --- SCROLL REVEAL -----------------------------------------
   Progressive enhancement: hidden state ONLY when JS has marked
   the document with `.has-anim`. Without JS (or before main.js
   runs) every `.reveal` element is fully visible, so a JS error
   or no-JS browser never strands content at opacity:0.
   The `.is-visible` override is symmetrically gated under the
   same `.has-anim` parent so it always wins on specificity.
   ----------------------------------------------------------- */
.has-anim .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-reveal) var(--ease-reveal),
              transform var(--dur-reveal) var(--ease-reveal);
  transition-delay: var(--delay, 0s);
}
.has-anim .reveal--left  { transform: translateX(-24px); }
.has-anim .reveal--right { transform: translateX(24px); }
.has-anim .reveal--up    { transform: translateY(20px); }
.has-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 768px) {
  .has-anim .reveal--left,
  .has-anim .reveal--right { transform: translateY(20px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .has-anim .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- CONTACT PAGE ------------------------------------------ */
.contact-details {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  gap: 0.75rem;
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-white);
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(57, 3, 90, 0.08);
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.contact-details a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.contact-details__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent-muted);
  color: var(--color-primary);
}
.contact-details__label {
  display: block;
  font-size: var(--text-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  font-weight: 600;
}
.contact-details__value {
  display: block;
  color: var(--color-primary);
  font-weight: 600;
}

.contact-social {
  display: flex;
  gap: 0.625rem;
  margin-top: var(--space-lg);
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-surface-white);
  color: var(--color-primary);
  border: 1px solid rgba(57, 3, 90, 0.12);
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.contact-social a:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.contact-confidential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  font-size: var(--text-micro);
  color: var(--color-text-muted);
}
.contact-confidential svg { color: var(--color-primary-light); flex-shrink: 0; }

.contact-form-wrapper {
  background: var(--color-surface-white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
}
.contact-form__title {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  color: var(--color-primary);
}
.contact-form__sub {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--text-small, 0.9375rem);
}

/* --- PARTIAL INCLUDE FOUC GUARD ---------------------------- */
#site-nav-container:empty,
#site-footer-container:empty { display: none; }

/* --- HERO TITLE LINE BREAKS --------------------------------
   Used by index.html and pages/podcast.html to replace `<br>`
   inside `<h1>` (which fragments screen-reader output) with
   visual line breaks driven by spans. */
.hero-split__title { line-height: 1.05; }
.hero-split__title-line { display: block; }

/* --- ISSUE TILES: per-tile background image escape hatch ---
   The per-instance `--issue-tile-bg` custom property is the single
   allowed inline-style use because the QA non-negotiables explicitly
   exempt `style="--*"`. Falls back gracefully to no image. */
.issue-tile { background-image: var(--issue-tile-bg, none); }

/* --- CONTACT PAGE: hero with photo background -------------- */
.contact-hero-bg {
  position: relative;
  isolation: isolate;
  background-image: url("../images/Print-71copy-1200.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(57, 3, 90, 0.92) 0%, rgba(57, 3, 90, 0.78) 45%, rgba(57, 3, 90, 0.55) 100%);
  z-index: -1;
}
.contact-hero-bg .hero__content h1 { color: #fff; }
.contact-hero-bg .hero__body,
.contact-hero-bg .contact-confidential { color: var(--color-text-on-dark); }
.contact-hero-bg .contact-confidential svg { color: var(--color-text-on-dark-muted); }

/* --- ABOUT PAGE: portrait + bullet-list utilities ---------- */
.hero__image .about-portrait {
  border-radius: 24px 24px 24px 80px;
  aspect-ratio: auto;
  object-position: center;
  display: block;
  margin-inline: auto;
}
.about-bullets { padding-left: 1.5rem; line-height: 1.9; }

/* --- INVESTIGATION PAGE: lede paragraph -------------------- */
.investigation-lede {
  font-weight: 700;
  margin-bottom: var(--space-lg);
  max-width: 900px;
}
.investigation-h2-tight { margin-bottom: var(--space-sm); }
