/* ===== Brand tokens (Vosello-inspired warm palette) ===== */
:root {
  --cream: #f2efeb;
  --ink: #1a1816;
  --ink-dark: #0f0e0c;
  --muted: #716c69;
  --border: #ddd8d2;
  --navy: var(--ink);
  --navy-dark: var(--ink-dark);
  --gold: #b8954a;
  --gold-soft: #d4b76a;
  --white: #ffffff;
  --off-white: var(--cream);
  --grey-100: #ebe7e2;
  --cta-light: #f2ece4;
  --grey-200: var(--border);
  --grey-400: #9a9590;
  --grey-600: var(--muted);
  --grey-800: #3d3a37;
  --black: var(--ink);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Antonio", "Inter", system-ui, sans-serif;
  --font-quote: "Archivo", "Inter", system-ui, sans-serif;
  --type-display-xl: clamp(3rem, 10vw, 7.75rem);
  --type-display-lg: clamp(2.25rem, 5vw, 4.25rem);
  --type-display-md: clamp(2rem, 4.2vw, 3.25rem);
  --type-section: clamp(2.25rem, 5.5vw, 5rem);
  --type-lead: clamp(1.0625rem, 1.4vw, 1.25rem);
  --type-body: 1rem;
  --type-sm: 0.875rem;
  --type-xs: 0.75rem;
  --type-label: 0.875rem;
  --type-nav: 1.125rem;
  --paragraph-size: var(--type-lead);
  --paragraph-leading: 1.6;
  --copy-measure-narrow: 22ch;
  --copy-measure: 36ch;
  --copy-measure-wide: 42ch;
  --maxw: 1400px;
  --page-gutter: clamp(16px, 3vw, 56px);
  --content-width: min(100% - 2 * var(--page-gutter), var(--maxw));
  --nav-gap: clamp(16px, 2.5vh, 32px);
  --nav-inner: 36px;
  --header-height: calc(var(--nav-gap) * 2 + var(--nav-inner));
  --section-gap: clamp(40px, 5vh, 64px);
  --section-pad-y: clamp(64px, 8vh, 96px);
  --section-pad-y-sm: clamp(48px, 6vh, 72px);
  --section-flow: clamp(64px, 8vh, 96px);
  --split-gap: clamp(48px, 6vw, 88px);
  --split-eyebrow: 0.75rem;
  --section-head-gap: clamp(28px, 4vw, 40px);
  --title-content-gap: clamp(32px, 5vw, 48px);
  --banner-offset: clamp(72px, 9vh, 112px);
  --banner-height: calc(100svh - var(--header-height) - var(--banner-offset));
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 1.15s;
  --reveal-distance: 48px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hero:
    rgba(0, 0, 0, 0.19) 0 1px 1px -0.47px,
    rgba(0, 0, 0, 0.18) 0 2.4px 2.4px -0.94px,
    rgba(0, 0, 0, 0.18) 0 4.4px 4.4px -1.41px,
    rgba(0, 0, 0, 0.17) 0 7.2px 7.2px -1.88px,
    rgba(0, 0, 0, 0.16) 0 11.7px 11.7px -2.34px,
    rgba(0, 0, 0, 0.15) 0 19.1px 19.1px -2.81px,
    rgba(0, 0, 0, 0.12) 0 33px 33px -3.28px,
    rgba(0, 0, 0, 0.06) 0 60px 60px -3.75px;
  --shadow-card:
    rgba(0, 0, 0, 0.15) 0 0.8px 0.8px -0.47px,
    rgba(0, 0, 0, 0.15) 0 1.9px 1.9px -0.94px,
    rgba(0, 0, 0, 0.14) 0 3.5px 3.5px -1.41px,
    rgba(0, 0, 0, 0.14) 0 5.8px 5.8px -1.88px,
    rgba(0, 0, 0, 0.13) 0 9.4px 9.4px -2.34px,
    rgba(0, 0, 0, 0.12) 0 15.3px 15.3px -2.81px,
    rgba(0, 0, 0, 0.1) 0 26.4px 26.4px -3.28px,
    rgba(0, 0, 0, 0.05) 0 48px 48px -3.75px;
  --shadow-image:
    rgba(0, 0, 0, 0.1) 0 2px 4px -1px,
    rgba(0, 0, 0, 0.09) 0 6px 12px -2px,
    rgba(0, 0, 0, 0.08) 0 14px 28px -4px,
    rgba(0, 0, 0, 0.05) 0 28px 56px -8px;
  --stack-top: calc(var(--header-height) + 8px);
  --stack-gap: clamp(24px, 4vw, 40px);
  --bg-dots: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1.5' cy='1.5' r='1' fill='%231a1816' fill-opacity='0.045'/%3E%3C/svg%3E");
  --bg-dots-light: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1.5' cy='1.5' r='1' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(184, 149, 74, 0.08) 0%, transparent 58%),
    var(--bg-dots);
  background-size: auto, 28px 28px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main {
  overflow-x: visible;
}
html.motion-enabled body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 200px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: var(--content-width);
  margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), opacity 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--white);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-soft,
.btn-cta-light {
  background: var(--cta-light);
  color: var(--ink);
}
.btn-soft:hover,
.btn-cta-light:hover {
  background: #ebe4da;
}
.btn-cta-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-cta-dark:hover {
  background: var(--ink-dark);
  box-shadow: var(--shadow);
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 3vh, 28px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--grey-200);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-talk {
  background: var(--grey-100);
  color: var(--ink);
  padding: 12px 20px;
  font-size: 0.875rem;
}
.btn-talk:hover {
  background: var(--border);
  transform: none;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  transition: background 0.5s var(--ease-cinematic), box-shadow 0.5s var(--ease-cinematic), backdrop-filter 0.5s var(--ease-cinematic);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  width: var(--content-width);
  margin-inline: auto;
  padding-block: var(--nav-gap);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  font-family: var(--font-display);
  font-size: var(--type-nav);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.brand-text em {
  font-style: normal;
  color: var(--gold);
}
.brand-wordmark {
  gap: 0;
}
.brand-wordmark-text {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.brand-ip,
.brand-nerds {
  color: #122336;
}
.brand-law {
  color: #e1ae3e;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  margin-left: auto;
}
.header-nav a {
  font-family: var(--font-quote);
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--muted);
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--ink); }
.header-nav a.is-active {
  color: var(--ink);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: auto;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--grey-100);
  outline: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: var(--content-width);
  margin-inline: auto;
  padding: var(--nav-gap) 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-family: var(--font-quote);
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
  transition: color 0.2s ease;
}
.mobile-menu a:hover {
  color: var(--ink);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { display: flex; }

/* ===== Hero ===== */
.hero {
  --hero-gutter: clamp(8px, 1.25vw, 16px);
  --hero-gap: var(--nav-gap);
  padding: var(--header-height) var(--hero-gutter) var(--banner-offset);
  background: var(--cream);
}
.banner-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: var(--banner-height);
  background: var(--navy-dark);
  box-shadow: var(--shadow-hero);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 24, 22, 0.72) 0%, rgba(26, 24, 22, 0.28) 48%, rgba(26, 24, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(26, 24, 22, 0.18) 0%, transparent 42%);
  transition: opacity 0.8s var(--ease-cinematic);
}
html.motion-enabled .hero.is-loaded .hero-overlay {
  animation: overlayPulse 2.4s var(--ease-cinematic) 0.2s both;
}
@keyframes overlayPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vh, 64px) clamp(32px, 6vw, 72px) clamp(28px, 4vh, 44px);
  width: var(--content-width);
  margin-inline: auto;
}
.hero-text {
  --section-copy-width: var(--copy-measure-wide);
  align-self: flex-start;
  text-align: left;
  max-width: min(680px, 100%);
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: clamp(16px, 2.5vh, 22px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(calc(2.25rem - 2px), calc(5.5vw - 2px), calc(4.5rem - 2px));
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: clamp(20px, 3vh, 28px);
  max-width: var(--section-copy-width);
}
.hero-lead {
  font-family: var(--font-quote);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--gold-soft);
  margin-bottom: clamp(18px, 3vh, 24px);
}
.hero-desc {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-leading);
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: clamp(28px, 4vh, 40px);
  max-width: var(--section-copy-width);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.hero-spoken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px clamp(16px, 3vw, 28px);
  margin-top: clamp(28px, 4vh, 40px);
}
.hero-spoken-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}
.hero-spoken-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}
.hero-spoken-logos span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ===== Section background decoration ===== */
.intro,
.section,
.testimonial,
.panel-section,
.contact-faq-section,
.contact-hero-section,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}
.intro > *,
.section > .container,
.testimonial > .container,
.testimonial-inner,
.panel-section > .container,
.contact-faq-section > .container,
.contact-hero-section > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.intro::before,
.panel-section::before,
.contact-faq-section::before,
.contact-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(184, 149, 74, 0.09) 0%, transparent 62%),
    radial-gradient(ellipse 40% 35% at 4% 88%, rgba(26, 24, 22, 0.04) 0%, transparent 58%),
    var(--bg-dots);
  background-size: auto, auto, 28px 28px;
}
.panel-section::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 6%;
  width: clamp(160px, 18vw, 260px);
  height: clamp(160px, 18vw, 260px);
  border: 1px solid rgba(184, 149, 74, 0.14);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.intro::after {
  content: "";
  position: absolute;
  width: clamp(280px, 32vw, 420px);
  height: clamp(280px, 32vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(184, 149, 74, 0.14) 0%, transparent 68%);
  top: -12%;
  right: -8%;
}

/* ===== Intro stack (Vosello sticky cards) ===== */
.intro-stack {
  position: relative;
  background: var(--cream);
  overflow: visible;
  padding-bottom: var(--section-pad-y-sm);
}
.intro-stack .intro-stack__item.intro {
  overflow: visible;
  isolation: auto;
}
.intro-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(184, 149, 74, 0.09) 0%, transparent 62%),
    radial-gradient(ellipse 40% 35% at 4% 88%, rgba(26, 24, 22, 0.04) 0%, transparent 58%),
    var(--bg-dots);
  background-size: auto, auto, 28px 28px;
}
.intro-stack::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -8%;
  width: clamp(280px, 32vw, 420px);
  height: clamp(280px, 32vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(184, 149, 74, 0.14) 0%, transparent 68%);
}
.intro-stack__item {
  position: relative;
  overflow: visible;
}
.intro-stack--active .intro-stack__pin {
  position: sticky;
  top: var(--stack-top);
  background: var(--cream);
  overflow: visible;
  padding-bottom: var(--stack-gap);
}
.intro-stack--active .intro-stack__item:nth-child(1) .intro-stack__pin { z-index: 10; }
.intro-stack--active .intro-stack__item:nth-child(2) .intro-stack__pin { z-index: 20; }
.intro-stack--active .intro-stack__item + .intro-stack__item {
  margin-top: var(--stack-gap);
}
.intro-stack--active .intro-stack__item:not(:last-child) {
  min-height: calc(100svh - var(--stack-top));
}
.intro-stack .intro::before,
.intro-stack .intro::after {
  display: none;
}
.intro-stack--static .intro-stack__item {
  min-height: 0;
  margin-top: 0;
}
.intro-stack--static .intro-stack__pin {
  position: relative;
  top: auto;
}
.intro-stack--static .intro-stack__item + .intro-stack__item {
  margin-top: var(--stack-gap);
}

/* ===== Intro ===== */
.intro {
  background: var(--cream);
}
.intro > .container {
  padding: clamp(24px, 4vh, 40px) 0;
}
.intro-stack > .intro > .container {
  padding: clamp(4px, 0.8vh, 8px) 0;
}
.intro-stack > .intro:first-child > .container {
  padding-top: clamp(8px, 1.5vh, 16px);
}
.intro-stack > .intro:last-child > .container {
  padding-bottom: clamp(8px, 1.5vh, 16px);
}
.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: var(--section-pad-y) 0 var(--section-pad-y-sm);
}
.intro-copy {
  max-width: 540px;
}
.intro-label {
  display: inline-block;
  font-family: var(--font-quote);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.intro h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-md);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.intro-lead {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.intro-copy p {
  font-size: var(--type-sm);
  color: var(--muted);
  line-height: 1.65;
}
.intro-copy .btn {
  margin-top: 28px;
}
.intro-value .intro-inner,
.intro-speaking .intro-inner,
.intro-about .intro-inner {
  padding-top: var(--section-pad-y-sm);
  padding-bottom: var(--section-pad-y-sm);
}
.intro-visual {
  position: relative;
  min-height: clamp(320px, 36vw, 460px);
  padding: 0 0 28px 28px;
}
.intro-visual-main,
.intro-visual-accent,
.about-media,
.talk-card-media {
  overflow: hidden;
}
.intro-visual-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.intro-visual-main img,
.intro-visual-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-visual-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(46%, 200px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--cream);
}
.intro-visual-single {
  padding: 0;
  min-height: 0;
}
.intro-visual-single .intro-visual-main {
  aspect-ratio: 4 / 5;
  height: 100%;
}
.intro-stats {
  padding: var(--section-pad-y-sm) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-height: clamp(128px, 14vw, 168px);
  padding: clamp(28px, 4vw, 40px) clamp(16px, 2vw, 24px);
  background: var(--white);
  border-radius: clamp(16px, 2vw, 20px);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-value span {
  font: inherit;
  color: inherit;
}
.stat-label {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  color: var(--muted);
  line-height: 1.45;
  max-width: 14ch;
}

/* ===== Sections ===== */
.section {
  padding: var(--section-pad-y) 0;
}
.section-head {
  margin-bottom: var(--section-head-gap);
}
.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section h2:not(.publications-title),
.section h1:not(.publications-title) {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--ink);
}
.section-head p {
  font-family: var(--font-quote);
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: 1.55;
  max-width: 480px;
}
.section-cta {
  margin-top: var(--section-head-gap);
  text-align: center;
}

/* ===== Speaking / Talks ===== */
.speaking {
  background: var(--cream);
}
.speaking::before {
  background-image:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(184, 149, 74, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(26, 24, 22, 0.04) 0%, transparent 58%),
    var(--bg-dots);
  background-size: auto, auto, 28px 28px;
}
.speaking-title {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
  color: var(--ink);
  margin-bottom: clamp(32px, 5vh, 48px);
}
.speaking-pitch {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.speaking-lead {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: clamp(24px, 4vh, 32px);
}
.contact-still-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.talks-list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.talk-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(20px, 2.8vw, 36px);
  background: var(--white);
  border-radius: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
.intro-stack .talk-card {
  box-shadow: var(--shadow-card);
  transition: filter 0.15s linear, opacity 0.15s linear, transform 0.15s linear;
  transform-origin: center top;
}
.talk-card--about .talk-card-title {
  font-family: var(--font-display);
  font-size: var(--type-display-md);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: clamp(20px, 3vh, 28px);
  color: var(--ink);
}
.intro-stack--static .talk-card,
.intro-stack--static .stack-panel {
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.talk-card--reverse .talk-card-media {
  order: 2;
}
.talk-card--reverse .talk-card-body {
  order: 1;
}
.talk-card-media {
  border-radius: clamp(20px, 2.5vw, 28px);
  aspect-ratio: 5 / 4;
  width: 100%;
  min-width: 0;
  align-self: center;
  background: var(--grey-100);
  overflow: hidden;
}
.intro-stack .talk-card-media {
  box-shadow: var(--shadow-card);
}
.talk-card-media img,
.talk-card-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.intro-stack .talk-card-media img,
.intro-stack .talk-card-media video {
  box-shadow: none;
}
.talk-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(8px, 1.5vw, 16px) clamp(8px, 1.5vw, 20px) clamp(4px, 1vw, 8px);
}
.talk-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.talk-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink);
}
.talk-card-content p {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: clamp(16px, 2.5vh, 22px);
  max-width: 42ch;
}
.talk-card-content p:last-of-type {
  margin-bottom: clamp(16px, 2.5vh, 22px);
}
.talk-card-content .card-actions {
  margin-top: 0;
  margin-bottom: clamp(8px, 1.5vh, 16px);
}
.talk-card-lead {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  color: var(--ink);
  line-height: 1.55;
}
.talk-card-content .intro-label {
  margin-bottom: 14px;
}
.talk-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
  margin-top: clamp(16px, 2.5vh, 24px);
}
.talk-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--type-sm);
  color: var(--muted);
}
.talk-location svg {
  flex-shrink: 0;
  color: var(--grey-400);
}
.talk-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.talk-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--grey-100);
  font-size: var(--type-xs);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* ===== Testimonial ===== */
.testimonial {
  padding: var(--section-pad-y) 0;
  background-color: var(--cream);
  color: var(--ink);
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 75% 55% at 50% 42%, rgba(255, 255, 255, 0.85) 0%, transparent 68%),
    radial-gradient(ellipse 45% 40% at 88% 12%, rgba(184, 149, 74, 0.06) 0%, transparent 62%),
    var(--bg-dots);
  background-size: auto, auto, 28px 28px;
}
.testimonial-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
}
.testimonial blockquote {
  font-family: var(--font-quote);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(36px, 5vh, 48px);
}
.testimonial blockquote strong {
  font-weight: 700;
  color: var(--ink);
}
.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--border);
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  font-weight: 600;
  color: var(--ink);
}
.testimonial-author span {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  color: var(--muted);
}

/* ===== About ===== */
.about-section {
  background: transparent;
}
.about-hero,
.speaking-section,
.split-section,
.services-section,
.topics-section,
.publications-section {
  padding-block: var(--section-flow);
  background: transparent;
}
.speaking-section .btn-primary {
  box-shadow: var(--shadow-sm);
}
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--split-gap);
  align-items: stretch;
}
.about-split-copy {
  --section-copy-width: var(--copy-measure);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  height: 100%;
}
.about-split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vh, 40px);
  max-width: var(--section-copy-width);
}
.about-hero .about-split-copy,
.speaking-split .about-split-copy,
.what-you-do-section .about-split-copy,
.why-it-matters-section .about-split-copy {
  --section-copy-width: 100%;
}
.about-hero .about-split-copy h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  max-width: 100%;
}
.about-hero .about-split-lead,
.about-hero .about-split-body {
  max-width: 100%;
}
.about-hero .about-split-body {
  flex: 1;
  margin-bottom: 0;
}
.speaking-split .about-split-copy h2,
.what-you-do-section .about-split-copy h2,
.why-it-matters-section .about-split-copy h2 {
  line-height: 1.08;
  margin-bottom: clamp(32px, 4.5vh, 48px);
}
.what-you-do-section .about-split-copy h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}
.what-you-do-section .about-split-body,
.why-it-matters-section .about-split-body {
  flex: 1;
}
.about-split-lead {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  color: var(--muted);
  line-height: var(--paragraph-leading);
  max-width: var(--section-copy-width);
  margin-bottom: clamp(16px, 2.5vh, 22px);
}
.about-split-body {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  color: var(--muted);
  line-height: var(--paragraph-leading);
  max-width: var(--section-copy-width);
  margin-bottom: clamp(24px, 3.5vh, 32px);
}
.about-split-copy .card-actions {
  margin-top: 0;
}
.about-split-media,
.hero-media,
.cta-media {
  --cinematic-scale: 1.05;
}
.about-split-media {
  border-radius: clamp(20px, 2.5vw, 28px);
  overflow: hidden;
  box-shadow: var(--shadow-image);
  min-height: 0;
  transition:
    box-shadow 0.75s var(--ease-cinematic),
    transform 0.75s var(--ease-cinematic);
}
.about-split-media.is-hovered,
.cinematic-media.is-hovered {
  box-shadow: var(--shadow-card);
}
.about-split-media img,
.hero-video,
.hero-image,
.cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(var(--cinematic-scale, 1.05));
}
.about-split-media img {
  aspect-ratio: 5 / 4;
}
@media (min-width: 1025px) {
  .about-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .about-split-copy {
    align-self: stretch;
  }
  .about-split-media {
    display: flex;
    align-self: stretch;
    height: 100%;
  }
  .about-split-media img {
    aspect-ratio: auto;
    flex: 1;
    object-fit: cover;
  }
}
.intro-stack .stack-panel {
  transition: filter 0.15s linear, opacity 0.15s linear;
}

/* ===== Split sections (What you do / Why it matters) ===== */
.split-section .container,
.split-section .about-split,
.split-section .about-split-copy {
  background: transparent;
  box-shadow: none;
}
.split-section .about-split-copy .talk-tags,
.speaking-split .talk-tags {
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}
.split-section .about-split-body:last-of-type,
.about-split-body:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .why-it-matters-split .about-split-copy {
    order: 1;
  }
  .why-it-matters-split .about-split-media {
    order: 2;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-media {
  border-radius: 16px;
  overflow: hidden;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-md);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about-copy p {
  font-size: var(--type-sm);
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.about-topics-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-400);
  margin-bottom: 12px;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-tags span {
  padding: 8px 16px;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--grey-200);
}

/* ===== Topics ===== */
.topics-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: clamp(540px, 58vw, 700px);
  padding: clamp(28px, 4vw, 40px);
  background: var(--ink);
  border-radius: clamp(18px, 2.5vw, 28px);
  color: var(--white);
}
.topics-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 120%, rgba(184, 149, 74, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.topics-panel > * {
  position: relative;
  z-index: 1;
}
.topics-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.topics-panel-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: clamp(20px, 3vw, 28px);
}
.topics-panel-copy {
  --section-copy-width: var(--copy-measure);
}
.topics-panel-copy h2,
.topics-panel-copy p {
  max-width: var(--section-copy-width);
}
.topics-panel-copy p {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  color: rgba(255, 255, 255, 0.68);
  line-height: var(--paragraph-leading);
}
.topics-panel-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: clamp(20px, 3vw, 28px);
}
.topics-panel .topic-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.topics-panel .topic-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
  box-shadow: none;
}
.topics-panel .topic-card-label {
  color: var(--white);
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 20px);
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  align-content: start;
}
.topic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  min-height: clamp(148px, 14vw, 188px);
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border-radius: clamp(18px, 2.2vw, 24px);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease-cinematic),
    box-shadow 0.4s var(--ease-cinematic);
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-image);
}
.topic-card-index {
  font-family: var(--font-quote);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.topic-card-label {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.9vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.topic-card:nth-child(7) .topic-card-label {
  max-width: 24ch;
}
@media (min-width: 768px) {
  .topics-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .topic-card {
    grid-column: span 3;
  }
  .topic-card:nth-child(n + 5) {
    grid-column: span 4;
  }
}
@media (min-width: 1200px) {
  .topic-card-label {
    max-width: none;
  }
}
.topics-section .topics-panel {
  min-height: auto;
  padding: clamp(24px, 3.5vw, 36px);
}
.topics-section .topics-panel-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.topics-section .topics-grid {
  flex: 0 0 auto;
}
.topics-section .topic-card {
  min-height: 0;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.2vw, 24px);
}
.topics-section .topic-card-label {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

/* ===== Services ===== */
.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.services-head-main h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 0;
}
.services-head-desc {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  color: var(--muted);
  line-height: var(--paragraph-leading);
  max-width: var(--copy-measure);
  justify-self: end;
  text-align: left;
}
.services-panel .intro-label {
  color: rgba(255, 255, 255, 0.55);
}
.services-panel .services-head-main h2 {
  color: var(--white);
}
.services-panel .services-head-desc,
.topics-panel .services-head-desc {
  color: rgba(255, 255, 255, 0.68);
}
.topics-panel .intro-label {
  color: rgba(255, 255, 255, 0.55);
}
.topics-panel .services-head-main h2 {
  color: var(--white);
  margin-bottom: 0;
}
.topics-panel .services-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.services-panel .service-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.services-panel .service-card:hover {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}
.services-panel .service-card h3 {
  color: var(--white);
}
.services-panel .service-card p {
  color: rgba(255, 255, 255, 0.68);
}
.services-panel .service-card p strong {
  color: rgba(255, 255, 255, 0.92);
}
.services-panel.topics-panel {
  min-height: auto;
  padding: clamp(24px, 3.5vw, 36px);
}
.services-panel .services-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.services-panel .services-grid {
  flex: 0 0 auto;
}
.services-panel .topics-panel-footer {
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: 0;
}
.services-panel .service-card {
  min-height: 0;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.2vw, 24px);
}
.services-panel .service-card h3 {
  max-width: none;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  min-height: clamp(148px, 14vw, 188px);
  padding: clamp(22px, 2.5vw, 28px);
  background: var(--grey-100);
  border-radius: clamp(18px, 2vw, 24px);
  border: none;
  transition: transform 0.35s var(--ease-cinematic), box-shadow 0.35s var(--ease-cinematic);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.service-num {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--ink);
  max-width: 14ch;
}
.service-card p {
  margin-top: auto;
  color: var(--muted);
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  line-height: 1.6;
}
.service-card p strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===== Resources & FAQ (Vosello-style panels) ===== */
.panel-section {
  background: var(--cream);
}
.panel-section .section-head.row {
  align-items: center;
  margin-bottom: var(--section-head-gap);
}
.panel-section .section-head.row h2 {
  margin-bottom: 0;
}
.panel-section .section-head {
  margin-bottom: var(--section-head-gap);
}
.panel-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  list-style: none;
  padding: 0;
  margin: 0;
}
.panel-item {
  border-bottom: 1px solid var(--border);
}
.panel-row {
  display: block;
  padding: clamp(28px, 4vw, 44px) 0;
  transition: opacity 0.2s ease;
}
.panel-row:hover {
  opacity: 0.65;
}
.panel-row h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.panel-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: var(--type-sm);
  color: var(--muted);
}
.panel-meta time,
.panel-meta span {
  color: var(--muted);
}

/* ===== Publications (Vosello list) ===== */
.publications-section {
  --publication-card-bg: #faf9f6;
}
.publications-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--title-content-gap);
}
.publications-section .publications-title {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.publications-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.publication-card {
  background: var(--publication-card-bg);
  border-radius: clamp(18px, 2.5vw, 24px);
  transition: opacity 0.25s var(--ease);
}
.publication-card:hover {
  opacity: 0.82;
}
.publication-card-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3vw, 32px);
  color: inherit;
  text-decoration: none;
}
.publication-card-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 28ch;
}
.publication-card-meta {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  color: var(--muted);
  line-height: 1.5;
}
.publication-card-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.publication-card:hover .publication-card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}
@media (max-width: 768px) {
  .publication-card-copy h3 {
    max-width: none;
  }
}

/* ===== News & Insights (Vosello grid) ===== */
.insights-section {
  padding: var(--section-pad-y-sm) 0 var(--section-pad-y);
  background: var(--cream);
}
.insights-section.panel-section::before,
.insights-section.panel-section::after {
  display: none;
}
.insights-section .section-head.row {
  align-items: flex-end;
  margin-bottom: var(--section-head-gap);
}
.insights-section .section-head.row h2 {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0;
  color: var(--ink);
}
.insights-explore {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
  padding-bottom: 4px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(12px, 2vw, 24px);
}
.insight-card {
  display: block;
}
.insight-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.insight-card-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: clamp(22px, 3vw, 30px);
  background: var(--grey-100);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s var(--ease-cinematic);
}
.insight-card-link:hover .insight-card-media {
  box-shadow: var(--shadow-card);
}
.insight-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease-cinematic);
}
.insight-card-link:hover .insight-card-media img {
  transform: scale(1.08);
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 clamp(14px, 2vw, 18px);
}
.insight-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--muted);
}
.insight-card-meta time {
  color: var(--muted);
  font-weight: 400;
  margin-right: 2px;
}
.insight-tag {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.blog-index .insights-grid {
  margin-top: 0;
}

/* ===== Blog ===== */
.blog-page {
  background: var(--cream);
}
.blog-post {
  padding: calc(var(--header-height) + var(--section-pad-y-sm)) 0 var(--section-pad-y);
}
.blog-post-intro {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  text-align: center;
}
.blog-post-inner {
  max-width: 760px;
  margin-inline: auto;
}
.blog-index {
  padding-top: calc(var(--header-height) + var(--section-pad-y-sm));
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(24px, 3.5vh, 32px);
}
.blog-tags span {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}
.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: clamp(16px, 2.5vh, 24px);
  text-align: center;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: var(--type-sm);
  color: var(--muted);
  margin-bottom: clamp(40px, 6vh, 56px);
}
.blog-post-meta time::after {
  content: "•";
  margin: 0 10px;
  color: var(--grey-400);
}
.blog-post-meta .blog-source {
  color: var(--grey-400);
}
.blog-post-hero {
  width: 100%;
  max-width: 100%;
  border-radius: clamp(24px, 4vw, 40px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  margin-bottom: var(--section-head-gap);
  background: var(--grey-100);
  box-shadow: var(--shadow-hero);
}
.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-body {
  font-size: var(--type-body);
  color: var(--ink);
  line-height: 1.75;
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: clamp(48px, 7vh, 72px) 0 clamp(16px, 2.5vh, 24px);
  color: var(--ink);
}
.blog-post-body h2:first-child {
  margin-top: 0;
}
.blog-post-body p {
  margin-bottom: clamp(18px, 2.5vh, 24px);
  color: var(--muted);
}
.blog-post-body blockquote {
  margin: clamp(32px, 5vh, 48px) 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  line-height: 1.55;
  color: var(--ink);
}
.blog-source-note {
  margin-top: clamp(32px, 5vh, 48px);
  font-size: var(--type-sm);
  color: var(--grey-400);
}
.blog-source-note a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post-author {
  margin-top: clamp(48px, 7vh, 72px);
  padding-top: 0;
  border-top: none;
  font-size: var(--type-sm);
  color: var(--muted);
  line-height: 1.7;
}
.blog-more {
  padding: var(--section-pad-y) 0 var(--section-pad-y-sm);
}
.blog-page .blog-more .section-head.row {
  max-width: var(--content-width);
  margin-inline: auto;
  width: 100%;
}
.blog-page .blog-more .insights-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--content-width);
  margin-inline: auto;
  gap: clamp(28px, 4vw, 48px);
}
.blog-more .section-head.row h2 {
  font-size: var(--type-section);
}
/* ===== CTA banner ===== */
.cta-section {
  --hero-gutter: clamp(8px, 1.25vw, 16px);
  --hero-gap: var(--nav-gap);
  padding: var(--section-flow) var(--hero-gutter) 0;
  background: var(--cream);
}
main:has(> .cta-section:last-child) + .site-footer {
  margin-top: var(--banner-offset);
}
.cta-wrap {
  width: 100%;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0.55);
  transition: background 0.8s var(--ease-cinematic);
}
html.motion-enabled .cta-card.in-view .cta-overlay {
  background: rgba(26, 24, 22, 0.48);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(48px, 8vh, 80px) clamp(24px, 5vw, 48px);
  max-width: 640px;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  color: rgba(255, 255, 255, 0.88);
  line-height: var(--paragraph-leading);
  max-width: var(--copy-measure);
  margin-inline: auto;
  margin-bottom: 32px;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: var(--type-sm);
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.btn-cta-white:hover {
  transform: translateY(-1px);
  background: var(--grey-100);
}

/* ===== Split CTA card (homepage) ===== */
.contact-still-section {
  --hero-gutter: clamp(8px, 1.25vw, 16px);
  padding: 0 var(--hero-gutter) var(--banner-offset);
  background: var(--cream);
}
.contact-still-wrap {
  width: 100%;
}
.contact-still-card {
  border-radius: 40px;
  overflow: hidden;
  min-height: var(--banner-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--white);
}
.contact-still-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(40px, 6vw, 72px);
}
.contact-still-content h2 {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-still-content p {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  color: var(--muted);
  line-height: 1.55;
  max-width: 38ch;
  margin-bottom: 32px;
}
.contact-still-media {
  position: relative;
  min-height: 100%;
}
.contact-still-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.contact-form {
  text-align: left;
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.field select {
  padding: 12px 44px 12px 16px;
  appearance: none;
  cursor: pointer;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--grey-600);
  text-align: center;
}

/* ===== Contact page ===== */
.contact-page {
  background: var(--cream);
}
.contact-hero-section {
  padding: calc(var(--header-height) + var(--section-pad-y-sm)) 0 var(--section-pad-y);
}
.contact-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-hero-intro {
  width: 100%;
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 56px);
  text-align: center;
}
.contact-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: clamp(20px, 3vh, 32px);
  background: var(--white);
  border-radius: 999px;
  font-size: var(--type-sm);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.contact-hero-intro h1 {
  font-family: var(--font-display);
  font-size: var(--type-display-xl);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: clamp(20px, 3vh, 28px);
}
.contact-lead {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 0;
}
.contact-form-card {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
  background: var(--white);
  padding: clamp(32px, 5vw, 48px);
  border-radius: 28px;
  border: none;
  box-shadow: none;
}
.contact-form-card .form-row {
  gap: clamp(16px, 3vw, 24px);
}
.contact-form-card .form-row .field {
  margin-bottom: 0;
}
.contact-form-card .form-row {
  margin-bottom: clamp(18px, 3vw, 24px);
}
.contact-form-card .field {
  margin-bottom: clamp(18px, 3vw, 24px);
}
.contact-form-card .field-full {
  margin-bottom: clamp(18px, 3vw, 24px);
}
.contact-form-card .field label {
  display: block;
  font-size: var(--type-label);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-form-card .label-optional {
  color: var(--muted);
  font-weight: 400;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: var(--grey-100);
  font-family: inherit;
  font-size: var(--type-body);
  color: var(--ink);
  transition: box-shadow 0.2s;
}
.contact-form-card select {
  padding: 14px 44px 14px 16px;
  appearance: none;
  cursor: pointer;
  background-color: var(--grey-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23716c69' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--grey-400);
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(26, 24, 22, 0.12);
}
.contact-form-card textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form-card .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-family: inherit;
  font-size: var(--type-body);
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-form-card .btn-submit:hover {
  background: var(--ink-dark);
  transform: translateY(-1px);
}
.contact-form-card .form-note {
  margin-top: 20px;
  font-size: var(--type-body);
  color: var(--muted);
  text-align: center;
}
.contact-form-card .form-response {
  margin-top: 16px;
  font-size: var(--type-body);
  color: var(--ink);
  text-align: center;
}
.contact-faq-section {
  padding: var(--section-pad-y) 0;
  background: var(--cream);
}
.contact-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact-faq-intro h2 {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.faq-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-card {
  background: var(--white);
  border-radius: 14px;
  transition: transform 0.4s var(--ease-cinematic), box-shadow 0.4s var(--ease-cinematic);
}
html.motion-enabled .faq-card[open] {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.faq-card summary {
  padding: 18px 22px;
  font-family: var(--font);
  font-size: var(--type-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -4px;
  transition: transform 0.25s var(--ease);
}
.faq-card[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}
.faq-card p {
  padding: 0 22px 20px;
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  color: var(--muted);
  line-height: 1.6;
}
/* ===== Footer ===== */
.site-footer {
  padding: clamp(28px, 4vh, 40px) 0;
  background: var(--cream);
  border-top: none;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.footer-tagline {
  font-family: var(--font-quote);
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin: 6px 0 0;
  max-width: 28ch;
  line-height: 1.45;
}
.footer-disclaimer {
  font-family: var(--font-quote);
  font-size: 0.75rem;
  color: var(--grey-400);
  margin: 4px 0 0;
  max-width: 62ch;
  line-height: 1.45;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}
.footer-nav a {
  font-family: var(--font-quote);
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--ink);
}

/* ===== Scroll motion & cinematic reveals ===== */
.parallax-wrap,
.cinematic-media {
  overflow: hidden;
}
.cinematic-layer {
  will-change: transform;
  backface-visibility: hidden;
}
html.motion-enabled .about-split-media,
html.motion-enabled .cta-media,
html.motion-enabled .hero-media {
  cursor: default;
}
html.motion-enabled .banner-card {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    transform 1.35s var(--ease-cinematic),
    opacity 1.35s var(--ease-cinematic);
}
html.motion-enabled .hero.is-loaded .hero-card,
html.motion-enabled .cta-card.in-view.banner-card {
  opacity: 1;
  transform: none;
}
html.motion-enabled .cta-content > * {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    transform 1.1s var(--ease-cinematic),
    opacity 1.1s var(--ease-cinematic),
    filter 1.1s var(--ease-cinematic);
}
html.motion-enabled .cta-card.in-view .cta-content > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
html.motion-enabled .cta-card.in-view .cta-content h2 { transition-delay: 0.08s; }
html.motion-enabled .cta-card.in-view .cta-content p { transition-delay: 0.18s; }
html.motion-enabled .cta-card.in-view .cta-content .btn { transition-delay: 0.28s; }
.site-header.is-scrolled {
  background: rgba(242, 239, 235, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
html.motion-enabled .hero-text > * {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition:
    transform 1.2s var(--ease-cinematic),
    opacity 1.2s var(--ease-cinematic),
    filter 1.2s var(--ease-cinematic);
}
html.motion-enabled .hero.is-loaded .hero-text > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
html.motion-enabled .hero.is-loaded .hero-text .hero-eyebrow { transition-delay: 0.04s; }
html.motion-enabled .hero.is-loaded .hero-text h1 { transition-delay: 0.1s; }
html.motion-enabled .hero.is-loaded .hero-text .hero-lead { transition-delay: 0.18s; }
html.motion-enabled .hero.is-loaded .hero-text .hero-desc { transition-delay: 0.26s; }
html.motion-enabled .hero.is-loaded .hero-text .hero-actions { transition-delay: 0.34s; }
html.motion-enabled .hero.is-loaded .hero-text .hero-spoken { transition-delay: 0.44s; }
html.motion-enabled .reveal {
  will-change: transform, opacity, filter;
  transition:
    opacity var(--reveal-duration) var(--ease-cinematic),
    transform var(--reveal-duration) var(--ease-cinematic),
    filter var(--reveal-duration) var(--ease-cinematic);
  transition-delay: var(--reveal-delay, 0s);
}
html.motion-enabled .reveal:not(.in) {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  filter: blur(6px);
}
html.motion-enabled .reveal.reveal-left:not(.in):not(:has(img, video)) {
  transform: translateX(calc(var(--reveal-distance) * -0.85));
}
html.motion-enabled .reveal.reveal-right:not(.in):not(:has(img, video)) {
  transform: translateX(calc(var(--reveal-distance) * 0.85));
}
html.motion-enabled .reveal.reveal-left:has(img, video):not(.in),
html.motion-enabled .reveal.reveal-right:has(img, video):not(.in) {
  transform: translateY(var(--reveal-distance));
}
html.motion-enabled .reveal.reveal-scale:not(.in) {
  transform: translateY(32px) scale(0.96);
  filter: blur(4px);
}
html.motion-enabled .reveal.reveal-fade:not(.in) {
  transform: translateY(24px);
  filter: blur(10px);
}
html.motion-enabled .reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.motion-enabled .reveal,
  html.motion-enabled .reveal.in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  html.motion-enabled .hero-text > *,
  html.motion-enabled .hero.is-loaded .hero-text > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .cinematic-layer,
  .about-split-media img,
  .hero-video,
  .cta-media img,
  .insight-card-media img {
    transform: none !important;
    transition: none !important;
  }
  html.motion-enabled .banner-card,
  html.motion-enabled .hero.is-loaded .hero-card,
  html.motion-enabled .cta-card.in-view.banner-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html.motion-enabled .cta-content > *,
  html.motion-enabled .cta-card.in-view .cta-content > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .service-card:hover,
  .topic-card:hover {
    transform: none;
  }
  html.motion-enabled body::after {
    display: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .intro-stack__item {
    position: relative;
    top: auto;
    min-height: 0;
  }
  .intro-stack .talk-card-media {
    overflow: hidden;
    background: var(--grey-100);
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 768px) {
  :root {
    --section-flow: clamp(48px, 7vh, 72px);
    --split-gap: clamp(32px, 5vw, 48px);
  }
}

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-copy { max-width: none; }
  .intro-visual { min-height: auto; max-width: 520px; margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-split {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }
  .about-split-copy h2 { max-width: none; }
  .about-split {
    align-items: center;
  }
  .about-split-copy {
    display: block;
    min-height: 0;
    height: auto;
  }
  .about-hero .about-split-body,
  .what-you-do-section .about-split-body,
  .why-it-matters-section .about-split-body {
    flex: none;
  }
  .about-split-media { order: -1; }
  .about-split-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .speaking-split .about-split-media { order: -1; }
  .services-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .services-head-desc {
    justify-self: start;
    max-width: 42ch;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card h3 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-gap: 12px;
    --section-gap: clamp(32px, 5vh, 48px);
    --banner-offset: clamp(48px, 7vh, 72px);
  }
  .cta-section {
    --hero-gutter: 8px;
  }
  .contact-still-section {
    --hero-gutter: 8px;
  }
  .contact-still-card {
    border-radius: 28px;
    grid-template-columns: 1fr;
    min-height: var(--banner-height);
  }
  .contact-still-media {
    min-height: 50%;
    order: -1;
  }
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-form-card .form-row {
    grid-template-columns: 1fr;
  }
  .contact-faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .header-bar {
    gap: 12px;
    min-height: calc(var(--nav-gap) * 2 + var(--nav-inner));
  }
  .brand {
    flex: 1;
    min-width: 0;
  }
  .header-nav { display: none; }
  .nav-toggle {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }
  .mobile-menu {
    gap: 10px;
    padding-block: var(--nav-gap);
  }
  .hero {
    --hero-gutter: 8px;
  }
  .banner-card { border-radius: 28px; }
  .hero-text { text-align: left; align-self: stretch; }
  .hero-actions { justify-content: flex-start; }
  .hero-spoken { align-self: stretch; }
  .intro-visual-accent { width: 38%; }
  .intro-stack__item {
    position: relative;
    top: auto;
    min-height: 0;
  }
  .talk-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .talk-card--reverse .talk-card-media,
  .talk-card--reverse .talk-card-body {
    order: unset;
  }
  .talk-card-media {
    aspect-ratio: 5 / 4;
  }
  .intro-stack .talk-card-media {
    overflow: hidden;
    background: var(--grey-100);
  }
  .talk-card-body {
    padding: 8px 4px 4px;
  }
  .talk-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid { grid-template-columns: 1fr; }
  .topics-panel-head {
    flex-direction: column;
    gap: 16px;
  }
  .topics-panel {
    min-height: 0;
  }
  .topics-panel-footer {
    justify-content: flex-start;
  }
  .insights-grid { grid-template-columns: 1fr; }
  .blog-more .insights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { min-height: 120px; padding: 24px 16px; }
}

@media (max-width: 768px) {
  .brand-wordmark-text { font-size: 1.5rem; }
}

/* ===== Brand guidelines page ===== */
.brand-guide-page {
  background: var(--cream);
}
.brand-guide {
  padding-top: calc(var(--header-height) + var(--section-flow));
  padding-bottom: var(--section-flow);
}
.brand-guide-shell {
  width: var(--content-width);
  margin-inline: auto;
}
.brand-guide-hero {
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid var(--border);
}
.brand-guide-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 16px;
}
.brand-guide-hero p {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-leading);
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 28px;
}
.brand-guide-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-guide-jump a {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  font-weight: 600;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grey-100);
  border: 1px solid var(--border);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.brand-guide-jump a:hover {
  background: var(--white);
  border-color: var(--gold);
}
.brand-guide-flow {
  position: relative;
  padding-left: clamp(28px, 4vw, 48px);
}
.brand-guide-flow::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--border) 35%, var(--gold) 100%);
  border-radius: 2px;
}
.brand-guide-block {
  padding: clamp(48px, 7vh, 72px) 0;
  border-bottom: 1px solid var(--border);
}
.brand-guide-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.brand-guide-block-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.brand-guide-num {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 6px;
}
.brand-guide-block-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
}
.brand-guide-block-head p {
  font-family: var(--font-quote);
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-leading);
  color: var(--muted);
  max-width: 52ch;
}
.brand-guide-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  min-height: clamp(140px, 18vw, 200px);
  padding: clamp(32px, 5vw, 48px);
  border-radius: clamp(20px, 3vw, 28px);
  margin-bottom: 16px;
}
.brand-guide-panel--cream {
  background: var(--cream);
  border: 1px solid var(--border);
}
.brand-guide-panel--dark {
  background: var(--ink);
}
.brand-guide-panel-label {
  font-family: var(--font-quote);
  font-size: var(--type-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-guide-panel--dark .brand-guide-panel-label {
  color: rgba(255, 255, 255, 0.55);
}
.brand-guide-wordmark-lg {
  font-size: clamp(2.5rem, 6vw, 4rem);
}
.brand-guide-wordmark--light .brand-ip,
.brand-guide-wordmark--light .brand-nerds {
  color: var(--white);
}
.brand-guide-specs {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}
.brand-guide-specs li {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  line-height: 1.55;
  color: var(--muted);
}
.brand-guide-specs strong {
  color: var(--ink);
  font-weight: 600;
}
.brand-guide-specs code {
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--ink);
  background: var(--grey-100);
  padding: 2px 8px;
  border-radius: 6px;
}
.brand-guide-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}
.brand-swatch {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: clamp(16px, 2vw, 20px);
  overflow: hidden;
}
.brand-swatch-chip {
  height: clamp(72px, 10vw, 96px);
}
.brand-swatch h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px 4px;
}
.brand-swatch-hex {
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--ink);
  padding: 0 16px;
  margin: 0;
}
.brand-swatch-use {
  font-family: var(--font-quote);
  font-size: var(--type-xs);
  color: var(--muted);
  line-height: 1.45;
  padding: 6px 16px 16px;
  margin: 0;
}
.brand-type-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-bottom: clamp(32px, 5vw, 48px);
}
.brand-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: clamp(16px, 2vw, 20px);
  padding: clamp(24px, 3vw, 32px);
}
.brand-type-role {
  display: inline-block;
  font-family: var(--font-quote);
  font-size: var(--type-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.brand-type-sample {
  margin: 0 0 20px;
  color: var(--ink);
}
.brand-type-sample--montserrat {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-type-sample--antonio {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.brand-type-sample--archivo {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  font-weight: 400;
  line-height: 1.55;
  max-width: 28ch;
}
.brand-type-sample--inter {
  font-family: var(--font);
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.55;
}
.brand-type-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}
.brand-type-meta div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
}
.brand-type-meta dt {
  font-family: var(--font-quote);
  font-size: var(--type-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-type-meta dd {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  color: var(--ink);
  margin: 0;
}
.brand-type-scale {
  background: var(--grey-100);
  border-radius: clamp(16px, 2vw, 20px);
  padding: clamp(24px, 3vw, 32px);
}
.brand-type-scale h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.brand-type-scale ul {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-type-scale li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.brand-type-scale li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.brand-scale-label {
  font-family: var(--font-quote);
  font-size: var(--type-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-scale-demo {
  color: var(--ink);
}
.brand-scale-demo--xl {
  font-family: var(--font-display);
  font-size: var(--type-display-xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand-scale-demo--lg {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.brand-scale-demo--section {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.brand-scale-demo--lead {
  font-family: var(--font-quote);
  font-size: var(--type-lead);
  line-height: 1.55;
}
.brand-scale-demo--body {
  font-family: var(--font-quote);
  font-size: var(--type-body);
  line-height: 1.6;
}
.brand-scale-demo--sm {
  font-family: var(--font-quote);
  font-size: var(--type-sm);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .brand-guide-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-type-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-guide-flow {
    padding-left: 0;
  }
  .brand-guide-flow::before {
    display: none;
  }
  .brand-guide-block-head {
    grid-template-columns: 1fr;
  }
  .brand-guide-swatches {
    grid-template-columns: 1fr;
  }
  .brand-type-scale li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .brand-scale-demo--xl,
  .brand-scale-demo--lg,
  .brand-scale-demo--section {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }
}

@media (max-width: 480px) {
  .brand-wordmark-text { font-size: 1.375rem; }
  .hero-text { --section-copy-width: 100%; }
  .hero h1 { font-size: calc(2.25rem - 2px); }
  .hero-lead { font-size: 1.125rem; }
  .hero-desc { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .card-actions { flex-direction: column; align-items: stretch; }
  .card-actions .btn { justify-content: center; }
  .about-actions { flex-direction: column; }
  .about-actions .btn { justify-content: center; }
}
