/* ============================================================
   Robert W. Jones — one-page authority site
   Editorial-luxury: off-white / near-black / burnished gold
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:          #FBFAF7;   /* off-white page */
  --bg-warm:     #F3EFE6;   /* deeper warm panel */
  --ink:         #0E0E0F;   /* near-black text on light */
  --ink-soft:    #5C5A53;   /* muted text on light */
  --ink-faint:   #8A887F;   /* faint text on light */
  --surface-dark:#0A0A0B;   /* black surface */
  --surface-dk-2:#101012;   /* slightly raised dark */
  --on-dark:     #F4F1EA;   /* text on dark */
  --on-dark-soft:rgba(244,241,234,0.66);
  --on-dark-faint:rgba(244,241,234,0.40);
  --gold:        #9A7B3C;   /* accent on light */
  --gold-bright: #C9A24B;   /* accent on dark */
  --gold-deep:   #7E6430;
  --gold-wash:   rgba(154,123,60,0.10);
  --gold-wash-dk:rgba(201,162,75,0.12);
  --line:        rgba(14,14,15,0.13);
  --line-soft:   rgba(14,14,15,0.07);
  --line-dark:   rgba(244,241,234,0.16);
  --line-dark-soft:rgba(244,241,234,0.08);

  --wrap:        1180px;
  --wrap-wide:   1320px;
  --wrap-narrow: 760px;

  --pad-x:       clamp(1.25rem, 5vw, 3rem);
  --sec-y:       clamp(3.5rem, 7vw, 6rem);

  --ff-display:  "Fraunces", Georgia, "Times New Roman", serif;
  --ff-sans:     "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 60px -28px rgba(20,16,8,0.28);
  --shadow-card: 0 18px 42px -24px rgba(20,16,8,0.22);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, figure { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utility ---------- */
.wrap        { width: 100%; max-width: var(--wrap);        margin: 0 auto; padding-inline: var(--pad-x); }
.wrap-wide   { width: 100%; max-width: var(--wrap-wide);   margin: 0 auto; padding-inline: var(--pad-x); }
.section     { padding-block: var(--sec-y); position: relative; }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--surface-dark); color: var(--on-dark); }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 200ms var(--ease);
  font-size: 0.875rem; font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

/* faint paper grain */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  transition-delay: calc(var(--rd, 0) * 110ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.7em;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.55;
}
.eyebrow--gold { color: var(--gold); }
.section--dark .eyebrow--gold { color: var(--gold-bright); }

.h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.25rem + 1.6vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: inherit;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
.section--dark .h2 em { color: var(--gold-bright); }

/* section header sits in a wide-but-bounded measure so headlines read as
   2–3 horizontal lines, not tall single-word stacks */
.section-head { max-width: 40rem; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.section-head .section-lede { max-width: 56ch; }

.section-lede {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 1.1rem;
}
.section--dark .section-lede { color: var(--on-dark-soft); }

.micro-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 1rem;
}
.section--dark .micro-label { color: var(--on-dark-faint); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 0.95rem;
  color: var(--gold); padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap 240ms var(--ease), color 200ms var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform 240ms var(--ease); }
.link-arrow:hover { gap: 0.85em; color: var(--gold-deep); }
.link-arrow:hover::after { transform: translateX(3px); }
.section--dark .link-arrow { color: var(--gold-bright); }
.section--dark .link-arrow:hover { color: #e6c777; }

.cta-fud {
  margin-top: 1.05rem; font-size: 0.85rem; line-height: 1.5;
  color: var(--ink-faint); max-width: 46ch;
}
.cta-fud--dark { color: var(--on-dark-faint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--ff-sans);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.005em;
  padding: 0.85em 1.5em; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), background-color 220ms var(--ease),
              color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1.02em 1.85em; font-size: 1rem; }

.btn--solid {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 14px 30px -16px rgba(14,14,15,0.5);
}
.btn--solid:hover { background: #000; transform: translateY(-2px); box-shadow: 0 18px 36px -16px rgba(14,14,15,0.55); }
.btn--solid:active { transform: translateY(0) scale(0.985); }
.section--dark .btn--solid { background: var(--gold-bright); color: #1a1408; box-shadow: 0 16px 34px -16px rgba(201,162,75,0.5); }
.section--dark .btn--solid:hover { background: #d8b15c; }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(14,14,15,0.03); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(0) scale(0.985); }
.btn--ghost-dark { color: var(--on-dark); border-color: var(--line-dark); }
.btn--ghost-dark:hover { border-color: var(--on-dark); background: rgba(244,241,234,0.05); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color 320ms var(--ease), box-shadow 320ms var(--ease),
              border-color 320ms var(--ease), backdrop-filter 320ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 78px;
}
.nav[data-state="scrolled"] {
  background: rgba(251,250,247,0.88);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 0 rgba(14,14,15,0.04), 0 14px 30px -28px rgba(14,14,15,0.3);
}
.nav[data-state="scrolled"] .nav__inner { height: 64px; }

.nav__brand { display: inline-flex; align-items: baseline; gap: 0.6rem; margin-right: auto; }
.nav__brand-mark {
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.06em; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 4px;
  padding: 0.1rem 0.38rem; line-height: 1;
}
.nav__brand-name {
  font-family: var(--ff-display); font-weight: 500; font-size: 1.18rem;
  letter-spacing: -0.005em; color: var(--ink);
}
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: 0.4rem;
  transition: color 200ms var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right 280ms var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }

.nav__cta { margin-left: 0.4rem; }

.nav__toggle {
  display: none; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.nav__toggle-bars { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.nav__toggle-bars i { height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 280ms var(--ease), opacity 200ms var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 110px var(--pad-x) 3rem;
  display: flex; flex-direction: column; gap: 1.6rem;
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu__links a {
  font-family: var(--ff-display); font-size: 1.7rem; font-weight: 500;
  color: var(--ink); padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 200ms var(--ease), padding-left 200ms var(--ease);
}
.mobile-menu__links a:hover { color: var(--gold); padding-left: 0.4rem; }
.mobile-menu__cta { align-self: flex-start; margin-top: 0.6rem; }
.mobile-menu__contact { font-size: 0.85rem; color: var(--ink-faint); }

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(7.25rem, 12vw, 9.5rem);
  padding-bottom: var(--sec-y);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.hero__copy { max-width: 40rem; }
.hero__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 1.3rem;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero__lede {
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.22rem);
  line-height: 1.62; color: var(--ink-soft);
  max-width: 40ch;
}
.hero__cta-row {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-top: 2.1rem;
}
.hero__fud { margin-top: 1.1rem; font-size: 0.85rem; line-height: 1.55; color: var(--ink-faint); max-width: 48ch; }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.55rem 0.65rem;
  margin-top: 2.4rem; padding-top: 1.9rem;
  border-top: 1px solid var(--line);
}
.hero__chips li {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.42rem 0.85rem;
  background: rgba(255,255,255,0.5);
}

.hero__portrait { position: relative; }
.hero__portrait-tag {
  position: absolute; left: -1px; bottom: 1.6rem;
  background: var(--ink); color: var(--bg);
  padding: 0.9rem 1.2rem; border-radius: 0 12px 12px 0;
  display: flex; flex-direction: column; gap: 0.15rem;
  box-shadow: var(--shadow-soft);
}
.hero__portrait-tag-k { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500; }
.hero__portrait-tag-v { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--gold-bright); }

/* ---------- Placeholder blocks ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(154,123,60,0.05) 0 2px, transparent 2px 11px),
    var(--bg-warm);
  border: 1px dashed rgba(154,123,60,0.4);
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.8rem;
  color: var(--ink-faint);
  overflow: hidden;
}
.section--dark .ph {
  background:
    repeating-linear-gradient(45deg, rgba(201,162,75,0.07) 0 2px, transparent 2px 11px),
    rgba(255,255,255,0.03);
  border-color: rgba(201,162,75,0.32);
  color: var(--on-dark-faint);
}
.ph__mark {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: 0.08em;
  color: rgba(154,123,60,0.35); margin-bottom: 0.7rem;
}
.section--dark .ph__mark { color: rgba(201,162,75,0.4); }
.ph__caption { font-size: 0.74rem; line-height: 1.45; letter-spacing: 0.02em; max-width: 26ch; }
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--video { aspect-ratio: 16 / 9; }
.ph__play {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid rgba(154,123,60,0.45);
  position: relative; margin-bottom: 1rem;
}
.ph__play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-left: 16px solid rgba(154,123,60,0.5);
  border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}

/* ---------- a .ph / .story__ph holding a real photograph ---------- */
.ph--photo {
  padding: 0; background: var(--surface-dk-2);
  border: 1px solid rgba(154,123,60,0.22);
}
.section--dark .ph--photo { border-color: rgba(201,162,75,0.22); }
.ph--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--video.ph--photo .ph__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  margin: 0; z-index: 2; width: 64px; height: 64px;
  border-color: rgba(255,255,255,0.88);
  background: rgba(10,10,11,0.32); backdrop-filter: blur(2px);
}
.ph--video.ph--photo .ph__play::after { left: 56%; border-left-color: rgba(255,255,255,0.94); }

.story__ph--photo { background: var(--surface-dk-2); }
.story__ph--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- section photo blocks (Pillars / Network / Recognition) ---------- */
.pillars__media, .recognition__media, .network__media {
  position: relative; overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(154,123,60,0.18);
  box-shadow: var(--shadow-soft);
}
.pillars__media > img, .recognition__media > img, .network__media > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.pillars__media { aspect-ratio: 3 / 4; }
.recognition__media { aspect-ratio: 4 / 5; }
.network__media { aspect-ratio: 16 / 7; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.strip { padding-block: clamp(2.6rem, 5vw, 3.6rem); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(243,239,230,0.5); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.6rem; }
.strip__lead {
  font-family: var(--ff-display); font-style: italic; font-size: 1.02rem;
  color: var(--ink-soft); flex: 0 1 22ch;
}
.strip__logos {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.1rem;
  flex: 1 1 auto;
}
.strip__logos li {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ink); opacity: 0.55;
  transition: opacity 240ms var(--ease);
}
.strip__logos li:hover { opacity: 0.95; }

/* ============================================================
   STORY (dark) — editorial spread
   ============================================================ */
/* wide horizontal headline — 2–3 balanced lines, generous void on the right */
.story__intro {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.story__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.95rem, 1.3rem + 2vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: -0.016em;
  color: var(--on-dark);
  text-wrap: balance;
}
.story__spread {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}
.story__figure { margin: 0; }
.story__ph {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background:
    radial-gradient(125% 90% at 28% 12%, rgba(201,162,75,0.12), transparent 58%),
    linear-gradient(165deg, #18181c 0%, #101013 56%, #0b0b0d 100%);
  border: 1px solid rgba(201,162,75,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 32px 64px -36px rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.story__ph-bracket {
  position: absolute; top: 18px; left: 18px; width: 24px; height: 24px;
  border-top: 1.5px solid var(--gold-bright);
  border-left: 1.5px solid var(--gold-bright);
  opacity: 0.65;
}
.story__ph::after {
  content: ""; position: absolute; bottom: 18px; right: 18px; width: 24px; height: 24px;
  border-bottom: 1.5px solid var(--gold-bright);
  border-right: 1.5px solid var(--gold-bright);
  opacity: 0.65;
}
.story__ph-mark {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(3rem, 8vw, 5rem); letter-spacing: 0.12em;
  color: rgba(201,162,75,0.22);
  user-select: none;
}
.story__ph-tag {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; line-height: 1.4; color: var(--on-dark-faint);
}
.story__ph-tag i {
  flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright); box-shadow: 0 0 0 3px rgba(201,162,75,0.16);
}
.story__figcap {
  margin-top: 1.15rem; display: flex; flex-direction: column; gap: 0.32rem;
  padding-left: 1.1rem; border-left: 1.5px solid var(--gold-bright);
}
.story__figcap-k { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); }
.story__figcap-v { font-size: 0.9rem; line-height: 1.5; color: var(--on-dark-soft); }

.story__prose { max-width: 48ch; padding-top: 0.35rem; }
.story__prose p { margin-bottom: 1.3rem; color: var(--on-dark-soft); font-size: 1.06rem; line-height: 1.72; }
.story__prose p em { font-style: italic; color: var(--on-dark); }
.story__prose .link-arrow { margin-top: 0.45rem; }

.story__pullquote {
  margin: clamp(2.4rem, 5vw, 3.6rem) auto 0;
  max-width: 32ch;
  text-align: center;
  position: relative;
  padding-top: 1.9rem;
}
.story__pullquote::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 1px; background: var(--gold-bright);
}
.story__pullquote p {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.25rem);
  line-height: 1.32; letter-spacing: -0.01em; color: var(--on-dark);
  text-wrap: balance;
}
.story__pullquote cite {
  display: block; margin-top: 1.15rem;
  font-style: normal; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright);
}

/* ============================================================
   ULTRAPRENEUR  — header beside a numbered list (not 3 equal cards)
   ============================================================ */
.ultra__inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: start;
}
.ultra .section-head { margin-bottom: 0; max-width: 26rem; }
.ultra__cols {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.ultra__col {
  display: grid;
  grid-template-columns: clamp(2.4rem, 4vw, 3.2rem) 1fr;
  column-gap: clamp(1rem, 2vw, 1.7rem);
  align-items: start;
  padding: clamp(1.3rem, 2.6vw, 1.85rem) 0;
  border-bottom: 1px solid var(--line);
}
.ultra__col:last-child { border-bottom: none; padding-bottom: 0; }
.ultra__num {
  grid-row: 1 / span 2;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em; padding-top: 0.45rem;
}
.ultra__title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.38rem, 1.2rem + 0.6vw, 1.62rem);
  margin: 0 0 0.5rem; letter-spacing: -0.01em; color: var(--ink);
}
.ultra__col p { font-size: 1rem; line-height: 1.62; color: var(--ink-soft); max-width: 56ch; }

/* ============================================================
   5 PILLARS (warm) — keynote photo beside the framework list
   ============================================================ */
.pillars__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: start;
}
.pillars__body .section-head { margin-bottom: clamp(1.6rem, 3vw, 2.25rem); max-width: none; }
.pillars__list {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.pillars__item {
  display: grid;
  grid-template-columns: clamp(2.4rem, 4vw, 3.2rem) 1fr;
  column-gap: clamp(1rem, 2vw, 1.7rem);
  align-items: start;
  padding: clamp(1.2rem, 2.4vw, 1.7rem) 0;
  border-bottom: 1px solid var(--line);
}
.pillars__item:last-child { border-bottom: none; padding-bottom: 0; }
.pillars__num {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  color: var(--gold); padding-top: 0.3rem;
}
.pillars__title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  margin-bottom: 0.35rem; letter-spacing: -0.008em; color: var(--ink);
}
.pillars__text p { font-size: 0.97rem; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }

/* ============================================================
   SPEAKING
   ============================================================ */
.speaking__inner { display: grid; }
.talks {
  border-top: 1px solid var(--line);
  margin-bottom: clamp(2rem, 3.5vw, 2.8rem);
}
.talk {
  display: grid; grid-template-columns: auto 1fr; gap: 0.9rem 2rem;
  padding: clamp(1.5rem, 3vw, 1.9rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background-color 260ms var(--ease);
}
.talk:hover { background: var(--gold-wash); }
.talk__index {
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600;
  color: var(--gold); line-height: 1; padding-top: 0.15rem;
}
.talk__title {
  font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.65rem);
  line-height: 1.2; letter-spacing: -0.012em; margin-bottom: 0.6rem; color: var(--ink);
}
.talk__desc { font-size: 1rem; line-height: 1.58; color: var(--ink-soft); max-width: 58ch; margin-bottom: 0.6rem; }
.talk__for { font-size: 0.82rem; letter-spacing: 0.03em; color: var(--ink-faint); text-transform: none; }

.speaking__aside {
  display: grid; grid-template-columns: 1.18fr 0.82fr; gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center; margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}
.speaking__formats ul { display: flex; flex-direction: column; gap: 0.5rem; }
.speaking__formats li {
  font-family: var(--ff-display); font-size: 1.12rem; font-weight: 500; color: var(--ink);
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--line-soft);
}
.speaking__reel { max-width: 460px; width: 100%; justify-self: end; }
.speaking__audiences {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(1.02rem, 1rem + 0.35vw, 1.22rem); line-height: 1.55;
  color: var(--ink-soft); max-width: 62ch; margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
  padding-left: 1.4rem; border-left: 2px solid var(--gold);
}
.speaking__cta { display: flex; flex-direction: column; align-items: flex-start; }

/* ============================================================
   BOOKS (dark)
   ============================================================ */
.books__shelf {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem;
  margin-bottom: 0.9rem;
}
.book {
  aspect-ratio: 5 / 7; border-radius: 5px;
  background: linear-gradient(150deg, var(--surface-dk-2), #1c1c1f 70%, #131315);
  border: 1px solid var(--line-dark);
  box-shadow: -4px 6px 18px -10px rgba(0,0,0,0.6), inset 1px 0 0 rgba(255,255,255,0.04);
  padding: 1rem 0.8rem 1rem 1.1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  position: relative;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.book::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold-bright); opacity: 0.85;
}
.book:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: -6px 12px 26px -12px rgba(0,0,0,0.7); }
.book--alt { background: linear-gradient(150deg, #1d1813, #2a221a 70%, #181410); }
.book--alt::before { background: #b78b3c; }
.book__vol {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright);
}
.book__name {
  font-family: var(--ff-display); font-weight: 500; font-size: 0.92rem; line-height: 1.25;
  color: var(--on-dark); margin-top: auto;
}
.books__shelf-note { font-size: 0.76rem; color: var(--on-dark-faint); margin-bottom: 1.6rem; }

/* stat tiles (shared) */
.stat-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin: 0 0 clamp(1.8rem, 3vw, 2.6rem);
}
.section--dark .stat-tiles { border-top-color: var(--line-dark); }
.stat-tile {
  padding: 1.4rem 1.4rem 1.4rem 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.section--dark .stat-tile { border-right-color: var(--line-dark); }
.stat-tile:last-child { border-right: none; }
.stat-tile__v {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.45rem, 1.1rem + 1vw, 2.1rem); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
}
.section--dark .stat-tile__v { color: var(--on-dark); }
.stat-tile__k { font-size: 0.82rem; line-height: 1.45; color: var(--ink-soft); }
.section--dark .stat-tile__k { color: var(--on-dark-soft); }

.books__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ============================================================
   THE NETWORK (warm bridge)
   ============================================================ */
.network__inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.network__copy { max-width: 40ch; }
.network__copy p { color: var(--ink-soft); margin: 1.4rem 0 1.8rem; }
.stat-tiles--2x2 {
  grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); margin: 0;
}
.stat-tiles--2x2 .stat-tile { padding: 1.6rem 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-tiles--2x2 .stat-tile:nth-child(2n) { border-right: none; }
.stat-tiles--2x2 .stat-tile:nth-last-child(-n+2) { border-bottom: none; }
.stat-tiles--2x2 .stat-tile:nth-child(2n+1) { padding-left: 0; }

/* ============================================================
   MEDIA
   ============================================================ */
/* mirrored vs. the Network section above it — keeps the page rhythm alternating */
.media__inner {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.media__copy { max-width: 40ch; }
.media__copy p { color: var(--ink-soft); margin: 1.4rem 0 1.8rem; }
.media__fits { padding-top: 0.3rem; order: -1; }
.media__fits ul { display: flex; flex-direction: column; }
.media__fits li {
  font-family: var(--ff-display); font-size: 1.18rem; font-weight: 500; color: var(--ink);
  padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft);
}
.media__fits li:last-child { border-bottom: none; }

/* ============================================================
   RECOGNITION (warm) — credentials list beside an authority portrait
   ============================================================ */
.recognition__inner {
  display: grid; grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(2.2rem, 5vw, 4.5rem); align-items: start;
}
.recognition__body .section-head { margin-bottom: clamp(1.6rem, 3vw, 2.25rem); max-width: none; }
.recognition__list {
  columns: 1;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  max-width: none;
}
.recognition__list li {
  font-family: var(--ff-display); font-size: 1.12rem; font-weight: 500; color: var(--ink);
  padding: 0.7rem 0 0.7rem 1.4rem; position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.recognition__list li:last-child { border-bottom: none; }
.recognition__list li::before {
  content: ""; position: absolute; left: 0; top: 1.4rem; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}
.recognition__note { margin-top: 1.4rem; font-size: 0.88rem; font-style: italic; color: var(--ink-faint); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.quote {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 2rem 2rem 1.7rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -26px rgba(20,16,8,0.28); }
.quote::before {
  content: "\201C"; position: absolute; top: 0.6rem; right: 1.4rem;
  font-family: var(--ff-display); font-size: 4rem; line-height: 1;
  color: var(--gold-wash); color: rgba(154,123,60,0.18);
}
.quote__head {
  font-family: var(--ff-display); font-weight: 500; font-size: 1.22rem; line-height: 1.3;
  color: var(--ink); letter-spacing: -0.008em; padding-right: 2rem;
}
.quote__text { font-size: 0.98rem; line-height: 1.62; color: var(--ink-soft); }
.quote__by { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 0.85rem; border-top: 1px solid var(--line-soft); }
.quote__avatar {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  color: var(--gold); background: var(--gold-wash);
  border: 1px solid rgba(154,123,60,0.3);
}
.quote__meta { display: flex; flex-direction: column; gap: 0.08rem; min-width: 0; }
.quote__name { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.quote__title { font-size: 0.8rem; color: var(--ink-faint); }

/* ============================================================
   CLOSER + FORM (dark)
   ============================================================ */
.closer__inner {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.6rem, 5vw, 5.5rem);
  align-items: start;
}
.closer__copy { max-width: 28rem; }
.closer__copy .section-lede { margin-bottom: 1.8rem; }
.closer__proof {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem;
  padding: 1.3rem 0; margin-bottom: 1.8rem;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.closer__proof li { display: flex; flex-direction: column; gap: 0.2rem; max-width: 16ch; }
.closer__proof-v { font-family: var(--ff-display); font-weight: 500; font-size: 1.6rem; line-height: 1; color: var(--on-dark); }
.closer__proof-k { font-size: 0.76rem; line-height: 1.4; color: var(--on-dark-soft); }
.closer__direct p { font-size: 0.95rem; color: var(--on-dark-soft); margin-bottom: 0.3rem; }
.closer__direct a { color: var(--gold-bright); transition: color 200ms var(--ease); }
.closer__direct a:hover { color: #e3c577; text-decoration: underline; text-underline-offset: 3px; }

.closer__form-wrap {
  background: var(--surface-dk-2);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  position: relative;
}
.cform { display: flex; flex-direction: column; gap: 1.3rem; }
.cform__fieldset { border: none; }
.cform__legend { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 0.85rem; padding: 0; }
.cform__pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cform__pill { position: relative; }
.cform__pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.cform__pill span {
  display: inline-block; font-size: 0.84rem; font-weight: 600;
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid var(--line-dark); color: var(--on-dark-soft);
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}
.cform__pill input:hover + span { border-color: var(--on-dark-faint); }
.cform__pill input:checked + span { background: var(--gold-bright); color: #1a1408; border-color: var(--gold-bright); }
.cform__pill input:focus-visible + span { outline: 2px solid var(--gold-bright); outline-offset: 2px; }

.cform__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cform__field { display: flex; flex-direction: column; gap: 0.45rem; }
.cform__field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--on-dark-soft); }
.cform__opt { font-weight: 400; color: var(--on-dark-faint); }
.cform input, .cform textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 9px; padding: 0.78rem 0.95rem;
  color: var(--on-dark); font-size: 0.97rem;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.cform input::placeholder, .cform textarea::placeholder { color: rgba(244,241,234,0.32); }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--gold-bright); background: rgba(255,255,255,0.06); }
.cform textarea { resize: vertical; min-height: 110px; }
.cform__field.is-invalid input, .cform__field.is-invalid textarea { border-color: #c0563f; background: rgba(192,86,63,0.08); }
.cform__error { font-size: 0.78rem; color: #e08a72; min-height: 0; display: none; }
.cform__field.is-invalid .cform__error { display: block; }
.cform__submit { margin-top: 0.3rem; align-self: flex-start; }

.cform__success {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem;
  padding: 1.4rem 0.2rem;
}
.cform__success-mark {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--gold-bright); position: relative; margin-bottom: 0.4rem;
}
.cform__success-mark::after {
  content: ""; position: absolute; left: 15px; top: 22px; width: 8px; height: 15px;
  border-right: 2px solid var(--gold-bright); border-bottom: 2px solid var(--gold-bright);
  transform: rotate(40deg);
}
.cform__success h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.7rem; color: var(--on-dark); }
.cform__success p { color: var(--on-dark-soft); font-size: 0.98rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface-dark); color: var(--on-dark); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-dark-soft);
}
.footer__wordmark { font-family: var(--ff-display); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.005em; color: var(--on-dark); display: inline-block; margin-bottom: 1rem; }
.footer__bio { font-size: 0.9rem; line-height: 1.6; color: var(--on-dark-soft); max-width: 36ch; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.65rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); color: var(--on-dark-soft);
  transition: color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease), background-color 220ms var(--ease);
}
.footer__social a:hover { color: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); background: var(--gold-wash-dk); }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.4rem; }
.footer__col a { font-size: 0.92rem; color: var(--on-dark-soft); transition: color 200ms var(--ease), padding-left 200ms var(--ease); }
.footer__col a:hover { color: var(--on-dark); padding-left: 0.25rem; }
.footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  padding-block: 1.8rem;
}
.footer__base p { font-size: 0.78rem; color: var(--on-dark-faint); }
.footer__base-mantra { font-family: var(--ff-display); font-style: italic; }

/* ============================================================
   ideaaiincome credit (dark variant)
   ============================================================ */
.iai-credit-wrap {
  width: 100%; display: flex; justify-content: center;
  padding: 8px 10px;
  background: var(--iai-credit-bg, #0a0a0a);
}
.iai-credit-btn {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0;
  color: var(--iai-credit-fg, #f5f5f5);
  background: var(--iai-credit-btn-bg, rgba(255,255,255,0.06));
  border: 1px solid var(--iai-credit-border, rgba(255,255,255,0.12));
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.iai-credit-btn:hover {
  background: var(--iai-credit-btn-hover, rgba(255,255,255,0.12));
  border-color: var(--iai-credit-border-hover, rgba(255,255,255,0.24));
  transform: translateY(-1px);
}
.iai-credit-highlight { color: var(--iai-credit-accent, #C9A24B); font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  :root { scroll-padding-top: 80px; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }

  .hero { padding-top: clamp(6rem, 16vw, 8rem); }
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__portrait { max-width: 480px; justify-self: start; }
  .hero__portrait-tag { left: auto; right: 1rem; border-radius: 12px; bottom: 1rem; }

  .story__spread { grid-template-columns: 1fr; gap: 2.2rem; }
  .story__ph { aspect-ratio: 4 / 3; }
  .story__prose { max-width: none; }

  .ultra__inner, .pillars__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .ultra .section-head, .pillars .section-head { max-width: none; }
  .ultra__col, .pillars__item { padding: 1.4rem 0; }

  .speaking__aside { grid-template-columns: 1fr; gap: 2rem; }
  .speaking__reel { justify-self: start; max-width: 520px; }

  .books__shelf { grid-template-columns: repeat(4, 1fr); }
  .stat-tiles { grid-template-columns: 1fr 1fr; }
  .stat-tile { border-bottom: 1px solid var(--line); padding: 1.4rem 1.2rem; }
  .section--dark .stat-tile { border-bottom-color: var(--line-dark); }
  .stat-tile:nth-child(2n) { border-right: none; }
  .stat-tile:nth-last-child(-n+2) { border-bottom: none; }
  .stat-tile:nth-child(2n+1) { padding-left: 0; }

  .network__inner, .media__inner, .closer__inner, .recognition__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .media__fits { order: 0; padding-top: 0; }
  .closer__copy { max-width: none; }

  .quotes { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .section { padding-block: clamp(3.6rem, 13vw, 5rem); }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { width: 100%; }
  .btn--lg { padding: 0.95em 1.4em; }

  .pillars__list { grid-template-columns: 1fr; }
  .pillars__item, .pillars__item:nth-child(odd), .pillars__item:nth-child(even) {
    padding: 1.5rem 0; border-right: none; border-bottom: 1px solid var(--line);
  }
  .pillars__item:last-child { border-bottom: none; }

  .talk { grid-template-columns: 1fr; gap: 0.6rem 0; padding: 1.7rem 0; }
  .talk:hover { background: transparent; }
  .talk__index { font-size: 1rem; }

  .speaking__audiences { font-size: 1.05rem; padding-left: 1rem; }

  .books__shelf { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-tiles, .stat-tiles--2x2 { grid-template-columns: 1fr; }
  .stat-tile, .stat-tiles--2x2 .stat-tile {
    border-right: none !important; border-bottom: 1px solid var(--line); padding: 1.2rem 0;
  }
  .section--dark .stat-tile { border-bottom-color: var(--line-dark); }
  .stat-tile:last-child { border-bottom: none; }
  .stat-tiles--2x2 .stat-tile { padding-left: 0; }

  .recognition__list { columns: 1; }

  .cform__row--2 { grid-template-columns: 1fr; }
  .cform__pill span { font-size: 0.8rem; padding: 0.5rem 0.85rem; }
  .closer__form-wrap { padding: 1.3rem 1.1rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__base { flex-direction: column; }

  .quote { padding: 1.6rem 1.4rem 1.3rem; }
  .strip__inner { gap: 1rem 1.4rem; }
  .strip__lead { flex-basis: auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .grain { display: none; }
}

/* ---------- print ---------- */
@media print {
  .nav, .mobile-menu, .grain, .iai-credit-wrap { display: none !important; }
  body { color: #000; background: #fff; }
}
