/* Eram Practice — ink-on-paper editorial wellbeing studio
   Palette: primary #18181B · secondary #3F3F46 · accent #EC4899 · bg #FAFAFA · fg #09090B
   Fonts: display Tomorrow · body Recursive · mono Noto Sans Mono
   One accent locked (magenta). One radius system. Hairline borders. */

:root {
  --bg: #FAFAFA;
  --fg: #09090B;
  --ink: #18181B;
  --ink-2: #3F3F46;
  --muted: #52525B;
  --line: #E4E4E7;
  --line-soft: #EFEFF1;
  --surface: #FFFFFF;
  --surface-ink: #18181B;
  --accent: #EC4899;
  --accent-press: #DB2777;

  --font-display: "Tomorrow", system-ui, sans-serif;
  --font-body: "Recursive", system-ui, sans-serif;
  --font-mono: "Noto Sans Mono", ui-monospace, monospace;

  --r: 10px;          /* one radius system */
  --r-sm: 6px;
  --r-pill: 999px;

  --maxw: 1140px;
  --pad-x: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vw, 140px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-variation-settings: "MONO" 0, "CASL" 0.18, "slnt" 0, "CRSV" 0.5;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.06;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 200; transition: top 0.2s var(--ease);
  font-size: 0.9rem;
}
.skip-link:focus { top: 12px; }

/* ---------- focus ring (magenta, visible everywhere) ---------- */
:where(a, button, input, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 68px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 0.5ch;
}
.brand .brand-mark { color: var(--accent); }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.96rem;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--line-soft); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--accent);
  border-radius: 2px; margin-top: 3px;
}
.nav-cta { margin-left: 6px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  width: 42px; height: 42px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6ch;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.98rem; line-height: 1;
  padding: 14px 22px; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.12s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-press); }
.btn--primary:active { transform: translateY(1px) scale(0.98); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost:active { transform: translateY(1px) scale(0.98); }
.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: #000; }
.btn--ink:active { transform: translateY(1px) scale(0.98); }
.btn .arrow { transition: transform 0.18s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: calc(100svh - 68px);
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 84% 8%, rgba(236,72,153,0.10), transparent 55%),
    radial-gradient(90% 80% at 6% 96%, rgba(24,24,27,0.05), transparent 60%),
    linear-gradient(180deg, #FCFCFD 0%, var(--bg) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px);
  background-size: clamp(80px, 12vw, 160px) 100%;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-block: clamp(40px, 7vw, 72px); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 38ch; }
.hero h1 { color: var(--fg); }
.hero h1 .pulse { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-2); line-height: 1.5; margin: 0 0 2rem;
  max-width: 36ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-figure {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-figure img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 5 / 6;
}
.hero-figure .parallax-img { will-change: transform; }
.hero-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  background: var(--surface-ink); color: var(--bg);
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 8px 12px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 0.6ch;
}
.hero-tag b { color: var(--accent); font-weight: 600; }

/* ---------- reveal (clip-path wipe, ink to content) ---------- */
.reveal {
  clip-path: inset(0 100% 0 0);
  opacity: 0.001;
  transition: clip-path 0.8s var(--ease), opacity 0.5s var(--ease), transform 0.8s var(--ease);
  transform: translateY(10px);
}
.reveal.is-in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: var(--surface);
}
.stat { padding: clamp(24px, 3vw, 38px); border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
  display: block; margin-bottom: 0.5rem;
}
.stat-value .u { color: var(--accent); }
.stat-label { font-size: 0.92rem; color: var(--muted); line-height: 1.4; }

/* ---------- section heading block ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .kicker { justify-content: center; }

/* ---------- topics / services ---------- */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.topic {
  background: var(--surface); padding: clamp(28px, 3.4vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s var(--ease);
}
.topic:hover { background: #fff; }
.topic-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); letter-spacing: 0.08em; }
.topic h3 { margin: 0; }
.topic p { color: var(--ink-2); margin: 0; }
.topic ul { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 8px; }
.topic ul li { position: relative; padding-left: 22px; font-size: 0.96rem; color: var(--muted); }
.topic ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 2px; background: var(--accent);
}
.topic .topic-link { margin-top: auto; padding-top: 8px; }
.topic-link a {
  font-weight: 600; text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.5ch;
  font-size: 0.96rem;
}
.topic-link a:hover { color: var(--accent); }

/* ---------- approach (numbered, hairline) ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.approach-item { padding-top: 22px; border-top: 2px solid var(--ink); }
.approach-item .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.1em; }
.approach-item h3 { margin: 12px 0 8px; font-size: 1.25rem; }
.approach-item p { color: var(--ink-2); margin: 0; font-size: 0.98rem; }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split-media { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.split-list li { display: flex; gap: 14px; align-items: flex-start; }
.split-list .ix {
  flex: none; width: 28px; height: 28px; border-radius: var(--r-sm);
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent);
}
.split-list b { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; }
.split-list span.t { color: var(--muted); font-size: 0.95rem; }

/* ---------- pull quote rule ---------- */
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 28px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ---------- insights / article cards ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--ink-2); }
.card a.card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--line-soft); border-bottom: 1px solid var(--line); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-meta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.card-meta .dot { color: var(--accent); }
.card h3 { font-size: 1.16rem; margin: 0; line-height: 1.18; }
.card p { font-size: 0.94rem; color: var(--ink-2); margin: 0; }
.card .read-more { margin-top: auto; padding-top: 6px; font-weight: 600; font-size: 0.92rem; color: var(--ink); display: inline-flex; gap: 0.4ch; }
.card:hover .read-more { color: var(--accent); }

/* ---------- testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 28px); }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(26px, 3vw, 34px);
  display: flex; flex-direction: column; gap: 18px;
}
.quote .mark { font-family: var(--font-display); color: var(--accent); font-size: 2.4rem; line-height: 0.6; height: 0.5em; }
.quote blockquote { margin: 0; font-size: 1.04rem; color: var(--ink); line-height: 1.5; }
.quote-by { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid var(--line); }
.quote-avatar {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--bg); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em;
}
.quote-by .who b { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; }
.quote-by .who span { font-size: 0.84rem; color: var(--muted); }

/* ---------- resources / blogroll ---------- */
.resources { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.resource-row {
  background: var(--surface); padding: 20px clamp(20px, 2.6vw, 30px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-decoration: none; color: inherit;
  transition: background 0.18s var(--ease);
}
.resource-row:hover { background: #fff; }
.resource-row .r-left { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.resource-row .r-anchor { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.resource-row:hover .r-anchor { color: var(--accent); }
.resource-row .r-host { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); letter-spacing: 0.02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.resource-row .r-go { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); flex: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--surface-ink); color: var(--bg);
  border-radius: var(--r); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 92% 10%, rgba(236,72,153,0.28), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--bg); }
.cta-band p { color: #D4D4D8; max-width: 50ch; }
.cta-band .hero-actions .btn--ghost { color: var(--bg); border-color: rgba(255,255,255,0.3); }
.cta-band .hero-actions .btn--ghost:hover { border-color: #fff; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 40px; background: #FCFCFD; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { font-size: 1.3rem; }
.footer-brand p { color: var(--muted); max-width: 34ch; margin-top: 14px; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--ink-2); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom small { color: var(--muted); font-size: 0.84rem; }
.footer-bottom .mono { font-size: 0.78rem; color: var(--muted); }

/* ---------- contact form ---------- */
.contact-shell { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-aside .info-row { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-aside .info-row:first-of-type { border-top: none; }
.contact-aside .info-row .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.contact-aside .info-row a, .contact-aside .info-row span { color: var(--ink); font-size: 1.02rem; text-decoration: none; }
.contact-aside .info-row a:hover { color: var(--accent); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3.4vw, 40px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--ink); margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--muted); font-family: var(--font-body); font-size: 0.85rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--fg);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.field input:hover, .field textarea:hover { border-color: var(--ink-2); }
.field input:focus, .field textarea:focus { background: #fff; }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.form-status { margin-top: 16px; font-size: 0.95rem; color: var(--ink); display: none; }
.form-status.show { display: block; }
.form-status b { color: var(--accent); }

/* ---------- article page ---------- */
.article-hero { border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 44px); }
.crumbs { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); margin-bottom: 22px; letter-spacing: 0.02em; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { color: var(--line); margin: 0 8px; }
.article-meta { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.article-meta .pill { color: var(--accent); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 12px; }
.article-figure { margin: clamp(28px, 4vw, 44px) 0 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.article-figure img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

.article-body { font-size: 1.06rem; line-height: 1.72; color: var(--ink-2); max-width: 72ch; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 1.8em 0 0.5em; color: var(--ink); }
.article-body h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); margin: 1.5em 0 0.4em; color: var(--ink); }
.article-body p { margin: 0 0 1.2em; }
.article-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 600; }
.article-body a:hover { color: var(--accent); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body img { border-radius: var(--r); border: 1px solid var(--line); margin: 1.5em 0; }
.article-body figure { margin: 1.5em 0; }
.article-body ul, .article-body ol { margin: 0 0 1.3em; padding-left: 1.3em; }
.article-body li { margin-bottom: 0.5em; }
.article-body blockquote {
  border-left: 3px solid var(--accent); margin: 1.6em 0; padding: 4px 0 4px 24px;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); line-height: 1.3;
}
.article-body blockquote p { margin: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.95rem; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.article-body th { background: var(--line-soft); font-family: var(--font-display); color: var(--ink); font-weight: 600; }
.article-body section { margin-bottom: 0.4em; }
.article-body[dir="rtl"] { text-align: right; }
.article-body[dir="rtl"] a { text-decoration-color: var(--accent); }
.article-body[dir="rtl"] blockquote { border-left: none; border-right: 3px solid var(--accent); padding: 4px 24px 4px 0; }
.article-body[dir="rtl"] ul, .article-body[dir="rtl"] ol { padding-left: 0; padding-right: 1.3em; }

.article-layout { display: grid; grid-template-columns: 1fr 240px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.article-aside { position: sticky; top: 92px; }
.aside-card { border: 1px solid var(--line); border-radius: var(--r); padding: 22px; background: var(--surface); }
.aside-card h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.aside-card .stat-value { font-size: 1.6rem; }
.aside-card p { font-size: 0.9rem; color: var(--muted); margin: 0 0 16px; }

.related { margin-top: clamp(48px, 6vw, 80px); }

/* ---------- page hero (interior) ---------- */
.page-hero { border-bottom: 1px solid var(--line); padding-block: clamp(56px, 8vw, 110px) clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 180%;
  background: radial-gradient(closest-side, rgba(236,72,153,0.10), transparent);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }

/* ---------- misc ---------- */
.surface-band { background: #FCFCFD; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; order: -1; }
  .hero { min-height: auto; padding-block: 8px; }
  .split, .contact-shell { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insights-grid, .quotes-grid, .approach-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 14px var(--pad-x) 20px; gap: 6px;
  }
  .nav-links.open .nav-cta { margin: 6px 0 0; }
  .nav-toggle { display: inline-flex; }
  .stats, .topic-grid, .insights-grid, .quotes-grid, .approach-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- reduced motion: instant static state ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  .parallax-img { transform: none !important; }
}
