/* ═══════════════════════════════════════════════════════════════
   IDELIGO — Premium Boutique Consultancy Identity System
   Architectural · Editorial · Restrained
═══════════════════════════════════════════════════════════════ */

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

:root {
  /* ─── Approved semantic colour system ─── */
  --brand-primary: #211C3D;
  --brand-secondary: #534C83;
  --brand-supporting: #635B93;
  --brand-divider: #A197D4;

  --accent-gold-muted: #C6A15B;
  --text-editorial-gold: #806737;
  --accent-gold-energy-start: #FFE27A;
  --accent-gold-energy-end: #D68400;
  --accent-gold-energy: linear-gradient(135deg, #FFE27A 0%, #D68400 100%);

  --surface-page: #FFFFFF;
  --surface-alternate: #FAF8F3;
  --surface-passive: #DED9E5;
  --surface-navigation: var(--surface-passive);
  --surface-card: #FFFFFF;
  --surface-dark: #211C3D;

  --text-primary: #211C3D;
  --text-secondary: #534C83;
  --text-body: #333238;
  --text-muted: #66636D;
  --text-on-dark: #FFFFFF;

  --border-default: #DED9E5;
  --border-brand: #A197D4;

  --interactive-primary: #211C3D;
  --interactive-primary-hover: #332B59;
  --interactive-secondary: #534C83;
  --focus-ring: #635B93;

  /* ─── Typography (premium editorial) ─── */
  --serif: 'Newsreader', 'EB Garamond', Garamond, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* ─── Semantic typography roles ─── */
  --type-display-hero: clamp(46px, 6.2vw, 96px);
  --type-heading-editorial-lg: clamp(34px, 4.2vw, 58px);
  --type-heading-section: clamp(26px, 2.8vw, 38px);
  --type-title-component-lg: clamp(24px, 2.4vw, 34px);
  --type-title-component: 26px;
  --type-title-component-sm: 22px;
  --type-lede: 17px;
  --type-body: 16px;
  --type-body-compact: 15px;
  --type-label-editorial: 10px;
  --type-meta-functional: 11px;
  --type-button: 14px;
  --type-pull-quote: clamp(22px, 2.4vw, 32px);
  --type-footer-copy: 14px;
  --type-footer-meta: 11px;
  --leading-body: 1.625;
  --leading-body-compact: 1.65;
  --leading-meta: 1.4;
  --tracking-meta: 0.11em;

  /* ─── Approved spacing scale ─── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 120px;

  /* ─── Scales / rhythm ─── */
  --density: 1;
  --section-y: calc(80px * var(--density));
  --section-y-sm: calc(56px * var(--density));
  --container-w: 1240px;
  --container-pad: 48px;

  /* ─── Motion ─── */
  --motion-fast: 150ms;
  --motion-standard: 220ms;
  --motion-deliberate: 360ms;
  --motion-ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ─── Type swap: editorial italic system ─── */
[data-type="editorial"] {
  --serif: 'Cormorant Garamond', 'Newsreader', serif;
  --sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: auto; }

body {
  font-family: var(--sans);
  background: var(--surface-page);
  color: var(--text-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv11' on;
  transition: background var(--motion-deliberate) var(--motion-ease), color var(--motion-deliberate) var(--motion-ease);
  overflow-x: hidden;
}

::selection { background: var(--interactive-primary-hover); color: var(--text-on-dark); }

a { color: inherit; }

:where(button, a, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.footer :where(button, a):focus-visible {
  outline-color: var(--brand-divider);
}
main {
  scroll-margin-top: 84px;
}
main:focus { outline: none; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--surface-page);
  color: var(--text-primary);
  border: 1px solid var(--interactive-secondary);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

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

/* Hairline rule */
.hairline { width: 100%; height: 1px; background: var(--border-default); }

/* Editorial label */
.label {
  font-family: var(--mono);
  font-size: var(--type-label-editorial);
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-block;
  line-height: 1;
}

.page-locator,
.section-eyebrow {
  color: var(--text-editorial-gold);
}
.page-locator {
  font-size: var(--type-button);
  font-weight: 600;
  letter-spacing: var(--tracking-meta);
  line-height: var(--leading-meta);
  color: var(--accent-gold-muted);
}
.section-eyebrow { font-weight: 500; }

/* ─── Display typography (premium serif) ─── */
.display-1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--type-display-hero);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.display-1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
}
.page-header .display-1 em { color: var(--brand-supporting); }

.display-2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--type-heading-editorial-lg);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.display-2 em { font-style: italic; font-weight: 300; color: var(--text-primary); }

.display-3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--type-heading-section);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.display-3 em { font-style: normal; font-weight: 300; color: inherit; }

.lede {
  font-family: var(--sans);
  font-size: var(--type-lede);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--text-body);
}

.prose p {
  font-family: var(--sans);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  color: var(--text-body);
}
.prose p + p { margin-top: var(--space-4); }
.prose strong { color: var(--text-primary); font-weight: 500; }
.prose em { color: var(--text-primary); font-style: italic; font-family: var(--serif); font-size: 1.07em; }

/* ──────────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: var(--type-button);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 13px 22px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--motion-standard) var(--motion-ease), color var(--motion-standard) var(--motion-ease), border-color var(--motion-standard) var(--motion-ease);
  background: transparent;
}
.btn-primary {
  background: var(--interactive-primary);
  color: var(--text-on-dark);
  border-color: var(--interactive-primary);
}
.btn-primary:hover { background: var(--interactive-primary-hover); border-color: var(--interactive-primary-hover); }
.btn-ghost {
  color: var(--text-primary);
  border-color: var(--interactive-secondary);
}
.btn-ghost:hover { border-color: var(--interactive-primary); }
.btn-light {
  background: var(--surface-page);
  color: var(--text-primary);
  border-color: var(--surface-page);
}
.btn-light:hover { background: var(--surface-alternate); border-color: var(--surface-alternate); }
.btn .arrow {
  display: inline-block;
  font-family: var(--sans);
}

.link-arrow {
  font-family: var(--sans);
  font-size: var(--type-button);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: text-decoration-color var(--motion-fast) var(--motion-ease);
}
.link-arrow:hover { text-decoration-color: currentColor; }

/* ──────────────────────────────────────────────────────────────
   SECTIONS / DIVIDERS
   ────────────────────────────────────────────────────────────── */
.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }

/* ──────────────────────────────────────────────────────────────
   PAGE HEADER
   ────────────────────────────────────────────────────────────── */
.page-header {
  padding: var(--space-7) 0 var(--space-8);
  border-bottom: 1px solid var(--accent-gold-muted);
  position: relative;
  overflow: hidden;
}
.page-header > .container > .page-locator {
  margin-bottom: var(--space-7);
}
.page-header .container { position: relative; z-index: 1; }
.page-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: start;
}
/* About-page header — tighter bottom rhythm so next section flows */
.page-header--about {
  padding: var(--space-7) 0 var(--section-y-sm);
}
.page-header-grid--about {
  grid-template-areas:
    "statement prose"
    "pulls prose";
  align-items: start;
}
.page-header-grid--about > .display-1 { grid-area: statement; }
.page-header-grid--about > .about-header-prose { grid-area: prose; }
.about-header-pulls {
  grid-area: pulls;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 48ch;
  margin-top: var(--space-5);
}

/* Prose paragraphs in the about header — fit the half-column rhythm */
.about-header-prose {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 50ch;
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0;
  color: var(--text-body);
  font-weight: 400;
}
.about-header-prose p { margin: 0; }
.about-header-prose strong {
  color: var(--text-primary);
  font-weight: 500;
}
.about-pull--lg {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--text-body);
  letter-spacing: -0.005em;
  padding-left: var(--space-4);
  border-left: 1px solid var(--accent-gold-muted);
  margin: 0;
}
.about-pull--lg em { color: var(--text-primary); font-style: italic; font-weight: 400; }

/* About-page grid variants are defined with the shared section grid below. */
.approach-head-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
  max-width: 22ch;
  text-wrap: pretty;
}
.approach-head-title em {
  font-style: italic;
  color: var(--text-muted);
}
.approach-head-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
  max-width: 42ch;
  text-wrap: pretty;
}
.page-header-lede {
  max-width: 460px;
  padding-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   IDELIGO LOGO
   Approved Task 004 production assets; artwork geometry remains in SVG.
   ──────────────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  flex: 0 0 auto;
}

/* ──────────────────────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-navigation);
  border-bottom: none;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Middle cluster: page links — fill space between brand & controls, even rhythm */
.nav-links-pages {
  flex: 1 1 auto;
  justify-content: space-evenly;
  gap: 4px;
}
.nav-link {
  font-family: var(--sans);
  font-size: var(--type-button);
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 16px;
  transition: color var(--motion-fast) var(--motion-ease);
  position: relative;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.active {
  color: var(--interactive-secondary);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--interactive-secondary);
}
.nav-services-item {
  position: relative;
  list-style: none;
}
.nav-services-main {
  display: inline-flex;
  align-items: center;
}
.nav-services-toggle {
  width: var(--space-6);
  height: var(--space-6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.nav-services-toggle:hover,
.nav-services-toggle[aria-expanded="true"] {
  border-color: var(--interactive-secondary);
}
.nav-services-toggle span {
  transition: transform var(--motion-standard) var(--motion-ease);
}
.nav-services-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.nav-services-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 110;
  width: 36ch;
  padding: var(--space-3);
  list-style: none;
  background: var(--surface-page);
  border: 1px solid var(--border-default);
}
.nav-services-submenu[hidden] { display: none; }
.nav-services-submenu li + li { border-top: 1px solid var(--border-default); }
.nav-services-submenu a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text-body);
  font-family: var(--sans);
  font-size: var(--type-body-compact);
  line-height: var(--leading-meta);
  text-decoration: none;
  border-left: 2px solid transparent;
}
.nav-services-submenu a:hover,
.nav-services-submenu a.active {
  color: var(--text-primary);
  border-left-color: var(--interactive-secondary);
  text-decoration: underline;
  text-underline-offset: var(--space-1);
}
/* Quiet divider between page-link group and trailing controls */
.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border-brand);
  margin: 0 10px;
  align-self: center;
  list-style: none;
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding: 96px 0 36px;
}

/* Footer brand block — stacked vertical lockup, no tagline */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: var(--space-7);
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.footer-brand-lockup {
  display: inline-flex;
  align-self: flex-start;
  margin-top: calc(var(--space-2) * -1);
}
.footer-brand-logo {
  display: block;
  width: 112px;
  max-width: 100%;
  height: auto;
}
.footer-tag {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: var(--type-footer-copy);
  color: var(--text-on-dark);
  max-width: 34ch;
  line-height: var(--leading-body-compact);
}
.footer-col-title {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  font-weight: 600;
  letter-spacing: var(--tracking-meta);
  line-height: var(--leading-meta);
  text-transform: uppercase;
  color: var(--text-on-dark);
  border-left: 2px solid var(--accent-gold-muted);
  padding-left: var(--space-2);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col ul button, .footer-col ul a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: var(--leading-meta);
  color: var(--text-on-dark);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: color var(--motion-fast) var(--motion-ease);
}
.footer-col ul button:hover, .footer-col ul a:hover { color: var(--accent-gold-muted); }
.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  border: 1px solid var(--brand-divider);
  text-decoration: none;
  transition: color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease);
}
.footer-social-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
a.footer-social-icon:hover {
  color: var(--accent-gold-muted);
  border-color: var(--accent-gold-muted);
}
.footer-social-icon.is-placeholder {
  color: var(--brand-divider);
  border-color: var(--brand-divider);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-5);
  font-family: var(--mono);
  font-size: var(--type-footer-meta);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  color: var(--text-on-dark);
  text-transform: uppercase;
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.footer-legal-separator { color: var(--brand-divider); }

/* ──────────────────────────────────────────────────────────────
   HOME · HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  padding: var(--space-7) 0 var(--space-9);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--accent-gold-muted);
  background-image:
    linear-gradient(to bottom,
      color-mix(in oklab, var(--surface-page) 55%, transparent) 0%,
      color-mix(in oklab, var(--surface-page) 70%, transparent) 60%,
      var(--surface-page) 100%);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-inner { position: relative; z-index: 1; }
/* ─── Hero split layout: title left, point-of-view & translation right ─── */
.hero-eyebrow-col {
  display: block;
  margin-bottom: var(--space-7);
}
.hero-grid--split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: var(--space-8);
}
.hero-left { display: block; }
.hero-h1 {
  margin: 0;
  max-width: 17ch;
  cursor: default;
}
.hero-h1.is-revealed { /* placeholder for future trigger styling */ }

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
  position: relative;
  width: 100%;
  min-width: 0;
}
.hero-side-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 0 0 var(--space-5);
  border: none;
  background: transparent;
  position: relative;
  cursor: default;
  box-shadow: none;
}
.hero-side-block + .hero-side-block {
  padding-top: var(--space-5);
  border-top: 1px solid var(--surface-passive);
}
.hero-side-prose {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  letter-spacing: 0;
  margin: 0;
  min-height: 0;
}
.hero-side-prose strong { color: var(--text-primary); font-weight: 500; }
.hero-side-prose em {
  color: var(--text-primary);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.07em;
}
.hero-side-prose--display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  min-height: 0;
}
.hero-side-prose--display em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 1em;
  color: var(--text-primary);
}
.hero-side-cta {
  align-self: flex-end;
  margin-top: var(--space-2);
}

.hero-h1 {
  margin: 0;
  max-width: 17ch;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-8);
  align-items: start;
  border: 1px solid var(--border-default);
  background: var(--surface-page);
  padding: var(--space-7);
  margin-top: 8px;
  position: relative;
  box-shadow: none;
}
.hero-bottom > .section-eyebrow { grid-column: 1 / -1; }
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.hero-meta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-meta-label {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.hero-meta-val {
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
}
.hero-right p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: var(--space-6);
  max-width: 460px;
}
.hero-right {
  border-left: 1px solid var(--surface-passive);
  padding-left: 32px;
}
.hero-btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 460px;
}
.hero-btns .btn {
  justify-content: center;
  width: 100%;
}

/* Complexity-to-clarity transformation grid */
.complexity-diagram {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--surface-passive);
  border-bottom: 1px solid var(--surface-passive);
}
.cd-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--border-default);
  align-items: center;
  padding: var(--space-5) 0;
  gap: var(--space-6);
}
.cd-row:last-child { border-bottom: none; }
.cd-from, .cd-to {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cd-from {
  color: var(--text-muted);
}
.cd-arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}
.cd-to {
  color: var(--text-primary);
}
.cd-to em { font-style: italic; color: var(--text-primary); }

/* ──────────────────────────────────────────────────────────────
   POSITIONING / PULL QUOTE BAND
   ────────────────────────────────────────────────────────────── */
.positioning-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}
.pull-quote {
  font-family: var(--serif);
  font-size: var(--type-pull-quote);
  font-weight: 300;
  line-height: 1.38;
  color: var(--text-body);
  max-width: 860px;
  letter-spacing: -0.015em;
}
.pull-quote strong {
  font-weight: 400;
  color: var(--text-primary);
}
.pull-quote em {
  color: var(--text-primary);
  font-style: italic;
}

.service-positioning {
  background: var(--surface-alternate);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.service-positioning-inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
}
.service-positioning-content {
  display: grid;
  gap: var(--space-5);
}
.service-positioning-title,
.service-positioning-intro {
  margin: 0;
}
.service-positioning-copy {
  max-width: 880px;
  margin: 0;
}

.engagement-band {
  border: 1px solid var(--border-default);
  background: var(--surface-alternate);
  padding: var(--space-7);
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: var(--space-6);
}
.engagement-band > div:first-child {
  border-right: 1px solid var(--border-default);
  padding-right: 32px;
}
.engagement-band-title { font-size: clamp(22px, 2.2vw, 30px); }
.engagement-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.engagement-step--wide { grid-column: 2 / span 2; }
.engagement-step-num {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  font-weight: 500;
  color: var(--accent-gold-muted);
  text-transform: uppercase;
}
.engagement-step-title {
  font-family: var(--serif);
  font-size: var(--type-title-component-sm);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.engagement-step-title em { font-style: normal; color: inherit; }
.engagement-step-body {
  font-size: var(--type-body-compact);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────────
   SECTION HEAD
   ────────────────────────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow action"
    "title action";
  align-items: start;
  column-gap: var(--space-6);
  row-gap: var(--space-4);
  margin-bottom: var(--space-7);
}
.section-head .display-3 { grid-area: title; max-width: 28ch; margin: 0; }
.section-head .display-3 em { color: var(--brand-secondary); }
.section-head .label { grid-area: eyebrow; align-self: start; padding: 0; }
.section-head > :last-child { grid-area: action; align-self: end; }
.section-head > .label:last-child,
.fw-cta-row > .label {
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
}

/* ──────────────────────────────────────────────────────────────
   PILLARS
   ────────────────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 0 var(--space-6) 0 0;
  position: relative;
}
.pillar + .pillar {
  padding-left: var(--space-6);
  border-left: 1px solid var(--border-default);
}
.pillar-num {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  display: block;
  text-transform: uppercase;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
}
.pillar-title em { font-style: normal; color: inherit; }
.pillar-body {
  font-size: var(--type-body-compact);
  font-weight: 400;
  color: var(--text-body);
  line-height: var(--leading-body-compact);
  letter-spacing: 0;
}

/* ──────────────────────────────────────────────────────────────
   HOME SERVICES — approved four-pillar choice cards
   ────────────────────────────────────────────────────────────── */
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
  border-left: 1px solid var(--border-default);
}
.home-service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: var(--space-6);
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.home-service-card h3 {
  max-width: 18ch;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: var(--type-title-component);
  font-weight: 400;
  line-height: 1.15;
}
.home-service-card p {
  max-width: 58ch;
  margin-bottom: var(--space-6);
  color: var(--text-body);
  font-size: var(--type-body-compact);
  line-height: var(--leading-body-compact);
}
.home-service-card .link-arrow { margin-top: auto; }
.home-service-card:hover .link-arrow,
.home-service-card:focus-visible .link-arrow { color: var(--interactive-secondary); }

/* ──────────────────────────────────────────────────────────────
   PROFESSIONAL FOCUS — tile grid
   ────────────────────────────────────────────────────────────── */
.focus-area { background: transparent; }

.focus-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.focus-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.focus-head .display-3 { margin: 0; max-width: 22ch; }
.focus-count {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0;
}

.focus-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.focus-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--space-2);
  min-height: 88px;
  padding: var(--space-4);
  border: 1px solid var(--border-default);
  background: var(--surface-alternate);
  cursor: default;
  overflow: hidden;
  box-shadow: none;
  z-index: 0;
}

.focus-tile-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Static taxonomy marker */
.focus-tile-mark {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--text-primary);
}

.focus-tile-title {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1180px) {
  .focus-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .focus-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .focus-tile { min-height: 76px; padding: var(--space-4); }
  .focus-head { gap: 16px; margin-bottom: 24px; }
  .focus-title-row { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .focus-tiles { grid-template-columns: 1fr; gap: 8px; }
  .focus-tile { min-height: 64px; }
}

/* ──────────────────────────────────────────────────────────────
   INSIGHTS GRID (homepage preview)
   ────────────────────────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.insight-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-6) var(--space-6) 0;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--motion-standard) var(--motion-ease);
  background: none;
  text-align: left;
  border: none;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  align-items: stretch;
  font-family: var(--sans);
  color: inherit;
}
.insight-card:last-child {
  border-right: none;
  padding-right: 0;
}
.insight-card:first-child {
  background: var(--surface-alternate);
  padding-left: 24px;
}
.insight-card:nth-child(n+2) {
  padding-left: var(--space-6);
}
.insight-card:hover { background: var(--surface-alternate); }
.insight-cat {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: inline-block;
}
.insight-title {
  font-family: var(--serif);
  font-size: var(--type-title-component);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  flex: 1;
}
.insight-teaser {
  font-family: var(--sans);
  font-size: var(--type-body-compact);
  font-weight: 400;
  color: var(--text-muted);
  line-height: var(--leading-body-compact);
  letter-spacing: 0;
  margin-bottom: var(--space-5);
}
.insight-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-default);
}
.insight-foot .read {
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ──────────────────────────────────────────────────────────────
   ABOUT TEASER / ABOUT CARD
   ────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.about-card {
  border: 1px solid var(--border-default);
  background: var(--surface-alternate);
}
.about-stat {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-default);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-5);
  align-items: baseline;
}
.about-stat:last-child { border-bottom: none; }
.about-stat-label {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.about-stat-val {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.about-stat-val em { font-style: italic; color: var(--text-primary); }

/* ──────────────────────────────────────────────────────────────
   CTA BLOCK — light editorial band, horizontal flow
   ────────────────────────────────────────────────────────────── */
.cta-block {
  background: var(--surface-alternate);
  color: var(--text-primary);
  padding: var(--section-y-sm) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--accent-gold-muted);
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow eyebrow eyebrow"
    "title body action";
  column-gap: var(--space-7);
  row-gap: var(--space-5);
  align-items: start;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.cta-label {
  grid-area: eyebrow;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-editorial-gold);
  padding-top: 0;
}
.cta-h2 {
  grid-area: title;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}
.cta-h2 em { font-style: italic; color: var(--text-muted); }
.cta-sub {
  grid-area: body;
  font-family: var(--sans);
  font-size: var(--type-body);
  font-weight: 400;
  color: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: 0;
  margin: 0;
  max-width: 420px;
}
.cta-action {
  grid-area: action;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
}
.cta-block .btn-primary {
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────────
   INSIGHTS PAGE
   ────────────────────────────────────────────────────────────── */
.insights-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-default);
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 20px;
}
.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.cat-filter {
  font-family: var(--sans);  /* sans, not mono — stays neutral */
  font-size: var(--type-button);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 18px;
  background: var(--surface-passive);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease);
  margin-bottom: -1px;
}
.cat-filter:hover,
.cat-filter:focus-visible {
  color: var(--text-primary);
  border-color: var(--interactive-secondary);
}
.cat-filter.active {
  color: var(--text-primary);
  background: var(--surface-passive);
  border-color: var(--brand-supporting);
  box-shadow: inset 0 -2px 0 var(--brand-supporting);
}
.insights-count {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  color: var(--text-secondary);
  text-transform: uppercase;
}

.insights-list {
  display: flex;
  flex-direction: column;
}
.insight-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr auto;
  gap: 48px;
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-default);
  cursor: pointer;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  align-items: baseline;
  width: 100%;
}
.insight-row:hover { background: var(--surface-alternate); }
.insight-row-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--accent-gold-muted);
  text-transform: uppercase;
}
.insight-row-cat {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-primary);
}
.insight-row-title {
  font-family: var(--serif);
  font-size: var(--type-title-component);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.insight-row-title em { font-style: normal; color: inherit; }
.insight-row-meta {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────────
   FIVE STRANDS — explorer
   ────────────────────────────────────────────────────────────── */

/* Compact section rhythm — no secondary heading block before the controls */
.section.strand-explorer { padding-top: var(--section-y-sm); }

/* Minimal head: section label on the left, selection hint on the right */
.strand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
}
.strand-hint-top {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-body);
}
.strand-hint-top .label {
  color: var(--text-body);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
}
.strand-hint-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--surface-passive);
}

/* Independent tile grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: var(--space-3);
  min-height: 280px;
  padding: var(--space-5);
  border: 1px solid var(--border-default);
  background: var(--surface-alternate);
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: background var(--motion-standard) var(--motion-ease), border-color var(--motion-standard) var(--motion-ease);
}

.cat-tile:hover,
.cat-tile.is-active {
  background: var(--surface-page);
  border-color: var(--brand-supporting);
  box-shadow: inset 0 -2px 0 var(--brand-supporting);
}

/* Tile internals */
.cat-tile-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  z-index: 1;
}
.cat-tile-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  color: var(--accent-gold-muted);
  text-transform: uppercase;
}
.cat-tile-title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--type-title-component-sm);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 6px 0 0;
}
.cat-tile-body {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: var(--type-body-compact);
  line-height: var(--leading-body-compact);
  letter-spacing: 0;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

/* Foot — count on left, "read ↓" on right; slides in slowly from bottom-right */
.cat-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-default);
  position: relative;
  z-index: 1;
}
.cat-tile-count {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--motion-fast) var(--motion-ease);
}
.cat-tile-arrow {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--brand-supporting);
}
.cat-tile:hover .cat-tile-count,
.cat-tile.is-active .cat-tile-count { color: var(--text-primary); }

/* ── Selected-strand panel ─────────────────────────────────── */
.strand-reveal {
  margin-top: var(--space-5);
}
.strand-reveal.is-open {
  display: block;
}
.strand-reveal-inner {
  min-height: 0;
}
.strand-reveal-content {
  position: relative;
  padding: var(--space-5) 0 0;
  border-top: 1px solid var(--border-default);
}
.strand-reveal-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.strand-reveal-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.srm-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  color: var(--accent-gold-muted);
  text-transform: uppercase;
}
.srm-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--brand-supporting);
}

.strand-reveal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
}
.strand-article {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: var(--space-4);
  row-gap: 8px;
  align-content: start;
  padding: var(--space-5);
  text-align: left;
  background: var(--surface-page);
  border: none;
  font-family: inherit;
  color: inherit;
  cursor: default;
  overflow: hidden;
}
.sa-num {
  grid-row: 1 / 4;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--accent-gold-muted);
  padding-top: 2px;
}
.sa-body {
  display: contents;
}
.sa-title {
  grid-column: 2;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  padding-right: 32px;
}
.sa-teaser {
  grid-column: 2;
  font-family: var(--sans);
  font-size: var(--type-body-compact);
  line-height: var(--leading-body-compact);
  letter-spacing: 0;
  color: var(--text-body);
}
.sa-meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-muted);
}
.sa-date::after {
  content: '·';
  margin-left: 10px;
  color: var(--text-muted);
}

.strand-reveal-empty {
  grid-column: 1 / -1;
  padding: var(--space-6) var(--space-5);
  background: var(--surface-page);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-body);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────
   FRAMEWORKS PAGE
   ────────────────────────────────────────────────────────────── */
.frameworks-insights {
  background: var(--surface-alternate);
  border-top: 1px solid var(--border-default);
}
.frameworks-intro {
  max-width: 68ch;
  margin: calc(var(--space-5) * -1) 0 var(--space-7);
}
.frameworks-list {
  display: flex;
  flex-direction: column;
}
.framework-card {
  border-bottom: 1px solid var(--border-default);
  background: transparent;
  transition: background var(--motion-standard) var(--motion-ease);
}
.framework-card[data-open="true"] {
  background: var(--surface-alternate);
}
.fw-summary {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 40px;
  gap: 48px;
  padding: var(--space-6) 0;
  cursor: pointer;
  align-items: baseline;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.fw-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--accent-gold-muted);
  text-transform: uppercase;
}
.fw-title {
  font-family: var(--serif);
  font-size: var(--type-title-component-lg);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.fw-title em { font-style: normal; color: inherit; }
.fw-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 360px;
}
.fw-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--interactive-secondary);
  position: relative;
  transition: background var(--motion-standard) var(--motion-ease), border-color var(--motion-standard) var(--motion-ease);
  justify-self: end;
  align-self: center;
}
.framework-card:hover .fw-toggle { border-color: var(--text-primary); }
.framework-card[data-open="true"] .fw-toggle {
  background: var(--brand-supporting);
  border-color: var(--brand-supporting);
}
.fw-toggle::before, .fw-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  top: 50%;
  left: 50%;
  transition: background var(--motion-standard) var(--motion-ease);
}
.fw-toggle::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.fw-toggle::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.framework-card[data-open="true"] .fw-toggle::before,
.framework-card[data-open="true"] .fw-toggle::after {
  background: var(--surface-page);
}
.framework-card[data-open="true"] .fw-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  height: 0;
}

.fw-body {
  display: block;
}
.fw-body[hidden] { display: none; }
.fw-body-inner { overflow: hidden; }
.fw-body-content {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  padding: 0 var(--space-6) var(--space-7) 0;
}
.fw-body-content .label { grid-column: 2 / 3; margin-bottom: 16px; }
.fw-body-prose {
  grid-column: 2 / 3;
  font-family: var(--sans);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0;
  color: var(--text-body);
}
.fw-body-prose p + p { margin-top: var(--space-4); }
.fw-steps {
  grid-column: 3 / 4;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-default);
}
.fw-step {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-default);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-4);
  align-items: baseline;
}
.fw-step-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent-gold-muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.fw-step-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.5;
}
.fw-step-text em { font-style: normal; color: inherit; font-weight: 400; }
.fw-cta-row {
  grid-column: 2 / 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-5);
  margin-top: 12px;
  border-top: 1px solid var(--border-default);
}

/* ──────────────────────────────────────────────────────────────
   CASE STUDIES
   ────────────────────────────────────────────────────────────── */
.case-list { display: flex; flex-direction: column; }
.case-card {
  display: grid;
  grid-template-columns: 80px 1fr 220px;
  gap: 48px;
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--border-default);
  align-items: start;
  text-decoration: none;
  color: inherit;
  cursor: default;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  width: 100%;
}
.case-card-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--accent-gold-muted);
  padding-top: 8px;
  text-transform: uppercase;
}
.case-card-sector {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  display: inline-block;
}
.case-card-title {
  font-family: var(--serif);
  font-size: var(--type-title-component-lg);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.case-card-title em { font-style: normal; color: inherit; }
.case-card-summary {
  font-size: var(--type-body-compact);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 56ch;
}
.case-card-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.case-meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-meta-label {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.case-meta-val {
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
}
/* ──────────────────────────────────────────────────────────────
   SERVICES
   ────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  padding: var(--space-7) var(--space-6) var(--space-7) 0;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.service-card:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}
.service-card:nth-child(n+2) { padding-left: var(--space-6); }
.service-card:nth-child(3n+1) { padding-left: 0; }
.service-num {
  display: block;
  margin-bottom: var(--space-5);
  color: var(--accent-gold-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.service-title {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: var(--type-title-component);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.service-title em { color: inherit; font-style: normal; }
.service-body {
  margin-bottom: var(--space-5);
  color: var(--text-body);
  font-size: var(--type-body-compact);
  font-weight: 400;
  line-height: var(--leading-body-compact);
  letter-spacing: 0;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.service-tag {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background: var(--surface-passive);
  box-shadow: none;
  color: var(--text-primary);
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
}
.service-index-section { background: var(--surface-page); }
.service-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-default);
}
.service-index-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--space-9);
  padding: var(--space-5);
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: var(--type-title-component-sm);
  line-height: 1.2;
  text-decoration: none;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  border-left: 2px solid transparent;
}
.service-index-link:nth-child(2n) { border-right: none; }
.service-index-link:hover,
.service-index-link.is-active {
  border-left-color: var(--interactive-secondary);
  text-decoration: underline;
  text-underline-offset: var(--space-2);
}
.service-index-link .arrow {
  flex: 0 0 auto;
  color: var(--interactive-secondary);
  font-family: var(--sans);
}
.service-sections { border-top: 1px solid var(--border-default); }
.service-section {
  scroll-margin-top: calc(var(--space-9) + var(--space-5));
  padding: var(--section-y-sm) 0;
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-default);
  border-left: 2px solid transparent;
}
.service-section:nth-child(even) { background: var(--surface-alternate); }
.service-section.is-active-service,
.service-section:target {
  border-left-color: var(--interactive-secondary);
}
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-7);
  align-items: start;
}
.service-section-content { max-width: 72ch; }
.service-section-title {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: var(--type-heading-section);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.service-section-title:focus { outline: none; }
.service-section-title:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: var(--space-2);
}
.service-section-purpose {
  margin-bottom: var(--space-5);
  color: var(--text-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

/* ──────────────────────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-label {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-input, .form-textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--interactive-secondary);
  padding: 12px 0;
  outline: none;
  transition: border-color var(--motion-fast) var(--motion-ease);
  font-weight: 400;
}
.form-input:focus, .form-textarea:focus { border-color: var(--interactive-primary); }
.form-input:focus-visible, .form-textarea:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.form-submit-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.form-status {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  color: var(--text-secondary);
  text-transform: uppercase;
}

.contact-side {
  border: 1px solid var(--border-default);
  background: var(--surface-alternate);
  padding: 48px;
}
.contact-side-h {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.contact-side-h em { font-style: normal; color: inherit; }
.contact-side-body {
  font-size: var(--type-body-compact);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}
.contact-direct {
  border-top: 1px solid var(--border-default);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-direct-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-4);
  align-items: baseline;
}
.contact-direct-label {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.contact-direct-val {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.5;
}
.contact-direct-val a {
  text-decoration: none;
  border-bottom: 1px solid var(--interactive-secondary);
  padding-bottom: 1px;
  transition: border-color var(--motion-fast) var(--motion-ease);
}
.contact-direct-val a:hover { border-color: var(--text-primary); }

/* ──────────────────────────────────────────────────────────────
   ABOUT PAGE
   ────────────────────────────────────────────────────────────── */
.about-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  column-gap: var(--space-8);
  row-gap: var(--space-5);
  align-items: start;
}
.about-section-grid > .section-eyebrow { grid-column: 1 / -1; }
.about-section-grid .prose { grid-column: 1; max-width: 60ch; }
.about-section-grid > .about-pulls { grid-column: 2; }
.about-section-grid.about-section-grid--solo {
  grid-template-columns: minmax(0, 1fr);
}
.about-section-grid.about-section-grid--approach {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  margin-bottom: var(--space-7);
}
.about-section-grid--approach > .section-eyebrow { grid-column: 1 / -1; }
.about-section-grid--approach .approach-head-title { grid-column: 1; }
.about-section-grid--approach .approach-head-lede { grid-column: 2; }
.about-pulls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
}
.about-pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.42;
  padding-left: 20px;
  border-left: 1px solid var(--accent-gold-muted);
  letter-spacing: -0.005em;
}
.about-pull em { color: var(--text-primary); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--space-6);
}
.approach-card {
  padding: var(--space-7) var(--space-6) var(--space-7) 0;
  border-bottom: 1px solid var(--border-default);
  border-right: 1px solid var(--border-default);
}
.approach-card:nth-child(2n) {
  padding-right: 0;
  padding-left: var(--space-6);
  border-right: none;
}
.approach-num {
  font-family: var(--mono);
  font-size: var(--type-meta-functional);
  line-height: var(--leading-meta);
  letter-spacing: var(--tracking-meta);
  color: var(--text-primary);
  display: block;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}
.approach-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.approach-title em { font-style: normal; color: inherit; }
.approach-body {
  font-size: var(--type-body-compact);
  font-weight: 400;
  color: var(--text-body);
  line-height: var(--leading-body-compact);
  letter-spacing: 0;
}

/* ──────────────────────────────────────────────────────────────
   MOBILE NAV — burger + slide-down drawer
   ────────────────────────────────────────────────────────────── */
.nav-mobile-controls {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-burger {
  width: 40px;
  height: 40px;
  border: 1px solid var(--interactive-secondary);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color var(--motion-fast) var(--motion-ease), background var(--motion-fast) var(--motion-ease);
}
.nav-burger:hover { border-color: var(--text-primary); background: var(--surface-alternate); }
.nav-burger span {
  display: block;
  width: 16px;
  height: 1.4px;
  background: var(--text-primary);
  transition: transform var(--motion-standard) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease);
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.4px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.4px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--surface-navigation);
  z-index: 95;
  overflow-y: auto;
  display: none;
}
.nav-drawer.is-open {
  display: block;
}
.nav-drawer-list {
  list-style: none;
  margin: 0;
  padding: 24px 0 40px;
  display: flex;
  flex-direction: column;
}
.nav-drawer-list li {
  border-bottom: 1px solid var(--border-default);
}
.nav-drawer-link {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--text-primary);
  font-family: inherit;
  text-decoration: none;
}
.nav-drawer-link:focus-visible {
  outline-offset: -3px;
}
.nav-drawer-label {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-drawer-link.active .nav-drawer-label {
  color: var(--interactive-secondary);
  font-weight: 500;
}
.nav-drawer-link.active .nav-drawer-label {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-drawer-service-row {
  display: flex;
  align-items: stretch;
}
.nav-drawer-service-row .nav-drawer-link { flex: 1 1 auto; }
.nav-drawer-disclosure {
  flex: 0 0 var(--space-8);
  width: var(--space-8);
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-default);
  cursor: pointer;
  font-size: var(--type-title-component-sm);
}
.nav-drawer-disclosure[aria-expanded="true"] span {
  display: inline-block;
  transform: rotate(180deg);
}
.nav-drawer-submenu {
  list-style: none;
  background: var(--surface-page);
}
.nav-drawer-submenu[hidden] { display: none; }
.nav-drawer-submenu a {
  display: block;
  padding: var(--space-4) var(--space-5) var(--space-4) var(--space-8);
  color: var(--text-body);
  font-family: var(--sans);
  font-size: var(--type-body-compact);
  line-height: var(--leading-meta);
  text-decoration: none;
  border-left: 2px solid transparent;
}
.nav-drawer-submenu a:hover,
.nav-drawer-submenu a.active {
  color: var(--text-primary);
  border-left-color: var(--interactive-secondary);
  text-decoration: underline;
  text-underline-offset: var(--space-1);
}
/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────── */

/* Tablet / small-laptop — keep desktop nav, reduce density */
@media (max-width: 1180px) {
  :root { --container-pad: 36px; --section-y: 72px; --section-y-sm: 52px; }
  .nav-inner { gap: 16px; }
  .nav-link { padding: 10px 12px; font-size: 13px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}

/* Tablet portrait → switch nav to burger drawer */
@media (max-width: 960px) {
  :root { --container-pad: 28px; --section-y: 64px; --section-y-sm: 48px; }

  main { scroll-margin-top: 72px; }

  .nav-links-pages { display: none; }
  .nav-mobile-controls { display: inline-flex; }
  .nav-drawer { display: block; }
  .nav-inner { height: 72px; }
  .nav-drawer { top: 72px; }

  .hero { padding: var(--space-8) 0 var(--space-8); }
  .hero-grid, .hero-grid--split, .hero-bottom { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-grid--split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: var(--space-8);
  }
  .hero-h1 { max-width: 100%; }
  .hero-side { padding-top: 8px; }
  .hero-bottom { padding: 32px 24px; }
  .hero-meta, .hero-right { border-left: none; padding-left: 0; }
  .hero-meta { gap: var(--space-5); }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 32px 0; border-left: none !important; border-bottom: 1px solid var(--border-default); }
  .pillar:last-child { border-bottom: none; }
  .pillar + .pillar { padding-left: 0; }

  .section-head {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "action";
    gap: var(--space-4);
    margin-bottom: var(--space-7);
  }
  .section-head > span:last-child:empty { display: none; }

  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { padding: 32px 0 !important; border-right: none !important; }

  .about-grid, .page-header-grid, .contact-grid {
    grid-template-columns: 1fr; gap: var(--space-6);
  }
  .page-header-grid--about {
    grid-template-areas: "statement" "prose" "pulls";
  }
  .page-header-grid:not(.page-header-grid--about) > .display-1 { min-height: 0; }

  .positioning-inner { gap: var(--space-4); }
  .focus-inner { grid-template-columns: 1fr; gap: var(--space-4); }

  .about-section-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-section-grid > .section-eyebrow,
  .about-section-grid .prose,
  .about-section-grid > .about-pulls,
  .about-section-grid.about-section-grid--approach > * { grid-column: 1; }
  .about-section-grid.about-section-grid--approach { grid-template-columns: 1fr; }

  .approach-grid, .services-grid { grid-template-columns: 1fr; }
  .approach-card, .service-card { padding: 32px 0 !important; border-right: none !important; }
  .service-positioning-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .service-section-inner { grid-template-columns: 1fr; gap: var(--space-5); }

  .case-card { grid-template-columns: 44px 1fr; gap: var(--space-4); padding: var(--space-6) 0; }
  .case-card-meta { display: none; }
  .case-card-title { font-size: 24px; margin-bottom: var(--space-4); }

  .fw-summary { grid-template-columns: 44px 1fr 36px; gap: 16px; padding: 32px 0; }
  .fw-tagline { display: none; }
  .fw-title { font-size: 22px; }
  .fw-body-content { grid-template-columns: 44px 1fr; gap: 24px; padding-right: 0; }
  .fw-steps { grid-column: 2 / 3; }
  .fw-cta-row { grid-column: 2 / 3; flex-direction: column; align-items: stretch; gap: 16px; }

  .insight-row { grid-template-columns: 40px 1fr; gap: 12px; padding: 24px 0; }
  .insight-row-cat, .insight-row-meta, .insight-row-title { grid-column: 2; }
  .insight-row-title { font-size: 22px; }

  .insights-toolbar { gap: 16px; }
  .cat-filters { gap: 4px; }
  .cat-filter { padding: 6px 12px; }

  .cat-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .cat-tile { padding: var(--space-5) 20px !important; min-height: 240px !important; }
  .strand-reveal-list { grid-template-columns: 1fr 1fr; }
  .strand-head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .engagement-band { grid-template-columns: 1fr; gap: var(--space-5); padding: var(--space-6); margin-top: var(--space-7); }
  .engagement-step--wide { grid-column: auto; }
  .engagement-band > div:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-default); padding-bottom: var(--space-5); }

  .cta-block { padding: 56px 0; }
  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "body" "action";
    gap: var(--space-5);
    padding: 0 var(--container-pad);
  }
  .cta-sub { max-width: 640px; }
  .cta-action { justify-content: flex-end; margin-top: 8px; }

  .cd-row { grid-template-columns: 1fr; gap: var(--space-2); padding: var(--space-4) 0; }
  .cd-arrow { display: none; }
  .cd-from { grid-column: 1; padding-bottom: 4px; font-size: 17px; }
  .cd-to { grid-column: 1; font-size: 18px; }

  .footer { padding: var(--space-7) 0 var(--space-5); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-brand-lockup { align-self: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* Phone */
@media (max-width: 640px) {
  :root { --container-pad: 20px; --section-y: 48px; --section-y-sm: 40px; }
  main { scroll-margin-top: 64px; }
  .page-header { padding: 64px 0 48px; }
  .display-1 { font-size: clamp(38px, 11vw, 56px); }
  .display-2 { font-size: clamp(30px, 8vw, 44px); }
  .display-3 { font-size: clamp(22px, 6vw, 30px); }
  .lede { font-size: 16px; }
  .section-head { margin-bottom: var(--space-6); }

  .hero { padding: var(--space-8) 0 56px; }
  .hero-grid--split { margin-bottom: var(--space-7); }
  .hero-bottom { gap: var(--space-5); }
  .hero-side-cta { align-self: stretch; justify-content: center; }
  .hero-meta-val { font-size: 15px; }
  .hero-btns { gap: 8px; grid-template-columns: 1fr; max-width: none; }
  .hero-btns .btn { padding: 12px 16px; justify-content: center; }
  .home-service-grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: 0; }

  .nav-inner { height: 64px; }
  .nav-drawer { top: 64px; }
  .nav-burger { width: 38px; height: 38px; }
  .nav-drawer-label { font-size: 26px; }
  .nav-drawer-link { padding: 18px 20px; grid-template-columns: 1fr; }
  .brand-logo { height: 40px; }

  .pull-quote { font-size: clamp(20px, 5vw, 26px); }
  .cd-from { font-size: 16px !important; line-height: 1.45; }
  .cd-to { font-size: 18px !important; line-height: 1.4; }
  .pillar-title, .insight-row-title, .case-card-title, .fw-title, .service-title, .approach-title { font-size: clamp(20px, 5vw, 24px); }

  .insights-toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cat-filters { gap: 0; flex-wrap: wrap; }

  .cat-grid { grid-template-columns: 1fr; gap: 8px; }
  .cat-tile { padding: 20px !important; min-height: 0 !important; }
  .strand-reveal-list { grid-template-columns: 1fr; }

  .focus-band { padding: 56px 0; }
  .pill { font-size: 12.5px; padding: 7px 12px; }

  .about-card .about-stat { grid-template-columns: 1fr; gap: var(--space-2); padding: 20px; }
  .about-card .about-stat-val { font-size: 16px; }

  .contact-side { padding: 32px 24px; }
  .contact-side-h { font-size: 24px; }
  .form-submit-row { flex-direction: column-reverse; align-items: stretch; }
  .form-submit-row .btn { width: 100%; justify-content: center; }
  .form-status { text-align: center; }

  .engagement-band { padding: 24px; }

  .service-index { grid-template-columns: 1fr; }
  .service-index-link { border-right: none; }

  .cta-block { padding: 48px 0; }
  .cta-h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-sub { margin-bottom: 0; }
  .cta-action { justify-content: stretch; }
  .cta-action .btn { width: 100%; justify-content: center; }

  .footer { padding: var(--space-7) 0 var(--space-5); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand-logo { width: 104px; }
}

@media (max-width: 380px) {
  :root { --container-pad: 16px; }
  .display-1 { font-size: 36px; line-height: 1.05; }
  .nav-drawer-label { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
