:root {
  --cream: #f7f5f0;
  --cream-dark: #ede9e1;
  --cream-mid: #e8e3d9;
  --gold-pale: #f0e8da;
  --navy: #0b1c38;
  --navy-mid: #162d55;
  --navy-light: #1e3d72;
  --gold: #b8966a;
  --gold-light: #d4b896;
  --text-dark: #0b1c38;
  --text-body: #3d4b5c;
  --text-muted: #7a8a9a;
  --white: #ffffff;
  --red: #c41e3a;
  --green: #1a6b3c;
  --gold-sun: #d4a843;
  --text-light: rgba(247, 245, 240, 0.7);
  --border: rgba(11, 28, 56, 0.1);
  --border-gold: rgba(184, 150, 106, 0.3);
  --border-wt: rgba(247, 245, 240, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --nav-h: 72px;
  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-cream {
  background: var(--cream);
  color: var(--text-body);
}

.section-cream-dark {
  background: var(--cream-dark);
  color: var(--text-body);
}

.section-navy {
  background: var(--navy);
  color: var(--text-light);
}

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: 0 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--text-dark);
  text-wrap: balance;
}

h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
}

h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
}

.hero h1 em {
  font-size: 0.66em;
  color: var(--cream-mid);
  line-height: 0.8 !important;
}

.section-navy h2,
.section-navy h3,
.section-navy .approach-heading,
.section-navy .contact-title,
.section-navy .footer-brand {
  color: var(--cream);
}

p {
  margin: 0;
  font-size: 16px;
}

.section-navy p {
  color: var(--text-light);
}

.intro {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* .brand .lh-band {
  height: 3px;
  display: flex;
}

.brand .lh-band .b-red {
  background: var(--red);
  width: 33.33%;
}

.brand .lh-band .b-blue {
  background: var(--blue);
  width: 33.33%;
} */

.brand .lh-band .b-green {
  background: var(--green);
  width: 33.33%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links .menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .menu li {
  margin: 0;
}

.nav-links a,
.nav-links .menu a,
.lang-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-body);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .menu a:hover,
.nav-links .menu a:focus-visible,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--gold);
}

.site-header .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-full);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold-pale);
  color: var(--gold);
}

.mobile-controls,
.mobile-panel {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger,
.burger::before,
.burger::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.burger::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.burger::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.menu-toggle[aria-expanded="true"] .burger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .burger::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .burger::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 64px 0 110px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: rgba(247, 245, 240, 0.1);
  z-index: 1;
}

.hero::after {
  background:
    linear-gradient(rgba(11, 28, 56, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 28, 56, 0.02) 1px, transparent 1px);
  background-size:
    48px 48px,
    48px 48px;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.8) contrast(1.02);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  margin-top: 24px;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tagline {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--cream-mid);
  max-width: none;
  width: 100%;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--r-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream-mid);
  border: 1px solid var(--cream-mid);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(11, 28, 56, 0.04);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.hero-geo {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.hero-geo .dot {
  color: var(--gold-pale);
}

.founder-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
}

.founder-card-top {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url(../images/kamal-mokdad.jpeg) center/cover no-repeat;
  color: var(--cream);
  position: relative;
}

.founder-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: linear-gradient(
    180deg,
    var(--navy) 0%,
    var(--navy-mid) 58%,
    var(--navy-light) 100%
  );
}

.founder-monogram {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 240, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.founder-caption {
  display: grid;
  gap: 8px;
  position: absolute;
  bottom: 20px;
}

.founder-caption strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--cream);
}

.founder-caption span,
.founder-caption small {
  color: rgba(247, 245, 240, 0.74);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-gold);
  background: var(--cream);
}

.stat {
  padding: 20px 18px;
  display: grid;
  gap: 8px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}

.stat span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-section {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 28, 56, 0) 100%);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy) 0%, rgba(11, 28, 56, 0) 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 24px 0;
  animation: scrollLeft 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  color: rgba(247, 245, 240, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-item::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.problems-grid,
.services-list,
.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--border);
}

.positioning-top {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 56px;
  align-items: end;
}

.positioning-title {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
}

.positioning-intro-wrap {
  display: grid;
  gap: 18px;
  padding-bottom: 8px;
}

.positioning-intro-line {
  width: 62px;
  height: 1px;
  background: var(--border-gold);
}

.positioning-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
}

.positioning-canvas {
  margin-top: 64px;
  padding: 52px;
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 52px;
}

.positioning-visual {
  margin: 0;
  position: relative;
}

.positioning-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  /* filter: grayscale(1) contrast(1.04); */
}

.positioning-visual figcaption {
  position: absolute;
  right: -40px;
  bottom: -40px;
  background: var(--gold);
  color: var(--cream);
  width: min(220px, 55%);
  min-height: 160px;
  padding: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.1;
}

.positioning-index {
  display: grid;
  align-content: center;
}

.positioning-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.positioning-item:last-of-type {
  border-bottom: 1px solid var(--border);
}

.positioning-item:hover {
  background: var(--cream);
  padding-inline: 18px;
}

.positioning-num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.15;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.positioning-item:hover .positioning-num {
  opacity: 1;
  color: var(--gold);
}

.positioning-body {
  display: grid;
  gap: 10px;
}

.positioning-body h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--navy);
}

.positioning-body p {
  max-width: 58ch;
  color: var(--text-body);
}

.positioning-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.positioning-link:hover,
.positioning-link:focus-visible {
  color: var(--navy);
}

.problem-item,
.service-row {
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition:
    background 0.3s ease,
    padding 0.3s ease;
  border-radius: var(--r-sm);
}

.problem-item {
  grid-template-columns: 100px 1fr auto;
}

.service-row {
  grid-template-columns: 100px minmax(0, 1.2fr) minmax(0, 1fr);
}

.problem-item:hover,
.service-row:hover {
  background: var(--cream-dark);
  padding-inline: 24px;
}

.service-row:hover {
  background: var(--cream);
}

.problem-num,
.service-num {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.1;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.problem-item:hover .problem-num,
.service-row:hover .service-num {
  opacity: 1;
  color: var(--gold);
}

.problem-content,
.service-main {
  display: grid;
  gap: 8px;
}

.service-main h3 {
  font-size: clamp(22px, 1.7vw, 24px);
  line-height: 1.25;
}

.problem-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  color: var(--gold);
  font-size: 22px;
}

.problem-item:hover .problem-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.service-subtitle {
  font-size: 15px;
  color: var(--text-body);
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-points li {
  position: relative;
  padding-left: 18px;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.services-top,
.faq-inner,
.contact-inner,
.footer-top {
  display: grid;
  gap: 36px;
}
.contact-form p {
  margin: 0;
}
.contact-form br {
  display: none;
}
.contact-form .field > p {
  display: grid;
  gap: 8px;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.services-top {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
}

/* ── Section 02 – Situations d'intervention (grid layout) ── */
.services-heading {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--navy);
  margin-top: 10px;
}

.services-heading em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.services-intro {
  font-style: italic;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  padding-bottom: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.situation-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s var(--ease);
}

.situation-card:hover {
  background: var(--cream-mid);
}

.situation-num {
  font-family: var(--serif);
  font-size: 68px;
  line-height: 1;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.08;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.situation-card:hover .situation-num {
  opacity: 0.22;
  color: var(--gold);
}

.situation-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* ── Section 03 – Nos domaines d'intervention ── */
.domains-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 36px;
  align-items: end;
}

.domains-intro {
  font-style: italic;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.domain-card {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(237, 233, 225, 1);
  display: grid;
  gap: 24px;
  transition: background 0.3s var(--ease);
}

.domain-card:hover {
  background: var(--cream-mid);
}

.domain-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: 1;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.domain-card:hover .domain-num {
  opacity: 0.28;
  color: var(--gold);
}

.domain-body {
  display: grid;
  gap: 12px;
}

.domain-title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.domain-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.domain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.domain-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

.domain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 2px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 150, 106, 0.14) 0%,
    rgba(184, 150, 106, 0) 70%
  );
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.founder-section {
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(237, 233, 225, 0.88), rgba(237, 233, 225, 0.88)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 71px,
      rgba(11, 28, 56, 0.05) 71px,
      rgba(11, 28, 56, 0.05) 72px
    );
}

.founder-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 50px;
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 340px);
  gap: 56px;
  align-items: start;
}

.founder-copy {
  display: grid;
  gap: 20px;
}

.founder-title {
  font-size: clamp(42px, 5.2vw, 68px);
}

.founder-intro {
  max-width: 30ch;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.32;
  color: var(--navy);
}

.founder-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.founder-signature span:last-child {
  color: var(--gold);
}

.founder-portrait {
  display: flex;
  justify-content: flex-end;
}

.founder-portrait-frame {
  width: min(100%, 320px);
  padding: 14px;
  border: 1px solid var(--border-gold);
  border-radius: 0;
  background: var(--cream);
}

.founder-portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}

.founder-quote {
  margin: 0;
  position: relative;
  padding: 8px 0 0 48px;
  max-width: 1320px;
}

.founder-quote p {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.65;
  font-style: italic;
  color: var(--navy);
  text-wrap: balance;
}

.founder-quote-mark {
  position: absolute;
  top: -6px;
  left: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 68px);
  line-height: 1;
  color: var(--gold);
}

.founder-journey {
  border-top: 1px solid var(--border);
}

.founder-stage {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition:
    background 0.3s ease,
    padding 0.3s ease;
  border-radius: var(--r-sm);
}

.founder-stage:hover {
  background: var(--cream);
  padding-inline: 24px;
}

.founder-stage-meta,
.founder-stage-body {
  display: grid;
  gap: 10px;
}

.founder-stage-kicker {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--gold);
}

.founder-stage-scope {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.founder-stage-body h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
}

.founder-stage-body p {
  max-width: 72ch;
}

.approach-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: none;
}

.approach-copy-col {
  max-width: 780px;
}

#domains {
  position: relative;
  overflow: hidden;
}

#domains::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(247, 245, 240, 0.52), rgba(247, 245, 240, 0.52)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 47px,
      rgba(184, 150, 106, 0.45) 47px,
      rgba(184, 150, 106, 0.45) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(11, 28, 56, 0.14) 47px,
      rgba(11, 28, 56, 0.14) 48px
    );
  background-size: auto, 48px 48px, 48px 48px;
  animation: approachGridShift 8s linear infinite;
}

#approach {
  position: relative;
  overflow: hidden;
}

#approach::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(247, 245, 240, 0.52), rgba(247, 245, 240, 0.52)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 47px,
      rgba(184, 150, 106, 0.45) 47px,
      rgba(184, 150, 106, 0.45) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(11, 28, 56, 0.14) 47px,
      rgba(11, 28, 56, 0.14) 48px
    );
  background-size: auto, 48px 48px, 48px 48px;
  animation: approachGridShift 8s linear infinite;
}

.approach-heading {
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--navy);
}

.approach-heading span {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.approach-copy {
  margin-top: 28px;
  max-width: 68ch;
}

.approach-kicker {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.approach-stack {
  margin-top: 26px;
  max-width: 76ch;
}

.approach-stack .approach-copy {
  margin-top: 0;
}

.approach-stack p + p {
  margin-top: 18px;
}

.approach-cta {
  margin-top: 30px;
  color: var(--gold);
  border-color: var(--gold);
}

.approach-cta:hover {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
}

.approach-visual {
  position: relative;
  margin: 4px 0 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--cream-dark);
}

.approach-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 28, 56, 0.02) 0%, rgba(11, 28, 56, 0.36) 100%);
}

.approach-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
}

.approach-visual figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.88);
}

.approach-steps {
  margin-top: 34px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
  max-width: 760px;
}

.approach-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.approach-step strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}

.quotes-shell {
  display: grid;
  gap: 42px;
}

.quotes-marquees {
  overflow: hidden;
  display: grid;
  gap: 18px;
  margin-inline: calc(50% - 50vw);
}

.quotes-row {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollLeft 36s linear infinite;
}

.quotes-row:hover {
  animation-play-state: paused;
}

.quote-card {
  width: min(360px, calc(100vw - 72px));
  border: 1px solid rgba(11, 28, 56, 0.14);
  border-radius: var(--r-lg);
  background: var(--cream-mid);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.8;
  color: var(--gold);
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
  color: var(--navy-mid);
}

.quote-card cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-body);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--cream);
  padding: 26px;
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.insight-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.insight-link {
  margin-top: auto;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.insight-link:hover,
.insight-link:focus-visible {
  color: var(--gold);
}

.perspectives-shell {
  display: grid;
  gap: 40px;
}

.perspectives-title {
  color: var(--text-dark);
}

.perspectives-title span span {
  font-style: italic;
  color: var(--gold);
}

.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.perspective-item {
  display: flex;
  min-height: 100%;
}

.perspective-link {
  width: 100%;
  text-decoration: none;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  color: var(--text-dark);
}

.perspective-media {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  background: var(--cream-dark);
}

.perspective-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.perspective-media-fallback {
  background:
    linear-gradient(135deg, rgba(11, 28, 56, 0.2), rgba(30, 61, 114, 0.45)),
    repeating-linear-gradient(
      -45deg,
      rgba(212, 184, 150, 0.18),
      rgba(212, 184, 150, 0.18) 12px,
      rgba(247, 245, 240, 0.08) 12px,
      rgba(247, 245, 240, 0.08) 24px
    );
}

.perspective-body {
  display: grid;
  gap: 10px;
  min-height: 100%;
}

.perspective-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.perspective-item h3 {
  margin: 0;
  font-size: clamp(22px, 1.55vw, 34px);
  line-height: 1.22;
  font-weight: 400;
  color: var(--text-dark);
}

.perspective-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.perspective-read {
  margin-top: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s ease;
}

.perspective-link:hover .perspective-read,
.perspective-link:focus-visible .perspective-read {
  color: var(--gold);
}

.perspective-link:hover .perspective-media img,
.perspective-link:focus-visible .perspective-media img {
  transform: scale(1.03);
}

.perspective-empty {
  grid-column: 1 / -1;
}

.sectors-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#sectors {
  background: var(--navy);
  color: var(--text-light);
}

#sectors .section-label {
  color: var(--gold-light);
}

#sectors .section-label::before {
  background: var(--gold-light);
}

#sectors h2,
#sectors h3 {
  color: var(--cream);
}

#sectors p {
  color: var(--text-light);
}

.sector-card {
  border: 1px solid var(--border-wt);
  border-radius: var(--r-sm);
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.sector-card:hover,
.sector-card:focus-within {
  background: rgba(184, 150, 106, 0.12);
  border-color: rgba(184, 150, 106, 0.24);
  transform: translateY(-2px) scale(1.02);
}

#sectors .sector-card {
  background: rgba(247, 245, 240, 0.04);
  border-color: var(--border-wt);
}

#sectors .sector-card:hover,
#sectors .sector-card:focus-within {
  background: rgba(184, 150, 106, 0.12);
  border-color: rgba(212, 184, 150, 0.46);
}

.sector-card .num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
}

.sector-card p {
  margin-top: 14px;
}

.faq-inner {
  grid-template-columns: 5fr 7fr;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--navy);
}

.faq-q span:first-child {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.3s ease,
    color 0.2s ease;
}

.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a p {
  padding: 0 0 24px;
  max-width: 62ch;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.contact-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 22px;
}

.contact-meta {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  max-width: 900px;
}

.contact-meta .section-label {
  justify-content: center;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
  justify-items: center;
  justify-self: center;
  max-width: 600px;
  width: 100%;
}

.contact-card-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 184, 150, 0.92);
}

.contact-email-btn {
  min-height: 42px;
  padding: 0 18px;
  width: 220px;
  max-width: 100%;
  justify-self: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy)!important;
}

.contact-email-btn:hover,
.contact-email-btn:focus-visible {
  color: var(--navy);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.contact-email-caption {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(247, 245, 240, 0.62);
}

.contact-card-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 245, 240, 0.68);
}

.contact-email-only {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email-only a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-email-only a:hover,
.contact-email-only a:focus-visible {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.68);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border-wt);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  padding: 14px 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field-error {
  margin: 0;
  min-height: 1.2em;
  font-size: 12px;
  color: #ffcfbf;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #ffcfbf;
  background: rgba(255, 120, 90, 0.08);
}

.contact-form .btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.contact-status {
  margin: 4px 0 0;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1.45;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.contact-status:empty {
  display: none;
}

.contact-status--pending {
  color: var(--gold-light);
  border-color: rgba(184, 150, 106, 0.4);
  background: rgba(184, 150, 106, 0.09);
}

.contact-status--success {
  color: #cdeecf;
  border-color: rgba(130, 218, 146, 0.42);
  background: rgba(130, 218, 146, 0.12);
}

.contact-status--warning {
  color: #f4ddae;
  border-color: rgba(232, 186, 96, 0.45);
  background: rgba(232, 186, 96, 0.14);
}

.contact-status--error {
  color: #ffd1c7;
  border-color: rgba(255, 120, 90, 0.45);
  background: rgba(255, 120, 90, 0.14);
}

.footer {
  background: #070f1e;
  color: rgba(247, 245, 240, 0.72);
  padding: 64px 0 28px;
}

.footer-top {
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.12);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links .menu li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: rgba(247, 245, 240, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}
.d6 {
  transition-delay: 0.48s;
}

.fr-only {
  display: inline !important;
}

.en-only {
  display: none !important;
}

.fr-only-block {
  display: block !important;
}

.en-only-block {
  display: none !important;
}

html[lang^="en"] .fr-only {
  display: none !important;
}

html[lang^="en"] .en-only {
  display: inline !important;
}

html[lang^="en"] .fr-only-block {
  display: none !important;
}

html[lang^="en"] .en-only-block {
  display: block !important;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes approachGridShift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 48px 48px, 48px 48px;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .founder-hero,
  .faq-inner,
  .contact-inner,
  .services-top,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .services-heading {
    font-size: clamp(42px, 8vw, 72px);
  }

  .contact-details {
    justify-self: center;
    justify-items: center;
    max-width: 620px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .domains-top {
    grid-template-columns: 1fr;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .approach-copy-col {
    max-width: none;
  }

  .approach-visual {
    max-width: 620px;
  }

  .domains-grid {
    margin-top: 40px;
  }

  .domain-card {
    padding: 40px 32px;
  }

  .hero-right {
    max-width: 720px;
  }

  .founder-intro,
  .founder-quote,
  .founder-stage-body p {
    max-width: none;
  }

  .founder-portrait {
    justify-content: flex-start;
  }

  .founder-portrait-frame {
    width: min(100%, 380px);
  }

  .founder-quote {
    max-width: none;
  }

  .founder-quote p {
    text-wrap: pretty;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .perspectives-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .perspective-item h3 {
    font-size: clamp(22px, 2.4vw, 30px);
  }

  .nav-links {
    display: none;
  }

  .mobile-controls {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(247, 245, 240, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px 20px;
  }

  .mobile-panel.open {
    display: grid;
    gap: 12px;
  }

  .mobile-panel a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
  }

  .mobile-panel .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
  }

  .mobile-panel .menu li {
    margin: 0;
  }

  .mobile-panel .menu a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
  }

  .positioning-top,
  .positioning-canvas {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .positioning-canvas {
    padding: 36px;
  }

  .positioning-intro-wrap {
    max-width: 64ch;
  }

  .positioning-visual {
    max-width: 560px;
    border-radius: var(--r-md);
  }

  .positioning-visual figcaption {
    right: 0;
    bottom: 0;
    width: min(220px, 58%);
    min-height: 0;
    padding: 18px;
    font-size: clamp(22px, 2.8vw, 30px);
    border-radius: var(--r-md);
  }
}

@media (max-width: 768px) {
  .wrap {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 64px 0;
  }

  .section.marquee-section {
    padding: 12px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .problem-item {
    grid-template-columns: 60px 1fr;
  }

  .problem-arrow {
    display: none;
  }

  .service-row,
  .cf-row,
  .sectors-grid,
  .insights-grid,
  .footer-top,
  .founder-stage {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .situation-card {
    padding: 32px 24px;
  }

  .situation-num {
    font-size: 52px;
  }

  .domains-grid {
    grid-template-columns: 1fr;
  }

  .domain-card {
    padding: 36px 24px;
  }

  .domain-num {
    font-size: 52px;
  }

  .contact-details {
    margin-top: 4px;
    padding-top: 14px;
    gap: 10px;
  }

  .contact-email-btn {
    min-height: 40px;
    padding: 0 14px;
    width: min(100%, 210px);
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .contact-email-caption {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .contact-card-note {
    font-size: 14px;
    line-height: 1.65;
  }

  .approach-heading {
    font-size: clamp(40px, 13vw, 64px);
  }

  .approach-stack p + p {
    margin-top: 14px;
  }

  .approach-visual {
    border-radius: 0;
  }

  .approach-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    letter-spacing: 0.14em;
  }

  .perspectives-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .perspective-item {
    min-height: 100%;
  }

  .perspective-item h3 {
    font-size: clamp(26px, 7.2vw, 32px);
  }

  .perspective-excerpt {
    font-size: 14px;
    line-clamp: 5;
    -webkit-line-clamp: 5;
  }

  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-shell {
    gap: 28px;
  }

  .founder-hero {
    gap: 24px;
  }

  .founder-quote {
    padding-left: 24px;
  }

  .founder-quote p {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.7;
  }

  .founder-quote-mark {
    top: -2px;
    font-size: 34px;
  }

  .founder-stage {
    gap: 16px;
    padding: 24px 0;
  }

  .founder-stage:hover {
    padding-inline: 16px;
  }

  .founder-stage-kicker {
    font-size: 16px;
  }

  .founder-card-top,
  .quote-card,
  .insight-card,
  .sector-card {
    padding: 24px;
  }

  .faq-q span:first-child {
    font-size: 24px;
  }

  .founder-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .stat:last-child {
    border-right: 0;
  }

  .positioning-title {
    font-size: clamp(46px, 14vw, 72px);
  }

  .positioning-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .positioning-canvas {
    margin-top: 40px;
    padding: 24px;
    gap: 24px;
  }

  .positioning-item {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .positioning-num {
    font-size: 38px;
  }

  .positioning-body h3 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .positioning-link {
    margin-top: 18px;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  #approach::before,
  #domains::before {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .marquee-track,
  .quotes-row {
    animation: none !important;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
