/* ═══════════════════════════════════════════════════════════
   SULUHU STUDIO — Global Stylesheet
   Version 1.0 · 2026
   ═══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────
   FONT DECLARATIONS
   @font-face stubs ready — drop .woff2 files into /fonts/
   ────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Romie';
  src: local('Romie'),
       url('fonts/Romie/Romie-Regualar.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Romie';
  src: local('Romie Italic'),
       url('fonts/Romie/Romie-RegualarItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Romie';
  src: local('Romie Medium'),
       url('fonts/Romie/Romie-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Romie';
  src: local('Romie Bold'),
       url('fonts/Romie/Romie-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sohne';
  src: local('Sohne'),
       url('/fonts/Sohne-Buch.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sohne';
  src: local('Sohne Halbfett'),
       url('/fonts/Sohne-Halbfett.woff2') format('woff2');
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sohne';
  src: local('Sohne Dreiviertelfett'),
       url('/fonts/Sohne-Dreiviertelfett.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sohne';
  src: local('Sohne Fett'),
       url('/fonts/Sohne-Fett.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* IBM Plex Mono loaded via Google Fonts in each HTML <head> */

/* ──────────────────────────────────────────────────────────
   DESIGN TOKENS
   ────────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --black:       #000000;
  --near-black:  #0A0A0A;
  --orange:      #F26522;
  --amber:       #F5A623;
  --offwhite:    #F5F4F0;
  --white:       #FFFFFF;
  --muted:       #888888;

  /* Pillar identity — border accents only */
  --studio:      #F26522;
  --ventures:    #4285F4;
  --daro:        #D4006E;
  --impact:      #1DB954;
  --teal:        #00A99D;

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark:  rgba(255, 255, 255, 0.08);

  /* Typography stacks */
  --font-display: 'Romie', Georgia, serif;
  --font-ui:      'Sohne', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* Layout */
  --container-max:     1200px;
  --content-max-width: 1200px;
  --section-pad-v:     80px;
  --section-pad-h:     40px;
  --nav-height:        68px;
}

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

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

body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--near-black);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: var(--font-ui);
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* ──────────────────────────────────────────────────────────
   LAYOUT
   ────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

.section {
  padding: var(--section-pad-v) var(--section-pad-h);
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Universal content wrapper — use on any inner div
   that needs to be centred and width-capped.
   Inherits --content-max-width so overrides are one-liner. */
.wrap {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Surface variants */
.surface-black    { background: var(--black); }
.surface-offwhite { background: var(--offwhite); }
.surface-white    { background: var(--white); }

/* ──────────────────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--black);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Fallback hidden by default — JS shows it only if image errors */
.nav-logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-logo-fallback.visible {
  display: flex;
}

/* Footer logo */
.footer-logo-img {
  object-fit: contain;
  display: block;
}

.footer-logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}

.footer-logo-fallback.visible {
  display: flex;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-wordmark {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-sub {
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 8px 18px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile full-screen overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 20px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s ease;
}

.nav-mobile-overlay a:hover {
  color: var(--white);
}

.nav-mobile-overlay a.active {
  color: var(--orange);
}

.nav-mobile-overlay .nav-cta-mobile {
  margin-top: 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
  width: auto;
  align-self: center;
  display: inline-block;
}

/* Push page content below nav */
.page-body {
  padding-top: var(--nav-height);
}

/* ──────────────────────────────────────────────────────────
   SECTION LABELS / EYEBROWS
   ────────────────────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label.magenta {
  color: var(--daro);
}

.section-label.magenta .dot {
  background: var(--daro);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   VERTICAL ROTATED LABEL
   ────────────────────────────────────────────────────────── */
.vertical-label {
  position: absolute;
  left: 16px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────
   BUTTONS
   Zero border-radius on every button, always.
   ────────────────────────────────────────────────────────── */

/* White on dark */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  color: #F26522;
  border: 1px solid #F26522;
  opacity: 1;
}

/* Black on light */
.btn-primary-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.btn-primary-dark:hover {
  opacity: 0.82;
}

.btn-primary-dark--hover-outline:hover {
  opacity: 1;
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
}

/* Ghost on dark */
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.9);
}

.btn-orange {
  display: inline-block;
  background: transparent;
  color: #F26522;
  border: 1px solid #F26522;
  border-radius: 0;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-orange:hover {
  background: #F26522;
  color: #ffffff;
}

/* Text link — always ends with → */
.btn-text {
  display: inline-block;
  background: none;
  border: none;
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transition: opacity 0.15s ease;
}

.btn-text:hover {
  opacity: 0.75;
}

/* CTA band button — black on orange */
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-dark:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* Newsletter — only permitted orange-fill button */
.btn-subscribe {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  opacity: 0.88;
}

/* Magenta — Daro enrollment */
.btn-magenta {
  display: block;
  width: 100%;
  background: var(--daro);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease;
  text-align: center;
}

.btn-magenta:hover {
  opacity: 0.88;
}

/* Contact form submit — orange fill */
.btn-submit {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s ease;
  text-align: center;
  margin-top: 8px;
}

.btn-submit:hover {
  opacity: 0.88;
}

/* ──────────────────────────────────────────────────────────
   FOCUS STATES
   ────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ──────────────────────────────────────────────────────────
   CTA BAND (all pages except Contact)
   ────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: var(--section-pad-v) var(--section-pad-h);
}

.cta-band-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  max-width: 640px;
}

.cta-band h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.cta-band .btn-dark:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: #050505;
  padding: 72px 40px 32px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-wordmark {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand p {
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p,
.footer-col .footer-text-item {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s ease;
  line-height: 1.5;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
}

.footer-bottom span {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* Social icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease;
  text-decoration: none;
}

.social-link:hover {
  color: #ffffff;
}

/* Contact sidebar social icons use dark colour */
.contact-sidebar .social-links {
  margin-top: 24px;
}

.contact-sidebar .social-link {
  color: rgba(10, 10, 10, 0.45);
}

.contact-sidebar .social-link:hover {
  color: #0a0a0a;
}

/* ──────────────────────────────────────────────────────────
   IMAGE PLACEHOLDERS
   ────────────────────────────────────────────────────────── */
.img-placeholder {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img-placeholder span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.ratio-4-5  { aspect-ratio: 4 / 5; }
.ratio-3-4  { aspect-ratio: 3 / 4; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-1-1  { aspect-ratio: 1 / 1; }

/* ──────────────────────────────────────────────────────────
   STATS BAR
   ────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--black);
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  display: flex;
}

.stat-item {
  flex: 1;
  padding: 28px 32px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
  display: block;
}

/* ──────────────────────────────────────────────────────────
   HERO — home (clean rewrite)
   ────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: calc(100vh - var(--nav-height));
  background: var(--black);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  padding: 80px 48px 0 48px;
  min-height: calc(100vh - var(--nav-height));
  gap: 0;
}

.hero-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-bottom: 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}

.hero-h1 em {
  font-style: italic;
  color: rgba(242, 101, 34, 0.85);
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mode cards — pinned at bottom, never shrinks */
.hero-modes {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  margin: 0 -48px;
}

.hero-mode {
  padding: 24px 28px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mode.mode-02 {
  background: #0a0a0a;
}

.hero-mode .mode-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mode-01 .mode-tag { color: var(--orange); }
.mode-02 .mode-tag { color: var(--teal); }

.mode-dot.or {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.mode-dot.tl {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.mode-statement {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* Right column — image fills full height */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* ──────────────────────────────────────────────────────────
   PAGE HERO (non-home pages)
   ────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 100px var(--section-pad-h) 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 760px;
}

.page-hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

.page-hero .hero-sub {
  max-width: 600px;
}

.mode-price {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 12px;
  display: block;
}

/* Capabilities page mode strip */
.mode-strip-inline {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  flex-wrap: wrap;
}

.mode-strip-inline .mode-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-strip-inline .mode-item-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-strip-inline .mode-item-price {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 4px;
}

/* ──────────────────────────────────────────────────────────
   SECTION HEAD helpers
   ────────────────────────────────────────────────────────── */
.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--near-black);
  margin-bottom: 12px;
}

.section-head.dark h2 {
  color: var(--white);
}

.section-head h2 em {
  font-style: italic;
  color: var(--muted);
}

.section-head.dark h2 em {
  color: rgba(255, 255, 255, 0.35);
}

.section-head p {
  font-family: var(--font-ui);
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 600px;
}

.section-head.dark p {
  color: rgba(255, 255, 255, 0.65);
}

.view-all {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.view-all:hover {
  opacity: 0.7;
}

/* Secondary outline button — "View all capabilities", "View all insights" */
.btn-view-all {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--near-black);
  text-decoration: none;
  border: 0.5px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  padding: 10px 24px;
  transition: border-color 0.15s ease;
  background: transparent;
}

.btn-view-all:hover {
  border-color: rgba(0, 0, 0, 0.6);
}

/* Primary variant — solid orange, transforms to the default outline style on hover */
.btn-view-all--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-view-all--primary:hover {
  background: transparent;
  color: var(--near-black);
  border-color: rgba(0, 0, 0, 0.6);
}

/* ──────────────────────────────────────────────────────────
   DEFINITION BOX + FRAMEWORK PILLS (Category Definition)
   ────────────────────────────────────────────────────────── */
.definition-box {
  background: var(--black);
  padding: 32px;
  margin-bottom: 5px;
}

.def-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}

.definition-box blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 12px;
}

.definition-box cite {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  display: block;
}

.framework-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-left: 2px solid var(--orange);
  margin-bottom: 5px;
}

.framework-pill-name {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  min-width: 120px;
  flex-shrink: 0;
}

.framework-pill-desc {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ── The Discipline — responsive grid ── */
.discipline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Tablet: 641px – 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
  .discipline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .discipline-grid .section-head,
  .discipline-grid h2 {
    font-size: clamp(1.3rem, 2.4vw, 2rem);
  }

  .discipline-grid p {
    font-size: 14px;
  }

  .definition-box {
    padding: 24px;
  }

  .definition-box blockquote {
    font-size: 15px;
  }
}

/* Mobile: max-width 640px */
@media (max-width: 640px) {
  .discipline-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .discipline-grid h2 {
    font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
    margin-bottom: 16px;
  }

  .discipline-grid p {
    font-size: 14px !important;
  }

  .definition-box {
    padding: 20px;
  }

  .definition-box blockquote {
    font-size: 14px;
  }

  .framework-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .framework-pill-name {
    min-width: unset;
  }
}

/* ──────────────────────────────────────────────────────────
   SERVICE / CAPABILITY CARDS GRID (Home)
   ────────────────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.svc-card {
  background: var(--white);
  padding: 28px;
  transition: background 0.18s ease;
}

.svc-card:hover {
  background: var(--offwhite);
}

/* .svc-card.featured — removed; all six cards now styled identically */

.svc-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.svc-card h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--near-black);
}

/* .svc-card.featured h3 — removed */

.svc-card p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.svc-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.svc-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  margin-top: 16px;
  display: block;
}

.svc-link {
  display: block;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.svc-link:hover {
  opacity: 0.7;
}

/* ──────────────────────────────────────────────────────────
   PILLAR CARDS
   ────────────────────────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  padding: 32px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.pillar-card.studio::before   { background: var(--studio); }
.pillar-card.ventures::before { background: var(--ventures); }
.pillar-card.daro::before     { background: var(--daro); }
.pillar-card.impact::before   { background: var(--impact); }

.pillar-card:hover {
  background: var(--offwhite);
}

.pillar-card.studio:hover  { background: var(--studio);   }
.pillar-card.ventures:hover { background: var(--ventures); }
.pillar-card.daro:hover    { background: var(--daro);     }
.pillar-card.impact:hover  { background: var(--impact);   }

.pillar-card.studio:hover h3,
.pillar-card.studio:hover p,
.pillar-card.ventures:hover h3,
.pillar-card.ventures:hover p,
.pillar-card.daro:hover h3,
.pillar-card.daro:hover p,
.pillar-card.impact:hover h3,
.pillar-card.impact:hover p {
  color: var(--white);
}

.pillar-card.studio:hover .pillar-tag,
.pillar-card.ventures:hover .pillar-tag,
.pillar-card.daro:hover .pillar-tag,
.pillar-card.impact:hover .pillar-tag {
  color: rgba(255, 255, 255, 0.7);
}

.pillar-card.studio:hover::before  { background: rgba(255,255,255,0.3); }
.pillar-card.ventures:hover::before { background: rgba(255,255,255,0.3); }
.pillar-card.daro:hover::before    { background: rgba(255,255,255,0.3); }
.pillar-card.impact:hover::before  { background: rgba(255,255,255,0.3); }

.pillar-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  margin-top: 4px;
}

.pillar-tag.studio   { color: var(--studio); }
.pillar-tag.ventures { color: var(--ventures); }
.pillar-tag.daro     { color: var(--daro); }
.pillar-tag.impact   { color: var(--impact); }

.pillar-card h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--near-black);
  transition: color 0.2s ease;
}

.pillar-card p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.pillar-tag {
  transition: color 0.2s ease;
}

/* ──────────────────────────────────────────────────────────
   FIVE DIAGNOSTIC QUESTIONS
   ────────────────────────────────────────────────────────── */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.question-card {
  background: var(--black);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
}

.question-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.question-card h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.question-card p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   CLIENT STRIP
   ────────────────────────────────────────────────────────── */
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.client-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  padding: 4px 12px;
}

/* ──────────────────────────────────────────────────────────
   INSIGHT CARDS
   ────────────────────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Standalone 3-column grid below the featured card */
.insights-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.insight-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease;
}

.insight-card:hover {
  border-color: var(--orange);
}

/* Featured: full-width standalone card, not inside the grid */
.insight-card.featured {
  padding: 48px;
  margin-bottom: 0;
}

.insight-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.insight-card h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--near-black);
  margin-bottom: 10px;
}

.insight-card.featured h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.insight-card p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #666;
  line-height: 1.65;
  flex: 1;
}

.insight-card.featured p {
  font-size: 14px;
  max-width: 680px;
}

.insight-link {
  display: block;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.insight-link:hover {
  opacity: 0.7;
}

/* ──────────────────────────────────────────────────────────
   NEWSLETTER STRIP
   ────────────────────────────────────────────────────────── */
.newsletter-row {
  display: flex;
  gap: 0;
  margin-top: 24px;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  background: var(--white);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  color: var(--near-black);
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.newsletter-input:focus {
  border-color: var(--orange);
}

/* ──────────────────────────────────────────────────────────
   CAPABILITY BLOCKS (alternating layout)
   ────────────────────────────────────────────────────────── */
.cap-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.cap-block.reverse .cap-image-col {
  order: 2;
}

.cap-block.reverse .cap-content-col {
  order: 1;
}

.cap-image-col {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cap-bg-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 400;
  color: rgba(242, 101, 34, 0.1);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.cap-content-col {
  padding: 64px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cap-content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--near-black);
  margin-bottom: 20px;
  margin-top: 12px;
}

.cap-content-col p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #555;
  line-height: 1.78;
  margin-bottom: 24px;
}

.cap-price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--near-black);
  margin-bottom: 24px;
  display: block;
}

.cap-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.cap-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  padding: 3px 10px;
}

/* ──────────────────────────────────────────────────────────
   PROCESS STEPS
   ────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: rgba(242, 101, 34, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 10px;
}

.process-step p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   FRAMEWORK CARDS
   ────────────────────────────────────────────────────────── */
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.framework-card {
  background: var(--black);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  padding: 40px;
}

.fw-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  margin-bottom: 16px;
}

.fw-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.fw-question {
  font-family: var(--font-ui);
  font-style: italic;
  font-size: 13px;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}

.framework-card p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 20px;
}

.fw-output {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  border-left: 1.5px solid rgba(242, 101, 34, 0.35);
  padding-left: 10px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   ENTRY POINT CARDS
   ────────────────────────────────────────────────────────── */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  margin-bottom: 16px;
}

.entry-card {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.entry-card.featured {
  background: var(--black);
}

.entry-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.entry-card h3 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--near-black);
  margin-bottom: 12px;
}

.entry-card.featured h3 {
  color: var(--white);
}

.entry-card p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #666;
  line-height: 1.65;
  flex: 1;
}

.entry-card.featured p {
  color: rgba(255, 255, 255, 0.45);
}

.entry-recommended {
  font-family: var(--font-ui);
  font-size: 10px;
  color: #888;
  line-height: 1.55;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border-light);
}

.entry-card.featured .entry-recommended {
  color: rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.entry-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.entry-cta:hover {
  opacity: 0.7;
}

/* Advisory standalone card */
.advisory-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.advisory-card h3 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 8px;
}

.advisory-card p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #666;
  line-height: 1.65;
}

.advisory-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

/* ──────────────────────────────────────────────────────────
   OPERATING PRINCIPLES — card grid
   ────────────────────────────────────────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
}

.principle-card {
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

/* Content — number, title, description anchored at bottom */
.principle-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.principle-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
}

.principle-card-title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.3;
}

.principle-card-body {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }
}

/* ──────────────────────────────────────────────────────────
   FIVE-LAYER LENS — table rows
   ────────────────────────────────────────────────────────── */
.layer-table {
  border-top: 0.5px solid var(--border-light);
}

.layer-row {
  display: grid;
  grid-template-columns: 40px 160px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border-light);
}

.layer-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
}

.layer-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--near-black);
}

.layer-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   FOUNDER SECTION
   ────────────────────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

.founder-bio-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.founder-bio-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: block;
}

.founder-bio p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.78;
  margin-bottom: 16px;
}

.credentials-list {
  border-left: 2px solid rgba(242, 101, 34, 0.4);
  padding-left: 16px;
  margin-top: 24px;
}

.credentials-list li {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ──────────────────────────────────────────────────────────
   ABOUT — CENTERED HERO WITH STATS STRIP
   ────────────────────────────────────────────────────────── */
.about-hero {
  background-color: #000000 !important;
  background-image: radial-gradient(
    circle,
    rgba(242, 101, 34, 0.18) 1.5px,
    transparent 1.5px
  ) !important;
  background-size: 28px 28px !important;
  height: calc(100vh - var(--nav-height));
  min-height: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

/* Top area — centred vertically, offset down with padding-top */
.about-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 0;
  min-height: 0;
}

/* headline + sub — centred column, no extra margin needed */
.about-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  margin-top: 0;
}

/* Headline — two stacked lines, each on its own row */
.about-hero-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 auto 0;
}

.about-h1-line1 {
  font-size: 64px;
  color: var(--white);
  font-style: normal;
  white-space: nowrap;
}

.about-h1-line2 {
  font-size: 64px;
  color: var(--orange);
  font-style: italic;
  white-space: nowrap;
}

.about-hero-sub {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 560px;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/* Orange stats band — full width, flush to hero bottom */
.about-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--orange);
  width: 100%;
  padding: 40px;
  flex-shrink: 0;
}

.about-stats-cell {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.25);
}

.about-stats-cell.first {
  padding-left: 0;
}

.about-stats-cell.last {
  padding-right: 0;
  border-right: none;
}

.stat-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.about-stats-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.about-stats-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ──────────────────────────────────────────────────────────
   SCROLL CUE
   ────────────────────────────────────────────────────────── */
/* scroll-cue: direct flex child of .about-hero-content
   margin: auto splits remaining free space above and below it equally */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  pointer-events: none;
}

.scroll-cue-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    rgba(242, 101, 34, 0.6),
    rgba(242, 101, 34, 0)
  );
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    min-height: calc(100vh - var(--nav-height));
    overflow: visible;
  }

  .about-hero-content {
    padding: 60px 20px 40px;
  }

  .about-h1-line1,
  .about-h1-line2 {
    font-size: clamp(1.75rem, 9vw, 3.5rem);
    white-space: normal;
    text-align: center;
  }

  .about-stats-band {
    grid-template-columns: 1fr 1fr;
    padding: 28px 20px;
    gap: 0;
  }

  .about-stats-cell {
    padding: 0 20px 28px;
    border-right: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }

  .about-stats-cell.first {
    padding-left: 0;
  }

  .about-stats-cell.last {
    border-bottom: none;
  }

  .scroll-cue {
    display: none;
  }
}

/* ──────────────────────────────────────────────────────────
   ABOUT — WHO WE ARE two-column grid
   ────────────────────────────────────────────────────────── */
.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1024px) {
  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ──────────────────────────────────────────────────────────
   WHO WE ARE — differentiators
   ────────────────────────────────────────────────────────── */
.diff-list {
  border-top: 0.5px solid var(--border-light);
  margin-top: 24px;
}

.diff-item {
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border-light);
}

.diff-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  margin-bottom: 4px;
  display: block;
}

.diff-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 6px;
}

.diff-body {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   MISSION / VISION / CATEGORY CLAIM
   ────────────────────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.mission-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  padding: 32px;
}

.mission-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

.mission-card p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   DARO — Session cards
   ────────────────────────────────────────────────────────── */
.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 24px;
}

.session-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  padding: 32px;
}

.session-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--daro);
  display: block;
  margin-bottom: 10px;
}

.session-card h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.session-card p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
}

/* Daro for/not-for */
.daro-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.daro-fit-col h4 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.daro-fit-col p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* Daro compare columns (what it is / isn't) */
.daro-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.daro-compare-col h4 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.daro-compare-col ul li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
}

.daro-compare-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* Enrollment card */
.enrollment-card {
  background: var(--black);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
}

.enrollment-details {
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

.enrollment-row {
  display: flex;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.enrollment-row:last-child {
  border-bottom: none;
}

.enrollment-key {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  min-width: 90px;
  flex-shrink: 0;
}

.enrollment-val {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.enrollment-participant {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 20px;
}

.enrollment-note {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* Outcomes */
.outcomes-list {
  border-top: 0.5px solid var(--border-light);
  margin-top: 24px;
}

.outcome-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border-light);
}

.outcome-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--daro);
}

.outcome-text {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--near-black);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   FAQ ACCORDION
   ────────────────────────────────────────────────────────── */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 0.5px solid var(--border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.4;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-chevron {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-family: var(--font-ui);
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ──────────────────────────────────────────────────────────
   CONTACT FORM
   ────────────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.calibration-headline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 8px;
}

.calibration-body {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}

.not-fit-list {
  list-style: none;
  margin-bottom: 32px;
}

.not-fit-list li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.not-fit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}

.firm-details {
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
}

.firm-detail-row {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.firm-detail-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.28);
  min-width: 80px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.firm-detail-val {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.firm-detail-val a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.firm-detail-val a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.form-label-sm {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-group {
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.3)' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255, 255, 255, 0.05);
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-confirmation {
  display: none;
  border: 0.5px solid var(--teal);
  padding: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--teal);
  line-height: 1.65;
  margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────
   SCROLL ANIMATIONS
   ────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(20px);
}

.animate.visible {
  animation: fadeUp 0.5s ease forwards;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .svc-grid,
  .insights-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .cap-block {
    grid-template-columns: 1fr;
  }

  .cap-block.reverse .cap-image-col,
  .cap-block.reverse .cap-content-col {
    order: unset;
  }

  .cap-image-col {
    min-height: 240px;
  }

  .cap-content-col {
    padding: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advisory-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Nav — collapse to hamburger before the full link set runs out of room */
@media (max-width: 1180px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad-v: 48px;
    --section-pad-h: 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .svc-grid,
  .pillar-grid,
  .insights-grid,
  .insights-grid-3,
  .mission-grid,
  .entry-grid,
  .frameworks-grid,
  .process-grid,
  .session-grid,
  .daro-compare,
  .daro-fit-grid {
    grid-template-columns: 1fr;
  }

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

  .insight-card.featured {
    padding: 28px;
  }

  .mode-strip {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero {
    min-height: calc(100vh - var(--nav-height));
  }

  /* Hero collapses to single column on mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 60px 20px 0;
    min-height: calc(100vh - var(--nav-height));
    justify-content: space-between;
  }

  .hero-modes {
    margin: 0 -20px;
  }

  .vertical-label {
    display: none;
  }

  .layer-row {
    grid-template-columns: 40px 1fr;
    gap: 8px;
  }

  .layer-name {
    grid-column: 2;
  }

  .layer-desc {
    grid-column: 2;
  }

  .principle-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enrollment-card {
    padding: 28px;
  }

  .cap-content-col {
    padding: 28px 20px;
  }

  .page-hero {
    padding: 80px var(--section-pad-h) 56px;
  }
}

/* ═══════════════════════════════════════
   TEAM SECTION — About page
   ═══════════════════════════════════════ */

.team-section {
  padding: 80px 40px;
  background: #fff;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.team-section .section-label {
  margin-bottom: 16px;
}

.team-headline {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 12px 0 20px;
}

.team-headline em {
  font-style: italic;
  color: rgba(0,0,0,0.38);
}

.team-subhead {
  font-family: 'Sohne', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(0,0,0,0.08);
  border-top: 0.5px solid rgba(0,0,0,0.08);
}

.partner-card {
  background: #fff;
  padding: 0 0 24px 0;
}

.partner-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: #1a1a1a;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.partner-photo-placeholder {
  font-family: 'Sohne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #888;
}

.partner-name {
  font-family: 'Romie', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #0A0A0A;
  margin-bottom: 4px;
  padding: 0 20px;
}

.partner-role {
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F26522;
  margin-bottom: 12px;
  padding: 0 20px;
}

.partner-bio {
  font-family: 'Sohne', sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.65;
  padding: 0 20px;
}

.partner-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 20px 0;
  color: rgba(10, 10, 10, 0.45);
  transition: color 0.15s ease;
  text-decoration: none;
}

.partner-linkedin:hover {
  color: #0a0a0a;
}

.partner-categories {
  max-width: 1040px;
  margin: 48px auto 0;
}

.partner-categories-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-bottom: 20px;
}

.partner-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 0.5px solid var(--border-light);
  padding-top: 24px;
}

@media (max-width: 900px) {
  .partner-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
  }
}

.partner-category-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--near-black);
  margin-bottom: 8px;
}

.partner-category-desc {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 540px) {
  .team-section {
    padding: 56px 20px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .partner-categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════
   PULLQUOTE SECTION — About page
   ═══════════════════════════════════════ */

.pullquote-section {
  background: #F5F4F0;
  padding: 0;
  overflow: hidden;
}

.pullquote-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 480px;
  max-width: 100%;
}

.pullquote-visual {
  background: #000;
  background-image: radial-gradient(
    circle,
    rgba(242,101,34,0.2) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  position: relative;
}

.pullquote-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(242,101,34,0.15) 0%,
    transparent 60%
  );
}

.pullquote-content {
  background: #fff;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.pullquote-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F26522;
}

.pullquote-text {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: #0A0A0A;
  margin: 0;
  max-width: 580px;
}

.pullquote-attribution {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(0,0,0,0.1);
}

.pullquote-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pullquote-name {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
}

.pullquote-role {
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  color: #888;
}

.pullquote-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.pullquote-source {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .pullquote-inner {
    grid-template-columns: 1fr;
  }

  .pullquote-visual {
    min-height: 200px;
  }

  .pullquote-content {
    padding: 48px 40px;
  }
}

@media (max-width: 540px) {
  .pullquote-content {
    padding: 40px 24px;
  }
}

/* ═══════════════════════════════════════
   CAPABILITIES PAGE
   ═══════════════════════════════════════ */

/* ── Hero ── */
.cap-hero {
  min-height: 60vh;
  padding: 120px 0 80px;
  background-color: #000000;
  background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url('images/capabilities header bg.png');
  background-size: cover;
  background-position: 84% 88%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cap-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 55%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.cap-hero-content {
  padding: 0 24px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cap-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F26522;
}

.cap-hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(2rem, 7vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

.cap-h1-white { color: #ffffff; }
.cap-h1-orange { color: #F26522; font-style: italic; white-space: nowrap; }

.cap-hero-sub {
  font-family: 'Sohne', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
}

/* Mode strip */
.cap-mode-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  margin-top: 56px;
}

.cap-mode-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
}

.cap-mode-card:last-child {
  border-right: none;
}

.cap-mode-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cap-mode-label {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cap-mode-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.22);
}

/* ── Capability Blocks ── */
.cap-cards-section {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 80px 40px;
}

.cap-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

@media (max-width: 1024px) {
  .cap-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cap-cards-grid {
    grid-template-columns: 1fr;
  }
}

.cap-card {
  background: #ffffff;
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cap-card-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #F26522;
}

.cap-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.cap-card-title {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.15;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.cap-card-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cap-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-card-image-label {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.cap-card-btn {
  border: 0.5px solid rgba(0,0,0,0.25);
  background: transparent;
  color: #0A0A0A;
  padding: 12px 20px;
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  margin-top: auto;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
}

.cap-card-btn:hover {
  background: #F26522;
  border-color: #F26522;
  color: #ffffff;
}

/* ── Process / How We Work ── */
.cap-process-headline {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--near-black);
  margin-bottom: 48px;
}

.cap-process-headline em {
  font-style: italic;
  color: #999;
}

.cap-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border-top: 0.5px solid rgba(0,0,0,0.07);
}

.cap-process-step {
  background: #F5F4F0;
  padding: 40px 32px;
}

.process-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.cap-process-title {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.cap-process-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ── Frameworks (black surface) ── */
.cap-frameworks {
  background: #000;
  padding: 80px 40px;
}

.cap-frameworks .section-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.cap-frameworks-headline {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 48px;
}

.cap-frameworks-headline em {
  font-style: italic;
  color: rgba(242,101,34,0.55);
}

.cap-frameworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.cap-framework-card {
  background: #000;
  border: 0.5px solid rgba(255,255,255,0.07);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cap-fw-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(242,101,34,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cap-fw-title {
  font-family: 'Romie', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.cap-fw-question {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #F26522;
  line-height: 1.5;
}

.cap-fw-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
  flex: 1;
}

.cap-fw-output {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-left: 1.5px solid rgba(242,101,34,0.35);
  padding-left: 10px;
  line-height: 1.55;
  margin-top: auto;
}

/* ── Entry Points ── */
.cap-entry-headline {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--near-black);
  margin-bottom: 40px;
}

.cap-entry-headline em {
  font-style: italic;
  color: #999;
}

.cap-entry-break {
  display: none;
}

.cap-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border-top: 0.5px solid rgba(0,0,0,0.08);
}

.cap-entry-card {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cap-entry-card--featured {
  background: #0A0A0A;
}

.cap-entry-price {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cap-entry-price--featured {
  color: #F26522;
}

.cap-entry-title {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.35;
  margin: 0;
}

.cap-entry-title--featured {
  color: #fff;
}

.cap-entry-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  flex: 1;
}

.cap-entry-body--featured {
  color: rgba(255,255,255,0.55);
}

.cap-entry-rec {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  color: #888;
  line-height: 1.6;
}

.cap-entry-rec--featured {
  color: rgba(255,255,255,0.4);
}

.cap-entry-rec--featured strong {
  color: rgba(255,255,255,0.6);
}

.cap-entry-cta {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #F26522;
  border: 0.5px solid #F26522;
  text-decoration: none;
  margin-top: auto;
  padding: 12px 20px;
  text-align: center;
  display: block;
  transition: background 0.15s ease, color 0.15s ease;
}

.cap-entry-cta:hover {
  background: transparent;
  color: #F26522;
  border: 1px solid #F26522;
}

.cap-entry-cta--featured {
  color: #F26522;
  border-top-color: rgba(255,255,255,0.07);
}

.cap-entry-cta--featured:hover {
  opacity: 0.75;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cap-block-content {
    padding: 48px 40px;
  }
}

@media (max-width: 900px) {
  .cap-hero-inner {
    padding: 120px 24px 0;
  }

  .cap-mode-strip {
    grid-template-columns: 1fr;
  }

  .cap-mode-card {
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    padding: 24px 24px;
  }

  .cap-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cap-block--even .cap-block-image,
  .cap-block--odd .cap-block-image {
    min-height: 240px;
    order: -1;
  }

  .cap-block-content {
    padding: 40px 24px;
  }

  .cap-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cap-frameworks-grid {
    grid-template-columns: 1fr;
  }

  .cap-entry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cap-entry-break {
    display: block;
  }
}

@media (max-width: 540px) {
  .cap-hero-headline {
    font-size: 2.2rem;
  }

  .cap-process-grid {
    grid-template-columns: 1fr;
  }

  .cap-entry-grid {
    grid-template-columns: 1fr;
  }

  .cap-frameworks {
    padding: 56px 20px;
  }
}


/* ═══════════════════════════════════════════════
   INSIGHTS PAGE
═══════════════════════════════════════════════ */

/* Hero */
.ins-hero {
  min-height: 60vh;
  padding: 120px 0 80px;
  background-color: #000000;
  background-image:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('images/insights header bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ins-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 40%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 0;
}

.ins-hero-content {
  padding: 0 24px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ins-hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Romie', Georgia, serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.ins-h1-white { color: #ffffff; white-space: nowrap; }
.ins-h1-orange { color: #F26522; font-style: italic; white-space: nowrap; }

.ins-hero-sub {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

/* Featured Article */
.ins-featured-section {
  background: #ffffff;
  padding: 80px 40px;
}

.ins-featured-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.ins-featured-card {
  border: 0.5px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
}

.ins-featured-image {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ins-featured-image-label {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.ins-featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.ins-featured-tag {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F26522;
}

.ins-featured-headline {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  color: #0A0A0A;
  margin: 0;
  max-width: 780px;
}

.ins-featured-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
}

.ins-featured-cta {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F26522;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.15s ease;
}

.ins-featured-cta:hover { opacity: 0.7; }

/* Articles Grid */
.ins-grid-section {
  background: #F5F4F0;
  padding: 80px 40px;
}

.ins-grid-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

.ins-card {
  background: #ffffff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 0.5px solid transparent;
  transition: border-color 0.2s ease;
}

.ins-card:hover { border-color: #F26522; }

.ins-card-tag {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F26522;
}

.ins-card-headline {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
  color: #0A0A0A;
  margin: 0;
  flex: 1;
}

.ins-card-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.ins-card-cta {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F26522;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.15s ease;
}

.ins-card-cta:hover { opacity: 0.7; }

/* Newsletter Strip */
.ins-newsletter {
  background: #000000;
  padding: 80px 40px;
}

.ins-newsletter-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ins-newsletter-headline {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin: 16px 0 12px;
}

.ins-newsletter-body {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

.ins-signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ins-signup-input {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  background: #ffffff;
  border: none;
  border-radius: 0;
  outline: none;
  color: #0A0A0A;
  width: 100%;
  box-sizing: border-box;
}

.ins-signup-input::placeholder { color: #999; }

.ins-signup-btn {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #F26522;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 14px 20px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s ease;
}

.ins-signup-btn:hover { opacity: 0.85; }

.ins-signup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ins-signup-success {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.ins-signup-error {
  font-family: 'Sohne', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: #ff8a75;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ins-grid { grid-template-columns: repeat(2, 1fr); }
  .ins-newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .ins-hero-h1 { font-size: 40px; }
  .ins-h1-white, .ins-h1-orange { white-space: normal; }
}

@media (max-width: 1024px) {
  .ins-featured-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .ins-featured-image {
    order: 1;
    min-height: 260px;
  }

  .ins-featured-content {
    order: 2;
    padding: 32px 28px;
  }
}

@media (max-width: 600px) {
  .ins-grid { grid-template-columns: 1fr; }
  .ins-featured-section,
  .ins-grid-section,
  .ins-newsletter { padding: 40px 20px; }

  .ins-featured-image {
    min-height: 200px;
  }

  .ins-featured-content {
    padding: 24px 20px;
    gap: 16px;
  }
}


/* ═══════════════════════════════════════════════
   DARO PAGE  —  accent: #D4006E
═══════════════════════════════════════════════ */

:root { --daro: #D4006E; }

/* Daro shared accent elements */
.daro-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4006E;
  display: inline-block;
  flex-shrink: 0;
}

.daro-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4006E;
}

.daro-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4006E;
  margin-bottom: 20px;
}

.daro-section-label--light {
  color: rgba(212,0,110,0.85);
}

.daro-section-head {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: #0A0A0A;
  margin: 0 0 40px;
}

/* ── Hero ── */
.daro-hero {
  min-height: 60vh;
  padding: 120px 40px 80px;
  background-color: #000000;
  background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url('images/daro header bg.png');
  background-size: cover;
  background-position: 25% 85%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.daro-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 55%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.daro-hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.daro-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4006E;
}

.daro-hero-h1 {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.daro-hero-sub {
  font-family: 'Sohne', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 460px;
  margin: 0;
}

.daro-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.daro-btn-primary {
  background: #D4006E;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.daro-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 0.5px solid rgba(255,255,255,0.25);
  padding: 12px 24px;
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}


/* ── Mandate ── */
.daro-mandate {
  background: #F5F4F0;
  padding: 80px 60px;
}

.daro-mandate-inner { max-width: var(--content-max-width); margin: 0 auto; }

.daro-mandate-paras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.daro-mandate-paras p {
  font-family: 'Sohne', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

.mandate-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #ffffff;
  padding: 40px;
}

.mandate-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.mandate-col-title {
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4006E;
}

.mandate-not-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}

.mandate-is-items,
.mandate-not-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mandate-is-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(212,0,110,0.12);
}

.mandate-is-item:last-child {
  border-bottom: none;
}

.mandate-is-num {
  font-size: 14px;
  color: #22a64a;
  min-width: 20px;
  padding-top: 1px;
  flex-shrink: 0;
}

.mandate-is-title {
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 4px;
  line-height: 1.3;
}

.mandate-is-body {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

.mandate-not-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.mandate-not-item:last-child {
  border-bottom: none;
}

.mandate-not-x {
  font-size: 12px;
  color: #e03030;
  flex-shrink: 0;
  padding-top: 2px;
  font-weight: 700;
  min-width: 20px;
}

.mandate-not-title {
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 4px;
  line-height: 1.3;
}

.mandate-not-body {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

/* ── Program ── */
.daro-program {
  background: #000000;
  padding: 80px 60px;
}

.daro-program-inner { max-width: var(--content-max-width); margin: 0 auto; }

.daro-program-head {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.15;
}

.daro-program-sub {
  font-family: 'Sohne', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 16px;
}

.daro-program-desc {
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 48px;
}

.daro-sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 48px;
}

.daro-session-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.07);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.daro-session-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #D4006E;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.daro-session-title {
  font-family: 'Romie', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.daro-session-body {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

.daro-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.daro-fit-col {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
}

.daro-fit-label {
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4006E;
  margin: 0 0 12px;
}

.daro-fit-body {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* ── Enrollment ── */
.daro-enrollment {
  background-color: #ffffff;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(212,0,110,0.06) 0px,
      rgba(212,0,110,0.06) 1px,
      transparent 1px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(212,0,110,0.06) 0px,
      rgba(212,0,110,0.06) 1px,
      transparent 1px,
      transparent 8px
    );
  padding: 80px 60px;
}

.daro-enrollment-inner {
  max-width: 640px;
  margin: 0 auto;
}

.daro-enroll-heading {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 500;
  color: #0A0A0A;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}

.daro-enroll-card {
  background: #000;
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.daro-enroll-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  gap: 24px;
}

.daro-enroll-label {
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #D4006E;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.daro-enroll-value {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-align: right;
}

.daro-enroll-participant {
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  padding: 20px 0 0;
  margin-bottom: 24px;
}

.daro-enroll-cta {
  background: #D4006E;
  color: #ffffff;
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 16px 20px;
  display: block;
  border: 1px solid #D4006E;
  transition: background 0.15s ease, color 0.15s ease;
}

.daro-enroll-cta:hover {
  background: transparent;
  color: #D4006E;
}

.daro-enroll-note {
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.6;
}

/* ── Outcomes ── */
.daro-outcomes {
  background: #F5F4F0;
  padding: 80px 60px;
}

.daro-outcomes-inner { max-width: 860px; margin: 0 auto; }

.daro-outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.daro-outcome-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.daro-outcome-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #D4006E;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.daro-outcome-text {
  font-family: 'Sohne', sans-serif;
  font-size: 15px;
  color: #0A0A0A;
  line-height: 1.5;
}

/* ── FAQ ── */
.daro-faq {
  background: #ffffff;
  padding: 80px 60px;
}

.daro-faq-inner { max-width: 860px; margin: 0 auto; }

.daro-faq-list { margin-top: 0; }

.faq-item {
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.faq-question {
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Sohne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A0A0A;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
  user-select: none;
  gap: 16px;
}

.faq-item.open .faq-question {
  border-bottom: none;
  color: #D4006E;
}

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-chevron {
  font-size: 18px;
  color: #D4006E;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* ── Daro CTA Band ── */
.daro-cta-band {
  background: #D4006E;
  padding: 80px 60px;
}

.daro-cta-text {
  display: flex;
  flex-direction: column;
}
.daro-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.daro-cta-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: ctaBlink 1.1s ease-in-out infinite;
}

@keyframes ctaBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.daro-cta-h2 {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 32px;
}

.daro-cta-btn {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid #000;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.daro-cta-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* ── Hero scroll cue ── */
/* ── Learning Formats ── */
.daro-formats {
  background: #ffffff;
  padding: 56px 40px 80px;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.daro-formats-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.daro-formats-h2 {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.1;
  margin-bottom: 28px;
  margin-top: 8px;
}

.daro-formats-h2 em {
  font-style: italic;
  color: rgba(0,0,0,0.35);
}

.daro-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

.daro-format-card {
  background: #ffffff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daro-format-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(212,0,110,0.25);
  flex-shrink: 0;
}

.daro-format-title {
  font-family: 'Romie', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.2;
}

.daro-format-desc {
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ── More Programs ── */
.daro-programs {
  background: #F5F4F0;
  padding: 80px 40px;
}

.daro-programs-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.daro-label {
  color: #D4006E;
  margin-bottom: 12px;
}

.daro-label .daro-dot {
  background: #D4006E;
}

.daro-programs-h2 {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.1;
  margin-bottom: 12px;
}

.daro-programs-h2 em {
  font-style: italic;
  color: rgba(0,0,0,0.35);
}

.daro-programs-sub {
  font-family: 'Sohne', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.daro-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

.daro-program-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f0;
  min-height: 200px;
}

.daro-more-label {
  font-family: 'Romie', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: normal;
  color: #0a0a0a;
  text-align: center;
}

.daro-program-card {
  background: #ffffff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.daro-program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.daro-coming-badge {
  font-family: 'Sohne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4006E;
  border: 0.5px solid rgba(212,0,110,0.35);
  padding: 3px 8px;
}

.daro-program-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(0,0,0,0.2);
}

.daro-program-title {
  font-family: 'Romie', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.25;
}

.daro-program-meta {
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  color: #D4006E;
  line-height: 1.5;
}

.daro-program-desc {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  flex: 1;
}

/* Daro responsive */
@media (max-width: 900px) {
  .daro-mandate-paras,
  .mandate-two-col { grid-template-columns: 1fr; }
  .daro-sessions-grid { grid-template-columns: 1fr; }
  .daro-formats-grid { grid-template-columns: 1fr; }
  .daro-fit-grid { grid-template-columns: 1fr; }
  .daro-programs-grid { grid-template-columns: 1fr; }
  .daro-mandate,
  .daro-program,
  .daro-enrollment,
  .daro-programs,
  .daro-outcomes,
  .daro-faq,
  .daro-cta-band { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 768px) {
  .daro-hero {
    padding: 96px 24px 48px;
    min-height: 0;
  }
  .daro-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .daro-cta-band { padding-left: 24px; padding-right: 24px; }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

/* Hero */
.contact-hero {
  background-color: #000000;
  background-image: radial-gradient(circle, rgba(242,101,34,0.25) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 120px 60px 100px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-hero-h1 {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 24px;
  white-space: nowrap;
}

.contact-hero-h1 em {
  font-style: italic;
  color: #F26522;
}

.contact-hero-sub {
  font-family: 'Sohne', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* Body — form + sidebar */
.contact-body {
  background: #f5f4f0;
  padding: 80px 60px;
}

.contact-body-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.contact-sidebar-block {
  border-top: 0.5px solid rgba(0,0,0,0.12);
  padding-top: 20px;
}

.contact-sidebar-label {
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F26522;
  margin-bottom: 8px;
}

.contact-sidebar-value {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.65;
  text-decoration: none;
  display: block;
}

a.contact-sidebar-value:hover {
  color: #F26522;
}

.contact-daro-btn {
  display: inline-block;
  border: 1px solid #F26522;
  color: #F26522;
  background: transparent;
  padding: 10px 20px;
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.contact-daro-btn:hover {
  background: #F26522;
  color: #ffffff;
}

/* Form */
.contact-form-wrap {
  background: #ffffff;
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: 'Sohne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
}

.contact-input {
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  color: #0A0A0A;
  background: #fafafa;
  border: 0.5px solid rgba(0,0,0,0.15);
  border-radius: 0;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.contact-input:focus {
  border-color: #F26522;
  background: #ffffff;
}

.contact-input::placeholder {
  color: #aaa;
}

.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F26522' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.contact-submit {
  background: #F26522;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 14px 36px;
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-submit:hover {
  background: transparent;
  color: #F26522;
  border-color: #F26522;
}

.contact-form-note {
  font-family: 'Sohne', sans-serif;
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  margin: 0;
}

.contact-error {
  font-family: 'Sohne', sans-serif;
  font-size: 13px;
  color: #c0392b;
  margin: 0;
}

.contact-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.contact-success-msg {
  font-family: 'Romie', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #0A0A0A;
  text-align: center;
  margin: 0;
}

/* Reassurance strip */
.contact-strip {
  background: #0A0A0A;
  padding: 60px;
}

.contact-strip-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.contact-strip-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-strip-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #F26522;
  letter-spacing: 0.1em;
}

.contact-strip-text {
  font-family: 'Sohne', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero { padding: 80px 24px 60px; }
  .contact-body { padding: 48px 24px; }
  .contact-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { position: static; order: 2; }
  .contact-form-wrap { padding: 32px 24px; order: -1; }
  .contact-form-row--two { grid-template-columns: 1fr; }
  .contact-strip { padding: 48px 24px; }
  .contact-strip-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ──────────────────────────────────────────────────────────
   RESOURCES PAGE
   ────────────────────────────────────────────────────────── */

/* Hero */
.res-hero {
  background: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  padding: 120px 24px 80px;
  text-align: center;
}

.res-hero-inner {
  max-width: var(--content-max-width);
  margin: auto;
}

.res-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 700px;
}

.res-hero-h1 em {
  font-style: italic;
  color: var(--orange);
}

.res-hero-sub {
  font-family: var(--font-ui), sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Tool sections */
.res-tool-section {
  padding: 100px 24px;
}

.res-tool-section--offwhite {
  background: #f7f6f3;
}

.res-tool-section--white {
  background: #ffffff;
  border-top: 1px solid #ebebeb;
}

.res-tool-inner {
  max-width: var(--content-max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Content column */
.res-tool-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.coming-soon-badge {
  display: inline-block;
  align-self: flex-start;
  background: #f0efe9;
  border: 1px solid #ddd;
  color: #666;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.res-tool-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1.2;
  margin: 0 0 24px;
}

.res-tool-body {
  font-family: var(--font-ui), sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 16px;
}

.res-tool-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.res-tool-bullets li {
  font-family: var(--font-ui), sans-serif;
  font-size: 14px;
  color: #333;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.res-tool-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 13px;
}

/* Visuals column */
.res-tool-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.res-tool-visuals--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.screenshot-frame--placeholder {
  background: #e8e6e1;
  opacity: 0.45;
}

.screenshot-frame {
  width: 100%;
  height: auto;
  background: #e8e6e1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d4d2cc;
}

.screenshot-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

/* DI Maturity Index placeholder card */
.res-placeholder-card {
  width: 100%;
  min-height: 300px;
  background: #f0efe9;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
}

/* Responsive — tablet and below */
@media (max-width: 768px) {
  .res-hero { padding: 80px 20px 60px; }
  .res-tool-section { padding: 64px 20px; }
  .res-tool-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Content column is first in DOM → stays on top. No order override needed. */
  .res-tool-visuals { order: 2; }
  .screenshot-frame { height: auto; }
  .res-tool-visuals--grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .res-placeholder-card {
    width: 100%;
    min-height: 200px;
  }
}

/* Responsive — mobile (375px range) */
@media (max-width: 640px) {
  .res-hero { padding: 72px 1.25rem 48px; }
  .res-tool-section { padding: 56px 1.25rem; }
  .res-hero-h1 { max-width: 100%; }
  .res-tool-h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .res-placeholder-card { padding: 32px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   POST DETAIL PAGE — /insights/[slug]
   ═══════════════════════════════════════════════════════════ */
.post-hero {
  min-height: 50vh;
  padding: 140px 40px 60px;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.post-hero-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  max-width: 900px;
}

.post-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.post-body-section {
  background: #ffffff;
  padding: 80px 40px;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
}

.post-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--near-black);
  margin: 48px 0 20px;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--near-black);
  margin: 48px 0 16px;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--near-black);
  margin: 36px 0 12px;
}

.post-body p {
  margin: 0 0 24px;
}

.post-body a {
  color: var(--orange);
  text-decoration: underline;
}

.post-body a:hover {
  opacity: 0.75;
}

.post-body blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1em;
  color: var(--near-black);
}

.post-body ul,
.post-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.post-body li {
  margin-bottom: 8px;
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
}

.post-body code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--offwhite);
  padding: 2px 6px;
}

.post-body pre {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--near-black);
  color: #ffffff;
  padding: 20px;
  overflow-x: auto;
  margin: 0 0 24px;
}

.post-body pre code {
  background: none;
  padding: 0;
}

.post-back-link {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 8px;
}

@media (max-width: 640px) {
  .post-hero { padding: 120px 20px 40px; }
  .post-body-section { padding: 48px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   ADMIN — internal Insights CMS, single-author tool.
   Uses the site's brand tokens but is not designed to match the
   marketing pages pixel-for-pixel.
   ═══════════════════════════════════════════════════════════ */
.admin-shell {
  min-height: 100vh;
  background: var(--offwhite);
  font-family: var(--font-ui);
  color: var(--near-black);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--near-black);
  color: #ffffff;
}

.admin-topbar-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.admin-topbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-topbar-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
}

.admin-topbar-nav a:hover {
  color: #ffffff;
}

.admin-topbar-logout {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 6px 14px;
  cursor: pointer;
}

.admin-topbar-logout:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.admin-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.admin-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-main-head h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.admin-empty {
  color: #777;
  padding: 40px 0;
  text-align: center;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.admin-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 700;
}

.admin-table-actions {
  display: flex;
  gap: 16px;
}

.admin-table-actions a {
  color: var(--orange);
  text-decoration: none;
}

.admin-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 2px;
}

.admin-badge-draft {
  background: #eee;
  color: #666;
}

.admin-badge-published {
  background: rgba(242, 101, 34, 0.12);
  color: var(--orange);
}

.admin-link-danger {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 14px;
}

.admin-link-danger:hover {
  text-decoration: underline;
}

.admin-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: var(--near-black);
  cursor: pointer;
  text-decoration: none;
}

.admin-btn:hover {
  border-color: rgba(0, 0, 0, 0.4);
}

.admin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.admin-btn-primary:hover {
  opacity: 0.9;
  border-color: var(--orange);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-field-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
}

.admin-field-hint {
  font-size: 12px;
  color: #999;
}

.admin-input,
.admin-textarea {
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  color: var(--near-black);
  width: 100%;
  box-sizing: border-box;
}

.admin-input:focus,
.admin-textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.admin-textarea-small {
  resize: vertical;
}

.admin-hero-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.admin-hero-preview img {
  max-width: 200px;
  max-height: 120px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.admin-error {
  color: #c0392b;
  font-size: 14px;
  margin: 0;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.admin-md-editor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-md-pane {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-md-textarea {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-height: 400px;
  resize: vertical;
}

.admin-md-textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.admin-md-preview {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px;
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;
  font-size: 14px;
}

.admin-md-preview.post-body {
  max-width: none;
  margin: 0;
}

@media (max-width: 768px) {
  .admin-md-editor { grid-template-columns: 1fr; }
}

.admin-login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--near-black);
}

.admin-login-card {
  width: 100%;
  max-width: 340px;
  background: #ffffff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.admin-login-sub {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: -12px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
