/* Pegpesen — editorial / product-site system */

:root {
  --bg: #f6f4f0;
  --bg-warm: #efeae3;
  --bg-elevated: #fffcf7;
  --ink: #1a1816;
  --ink-muted: #5e5a54;
  --ink-faint: #8c8680;
  --inverse-bg: #252220;
  --inverse-muted: rgba(255, 252, 247, 0.72);
  --line: rgba(26, 24, 22, 0.09);
  --line-strong: rgba(26, 24, 22, 0.16);
  --accent: #b85c3f;
  --accent-hover: #9d4e34;
  --accent-soft: rgba(184, 92, 63, 0.14);
  --accent-glow: rgba(184, 92, 63, 0.22);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Newsreader", "Georgia", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --max-read: 40rem;
  --max-wide: 50rem;
  --max-content: 76rem;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0.65rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.2;
}

.logo:hover {
  color: var(--ink);
}

.logo__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
}

.nav-primary a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-muted);
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--ink);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-primary {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm) 0 0;
    border-top: 1px solid var(--line);
    margin-top: var(--space-sm);
  }

  .nav-primary.is-open {
    display: flex;
  }

  .nav-primary a {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
  }
}

/* —— Subnav (product etc.) —— */
.subnav-wrap {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
}

.subnav {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0.65rem var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.subnav__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 0.25rem;
}

.subnav a {
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--ink-muted);
}

.subnav a:hover,
.subnav a[aria-current="page"] {
  color: var(--accent);
}

/* —— Layout —— */
main {
  position: relative;
  z-index: 1;
}

.page {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.page--narrow {
  max-width: calc(var(--max-wide) + var(--space-md) * 2);
}

/* —— Home hero —— */
.hero-home {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md);
  margin: 0 calc(-1 * var(--space-md)) var(--space-xl);
  border-radius: 0 0 clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse 120% 80% at 70% -20%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(184, 92, 63, 0.08), transparent 50%),
    linear-gradient(165deg, var(--inverse-bg) 0%, #3a3532 48%, #2a2624 100%);
  color: #fffcf7;
}

.hero-home__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.hero-home__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--inverse-muted);
  margin: 0 0 var(--space-sm);
}

.hero-home h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-md);
  max-width: 15ch;
}

.hero-home__lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--inverse-muted);
  max-width: 36rem;
  margin: 0 0 var(--space-lg);
}

.hero-home__lead strong {
  color: #fffcf7;
  font-weight: 600;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Hero + photography layout */
.hero-home__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  max-width: var(--max-content);
  margin: 0 auto;
}

.hero-home__copy {
  padding-bottom: 0.25rem;
}

.hero-home__figure {
  margin: 0;
  border-radius: clamp(16px, 2.5vw, 22px);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 252, 247, 0.14);
  aspect-ratio: 4 / 5;
  max-height: min(520px, 70vh);
}

.hero-home__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media (max-width: 900px) {
  .hero-home__grid {
    grid-template-columns: 1fr;
  }

  .hero-home__figure {
    order: -1;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
  }

  .hero-home__img {
    object-position: center 20%;
  }

  .hero-home h1 {
    max-width: none;
  }
}

/* Image figures sitewide */
.photo-credit {
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.photo-credit a {
  color: var(--ink-muted);
}

.photo-credit--inverse {
  color: rgba(255, 252, 247, 0.5);
}

.photo-credit--inverse a {
  color: rgba(255, 252, 247, 0.75);
}

.page-feature {
  margin: calc(-1 * var(--space-md)) 0 var(--space-lg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-warm);
}

.page-feature img {
  width: 100%;
  height: clamp(200px, 32vw, 340px);
  object-fit: cover;
  display: block;
}

.page-feature figcaption {
  padding: 0.5rem var(--space-sm) 0.65rem;
}

.band--media .band__split {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.band--media figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(26, 24, 22, 0.08);
}

.band--media img {
  width: 100%;
  height: clamp(240px, 36vw, 400px);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .band--media .band__split {
    grid-template-columns: 1fr;
  }
}

.pillar--visual {
  padding: 0;
  overflow: hidden;
}

.pillar__thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.pillar--visual .pillar__num,
.pillar--visual h3,
.pillar--visual p,
.pillar--visual a {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.pillar--visual .pillar__num {
  margin-top: var(--space-sm);
}

.pillar--visual a {
  display: inline-block;
  margin-bottom: var(--space-md);
}

/* —— Topic / deep-dive pages (e.g. PopPK/PD) —— */
.topic-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-xs);
}

.topic-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.topic-metric {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}

.topic-metric__value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.topic-metric__label {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.topic-timeline {
  margin: var(--space-md) 0 var(--space-lg);
  padding: 0 0 0 var(--space-md);
  border-left: 3px solid var(--accent);
  list-style: none;
}

.topic-timeline li {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  color: var(--ink-muted);
}

.topic-timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-md) - 5px);
  top: 0.45rem;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-elevated);
}

.topic-timeline strong {
  color: var(--ink);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--light {
  background: #fffcf7;
  color: var(--inverse-bg);
}

.btn--light:hover {
  background: #fff;
  color: var(--inverse-bg);
}

.btn--outline-light {
  background: transparent;
  color: #fffcf7;
  border-color: rgba(255, 252, 247, 0.35);
}

.btn--outline-light:hover {
  border-color: #fffcf7;
  color: #fffcf7;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg-elevated);
}

.btn--primary:hover {
  background: #2d2a27;
  color: var(--bg-elevated);
}

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

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* —— Bands & sections —— */
.band {
  padding: var(--space-xl) var(--space-md);
  margin: 0 calc(-1 * var(--space-md));
}

.band--tint {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.section-head {
  margin-bottom: var(--space-lg);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-xs);
}

.section-head p {
  margin: 0;
  color: var(--ink-muted);
  max-width: var(--max-read);
  font-size: 1.05rem;
}

/* —— Grids —— */
.grid-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.pillar {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color 0.2s, box-shadow 0.25s;
}

.pillar:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 48px rgba(26, 24, 22, 0.06);
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
  opacity: 0.85;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  margin: 0 0 var(--space-xs);
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.pillar a {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

/* —— Stats row —— */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 252, 247, 0.12);
}

.stat {
  text-align: left;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: #fffcf7;
  line-height: 1.1;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--inverse-muted);
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* —— Article / legal prose —— */
.article {
  max-width: var(--max-wide);
}

.article h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 var(--space-md);
}

.article .lede {
  font-size: 1.18rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-lg);
}

.article h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: var(--space-lg) 0 var(--space-sm);
  letter-spacing: -0.02em;
}

.article h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-xs);
}

.article p,
.article ul,
.article ol {
  margin: 0 0 var(--space-sm);
  color: var(--ink-muted);
}

.article ul,
.article ol {
  padding-left: 1.3rem;
}

.article li {
  margin-bottom: 0.35rem;
}

.legal-banner {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-muted);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 92, 63, 0.22);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

.pullquote {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  border-left: 3px solid var(--accent);
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(26, 24, 22, 0.04);
}

/* —— Tables —— */
.table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0 var(--space-lg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-warm);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* —— Details / accordion —— */
.acc {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  background: var(--bg-elevated);
  overflow: hidden;
}

.acc summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc summary::after {
  content: "+";
  font-weight: 400;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.acc[open] summary::after {
  content: "−";
}

.acc__body {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.acc__body p:last-child {
  margin-bottom: 0;
}

/* —— Callouts —— */
.callout {
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.callout--note {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--ink-muted);
}

.callout--important {
  background: rgba(184, 92, 63, 0.1);
  border: 1px solid rgba(184, 92, 63, 0.28);
  color: var(--ink);
}

/* —— Footer —— */
.site-footer {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-grid h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-grid a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-muted);
}

.site-footer > p {
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.65;
  max-width: 54rem;
  margin: 0 0 var(--space-sm);
}

.site-footer__meta {
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin-top: var(--space-md);
}

/* —— Product hub cards —— */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.hub-card {
  display: block;
  padding: var(--space-md);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hub-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(26, 24, 22, 0.07);
  transform: translateY(-2px);
  color: inherit;
}

.hub-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 var(--space-xs);
  color: var(--ink);
}

.hub-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.hub-card__arrow {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.hub-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* —— Skip link & focus (crawl + keyboard friendly) —— */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.65rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--inverse-bg);
  background: #fffcf7;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  transform: translateY(-160%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.logo:focus-visible,
.nav-toggle:focus-visible,
.nav-primary a:focus-visible,
.subnav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* —— Motion & depth (respect reduced motion) —— */
@media (prefers-reduced-motion: no-preference) {
  .pillar {
    transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s ease;
  }

  .pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 56px rgba(26, 24, 22, 0.09);
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn:active {
    transform: scale(0.98) translateY(0);
  }

  .page-feature {
    overflow: hidden;
  }

  .page-feature img {
    transition: transform 0.45s ease;
  }

  .page-feature:hover img,
  .page-feature:focus-within img {
    transform: scale(1.03);
  }

  .band--media figure {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .band--media figure:hover,
  .band--media figure:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(26, 24, 22, 0.1);
  }

  .hero-home__figure {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .hero-home__figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
  }

  /* Subtle lift only (no opacity) so content stays readable before/without JS */
  .js-reveal {
    transform: translateY(14px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js-reveal.is-inview {
    transform: none;
  }
}
