/* ─────────────────────────────────────────────────────────────
   Kanamé Support Hub — Shared Styles
   Editorial Japanese minimalism · 85/15 blue-led
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900&display=swap');

:root {
  /* Colors */
  --nishi: #2B5477;
  --nishi-deep: #1E3F5A;
  --nishi-soft: #3A6489;
  --onna: #EDB7C0;
  --onna-deep: #D89CA6;
  --ink: #2B5477;
  --paper: #FBFAF7;
  --paper-deep: #F4F1EA;
  --paper-subtle: #F8F6F1;
  --muted: #64748B;
  --muted-soft: #94A3B8;
  --hairline: rgba(43, 84, 119, 0.12);
  --hairline-strong: rgba(43, 84, 119, 0.22);
  --hairline-onna: rgba(237, 183, 192, 0.4);

  /* Type scale */
  --step--1: clamp(0.8125rem, 0.78rem + 0.16vw, 0.875rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.125rem);
  --step-1:  clamp(1.125rem, 1.05rem + 0.37vw, 1.375rem);
  --step-2:  clamp(1.375rem, 1.2rem + 0.87vw, 1.875rem);
  --step-3:  clamp(1.75rem, 1.4rem + 1.76vw, 2.75rem);
  --step-4:  clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --step-5:  clamp(3.5rem, 2.3rem + 6vw, 7.25rem);

  /* Spacing */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-s:   1rem;
  --space-m:   1.5rem;
  --space-l:   2rem;
  --space-xl:  3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 7rem;
  --space-4xl: 10rem;

  /* Radius */
  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;

  /* Shadows — almost imperceptible */
  --shadow-whisper: 0 1px 2px rgba(43, 84, 119, 0.04), 0 0 0 1px rgba(43, 84, 119, 0.06);
  --shadow-quiet:   0 2px 8px rgba(43, 84, 119, 0.06), 0 0 0 1px rgba(43, 84, 119, 0.08);
  --shadow-focus:   0 8px 24px rgba(43, 84, 119, 0.1),  0 0 0 1px rgba(43, 84, 119, 0.12);

  /* Transitions */
  --t-quick: 120ms ease-out;
  --t-ease: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-deliberate: 480ms cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --content-width: 1240px;
  --reading-width: 680px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ─── A11y primitives ─────────────────────────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--onna);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem 1.25rem;
  background: var(--nishi);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform var(--t-ease);
  border-bottom: 2px solid var(--onna);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
}

/* Honor reduced-motion preference (WCAG 2.3.3 + 2.2 best practice) */
@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;
  }
}

/* ─── Base ────────────────────────────────────────────────── */
body {
  font-family: 'Lato', -apple-system, sans-serif;
  font-size: var(--step-0);
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0.005em;
  min-height: 100vh;
}

/* ─── Type utilities ──────────────────────────────────────── */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nishi);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--onna { color: var(--onna-deep); }

.display {
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-size: var(--step-5);
}
.h1 {
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: var(--step-4);
}
.h2 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-size: var(--step-3);
}
.h3 {
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-size: var(--step-2);
}
.h4 {
  font-weight: 600;
  line-height: 1.3;
  font-size: var(--step-1);
}
.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  font-weight: 400;
  max-width: 42ch;
  color: var(--muted);
}
.meta {
  font-size: var(--step--1);
  color: var(--muted);
  letter-spacing: 0.02em;
}
.num-display {
  font-weight: 100;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--nishi);
  font-feature-settings: 'tnum' 1;
}

/* ─── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--space-m);
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--space-xl); }
}

/* ─── Global nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-l);
  padding: var(--space-s) var(--space-m);
}
@media (min-width: 1024px) {
  .nav__inner { padding: var(--space-s) var(--space-xl); }
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__wordmark {
  font-weight: 300;
  font-size: 1.375rem;
  letter-spacing: 0.005em;
  color: var(--nishi);
}
.nav__wordmark em {
  font-style: normal;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 0.5rem;
  font-weight: 400;
}
.nav__links {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 1024px) { .nav__links { display: inline-flex; } }
.nav__link {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color var(--t-quick);
}
.nav__link:hover { color: var(--nishi-deep); }
.nav__link--active { color: var(--nishi-deep); font-weight: 700; }
.nav__link--active::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--onna);
}
.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__search {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--hairline);
  background: var(--paper-subtle);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  color: var(--muted);
  min-width: 14rem;
  transition: border-color var(--t-quick), background var(--t-quick);
}
@media (min-width: 768px) { .nav__search { display: inline-flex; } }
.nav__search:hover { border-color: var(--hairline-strong); background: #fff; }
.nav__search kbd {
  font-family: 'Lato', monospace;
  font-size: 0.6875rem;
  color: var(--muted-soft);
  margin-left: auto;
  padding: 0.1rem 0.4rem;
  background: var(--paper-deep);
  border-radius: 2px;
  border: 1px solid var(--hairline);
}

/* ─── K-wedge icon (from logo) ───────────────────────────── */
.wedge {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: inline-block;
}

/* ─── Diagonal decorative lines (brand motif) ────────────── */
.diag-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.diag-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--t-ease), color var(--t-ease), transform var(--t-ease);
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--nishi);
  color: #fff;
}
.btn--primary:hover {
  background: var(--nishi-deep);
}
.btn--primary:hover .btn__wedge { transform: translateX(3px); }
.btn--outline {
  background: transparent;
  color: var(--nishi);
  box-shadow: inset 0 0 0 1px var(--nishi);
}
.btn--outline:hover {
  background: var(--nishi);
  color: #fff;
}
.btn--ghost {
  color: var(--nishi);
  padding-inline: 0.5rem;
}
.btn--ghost:hover { color: var(--nishi-deep); }
.btn__wedge {
  transition: transform var(--t-ease);
}

/* ─── Phase card (blue top + light stats panel) ────────────── */
.phase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-l) var(--space-l) 0;
  background: var(--nishi);
  color: rgba(255,255,255,0.92);
  border: 1px solid var(--nishi);
  border-radius: var(--r-md);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--t-ease), box-shadow var(--t-ease);
  min-height: 18rem;
}
.phase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(43, 84, 119, 0.24);
}
.phase-card__corner {
  position: absolute;
  top: 0; right: 0;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  opacity: 1;
}
.phase-card__corner::before,
.phase-card__corner::after {
  content: '';
  position: absolute;
  background: rgba(237, 183, 192, 0.4);
}
.phase-card__corner::before {
  width: 1px;
  height: 140%;
  top: -20%;
  right: 1.2rem;
  transform: rotate(-56deg);
  transform-origin: top right;
}
.phase-card:hover .phase-card__corner::before { background: var(--onna); }
.phase-card__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--onna);
  margin-bottom: var(--space-s);
  text-transform: uppercase;
}
.phase-card__title {
  font-size: clamp(1.625rem, 1.4rem + 1vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-xs);
}
.phase-card:hover .phase-card__title { color: var(--onna); }
.phase-card__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-m);
}
/* Light footer panel — pushed to bottom of card so all 4 cards have aligned white footers regardless of description length */
.phase-card__stats {
  margin-top: auto;
  margin-left: calc(var(--space-l) * -1);
  margin-right: calc(var(--space-l) * -1);
  margin-bottom: 0;
  padding: var(--space-m) var(--space-l) var(--space-l);
  background: var(--paper);
  color: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.phase-card__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--onna) 0%, var(--onna) 60%, transparent 100%);
  transition: opacity var(--t-ease);
}
.phase-card:hover .phase-card__stats::before { opacity: 0.85; }
.phase-card__total {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.phase-card__total strong {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--nishi);
  margin-right: 0.4rem;
  text-transform: none;
  vertical-align: -0.18em;
}
.phase-card__formats {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}
.phase-card__formats li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--ink);
  font-weight: 700;
  font-feature-settings: 'tnum' 1;
  line-height: 1;
}
.phase-card__formats li::marker { content: ''; }
.phase-card__formats li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--nishi-soft);
}
.phase-card:hover .phase-card__formats li svg { color: var(--onna-deep); }
.phase-card__arrow {
  position: absolute;
  bottom: var(--space-m);
  right: var(--space-l);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nishi);
  background: var(--paper);
  border-radius: 50%;
  border: 1px solid var(--hairline);
  transition: transform var(--t-ease), background var(--t-ease), color var(--t-ease), border-color var(--t-ease);
}
.phase-card:hover .phase-card__arrow {
  transform: translateX(4px);
  background: var(--onna);
  color: var(--nishi);
  border-color: var(--onna);
}

/* ─── Content card (video / article) ─────────────────────── */
.content-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color var(--t-ease), transform var(--t-ease);
}
.content-card:hover {
  border-color: var(--nishi);
  transform: translateY(-2px);
}
.content-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--nishi) 0%, var(--nishi-deep) 100%);
  overflow: hidden;
}
.content-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(56deg, transparent 49.7%, rgba(237,183,192,0.3) 49.9%, rgba(237,183,192,0.3) 50.1%, transparent 50.3%),
    linear-gradient(56deg, transparent 39.7%, rgba(255,255,255,0.08) 39.9%, rgba(255,255,255,0.08) 40.1%, transparent 40.3%);
  opacity: 0.7;
}
.content-card__play {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(251,250,247,0.96);
  border-radius: 50%;
  color: var(--nishi);
  transition: transform var(--t-ease), background var(--t-ease);
}
.content-card:hover .content-card__play {
  background: var(--onna);
  transform: scale(1.08);
}
.content-card__duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(30, 63, 90, 0.85);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.content-card__body {
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-xs);
}
.content-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.content-card__meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.content-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--nishi);
  letter-spacing: -0.005em;
}
.content-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: auto;
}
.content-card--article .content-card__media {
  background: var(--paper-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 3;
  border-bottom: 1px solid var(--hairline);
}
.content-card--article .content-card__media::after { display: none; }
.content-card--article .content-card__media-art {
  width: 60%; height: 60%;
  color: var(--nishi);
  opacity: 0.8;
}

/* ─── Section ─────────────────────────────────────────────── */
.section {
  padding: var(--space-3xl) 0;
}
.section--tight { padding: var(--space-2xl) 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-l);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-xl);
}
.section-head__copy { max-width: 48ch; }
.section-head__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: var(--space-s);
}
.section-head__title {
  font-size: var(--step-3);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--nishi);
}
.section-head__subtitle {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: var(--space-s);
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  margin-top: var(--space-4xl);
  padding: var(--space-2xl) 0;
  background: var(--nishi);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}
.footer__diag {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer__diag::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 1px;
  top: 30%;
  left: -20%;
  background: rgba(237, 183, 192, 0.25);
  transform: rotate(-56deg);
  transform-origin: center;
}
.footer__diag::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 1px;
  top: 75%;
  left: -10%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-56deg);
  transform-origin: center;
}
.footer__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 0 var(--space-m);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 0 var(--space-xl);
  }
}
.footer__brand .nav__wordmark { color: #fff; }
.footer__brand .nav__wordmark em { color: var(--onna); }
.footer__blurb {
  margin-top: var(--space-s);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 34ch;
}
.footer__col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--onna);
  margin-bottom: var(--space-s);
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  transition: color var(--t-quick);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--content-width);
  margin: var(--space-xl) auto 0;
  padding: var(--space-m) var(--space-m) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .footer__bottom { padding-inline: var(--space-xl); } }

/* ─── Family lockup (Sadie + DSGE + justedo) ─────────────── */
.footer__family {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-m) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
  align-items: center;
}
@media (min-width: 768px) {
  .footer__family {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-l);
    padding-bottom: var(--space-l);
  }
}
@media (min-width: 1024px) { .footer__family { padding-inline: var(--space-xl); } }
.footer__family-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--onna);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  white-space: nowrap;
}
.footer__family-label::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.footer__family-logos {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  flex-wrap: wrap;
}
.footer__family-logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color var(--t-quick);
}
.footer__family-logo:hover { color: #fff; }
.footer__family-logo--justedo {
  font-weight: 300;
}
.footer__family-logo--justedo em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-left: 0.35rem;
}
.footer__family-logo--sadie {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer__family-logo--sadie .footer__family-dot {
  color: var(--onna);
  font-weight: 700;
}
.footer__family-logo--dsge {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 1rem;
}
.footer__family-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  user-select: none;
}
.footer__family-blurb {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  text-align: left;
}
@media (min-width: 768px) {
  .footer__family-blurb { text-align: right; }
}

/* ─── Motion (only on load, never bouncy) ───────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
  from { stroke-dashoffset: var(--dash-len, 1000); }
  to   { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
[data-reveal] {
  animation: riseIn 0.8s var(--delay, 0s) cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ─── Utility ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.divider-diag {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hairline) 20%, var(--hairline) 80%, transparent 100%);
}

/* ─── Responsive tune-ups ─────────────────────────────────── */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .section { padding: var(--space-2xl) 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
