@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #000000;
  --bg-raised: #070707;
  --bg-card: #0a0a0a;
  --ivory: #ffffff;
  --white: var(--ivory);
  --cream: #a3a3a3;
  --platinum: #d4d4d4;
  --champagne: #9ca3af;
  --text: #e5e5e5;
  --text-dim: #6b7280;
  --driftwood: #737373;
  --taupe: #9ca3af;
  --gold: #ffffff;
  --gold-soft: #a3a3a3;
  --accent: #ffffff;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --glow: rgba(255, 255, 255, 0.04);
  --max: 1240px;
  --section-y: 128px;
  --section-y-tight: 80px;
  --radius: 0px;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: Inter, ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  perspective: 1600px;
  background: var(--bg);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(28px) saturate(160%);
}

.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ivory);
  text-transform: uppercase;
}

.brand span {
  margin-top: 5px;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 200ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 500;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.btn {
  position: relative;
  overflow: hidden;
  padding: 0 36px;
  border: 1px solid var(--ivory);
  background: var(--ivory);
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform-style: preserve-3d;
  transform: translateZ(0);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  opacity: 0;
  transform: translateX(-130%);
  transition: transform 0.9s ease, opacity 0.35s ease;
  pointer-events: none;
}

.btn:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #000000;
  transform: translateY(-2px) translateZ(8px);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(130%);
}

.btn:active {
  transform: translateY(0) translateZ(2px);
  box-shadow: none;
}

.btn.secondary {
  border-color: var(--line-bright);
  background: transparent;
  color: var(--ivory);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: var(--ivory);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.06);
}

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

.text-link {
  min-height: auto;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  transition: color 200ms ease;
}

.text-link:hover {
  color: var(--ivory);
}

.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(0deg, var(--bg) 8%, rgba(10, 10, 9, 0.92) 42%, transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.78) 0%, rgba(14, 13, 11, 0.32) 50%, rgba(14, 13, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 13, 11, 0.82) 0%, transparent 42%),
    url("../images/professional-work.png") center 18% / cover;
  filter: saturate(0.96) brightness(1);
}

.hero-media-speaking {
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.84) 0%, rgba(14, 13, 11, 0.48) 46%, rgba(14, 13, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(14, 13, 11, 0.88) 0%, transparent 40%),
    url("../images/speaking-authority.png") center 24% / cover;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.eyebrow {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  color: var(--ivory);
}

h1,
.page-title {
  max-width: 800px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.lead {
  max-width: 620px;
  margin-top: 24px;
  color: var(--cream);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 820px;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(27, 26, 24, 0.6);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
}

.image-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  min-height: 520px;
}

.image-story .media-frame {
  min-height: 520px;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack .media-frame {
  min-height: 252px;
}

.caption-band {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.caption-band span {
  border: 1px solid rgba(27, 26, 24, 0.13);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text-dim);
  background: rgba(245, 242, 236, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(27, 26, 24, 0.08);
}

.trust-strip div {
  padding: 22px;
  background: rgba(245, 242, 236, 0.72);
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.section.tight {
  padding: var(--section-y-tight) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 430px;
  color: var(--text-dim);
  font-size: 16px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.resource-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
  transition: border-color 300ms ease;
}

.card:hover,
.service-card:hover,
.resource-card:hover {
  border-color: rgba(200, 194, 184, 0.18);
}

.card {
  padding: 28px;
}

.card p,
.service-card p,
.resource-card p {
  color: var(--text-dim);
}

.card p,
.service-card p {
  margin-top: 12px;
}

.kicker,
.service-card .kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.media-frame {
  min-height: 520px;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: var(--image, url("../images/family-protection.jpg")) center/cover;
  position: relative;
  background-position: center;
}

.media-frame.top {
  background-position: center top;
}

.media-frame.right {
  background-position: right center;
}

.media-frame.small {
  min-height: 360px;
}

.story-panel {
  padding: 0;
  border-left: none;
}

.premium-cta {
  background:
    linear-gradient(145deg, rgba(123, 117, 111, 0.2), rgba(245, 242, 236, 0.62)),
    linear-gradient(90deg, rgba(103, 87, 96, 0.14), transparent 62%);
}

.premium-cta h3 {
  color: var(--white);
}

.story-panel p,
.content-block p {
  margin-top: 16px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.service-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.service-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.service-card dt {
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card dd {
  margin: 3px 0 0;
  color: var(--text-dim);
  font-size: 14px;
}

.band {
  border-block: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.52);
}

.quote {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.quote cite {
  display: block;
  margin-top: 20px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 64px;
}

.page-hero .lead {
  max-width: 580px;
}

.content-block {
  max-width: 780px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 0 14px 18px;
  border-left: 2px solid var(--line);
  color: var(--text-dim);
}

.resource-card {
  min-height: 170px;
  padding: 24px;
}

.resource-card h3 {
  font-size: 26px;
}

.resource-card p {
  margin-top: 10px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}

.contact-line strong {
  color: var(--ivory);
}

.contact-line a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media video {
    display: none;
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 96px;
  color: var(--text-dim);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  font-size: 13px;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-brand {
  margin: 0;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
}

.footer-license {
  margin: 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.55;
  max-width: 520px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-nav a {
  color: var(--text);
  font-weight: 400;
  font-size: 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--ivory);
}

.footer-compliance {
  margin: 0;
  max-width: 720px;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.65;
}

.fine-print {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.hero-editorial {
  min-height: min(100vh, 920px);
  align-items: end;
}

.hero-editorial .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  gap: 0;
  padding: 0 0 96px;
}

.hero-editorial .hero-collage {
  display: none;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: var(--champagne);
  letter-spacing: 0.2em;
}

.hero-editorial .hero-copy h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  max-width: 720px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.hero-editorial .hero-copy .lead {
  max-width: 540px;
  color: var(--platinum);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.7;
}

.hero-editorial .hero-proof {
  margin-top: 22px;
  gap: 8px;
}

.hero-editorial .hero-proof span {
  font-size: 11px;
  font-weight: 750;
  background: rgba(245, 242, 236, 0.06);
}

.hero-editorial .hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 12px;
}

.hero-editorial .hero-actions .text-link {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding: 74px 0 72px;
}

.hero-copy {
  max-width: 860px;
}

.hero-collage {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  transform: rotate(-1deg);
}

.collage-card {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(27, 26, 24, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(27, 26, 24, 0.58), transparent 58%),
    var(--image) center/cover;
  box-shadow: 0 28px 70px rgba(27, 26, 24, 0.13);
}

.collage-signal {
  display: grid;
  align-content: end;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.96), rgba(103, 87, 96, 0.84)),
    linear-gradient(45deg, rgba(123, 117, 111, 0.38), transparent 62%);
  color: #f5f2ec;
}

.collage-signal span {
  position: static;
  justify-self: start;
  background: rgba(123, 117, 111, 0.16);
  color: var(--gold);
}

.collage-signal strong {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
}

.collage-large {
  grid-row: 1 / span 2;
}

.collage-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(245, 242, 236, 0.82);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
}

.feature-portrait.media-frame {
  min-height: 460px;
  background-position: center 20%;
}

.creative-portrait.media-frame {
  background-position: center 20%;
  background-size: cover;
}

.professional-portrait.media-frame {
  background-position: center 20%;
  background-size: cover;
}

.marquee-band {
  display: flex;
  gap: 1px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(27, 26, 24, 0.08);
  opacity: 0.92;
}

.marquee-band span {
  flex: 1 0 auto;
  padding: 18px 24px;
  background: rgba(245, 242, 236, 0.72);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.manifesto-mark {
  position: sticky;
  top: 110px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  color: var(--ivory);
  font-family: var(--font-accent);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  line-height: 1.2;
}

.manifesto-copy p {
  margin-top: 20px;
  max-width: 720px;
  color: var(--text-dim);
  font-size: 18px;
}

.founder-film {
  padding-top: 72px;
}

.founder-film-inner {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.founder-film-copy h2 {
  margin-top: 8px;
  max-width: 640px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.founder-film-copy p {
  max-width: 560px;
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.68;
}

.founder-film-transcript {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  background: var(--bg-raised);
}

.founder-film-player {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.founder-film-wide {
  border: none;
  border-radius: 0;
  margin-inline: calc(-1 * max((100vw - var(--max)) / 2, 24px));
  width: auto;
}

.founder-film-player video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  background: #000;
}

.founder-film-section {
  gap: 32px;
}

.founder-film-transcript summary {
  cursor: pointer;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-film-transcript summary:hover {
  opacity: 0.88;
}

.transcript-body {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
}

.transcript-body p:last-child {
  margin-top: 4px;
  font-weight: 800;
}

.current-work {
  position: relative;
}

.core-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(27, 26, 24, 0.14);
  background: rgba(27, 26, 24, 0.14);
}

.core-areas-card {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, var(--bg-raised), var(--bg-raised)),
    linear-gradient(120deg, transparent, transparent 58%);
}

.core-areas-card:nth-child(2) {
  background:
    linear-gradient(145deg, var(--bg-raised), var(--bg-raised)),
    linear-gradient(120deg, transparent, transparent 60%);
}

.core-areas-card:nth-child(3) {
  background:
    linear-gradient(145deg, var(--bg-raised), var(--bg-raised)),
    linear-gradient(120deg, rgba(123, 117, 111, 0.05), transparent 60%);
}

.core-areas-card:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.98), rgba(27, 26, 24, 0.96)),
    linear-gradient(120deg, transparent, transparent);
  color: var(--ivory);
}

.core-areas-card h3 {
  margin-top: 30px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.98;
}

.core-areas-card p {
  margin-top: 18px;
  color: var(--text-dim);
}

.core-areas-card:nth-child(4) p {
  color: rgba(245, 242, 236, 0.74);
}

.core-areas-card:nth-child(4) .text-link {
  color: #f5f2ec;
}

.authority-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(27, 26, 24, 0.13);
  border-bottom: 1px solid rgba(27, 26, 24, 0.13);
}

.proof-statement p {
  margin-top: 16px;
  max-width: 560px;
  color: var(--text-dim);
  font-size: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(27, 26, 24, 0.12);
  border: 1px solid rgba(27, 26, 24, 0.12);
}

.proof-grid span {
  min-height: 112px;
  display: grid;
  align-items: center;
  padding: 22px;
  background: var(--bg-raised);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.signature-system {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.signature-copy,
.signature-notes {
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 18px 58px rgba(27, 26, 24, 0.07);
}

.signature-copy {
  background:
    linear-gradient(145deg, var(--bg-raised), var(--bg-raised)),
    linear-gradient(90deg, transparent, transparent);
}

.signature-copy p {
  margin-top: 20px;
  max-width: 760px;
  color: var(--text-dim);
  font-size: 18px;
}

.signature-notes {
  display: grid;
  gap: 10px;
  align-content: center;
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.98), rgba(27, 26, 24, 0.96)),
    linear-gradient(90deg, transparent, transparent);
}

.signature-notes span {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
}

.project-ledger {
  border-top: 1px solid rgba(27, 26, 24, 0.13);
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(27, 26, 24, 0.14);
  background: rgba(27, 26, 24, 0.14);
}

.ledger-grid a {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 26px;
  background:
    linear-gradient(145deg, var(--bg-raised), var(--bg-raised)),
    linear-gradient(120deg, transparent, transparent 58%);
  transition: border-color 180ms ease;
}

.ledger-grid a:hover {
  border-color: rgba(123, 117, 111, 0.35);
}

.ledger-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ledger-grid strong {
  margin-top: 18px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 0.98;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(27, 26, 24, 0.13);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  color: #f5f2ec;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.project-card::before {
  display: none;
}


.project-card h3,
.project-card p,
.project-card a,
.project-card .kicker {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  color: #f5f2ec;
}

.project-card p {
  margin-top: 16px;
  color: rgba(245, 242, 236, 0.76);
}

.project-card .text-link {
  margin-top: 22px;
  color: #f5f2ec;
}

.project-card .kicker {
  color: var(--cream);
}

.project-finance {
  background:
    linear-gradient(0deg, rgba(27, 26, 24, 0.78), rgba(27, 26, 24, 0.16)),
    url("../images/books-writing.jpg") center/cover;
}

.project-fiction {
  background:
    linear-gradient(145deg, rgba(103, 87, 96, 0.92), rgba(27, 26, 24, 0.82)),
    linear-gradient(45deg, rgba(123, 117, 111, 0.32), transparent);
}

.project-dialogue {
  background:
    linear-gradient(145deg, rgba(28, 24, 22, 0.94), rgba(123, 117, 111, 0.78)),
    linear-gradient(45deg, rgba(123, 117, 111, 0.3), transparent);
}

.service-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(178px, auto);
  gap: 14px;
}

.service-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 178px;
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(245, 242, 236, 0.9), rgba(255, 255, 255, 0.52)),
    linear-gradient(120deg, rgba(103, 87, 96, 0.1), transparent 55%);
  box-shadow: 0 18px 58px rgba(27, 26, 24, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-tile::after {
  display: none;
}

.service-tile:hover {
  border-color: var(--line);
}

.service-tile.feature {
  grid-column: span 2;
  grid-row: span 2;
  background:
    linear-gradient(0deg, rgba(27, 26, 24, 0.5), rgba(27, 26, 24, 0.05)),
    url("../images/family-protection.jpg") center/cover;
  color: #f5f2ec;
}

.service-tile span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-tile.feature span {
  color: #f5f2ec;
}

.service-tile strong {
  position: relative;
  z-index: 1;
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.98;
}

.service-tile:not(.feature) strong {
  font-size: 27px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(27, 26, 24, 0.5);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
}

.feature-split {
  align-items: stretch;
}

.creative-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.song-wall {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.song-wall article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 240px;
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 22px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.94), rgba(103, 87, 96, 0.78)),
    linear-gradient(45deg, rgba(123, 117, 111, 0.42), transparent 62%);
  color: #f5f2ec;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.song-wall article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(123, 117, 111, 0.92), rgba(27, 26, 24, 0.8)),
    linear-gradient(45deg, rgba(123, 117, 111, 0.25), transparent 62%);
}

.song-wall article:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(123, 117, 111, 0.92), rgba(27, 26, 24, 0.82)),
    linear-gradient(45deg, rgba(103, 87, 96, 0.28), transparent 62%);
}

.song-wall article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(28, 24, 22, 0.95), rgba(123, 117, 111, 0.68)),
    linear-gradient(45deg, rgba(245, 242, 236, 0.12), transparent 62%);
}

.song-wall article::before {
  display: none;
}

.song-wall span {
  position: relative;
  z-index: 1;
  color: rgba(245, 242, 236, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.song-wall strong {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.94;
}

.song-ledger {
  display: grid;
  align-content: center;
  border-radius: 22px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(28, 24, 22, 0.96), rgba(27, 26, 24, 0.92)),
    linear-gradient(90deg, rgba(103, 87, 96, 0.24), rgba(123, 117, 111, 0.18));
  color: #f5f2ec;
}

.song-ledger p {
  margin-top: 18px;
  color: rgba(245, 242, 236, 0.72);
  font-size: 18px;
}

.song-ledger .kicker {
  color: var(--cream);
}

.recognition-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.recognition-row span {
  border: 1px solid rgba(245, 242, 236, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(245, 242, 236, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.books-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  border-block: 1px solid var(--line);
}

.books-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.book-visual {
  min-height: 680px;
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(0deg, rgba(27, 26, 24, 0.2), transparent 52%),
    var(--image) center/cover;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.book-feature-copy {
  border-radius: 28px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(245, 242, 236, 0.88), rgba(255, 255, 255, 0.54)),
    linear-gradient(110deg, rgba(123, 117, 111, 0.18), rgba(103, 87, 96, 0.09), rgba(123, 117, 111, 0.12));
  border: 1px solid rgba(27, 26, 24, 0.12);
  box-shadow: 0 18px 58px rgba(27, 26, 24, 0.07);
}

.book-feature-copy p {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 18px;
}

.book-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.book-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(27, 26, 24, 0.14);
  padding: 18px 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

.book-list a::after {
  content: "Read";
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-index {
  border-top: 1px solid var(--line);
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.index-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--bg-raised);
}

.index-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.index-grid h3 {
  margin-top: 24px;
  font-size: 22px;
  color: var(--ivory);
}

.index-grid p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14px;
}

.call-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(27, 26, 24, 0.14);
  padding: 0 0 22px;
}

.flow-list span {
  color: var(--text-dim);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.flow-list p {
  color: var(--text-dim);
  font-size: 18px;
}

.wtf-hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 74px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.wtf-hero-copy .page-title {
  max-width: 760px;
}

.wtf-support {
  max-width: 720px;
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.55;
}

.wtf-device {
  border: 1px solid rgba(27, 26, 24, 0.14);
  border-radius: 28px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(245, 242, 236, 0.92), rgba(255, 255, 255, 0.56)),
    linear-gradient(140deg, rgba(123, 117, 111, 0.16), rgba(103, 87, 96, 0.1));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.wtf-device-bar {
  min-height: 34px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 10px;
}

.wtf-device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 26, 24, 0.24);
}

.wtf-device-screen {
  min-height: 480px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.98), rgba(230, 246, 239, 0.74)),
    linear-gradient(120deg, rgba(103, 87, 96, 0.08), transparent 56%);
}

.wtf-device-screen small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wtf-device-screen strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.wtf-device-screen p {
  color: var(--text-dim);
  font-size: 16px;
}

.wtf-device-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(245, 242, 236, 0.78);
  color: var(--ivory);
  font-weight: 850;
}

.wtf-device-row b {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wtf-focus {
  border-top: 1px solid rgba(27, 26, 24, 0.13);
}

.wtf-privacy .media-frame {
  background-position: center;
}

.wtf-steps {
  border-block: 1px solid rgba(27, 26, 24, 0.13);
}

.wtf-access {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.wtf-access-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 18px;
}

.wtf-safety {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-radius: 28px;
  padding-inline: clamp(24px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.96), rgba(28, 24, 22, 0.94)),
    linear-gradient(90deg, rgba(123, 117, 111, 0.22), rgba(103, 87, 96, 0.16));
  color: #f5f2ec;
}

.wtf-safety .eyebrow {
  color: var(--cream);
}

.wtf-safety-copy p {
  color: rgba(245, 242, 236, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--ivory);
  color: #f5f2ec;
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.wtf-standalone {
  background:
    radial-gradient(920px 480px at 82% -8%, rgba(103, 87, 96, 0.08), transparent 62%),
    radial-gradient(780px 460px at 4% 18%, rgba(27, 26, 24, 0.06), transparent 58%),
    linear-gradient(145deg, #f5f2ec 0%, #f8edf0 42%, #eaf5ef 100%);
}

.wtf-trust-strip {
  border-bottom: 1px solid rgba(27, 26, 24, 0.12);
  padding: 12px 16px;
  background: rgba(245, 242, 236, 0.78);
  color: var(--text-dim);
  text-align: center;
}

.wtf-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wtf-trust-strip p {
  max-width: 980px;
  margin: 8px auto 0;
  font-size: 13px;
  line-height: 1.45;
}

.wtf-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(27, 26, 24, 0.1);
  background: rgba(245, 242, 236, 0.86);
  backdrop-filter: blur(18px);
}

.wtf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.wtf-brand-mark {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(27, 26, 24, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--gold) 0 16%, transparent 17%),
    conic-gradient(from 0deg, rgba(123, 81, 104, 0.74), rgba(103, 87, 96, 0.72), rgba(123, 81, 104, 0.74));
  opacity: 0.9;
}

.wtf-simple-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
}

.wtf-simple-nav a:hover {
  color: var(--ivory);
}

.wtf-botanical {
  position: absolute;
  pointer-events: none;
  color: var(--ivory);
}

.wtf-botanical-hero {
  inset: 14px -24px auto auto;
  width: min(430px, 48vw);
  opacity: 0.82;
}

.wtf-hero.has-botanical {
  position: relative;
  overflow: hidden;
}

.wtf-hero-copy,
.wtf-summary-preview {
  position: relative;
  z-index: 1;
}

.wtf-summary-preview {
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(245, 242, 236, 0.9), rgba(255, 255, 255, 0.54)),
    linear-gradient(120deg, rgba(103, 87, 96, 0.12), rgba(103, 87, 96, 0.06));
  box-shadow: 0 18px 58px rgba(27, 26, 24, 0.08);
}

.wtf-summary-preview span,
.wtf-quiet-panel span,
.wtf-audio-chapters span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wtf-summary-preview h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 52px);
}

.wtf-summary-preview p,
.wtf-summary-preview li {
  color: var(--text-dim);
}

.wtf-summary-preview ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.wtf-summary-preview li {
  border-left: 2px solid rgba(103, 87, 96, 0.42);
  padding-left: 12px;
}

.wtf-audio {
  border-top: 1px solid rgba(27, 26, 24, 0.12);
  border-bottom: 1px solid rgba(27, 26, 24, 0.12);
}

.wtf-audio-card {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(27, 26, 24, 0.14);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.94), rgba(251, 237, 243, 0.56)),
    linear-gradient(120deg, rgba(103, 87, 96, 0.1), transparent 62%);
  box-shadow: 0 18px 58px rgba(27, 26, 24, 0.08);
}

.wtf-audio-copy h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.wtf-audio-meta,
.wtf-audio-note,
.wtf-transcript p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.wtf-audio-player {
  width: 100%;
  min-height: 44px;
}

.wtf-audio-chapters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wtf-audio-chapters span {
  flex-basis: 100%;
}

.wtf-audio-chapters a {
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(245, 242, 236, 0.7);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 850;
}

.wtf-transcript {
  border-top: 1px solid rgba(27, 26, 24, 0.12);
  padding-top: 14px;
}

.wtf-transcript summary {
  cursor: pointer;
  color: var(--ivory);
  font-weight: 900;
}

.wtf-validation,
.wtf-companion {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(27, 26, 24, 0.12);
}

.wtf-validation-copy p,
.wtf-companion p {
  margin-top: 0;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.65;
}

.wtf-validation-copy p + p {
  margin-top: 18px;
}

.wtf-quiet-panel {
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(245, 242, 236, 0.9), rgba(230, 244, 238, 0.62)),
    linear-gradient(120deg, rgba(103, 87, 96, 0.12), transparent 62%);
}

.wtf-quiet-panel p {
  margin-top: 18px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.wtf-companion {
  border-bottom: 1px solid rgba(27, 26, 24, 0.12);
}

.wtf-footer .footer-inner {
  align-items: start;
}

.advocacy-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(27, 26, 24, 0.12);
}

.advocacy-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: rgba(245, 242, 236, 0.78);
}

.advocacy-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advocacy-grid p {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.03;
}

.visual-rhythm {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 16px;
  align-items: end;
}

.visual-rhythm .media-frame {
  min-height: 420px;
}

.visual-rhythm .media-frame:nth-child(2) {
  min-height: 540px;
}

.final-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 28px;
  align-items: end;
}

.final-conversion p {
  margin-top: 18px;
  max-width: 640px;
  color: var(--text-dim);
  font-size: 18px;
}

.conversion-card {
  border-radius: 22px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.98), rgba(27, 26, 24, 0.94)),
    linear-gradient(120deg, transparent, transparent);
  color: var(--ivory);
}

.conversion-card span {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
}

.core-areas-card,
.book-feature-copy,
.index-grid article,
.ledger-grid a,
.proof-grid span,
.signature-copy,
.conversion-card,
.contact-panel {
  background: var(--bg-raised);
  border-color: var(--line);
  color: var(--ivory);
}

.index-grid,
.ledger-grid,
.proof-grid {
  background: transparent;
  border-color: var(--line);
}

.mini-list li,
.caption-band span {
  background: rgba(200, 194, 184, 0.05);
  border-color: var(--line);
  color: var(--text-dim);
}

.app-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.app-bridge-copy,
.app-bridge-panel,
.media-invitation {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(145deg, var(--bg-raised), var(--bg-raised)),
    linear-gradient(120deg, transparent, transparent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.app-bridge-copy p {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 18px;
}

.app-bridge-panel span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-invitation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: end;
}

.media-copy p {
  color: var(--text-dim);
  font-size: 18px;
}

.boundary-card {
  align-content: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(14, 13, 11, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .editorial-chapter,
  .trust-strip,
  .image-story,
  .hero-grid,
  .wtf-hero,
  .manifesto,
  .core-areas-grid,
  .authority-proof,
  .proof-grid,
  .signature-system,
  .app-bridge,
  .media-invitation,
  .ledger-grid,
  .project-grid,
  .creative-grid,
  .books-strip,
  .books-feature,
  .index-grid,
  .call-flow,
  .wtf-access,
  .wtf-safety,
  .wtf-validation,
  .wtf-companion,
  .visual-rhythm,
  .final-conversion,
  .grid.two,
  .grid.three,
  .grid.four,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-collage,
  .service-board {
    grid-template-columns: 1fr 1fr;
  }

  .service-tile.feature {
    grid-column: span 2;
  }

  .manifesto-mark {
    position: static;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .media-frame {
    min-height: 360px;
  }

  .book-visual,
  .wtf-device-screen,
  .visual-rhythm .media-frame,
  .visual-rhythm .media-frame:nth-child(2) {
    min-height: 360px;
  }

  .story-panel {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .wtf-header {
    position: static;
    display: grid;
    min-height: auto;
    padding: 18px 0;
  }

  .wtf-simple-nav {
    justify-content: flex-start;
  }

  .wtf-botanical-hero {
    width: 72vw;
    opacity: 0.5;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 42px;
  }

  h1,
  .page-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-collage,
  .song-wall,
  .service-board {
    grid-template-columns: 1fr;
  }

  .core-areas-card,
  .ledger-grid a {
    min-height: auto;
  }

  .proof-grid span {
    min-height: 86px;
  }

  .service-tile.feature {
    grid-column: auto;
    grid-row: auto;
  }

  .collage-large {
    grid-row: auto;
  }

  .advocacy-grid {
    grid-template-columns: repeat(6, 82vw);
  }

  .section,
  .page-hero {
    padding-block: 58px;
  }

  .wtf-hero {
    min-height: auto;
    padding-block: 66px;
    gap: 28px;
  }

  .wtf-trust-strip {
    text-align: left;
  }

  .wtf-trust-row {
    justify-content: flex-start;
  }

  .wtf-brand {
    font-size: 22px;
  }

  .wtf-simple-nav {
    gap: 10px;
    font-size: 12px;
  }

  .wtf-simple-nav a,
  .wtf-audio-chapters a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .wtf-summary-preview,
  .wtf-audio-card,
  .wtf-quiet-panel {
    border-radius: 18px;
  }

  .card,
  .service-card,
  .resource-card,
  .core-areas-card,
  .proof-grid span,
  .signature-copy,
  .signature-notes,
  .app-bridge-copy,
  .app-bridge-panel,
  .media-invitation,
  .index-grid article,
  .ledger-grid a {
    padding: 20px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    display: grid;
    gap: 16px;
  }

  .hero:not(.hero-split),
  .hero-editorial:not(.hero-split) {
    min-height: 58dvh;
    max-height: 720px;
  }

  .hero-editorial .hero-grid {
    padding: 0 0 48px;
  }

  .hero-content {
    padding: 0 0 48px;
  }

  .hero-editorial .hero-copy h1 {
    font-size: clamp(28px, 7.8vw, 40px);
    line-height: 1.14;
  }

  .hero-editorial .hero-copy .lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero + .editorial-chapter {
    padding-top: 56px;
  }

  .page-hero {
    padding: 64px 0 48px;
  }

  .chapter-manifesto {
    padding: 80px 0;
  }

  .chapter-quiet {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .chapter-close {
    padding: 80px 0 72px;
  }

  .trust-band-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    letter-spacing: 0.12em;
  }

  .trust-band-inner span + span {
    border-left: none;
    padding-left: 0;
  }

  .proof-contrast {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    padding: 28px 24px;
  }

  .chapter-proof {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-editorial .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-editorial .hero-actions .btn {
    width: 100%;
  }

  .feature-portrait.media-frame,
  .professional-portrait.media-frame,
  .creative-portrait.media-frame {
    min-height: min(72vw, 420px);
  }

  .founder-film-player video {
    max-height: none;
  }

  .founder-film-transcript {
    padding: 14px 16px;
  }
}

/* ─── Editorial Chapter System (Homepage) ─── */

.editorial-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  padding: var(--section-y) 0;
}

.editorial-chapter.chapter-quiet,
.editorial-chapter.chapter-manifesto,
.editorial-chapter.chapter-close,
.editorial-chapter.chapter-proof,
.editorial-chapter.founder-film-section {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.editorial-chapter.chapter-voice {
  grid-template-columns: 1fr;
  justify-items: center;
}

.editorial-chapter.chapter-quiet .chapter-narrow,
.editorial-chapter.chapter-close .chapter-narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.editorial-chapter.chapter-quiet .pull-quote {
  text-align: left;
  border-left: 2px solid var(--gold);
  max-width: 580px;
}

.editorial-chapter.chapter-quiet .song-list-quiet {
  text-align: left;
  width: 100%;
  max-width: 400px;
}

.editorial-chapter.chapter-quiet .advocacy-line,
.editorial-chapter.chapter-quiet .human-line {
  text-align: center;
  max-width: 580px;
}

.editorial-chapter.chapter-quiet .fine-print {
  text-align: center;
  max-width: 520px;
}

.chapter-narrow {
  max-width: 560px;
}

.chapter-narrow h2 {
  max-width: 560px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
}

.chapter-narrow p {
  margin-top: 16px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

.chapter-narrow .text-link {
  display: inline-block;
  margin-top: 20px;
}

.chapter-narrow .btn {
  margin-top: 24px;
}

.chapter-image .media-frame,
.feature-portrait.media-frame {
  min-height: 480px;
  border-radius: 2px;
  border: 1px solid rgba(212, 196, 168, 0.16);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.chapter-quiet {
  border-top: 1px solid var(--line);
  padding-top: 80px;
  padding-bottom: 80px;
}

.chapter-manifesto {
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.chapter-manifesto .manifesto-mark {
  font-family: var(--font-accent);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.18;
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  max-width: 640px;
  border-left: 1px solid var(--champagne);
  padding-left: 32px;
}

.chapter-manifesto .chapter-narrow {
  margin-top: 28px;
}

.chapter-close {
  border-top: 1px solid var(--line);
  padding: 112px 0 96px;
}

.chapter-prompt {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-top: 28px;
  max-width: 480px;
}

.pull-quote {
  margin: 0;
  padding: 0 0 0 28px;
  border: none;
  border-left: 1px solid var(--champagne);
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 40px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ivory);
  max-width: 600px;
}

.song-list-quiet {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  color: var(--cream);
}

.song-list-quiet li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease;
}

.song-list-quiet li:hover {
  color: var(--gold);
}

.advocacy-line {
  font-family: var(--font-accent);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  max-width: 520px;
}

.human-line {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  max-width: 520px;
}

.chapter-literary .chapter-narrow,
.chapter-atmospheric .chapter-narrow,
.chapter-contained .chapter-narrow,
.chapter-human .chapter-narrow {
  max-width: 620px;
}

/* ─── Hero manifesto: clarity resolves into focus ─── */
.hero-resolve {
  letter-spacing: -0.03em;
}

/* ─── First-person signature voice ─── */
.chapter-voice .chapter-narrow {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.voice-quote {
  margin: 0;
  padding: 0 0 0 28px;
  border: none;
  border-left: 1px solid var(--champagne);
  font-family: var(--font-accent);
  font-size: clamp(24px, 3.4vw, 36px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.32;
  color: var(--ivory);
}

.voice-attribution {
  margin-top: 20px;
  padding-left: 30px;
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-manifesto .advocacy-line {
  margin-top: 28px;
  max-width: 540px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: rgba(22, 20, 18, 0.72);
}

.trust-band-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-band-inner span + span {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.chapter-proof {
  padding-top: 96px;
  padding-bottom: 96px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 20, 18, 0.55) 0%, transparent 100%);
}

.proof-intro {
  max-width: 620px;
  margin-bottom: 36px;
}

.proof-intro h2 {
  margin-top: 12px;
}

.proof-contrast {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-panel {
  padding: 36px 32px;
  background: var(--bg-raised);
  text-align: left;
}

.proof-label {
  margin: 0 0 16px;
  color: var(--champagne);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-panel p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.proof-panel-generic {
  opacity: 0.72;
}

.proof-panel-nicole {
  background: linear-gradient(145deg, rgba(22, 20, 18, 1) 0%, rgba(30, 27, 23, 1) 100%);
  border-left: 1px solid rgba(212, 196, 168, 0.22);
}

.proof-panel-nicole p:last-child {
  color: var(--ivory);
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  line-height: 1.45;
}

.proof-note {
  margin-top: 20px;
  max-width: 640px;
  text-align: center;
}

.chapter-service .eyebrow {
  margin-bottom: 12px;
}

.hero-split + .editorial-chapter,
.hero + .editorial-chapter {
  padding-top: 0;
}

.compliance-disclosure {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.6;
  max-width: 640px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-resolve {
    animation: none;
  }
}

.contact-email,
a.contact-email {
  word-break: break-word;
  color: var(--cream);
  font-weight: 500;
}

.contact-email-block {
  margin: 16px 0 8px;
  font-size: 16px;
}

.contact-email-block .contact-email {
  font-size: 17px;
}

@media (max-width: 560px) {
  .chapter-image .media-frame {
    min-height: min(72vw, 340px);
  }

  .pull-quote,
  .chapter-manifesto .manifesto-mark {
    font-size: clamp(22px, 6.5vw, 32px);
    padding-left: 20px;
  }

  .advocacy-line,
  .human-line,
  .chapter-prompt {
    font-size: clamp(18px, 5vw, 24px);
  }

  .footer-license,
  .footer-compliance {
    font-size: 12px;
    line-height: 1.6;
  }

  .contact-email-block .contact-email {
    font-size: 15px;
  }

  .chapter-manifesto {
    padding: 80px 0;
  }

  .chapter-close {
    padding: 80px 0 64px;
  }

  .founder-film-wide {
    margin-inline: -16px;
  }

  .hero-editorial .hero-copy h1 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .scroll-hint {
    display: none;
  }
}

/* ─── Scroll-triggered reveal ─── */

.reveal {
  opacity: 0;
  transform: translate3d(0, 56px, -40px) rotateX(8deg);
  filter: blur(10px);
  transition:
    opacity 1.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0);
  filter: blur(0);
}

.motion-child {
  opacity: 0;
  transform: translate3d(0, 44px, -32px) rotateX(6deg);
  filter: blur(6px);
  transition:
    opacity 1.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--motion-i, 0) * 0.18s + 0.12s);
}

.hero-loaded .motion-child,
.page-hero-loaded .motion-child,
.reveal.visible .motion-child {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .motion-child {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Hero scroll hint ─── */

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: pulse-down 3.6s ease-in-out infinite;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
}

@keyframes pulse-down {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

/* ─── Image hover zoom ─── */

.media-frame {
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-frame:hover {
  transform: scale(1.01);
}

/* ─── Smooth page transitions & 3D depth ─── */

.chapter-proof .proof-panel {
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.chapter-proof .proof-panel:hover {
  transform: translate3d(0, calc(var(--parallax-y, 0px) - 8px), 16px) rotateX(3deg);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}

.chapter-image .media-frame,
.feature-portrait.media-frame {
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.chapter-image .media-frame:hover,
.feature-portrait.media-frame:hover {
  transform: translate3d(0, calc(var(--parallax-y, 0px) - 6px), 12px) rotateY(-2deg);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5);
}

.nav {
  animation: nav-fade 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes nav-fade {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav {
    animation: none;
  }

  .chapter-proof .proof-panel:hover,
  .chapter-voice .chapter-narrow:hover,
  .chapter-image .media-frame:hover,
  .feature-portrait.media-frame:hover,
  .btn:hover,
  .btn.secondary:hover {
    transform: none;
  }

  .btn::after {
    display: none;
  }
}

/* ─── Executive split hero & luxury panels (v3) ─── */

.hero-split {
  position: relative;
  display: block;
  min-height: auto;
  max-height: none;
  overflow: visible;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-split::after {
  display: none;
}

.hero-split-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 7vw, 88px) 0 clamp(36px, 5vw, 64px);
}

.hero-split .hero-copy {
  max-width: none;
  padding-left: 28px;
  border-left: 1px solid rgba(212, 196, 168, 0.32);
}

.hero-split .hero-resolve {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-split .hero-lead {
  margin-top: 28px;
  font-size: clamp(18px, 1.8vw, 21px);
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-credentials span {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-credentials span + span::before {
  content: "·";
  margin-right: 18px;
  color: rgba(212, 196, 168, 0.45);
}

.hero-portrait {
  position: relative;
}

.hero-portrait-frame {
  min-height: clamp(400px, 48vw, 640px);
  border-radius: 2px;
  overflow: hidden;
  background: var(--image, url("../images/speaking-authority.png")) center 22% / cover;
  border: 1px solid rgba(212, 196, 168, 0.3);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(247, 243, 236, 0.06);
  position: relative;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 13, 11, 0.5) 100%);
  pointer-events: none;
}

.hero-portrait-caption {
  margin: 14px 4px 0 0;
  text-align: right;
  color: var(--champagne);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stagger > .motion-child:nth-child(1) { --motion-i: 0; }
.hero-stagger > .motion-child:nth-child(2) { --motion-i: 1; }
.hero-stagger > .motion-child:nth-child(3) { --motion-i: 2; }
.hero-stagger > .motion-child:nth-child(4) { --motion-i: 3; }
.hero-stagger > .motion-child:nth-child(5) { --motion-i: 4; }
.hero-portrait.motion-child { --motion-i: 5; }

[data-tilt] {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.panel-elevated {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 8vw, 104px) max(24px, calc((100vw - 1240px) / 2 + 24px));
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.8) 0%, rgba(14, 13, 11, 0.2) 100%);
  border-block: 1px solid var(--line);
}

.panel-elevated.editorial-chapter {
  column-gap: clamp(40px, 6vw, 80px);
}

.chapter-proof {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 10vw, 128px) max(24px, calc((100vw - 1240px) / 2 + 24px));
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 196, 168, 0.06), transparent 70%),
    var(--bg-raised);
  border-block: 1px solid rgba(212, 196, 168, 0.14);
}

.chapter-proof .proof-contrast {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  gap: 0;
  border: 1px solid rgba(212, 196, 168, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.chapter-proof .proof-panel {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
}

.chapter-proof .proof-panel-generic {
  background: rgba(14, 13, 11, 0.6);
  opacity: 0.65;
}

.chapter-proof .proof-panel-nicole {
  background: linear-gradient(155deg, #1e1b17 0%, #12100e 100%);
  border-left: 1px solid rgba(212, 196, 168, 0.28);
  box-shadow: inset 0 1px 0 rgba(247, 243, 236, 0.05);
}

.chapter-proof .proof-panel-nicole p:last-child {
  font-size: clamp(22px, 2.6vw, 30px);
}

.chapter-voice .chapter-narrow {
  padding: clamp(40px, 6vw, 56px) clamp(28px, 4vw, 40px);
  border: 1px solid rgba(212, 196, 168, 0.14);
  background: linear-gradient(145deg, rgba(22, 20, 18, 0.9), rgba(14, 13, 11, 0.4));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.chapter-voice .chapter-narrow:hover {
  transform: translateY(-6px) rotateX(2deg) translateZ(10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .hero-portrait {
    order: -1;
  }

  .hero-split .hero-copy {
    border-left: none;
    padding-left: 0;
  }

  .hero-portrait-frame {
    min-height: min(72vw, 400px);
  }

  .hero-portrait-caption {
    text-align: left;
  }

  .hero-credentials span + span::before {
    margin-right: 12px;
  }

  .panel-elevated.editorial-chapter {
    padding-inline: 24px;
  }

  .chapter-proof {
    padding-inline: 24px;
  }
}

/* ─── Executive tier v4 — monochrome precision ─── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--progress, 0) * 100%);
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.executive-tier .nav-links a:not(.btn) {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.executive-tier .hero-split {
  position: relative;
  min-height: min(94vh, 960px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  top: -25%;
  right: -15%;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 68%);
  filter: blur(48px);
  animation: orb-drift 24s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 65% at 42% 38%, #000 20%, transparent 75%);
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--spot-x, 38%) var(--spot-y, 32%),
    rgba(255, 255, 255, 0.07),
    transparent 62%
  );
  transition: background 0.15s ease-out;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 3%) scale(1.06); }
}

.executive-tier .hero-split-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 56px));
  padding: clamp(56px, 9vw, 112px) 0 clamp(48px, 6vw, 80px);
  gap: clamp(40px, 6vw, 96px);
}

.executive-tier .hero-split .hero-copy {
  padding-left: 32px;
  border-left: 1px solid var(--line-bright);
}

.executive-tier .hero-split .hero-resolve {
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--ivory);
}

.executive-tier .hero-split .hero-lead {
  margin-top: 32px;
  max-width: 480px;
  color: var(--text-dim);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.executive-tier .hero-eyebrow {
  color: var(--champagne);
  margin-bottom: 4px;
}

.executive-tier .hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  padding-top: 0;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line-bright);
}

.executive-tier .hero-credentials span {
  padding: 18px 16px;
  text-align: center;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.executive-tier .hero-credentials span + span::before {
  content: none;
}

.executive-tier .hero-credentials span + span {
  border-left: 1px solid var(--line);
}

.executive-tier .hero-portrait-frame {
  min-height: clamp(440px, 52vw, 680px);
  border-radius: 0;
  border: 1px solid var(--line-bright);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 48px 120px rgba(0, 0, 0, 0.85);
}

.executive-tier .hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 42%);
  pointer-events: none;
}

.executive-tier .hero-portrait-caption {
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.28em;
}

.executive-tier .panel-elevated {
  background: linear-gradient(180deg, #050505 0%, #000000 100%);
  border-block-color: var(--line);
}

.executive-tier .chapter-narrow h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.executive-tier .chapter-proof {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(255, 255, 255, 0.03), transparent 72%),
    #030303;
  border-block-color: var(--line);
}

.executive-tier .chapter-proof .proof-contrast {
  border-color: var(--line-bright);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.executive-tier .proof-label {
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.22em;
}

.executive-tier .proof-panel-nicole {
  background: linear-gradient(160deg, #0c0c0c 0%, #000000 100%);
  border-left: 1px solid var(--line-bright);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.executive-tier .proof-panel-nicole p:last-child {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ivory);
}

.executive-tier .voice-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.28;
  padding-left: 32px;
  border-left: 2px solid var(--ivory);
}

.executive-tier .chapter-voice .chapter-narrow {
  border-color: var(--line);
  background: linear-gradient(160deg, rgba(12, 12, 12, 0.95), rgba(0, 0, 0, 0.6));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.executive-tier .chapter-manifesto .manifesto-mark {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  border-left: 2px solid var(--ivory);
  padding-left: 28px;
  text-align: left;
  max-width: 720px;
}

.executive-tier .chapter-image .media-frame,
.executive-tier .feature-portrait.media-frame {
  border-color: var(--line-bright);
  border-radius: 0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.executive-tier .chapter-close {
  border-top: 1px solid var(--line-bright);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.executive-tier .footer {
  border-top: 1px solid var(--line);
  background: #000000;
}

.executive-tier .text-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--line-bright);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.executive-tier .text-link:hover {
  border-bottom-color: var(--ivory);
}

.executive-tier .page-title {
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.executive-tier .page-hero .lead {
  color: var(--text-dim);
  max-width: 560px;
}

.executive-tier .conversion-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 255, 255, 0.03), transparent 70%),
    #000000;
}

@media (max-width: 980px) {
  .executive-tier .hero-split {
    min-height: auto;
  }

  .executive-tier .hero-credentials {
    grid-template-columns: 1fr;
  }

  .executive-tier .hero-credentials span + span {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .executive-tier .hero-split .hero-copy {
    padding-left: 0;
    border-left: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb {
    animation: none;
  }

  .hero-spotlight {
    display: none;
  }
}

/* ─── v5 Cinematic hero — unmistakable layout ─── */

.executive-tier:has(.hero-cinematic) .nav {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.executive-tier:has(.hero-cinematic) .nav.nav-solid {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(24px) saturate(160%);
}

.hero-cinematic {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  border-bottom: 1px solid var(--line-bright);
}

.hero-cinematic-media {
  position: absolute;
  inset: -4% 0 0;
  background: var(--image, url("../images/speaking-authority.png")) center 28% / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cinematic.hero-loaded .hero-cinematic-media {
  transform: scale(1);
}

.hero-cinematic-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, 0.92) 72%, #000000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.hero-cinematic-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 45%, #000 85%);
  pointer-events: none;
}

.hero-cinematic-inner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(140px, 20vh, 220px);
  text-align: center;
}

.hero-cinematic .hero-eyebrow {
  color: var(--ivory);
  margin-bottom: 20px;
}

.hero-cinematic .hero-resolve {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(52px, 9.2vw, 112px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-align: center;
  text-wrap: balance;
}

.hero-cinematic .hero-resolve::after {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  margin: 32px auto 0;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: hero-line-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

@keyframes hero-line-reveal {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 96px;
    opacity: 1;
  }
}

.hero-cinematic .hero-lead {
  max-width: 520px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  text-align: center;
}

.hero-cinematic .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.btn-hero {
  min-height: 52px;
  padding: 0 44px;
  font-size: 12px;
}

.hero-spec-rail.motion-child {
  --motion-i: 4;
}

.hero-spec-rail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
}

.spec-cell {
  padding: 22px 16px;
  text-align: center;
  color: var(--ivory);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.spec-cell + .spec-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-cinematic + .editorial-chapter {
  padding-top: 0;
  border-top: 4px solid var(--ivory);
  margin-top: 0;
}

.executive-tier .chapter-proof .proof-contrast {
  border: 2px solid var(--line-bright);
}

.executive-tier .proof-panel-nicole {
  position: relative;
}

.executive-tier .proof-panel-nicole::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

@media (max-width: 980px) {
  .hero-cinematic-inner {
    padding-bottom: clamp(160px, 28vh, 240px);
  }

  .hero-cinematic .hero-resolve {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1;
  }

  .hero-spec-rail {
    grid-template-columns: 1fr;
  }

  .spec-cell + .spec-cell {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic .hero-resolve::after {
    animation: none;
    width: 96px;
    opacity: 1;
  }

  .hero-cinematic-media {
    transform: scale(1);
    transition: none;
  }
}

/* ─── v6 Sitewide cinematic inner pages & components ─── */

.executive-tier:has(.page-hero-cinematic) .nav:not(.nav-solid),
.executive-tier:has(.hero-cinematic) .nav:not(.nav-solid) {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.executive-tier:has(.page-hero-cinematic) .nav.nav-solid,
.executive-tier:has(.hero-cinematic) .nav.nav-solid {
  background: rgba(0, 0, 0, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(24px) saturate(160%);
}

.page-hero-cinematic {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(132px, 18vh, 200px) max(24px, calc((100vw - 1080px) / 2)) clamp(72px, 10vh, 112px);
  min-height: min(56vh, 600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--line-bright);
  isolation: isolate;
}

.page-hero-cinematic::before {
  content: "";
  position: absolute;
  inset: -6% 0 0;
  z-index: -2;
  background: var(--hero-image, none) center 30% / cover no-repeat;
  transform: scale(1.07) translateY(var(--hero-parallax, 0px));
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero-cinematic.page-hero-loaded::before {
  transform: scale(1);
}

.page-hero-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.9) 78%, #000000 100%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  pointer-events: none;
}

.page-hero-cinematic.page-hero-minimal::before {
  display: none;
}

.page-hero-cinematic.page-hero-minimal::after {
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(255, 255, 255, 0.06), transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #000000;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.page-hero-cinematic.conversion-hero {
  min-height: min(62vh, 680px);
}

.page-hero-cinematic.conversion-hero::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.92) 80%, #000 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.page-hero-cinematic .page-title {
  max-width: 920px;
  margin: 16px auto 0;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero-cinematic .page-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.page-hero-cinematic.page-hero-loaded .page-title::after {
  animation: hero-line-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.page-hero-cinematic .lead {
  max-width: 580px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
}

.page-hero-cinematic .fine-print {
  margin-top: 20px;
  color: var(--text-dim);
}

.page-hero-cinematic .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.page-hero-cinematic + .section,
.page-hero-cinematic + .editorial-chapter,
.hero-cinematic + .editorial-chapter {
  border-top: 3px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--section-y);
}

.executive-tier main > .section {
  position: relative;
}

.executive-tier .story-panel h2,
.executive-tier .content-block h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ivory);
}

.executive-tier .story-panel {
  border-left: 2px solid var(--line-bright);
  padding-left: 28px;
}

.executive-tier .card,
.executive-tier .service-card,
.executive-tier .resource-card {
  background: linear-gradient(165deg, #0a0a0a 0%, #000000 100%);
  border-color: var(--line-bright);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
  transform-style: preserve-3d;
}

.executive-tier .card:hover,
.executive-tier .service-card:hover,
.executive-tier .resource-card:hover {
  transform: translateY(-6px) translateZ(8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}

.executive-tier .kicker,
.executive-tier .service-card .kicker {
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.22em;
}

.executive-tier .media-frame {
  border-radius: 0;
  border: 1px solid var(--line-bright);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.executive-tier .split .media-frame:hover {
  transform: translateY(-4px) translateZ(6px);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.75);
}

.executive-tier .service-card dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.executive-tier .contact-line strong {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.executive-tier .contact-line a {
  color: var(--ivory);
}

.executive-tier .footer-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .page-hero-cinematic {
    min-height: min(50vh, 520px);
    padding-top: 120px;
  }

  .page-hero-cinematic .page-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .executive-tier .story-panel {
    border-left: none;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-cinematic::before {
    transform: scale(1);
    transition: none;
  }

  .page-hero-cinematic .page-title::after {
    animation: none;
    width: 72px;
    opacity: 1;
  }

  .executive-tier .card:hover,
  .executive-tier .service-card:hover,
  .executive-tier .resource-card:hover,
  .executive-tier .split .media-frame:hover {
    transform: none;
  }
}

/* ─── v7 Audit fixes: contact, copy email, mobile type ─── */

.contact-email-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-email-panel--inline {
  margin-top: 16px;
}

.contact-email-display {
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.contact-response-note {
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: 15px;
}

.disclosure-once {
  max-width: 560px;
  margin-top: 20px;
  color: var(--text-dim);
  line-height: 1.65;
}

.section-cta-row {
  justify-content: flex-start;
  margin-top: 32px;
}

.copy-email-btn.copied {
  border-color: var(--ivory);
}

@media (max-width: 980px) {
  .hero-cinematic .hero-resolve {
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.12;
  }

  .page-hero-cinematic .page-title {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
  }
}

