/* ============================================================
   SwipeHealthy Data — style.css
   Design system: editorial + data-forward, medical trust
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --c-ink:        #0f1117;   /* near-black text */
  --c-ink-light:  #3d4252;   /* secondary text */
  --c-rule:       #e2e5ed;   /* borders, dividers */
  --c-surface:    #f7f8fb;   /* page background */
  --c-white:      #ffffff;
  --c-teal:       #0a7c6e;   /* primary accent — clinical, trustworthy */
  --c-teal-light: #e6f4f2;   /* tint for chips, tags */
  --c-teal-dark:  #065a50;   /* hover state */
  --c-amber:      #b45309;   /* secondary accent — warm contrast */
  --c-amber-light:#fef3c7;

  /* Type */
  --f-display: 'DM Serif Display', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'DM Mono', 'Courier New', monospace;

  /* Scale */
  --s-xs:  0.75rem;
  --s-sm:  0.875rem;
  --s-md:  1rem;
  --s-lg:  1.125rem;
  --s-xl:  1.375rem;
  --s-2xl: 1.75rem;
  --s-3xl: 2.25rem;
  --s-4xl: 3rem;
  --s-5xl: 3.75rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-prose: 720px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius: 6px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(.22,.68,0,1.2);
  --dur:  200ms;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--s-md);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--c-teal); text-decoration: none; }
a:hover { color: var(--c-teal-dark); text-decoration: underline; }
ul { list-style: none; }

/* ── Navigation ──────────────────────────────────────────────── */
.sh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-rule);
}
.sh-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 60px;
}
.sh-nav__wordmark {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-teal);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.sh-nav__wordmark:hover { color: var(--c-teal-dark); text-decoration: none; }
.sh-nav__menu {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
}
.sh-nav__link {
  font-size: var(--s-sm);
  font-weight: 500;
  color: var(--c-ink-light);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
  text-decoration: none;
}
.sh-nav__link:hover {
  background: var(--c-teal-light);
  color: var(--c-teal-dark);
  text-decoration: none;
}
.sh-nav__link--active {
  color: var(--c-teal);
  font-weight: 600;
}
.sh-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.sh-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--dur);
}

@media (max-width: 768px) {
  .sh-nav__toggle { display: flex; }
  .sh-nav__menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-rule);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter);
    gap: 0.15rem;
    margin-left: 0;
  }
  .sh-nav__menu--open { display: flex; }
  .sh-nav__link { padding: 0.6rem 0.75rem; }
}

/* ── Page shell ──────────────────────────────────────────────── */
.sh-page { min-height: 100vh; display: flex; flex-direction: column; }
.sh-main { flex: 1; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-rule);
  padding: 0.6rem var(--gutter);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: var(--s-xs);
  color: var(--c-ink-light);
  list-style: none;
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.4rem;
  opacity: .4;
}
.breadcrumb a { color: var(--c-ink-light); }
.breadcrumb a:hover { color: var(--c-teal); }

/* ── Hero (hub page) ─────────────────────────────────────────── */
.sh-hero {
  background: var(--c-ink);
  color: var(--c-white);
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.sh-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-teal) 0%, transparent 60%);
  opacity: .15;
  pointer-events: none;
}
.sh-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sh-hero__eyebrow {
  font-size: var(--s-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-teal-light);
  margin-bottom: 1rem;
}
.sh-hero__title {
  font-family: var(--f-display);
  font-size: clamp(var(--s-3xl), 5vw, var(--s-5xl));
  line-height: 1.1;
  font-weight: 400;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.sh-hero__title em {
  font-style: italic;
  color: var(--c-teal-light);
}
.sh-hero__sub {
  font-size: var(--s-lg);
  color: rgba(255,255,255,.72);
  max-width: 55ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.sh-hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.sh-hero__stat-num {
  font-family: var(--f-display);
  font-size: var(--s-3xl);
  color: var(--c-teal-light);
  line-height: 1;
}
.sh-hero__stat-label {
  font-size: var(--s-xs);
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ── Section page hero (smaller) ────────────────────────────── */
.sh-section-hero {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-rule);
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter);
}
.sh-section-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.sh-section-hero__eyebrow {
  font-size: var(--s-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: .75rem;
}
.sh-section-hero__title {
  font-family: var(--f-display);
  font-size: clamp(var(--s-2xl), 4vw, var(--s-4xl));
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: .75rem;
  color: var(--c-ink);
}
.sh-section-hero__desc {
  color: var(--c-ink-light);
  font-size: var(--s-lg);
  max-width: 60ch;
  line-height: 1.6;
}
.sh-section-hero__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: var(--s-sm);
  color: var(--c-ink-light);
}
.sh-section-hero__meta strong {
  color: var(--c-ink);
  font-family: var(--f-mono);
  font-size: var(--s-xl);
  display: block;
  line-height: 1;
  margin-bottom: .15rem;
}

/* ── Container ───────────────────────────────────────────────── */
.sh-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter);
}
.sh-container--narrow {
  max-width: var(--max-w-prose);
}

/* ── Grid indexes ────────────────────────────────────────────── */
.sh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.sh-grid--tight {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.sh-card {
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--dur), transform var(--dur);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sh-card:hover {
  box-shadow: 0 4px 20px rgba(10,124,110,.1);
  transform: translateY(-2px);
}
.sh-card__eyebrow {
  font-size: var(--s-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-teal);
}
.sh-card__title {
  font-family: var(--f-display);
  font-size: var(--s-xl);
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-ink);
}
.sh-card__title a {
  color: inherit;
  text-decoration: none;
}
.sh-card__title a:hover { color: var(--c-teal-dark); }
.sh-card__body {
  font-size: var(--s-sm);
  color: var(--c-ink-light);
  line-height: 1.55;
  flex: 1;
}
.sh-card__footer {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--c-rule);
  font-size: var(--s-xs);
  color: var(--c-ink-light);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sh-card__tag {
  background: var(--c-teal-light);
  color: var(--c-teal-dark);
  font-size: var(--s-xs);
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 999px;
}
.sh-card__arrow {
  margin-top: auto;
  padding-top: 1rem;
  font-size: var(--s-sm);
  font-weight: 600;
  color: var(--c-teal);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.sh-card__arrow::after { content: '→'; }

/* ── Alpha index (schools/hospitals long list) ───────────────── */
.sh-alpha-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 2rem;
}
.sh-alpha-bar__link {
  font-size: var(--s-xs);
  font-weight: 600;
  padding: .3rem .6rem;
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  color: var(--c-ink-light);
  text-decoration: none;
  transition: background var(--dur), color var(--dur);
  font-family: var(--f-mono);
}
.sh-alpha-bar__link:hover {
  background: var(--c-teal-light);
  color: var(--c-teal-dark);
  border-color: var(--c-teal-light);
  text-decoration: none;
}

.sh-list-group { margin-bottom: 2.5rem; }
.sh-list-group__header {
  font-family: var(--f-mono);
  font-size: var(--s-sm);
  font-weight: 500;
  color: var(--c-teal);
  border-bottom: 2px solid var(--c-teal);
  padding-bottom: .4rem;
  margin-bottom: 1rem;
  letter-spacing: .05em;
}
.sh-list-group__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .5rem;
}
.sh-list-group__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .85rem;
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  font-size: var(--s-sm);
  color: var(--c-ink);
  text-decoration: none;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.sh-list-group__item a:hover {
  background: var(--c-teal-light);
  border-color: var(--c-teal-light);
  color: var(--c-teal-dark);
}
.sh-list-group__item a span {
  font-size: var(--s-xs);
  font-family: var(--f-mono);
  color: var(--c-ink-light);
}

/* ── Detail page layout ──────────────────────────────────────── */
.sh-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .sh-detail { grid-template-columns: 1fr; }
}
.sh-detail__main {}
.sh-detail__sidebar {
  position: sticky;
  top: 76px;
}

/* ── Prose content ───────────────────────────────────────────── */
.sh-prose {
  max-width: var(--max-w-prose);
}
.sh-prose h2 {
  font-family: var(--f-display);
  font-size: var(--s-2xl);
  font-weight: 400;
  color: var(--c-ink);
  margin: 2rem 0 .75rem;
  line-height: 1.2;
}
.sh-prose h3 {
  font-size: var(--s-lg);
  font-weight: 600;
  color: var(--c-ink);
  margin: 1.5rem 0 .5rem;
}
.sh-prose p {
  margin-bottom: 1rem;
  color: var(--c-ink-light);
  line-height: 1.7;
}
.sh-prose ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.sh-prose ul li { margin-bottom: .35rem; color: var(--c-ink-light); }

/* ── Data table ──────────────────────────────────────────────── */
.sh-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.sh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--s-sm);
}
.sh-table th {
  text-align: left;
  font-size: var(--s-xs);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-ink-light);
  padding: .75rem 1rem;
  border-bottom: 2px solid var(--c-rule);
  white-space: nowrap;
}
.sh-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--c-rule);
  vertical-align: top;
  color: var(--c-ink);
}
.sh-table tr:last-child td { border-bottom: none; }
.sh-table tr:hover td { background: var(--c-teal-light); }
.sh-table a { color: var(--c-teal); font-weight: 500; }

/* ── Info card (sidebar widget) ──────────────────────────────── */
.sh-info-card {
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sh-info-card__header {
  background: var(--c-teal);
  color: var(--c-white);
  padding: 1rem 1.25rem;
  font-size: var(--s-sm);
  font-weight: 600;
}
.sh-info-card__body { padding: 1.25rem; }
.sh-info-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--c-rule);
  font-size: var(--s-sm);
}
.sh-info-card__row:last-child { border-bottom: none; }
.sh-info-card__label { color: var(--c-ink-light); }
.sh-info-card__value { font-weight: 600; font-family: var(--f-mono); }

/* ── Stat strip ──────────────────────────────────────────────── */
.sh-stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--c-rule);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.sh-stat-strip__item {
  background: var(--c-white);
  padding: 1.25rem 1.5rem;
}
.sh-stat-strip__num {
  font-family: var(--f-mono);
  font-size: var(--s-2xl);
  font-weight: 500;
  color: var(--c-teal);
  line-height: 1;
}
.sh-stat-strip__label {
  font-size: var(--s-xs);
  color: var(--c-ink-light);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .3rem;
}

/* ── Section heading ─────────────────────────────────────────── */
.sh-section-heading {
  margin-bottom: 1.75rem;
}
.sh-section-heading h2 {
  font-family: var(--f-display);
  font-size: var(--s-2xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: .35rem;
}
.sh-section-heading p {
  color: var(--c-ink-light);
  font-size: var(--s-sm);
}

/* ── Hub section links ───────────────────────────────────────── */
.sh-hub-sections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.sh-hub-section {
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow var(--dur), transform var(--dur);
}
.sh-hub-section:hover {
  box-shadow: 0 4px 24px rgba(10,124,110,.1);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}
.sh-hub-section__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.sh-hub-section__title {
  font-family: var(--f-display);
  font-size: var(--s-xl);
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: .4rem;
}
.sh-hub-section__count {
  font-family: var(--f-mono);
  font-size: var(--s-xs);
  color: var(--c-teal);
  font-weight: 500;
  margin-bottom: .5rem;
}
.sh-hub-section__desc {
  font-size: var(--s-sm);
  color: var(--c-ink-light);
  line-height: 1.55;
}

/* ── Related links list ──────────────────────────────────────── */
.sh-related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.sh-related-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem .85rem;
  background: var(--c-surface);
  border-radius: var(--radius);
  font-size: var(--s-sm);
  color: var(--c-ink);
  text-decoration: none;
  border: 1px solid var(--c-rule);
  transition: background var(--dur), color var(--dur);
}
.sh-related-list li a:hover {
  background: var(--c-teal-light);
  color: var(--c-teal-dark);
}
.sh-related-list li a::after { content: '→'; opacity: .5; }

/* ── Tag chips ───────────────────────────────────────────────── */
.sh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .75rem 0;
}
.sh-chip {
  display: inline-block;
  background: var(--c-teal-light);
  color: var(--c-teal-dark);
  font-size: var(--s-xs);
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 999px;
  text-decoration: none;
}
.sh-chip:hover {
  background: var(--c-teal);
  color: var(--c-white);
  text-decoration: none;
}
.sh-chip--amber {
  background: var(--c-amber-light);
  color: var(--c-amber);
}

/* ── Top 10 list ─────────────────────────────────────────────── */
.sh-ranked-list { list-style: none; counter-reset: rank; }
.sh-ranked-list li {
  counter-increment: rank;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  margin-bottom: .75rem;
  transition: box-shadow var(--dur);
}
.sh-ranked-list li:hover { box-shadow: 0 2px 16px rgba(10,124,110,.08); }
.sh-ranked-list li::before {
  content: counter(rank, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: var(--s-xl);
  color: var(--c-teal);
  font-weight: 500;
  min-width: 2.5rem;
  line-height: 1;
}
.sh-ranked-list__body { flex: 1; }
.sh-ranked-list__name {
  font-family: var(--f-display);
  font-size: var(--s-lg);
  font-weight: 400;
}
.sh-ranked-list__name a { color: var(--c-ink); }
.sh-ranked-list__name a:hover { color: var(--c-teal-dark); }
.sh-ranked-list__meta { font-size: var(--s-xs); color: var(--c-ink-light); margin-top: .2rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.sh-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.65);
  margin-top: 4rem;
  padding: 3rem var(--gutter) 2rem;
}
.sh-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
@media (max-width: 640px) {
  .sh-footer__inner { grid-template-columns: 1fr; }
}
.sh-footer__logo {
  font-family: var(--f-display);
  font-size: var(--s-xl);
  color: var(--c-white);
  text-decoration: none;
  display: block;
  margin-bottom: .5rem;
}
.sh-footer__tagline {
  font-size: var(--s-sm);
  line-height: 1.5;
}
.sh-footer__nav {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.sh-footer__nav a {
  font-size: var(--s-sm);
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--dur);
}
.sh-footer__nav a:hover { color: var(--c-white); }
.sh-footer__copy {
  grid-column: 1 / -1;
  font-size: var(--s-xs);
  opacity: .4;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── Utilities ───────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.text-muted { color: var(--c-ink-light); }
.text-sm { font-size: var(--s-sm); }
.text-xs { font-size: var(--s-xs); }
.font-mono { font-family: var(--f-mono); }
.divider {
  border: none;
  border-top: 1px solid var(--c-rule);
  margin: 2rem 0;
}

/* ── Partner banner ──────────────────────────────────────────── */
.sh-partner-banner {
  background: var(--c-teal-light);
  border-bottom: 1px solid rgba(10,124,110,.15);
  padding: .65rem var(--gutter);
}
.sh-partner-banner__inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: var(--s-xs);
  flex-wrap: wrap;
}
.sh-partner-banner__label { color: var(--c-ink-light); }
.sh-partner-banner__link {
  font-weight: 600;
  color: var(--c-teal-dark);
  text-decoration: none;
}
.sh-partner-banner__link:hover { text-decoration: underline; }

/* ── CTA block ───────────────────────────────────────────────── */
.sh-cta {
  background: var(--c-ink);
  margin-top: 4rem;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
}
.sh-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
}
@media (max-width: 700px) {
  .sh-cta__inner { grid-template-columns: 1fr; }
}
.sh-cta__title {
  font-family: var(--f-display);
  font-size: var(--s-2xl);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: .5rem;
}
.sh-cta__desc {
  color: rgba(255,255,255,.65);
  font-size: var(--s-sm);
  line-height: 1.6;
  max-width: 52ch;
}
.sh-cta__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.sh-cta__btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-size: var(--s-sm);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: opacity var(--dur);
}
.sh-cta__btn:hover { opacity: .85; text-decoration: none; }
.sh-cta__btn--primary {
  background: var(--c-teal);
  color: var(--c-white);
}
.sh-cta__btn--secondary {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .sh-nav, .sh-footer, .sh-nav__toggle { display: none; }
  .sh-hero { background: none; color: var(--c-ink); }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

