/* ============================================================
   ADEDGE SOLUTIONS — Design System
   Aesthetic: Editorial Precision
   ============================================================ */

:root {
  /* Colours — Deep Space Navy / White / Light Slate / Royal Blue (+ tiny Gold accent) */
  --navy: #0A192F;          /* Deep Space Navy — primary */
  --navy-900: #050F1F;      /* deeper navy */
  --navy-700: #162B4D;      /* lighter navy */
  --ink: #2B3440;           /* Gunmetal — primary text */
  --gold: #286CFF;          /* repurposed: Royal Blue — main accent */
  --gold-deep: #1B54D9;     /* darker royal blue */
  --gold-soft: #B3CCFF;     /* soft royal blue */
  --teal: #286CFF;          /* Royal Blue (secondary accent unified) */
  --slate: #2B3440;         /* Gunmetal */
  --slate-muted: #667085;   /* muted gunmetal */
  --cream: #F8FAFC;         /* Light Slate — base */
  --cream-deep: #EEF2F7;    /* deeper light slate */
  --cream-warm: #FFFFFF;    /* Pure White */
  --paper: #FFFFFF;         /* Pure White */
  --line: #D1D9E0;          /* light slate border */
  --line-faint: #E4EAF0;    /* very light slate border */
  --premium-gold: #CBA344;  /* Premium Gold — use sparingly */
  --error: #B42318;
  --success: #067647;

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10, 25, 47, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 25, 47, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv11";
}

/* Typography ------------------------------------------------ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variation-settings: "opsz" 96, "SOFT" 30;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.5rem, 1.8vw + 0.5rem, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy);
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 68ch;
}

.lede {
  font-size: clamp(1.125rem, 1vw + 0.75rem, 1.375rem);
  line-height: 1.55;
  color: var(--navy);
  font-weight: 400;
  max-width: 56ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.link-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: border-color 0.3s var(--ease-out), gap 0.3s var(--ease-out);
}

.link-underline:hover {
  border-color: var(--navy);
  gap: 12px;
}

.link-underline svg {
  transition: transform 0.3s var(--ease-out);
}

.link-underline:hover svg {
  transform: translateX(2px);
}

/* Layout ---------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 56px; }
}

.section {
  padding: 96px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: 128px 0; }
}

.section--tight { padding: 64px 0; }
.section--loose { padding: 160px 0; }
.section--cream { background: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }

.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 {
  color: var(--cream);
}

.section--navy p, .section--ink p { color: rgba(248, 250, 252, 0.75); }
.section--navy .lede, .section--ink .lede { color: var(--cream); }

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-12 { grid-template-columns: repeat(6, 1fr); }
}

/* Section header pattern ------------------------------------- */

.section-header {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 3fr;
  gap: 48px;
  align-items: baseline;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-faint);
  margin-bottom: 64px;
}

.section-header__meta { display: flex; flex-direction: column; gap: 8px; }
.section-header__body { max-width: 720px; }
.section-header__body h2 { margin-bottom: 16px; }

@media (max-width: 768px) {
  .section-header { grid-template-columns: 1fr; gap: 16px; }
}

/* Buttons --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy-900);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-deep);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 250, 252, 0.4);
}

.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg { transform: translateX(3px); }

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Navigation ------------------------------------------------ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line-faint);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.6875rem;
  color: var(--gold-deep);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 14;
}

.nav__brand-mark {
  width: 36px;
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  font-size: 0.9375rem;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 2px;
  position: relative;
  font-weight: 450;
  transition: color 0.2s var(--ease-out);
}

.nav__link:hover { color: var(--gold-deep); }

.nav__link--has-submenu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__cta {
  margin-left: 12px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* Dropdown -------------------------------------------------- */

.nav__dropdown {
  position: relative;
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: var(--paper);
  border: 1px solid var(--line-faint);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-md);
}

.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--navy);
  border-radius: 2px;
  transition: background 0.2s var(--ease-out);
}

.nav__submenu a:hover { background: var(--cream); }
.nav__submenu a small {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--slate-muted);
  font-weight: 400;
}

/* Mobile drawer --------------------------------------------- */

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-drawer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer__links a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  padding: 12px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line-faint);
}

.mobile-drawer__footer { margin-top: 48px; }

/* Hero ------------------------------------------------------ */

.hero {
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero { padding: 128px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 32px 0 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__lede {
  font-size: 1.1875rem;
  color: var(--slate);
  margin-bottom: 40px;
  max-width: 50ch;
  line-height: 1.55;
}

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

.hero__meta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-faint);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

.hero__meta-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
}

/* Service cards --------------------------------------------- */

.service-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--cream-warm);
  border: 1px solid var(--line-faint);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
}

.service-card:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-4px);
  border-color: var(--navy);
}

.service-card:hover h3, .service-card:hover .service-card__num { color: var(--gold-soft); }
.service-card:hover p, .service-card:hover li { color: rgba(248, 250, 252, 0.8); }
.service-card:hover .service-card__arrow { color: var(--gold); }
.service-card:hover .service-card__viz path,
.service-card:hover .service-card__viz rect,
.service-card:hover .service-card__viz line,
.service-card:hover .service-card__viz circle {
  stroke: var(--gold-soft);
}

.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold-deep);
  transition: color 0.3s var(--ease-out);
}

.service-card__viz {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 72px;
  height: 72px;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-out);
}

.service-card h3 {
  font-size: 1.875rem;
  margin-top: 24px;
  transition: color 0.3s var(--ease-out);
}

.service-card ul {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.service-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-card__arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s var(--ease-out);
}

/* Stats band ------------------------------------------------ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--line-faint);
}

.stat:last-child { border-right: 0; }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__value em {
  font-style: italic;
  color: var(--gold-deep);
}

.stat__label {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--slate-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line-faint); }
  .stat:nth-child(2n) { border-right: 0; }
}

/* Process / Approach ---------------------------------------- */

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-faint);
}

.process__step {
  padding: 32px 24px 40px;
  border-right: 1px solid var(--line-faint);
  position: relative;
}

.process__step:last-child { border-right: 0; }

.process__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}

.process__label {
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 8px;
  margin-bottom: 12px;
  color: var(--navy);
}

.process__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: 0; border-bottom: 1px solid var(--line-faint); }
}

/* Work / Case study grid ------------------------------------ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.work-card {
  background: var(--cream);
  border: 1px solid var(--line-faint);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out);
  cursor: pointer;
}

.work-card:hover { transform: translateY(-4px); }

.work-card--lg { grid-column: span 7; }
.work-card--sm { grid-column: span 5; }
.work-card--full { grid-column: span 12; }
.work-card--half { grid-column: span 6; }

@media (max-width: 900px) {
  .work-card--lg, .work-card--sm, .work-card--half, .work-card--full {
    grid-column: span 12;
  }
}

.work-card__viz {
  aspect-ratio: 16 / 10;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.work-card__body { padding: 28px 32px 32px; }

.work-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--navy);
}

.work-card__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.55;
}

/* Testimonial ---------------------------------------------- */

.testimonial {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 26ch;
}

.testimonial em {
  font-style: italic;
  color: var(--gold-deep);
}

.testimonial__author {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-faint);
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.testimonial__meta-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial__meta-role {
  font-size: 0.875rem;
  color: var(--slate-muted);
}

/* Industries ----------------------------------------------- */

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-faint);
}

.industry {
  padding: 40px;
  border-right: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  transition: background 0.3s var(--ease-out);
  cursor: default;
}

.industry:hover { background: var(--cream-warm); }
.industry:nth-child(3n) { border-right: 0; }
.industry:nth-last-child(-n+3) { border-bottom: 0; }

.industry__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold-deep);
}

.industry__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.industry__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .industries { grid-template-columns: 1fr; }
  .industry { border-right: 0 !important; border-bottom: 1px solid var(--line-faint) !important; }
  .industry:last-child { border-bottom: 0 !important; }
}

/* FAQ ------------------------------------------------------ */

.faq { border-top: 1px solid var(--line-faint); }

.faq-item {
  border-bottom: 1px solid var(--line-faint);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 450;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 300;
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding-bottom: 32px;
  max-width: 72ch;
  color: var(--slate);
  font-size: 1rem;
}

/* Insights/Blog preview ------------------------------------ */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.3s var(--ease-out);
}

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

.insight-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--navy);
}

.insight-card__read {
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* CTA band --------------------------------------------------- */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-band h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-band p {
  color: rgba(248, 250, 252, 0.7);
  margin-top: 24px;
  font-size: 1.125rem;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}

@media (max-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Footer --------------------------------------------------- */

.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 96px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(40, 108, 255, 0.2);
}

@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand { color: var(--cream); }
.footer__brand h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer__brand p {
  color: rgba(248, 250, 252, 0.65);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  max-width: 40ch;
}

.footer__license {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}

.footer__col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease-out);
}

.footer__col a:hover { color: var(--gold-soft); }

.footer__contact p { color: rgba(248, 250, 252, 0.75); font-size: 0.9375rem; }
.footer__contact a { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(40, 108, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: all 0.3s var(--ease-out);
}

.footer__social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Form ----------------------------------------------------- */

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

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

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

.form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--navy);
  transition: border-color 0.2s var(--ease-out);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(40, 108, 255, 0.15);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

/* Page header (for inner pages) ---------------------------- */

.page-header {
  padding: 160px 0 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-faint);
  position: relative;
  overflow: hidden;
}

.page-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-top: 24px;
  max-width: 22ch;
}

.page-header__title em { font-style: italic; color: var(--gold-deep); }

.page-header__lede {
  font-size: 1.125rem;
  color: var(--slate);
  margin-top: 24px;
  max-width: 52ch;
}

.page-header__viz {
  width: 200px;
  height: 200px;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.breadcrumb a { color: var(--slate-muted); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span::before { content: "/"; margin-right: 8px; color: var(--line); }

@media (max-width: 768px) {
  .page-header { padding: 128px 0 64px; }
  .page-header__inner { grid-template-columns: 1fr; gap: 32px; }
  .page-header__viz { width: 140px; height: 140px; }
}

/* Prose (legal pages, blog posts) -------------------------- */

.prose {
  max-width: 72ch;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
}

.prose h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-top: 64px;
  margin-bottom: 16px;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}

.prose p { margin-bottom: 16px; max-width: none; }

.prose ul, .prose ol { margin: 16px 0 16px 24px; }
.prose li { margin-bottom: 8px; }

.prose a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.prose strong { color: var(--navy); font-weight: 600; }

/* Decorative / utility ------------------------------------- */

.gold-rule {
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 32px 0;
  width: 40px;
}

.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

/* Cookie banner -------------------------------------------- */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--navy);
  color: var(--cream);
  padding: 24px;
  z-index: 90;
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(100% + 48px));
  transition: transform 0.5s var(--ease-out);
  border: 1px solid var(--gold-deep);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner h4 {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 1rem;
}

.cookie-banner p {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Accessibility ------------------------------------------- */

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 1000;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus { top: 16px; }

/* Entry animations --------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > * { opacity: 0; transform: translateY(16px); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* Hero visual container ----------------------------------- */

.hero__viz {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Manifesto (tagline / mission / vision) --------------- */

.manifesto {
  background: var(--paper);
  position: relative;
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 64px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 72px;
  padding-bottom: 72px;
}

.manifesto__mark {
  width: 120px;
  height: 120px;
}

.manifesto__mark svg {
  width: 100%;
  height: 100%;
}

.manifesto__body {
  max-width: 920px;
}

.manifesto__tagline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 400;
  margin: 24px 0 48px;
  max-width: none;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.manifesto__tagline em {
  font-style: italic;
  color: var(--gold-deep);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-faint);
}

.manifesto__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.manifesto__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--navy);
  max-width: 42ch;
  font-weight: 400;
  font-variation-settings: "opsz" 36;
}

.manifesto__text em {
  font-style: italic;
  color: var(--gold-deep);
}

@media (max-width: 900px) {
  .manifesto__inner { grid-template-columns: 1fr; gap: 32px; }
  .manifesto__mark { width: 80px; height: 80px; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* About page ---------------------------------------------- */

.about-manifesto {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
  padding: 24px 0;
}

.about-manifesto__mark { width: 160px; height: 160px; }
.about-manifesto__mark svg { width: 100%; height: 100%; }

.about-manifesto__tagline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.about-manifesto__tagline em {
  font-style: italic;
  color: var(--gold-deep);
}

.about-manifesto__note {
  max-width: 48ch;
  margin-top: 24px;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-manifesto { grid-template-columns: 1fr; gap: 24px; }
  .about-manifesto__mark { width: 100px; height: 100px; }
}

/* Vision/Mission split ----------------------------------- */

.vm-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
}

.vm-split__divider {
  background: var(--line);
  width: 1px;
}

.vm-split__block { display: flex; flex-direction: column; gap: 16px; }

.vm-split__h {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-top: 8px;
}

.vm-split__lede {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--navy);
  max-width: 100%;
  font-weight: 400;
  font-variation-settings: "opsz" 48;
}

.vm-split__lede em, .vm-split__body em {
  font-style: italic;
  color: var(--gold-deep);
}

.vm-split__body {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 52ch;
}

@media (max-width: 900px) {
  .vm-split { grid-template-columns: 1fr; gap: 48px; }
  .vm-split__divider { display: none; }
}

/* Values grid -------------------------------------------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  padding: 40px 28px;
  border-right: 1px solid var(--line-faint);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card:last-child { border-right: 0; }

.value-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--navy);
}

.value-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--slate);
}

@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { border-right: 1px solid var(--line-faint); border-bottom: 1px solid var(--line-faint); }
  .value-card:nth-child(2n) { border-right: 0; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0 !important; }
}

/* Story -------------------------------------------------- */

.story {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 3fr;
  gap: 64px;
}

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

.story__body h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
}

.story__body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 16px;
  max-width: 64ch;
}

.story__signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold-deep);
}

@media (max-width: 768px) {
  .story { grid-template-columns: 1fr; gap: 24px; }
}

/* Credentials ------------------------------------------- */

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.credential {
  padding: 32px;
  border-right: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential:nth-child(3n) { border-right: 0; }
.credential:nth-last-child(-n+3) { border-bottom: 0; }

.credential__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

.credential__value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .credential { border-right: 0 !important; border-bottom: 1px solid var(--line-faint); }
  .credential:last-child { border-bottom: 0; }
}

/* Team --------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-faint);
  overflow: hidden;
}

.team-card__portrait {
  aspect-ratio: 5 / 6;
  background: var(--navy);
  overflow: hidden;
}

.team-card__portrait svg { width: 100%; height: 100%; display: block; }

.team-card__body { padding: 24px 28px 28px; }

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.team-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
}

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

/* Services hub - LOB rows --------------------------------- */

.lob-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.lob {
  display: grid;
  grid-template-columns: 160px 1fr 280px;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.lob__num {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lob__num > span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.lob__num-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
  margin-top: 12px;
}

.lob__body h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.lob__lede {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 24px;
  max-width: 58ch;
}

.lob__tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.lob__tags span {
  font-size: 0.875rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}

.lob__tags span::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.lob__viz {
  width: 100%;
  aspect-ratio: 5/3.5;
}

.lob__viz svg { width: 100%; height: 100%; }

@media (max-width: 1024px) {
  .lob { grid-template-columns: 80px 1fr; gap: 32px; }
  .lob__num > span:first-child { font-size: 2.5rem; }
  .lob__viz { display: none; }
}

@media (max-width: 600px) {
  .lob { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
}

/* Offer card grid ---------------------------------------- */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.offer-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.15;
}

.offer-card__blurb {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.55;
  max-width: 48ch;
}

.offer-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}

.offer-card__meta-item { display: flex; flex-direction: column; gap: 4px; }

.offer-card__meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

.offer-card__meta-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 450;
}

.offer-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-card__includes li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.offer-card__includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Capability grid (service pages) ------------------------ */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.capability {
  padding: 32px;
  background: var(--cream-warm);
  border: 1px solid var(--line-faint);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.capability p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: none;
  margin-bottom: 4px;
}

.capability ul {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.capability li {
  font-size: 0.875rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}

.capability li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 800px) {
  .capability-grid { grid-template-columns: 1fr; }
}

/* Stack grid --------------------------------------------- */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-faint);
}

.stack-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
}

.stack-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stack-col li {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 400;
}

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

@media (max-width: 500px) {
  .stack-grid { grid-template-columns: 1fr; }
}

/* PDPL callout -------------------------------------- */

.pdpl-callout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: start;
}

.pdpl-callout__viz { width: 140px; height: 140px; }
.pdpl-callout__viz svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .pdpl-callout { grid-template-columns: 1fr; gap: 24px; }
  .pdpl-callout__viz { width: 100px; height: 100px; }
}

/* Approach stages --------------------------------------- */

.approach-stages {
  display: flex;
  flex-direction: column;
}

.approach-stage {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.approach-stage:last-child { border-bottom: 1px solid var(--line); }

.approach-stage__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 120px;
  align-self: start;
}

.approach-stage__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}

.approach-stage__label {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.approach-stage__body h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 12px;
  color: var(--navy);
}

.approach-stage__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
  margin-bottom: 20px;
}

.approach-stage__body p {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 64ch;
}

.approach-stage__deliverables {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.approach-stage__deliverables h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
}

.approach-stage__deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.approach-stage__deliverables li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.approach-stage__deliverables li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 900px) {
  .approach-stage { grid-template-columns: 1fr; gap: 24px; }
  .approach-stage__left { position: static; flex-direction: row; align-items: baseline; }
  .approach-stage__num { font-size: 2.5rem; }
}

/* Tier grid --------------------------------------------- */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier__tag {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.tier h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  color: var(--navy);
  line-height: 1.2;
}

.tier p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: none;
}

.tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-faint);
}

.tier li {
  font-size: 0.875rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}

.tier li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

/* Principle list --------------------------------------- */

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.principle p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 768px) {
  .principle-list { grid-template-columns: 1fr; }
}

/* Industry detail list -------------------------------- */

.industry-detail-list {
  display: flex;
  flex-direction: column;
}

.industry-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.industry-detail:last-child { border-bottom: 1px solid var(--line); }

.industry-detail__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 120px;
  align-self: start;
}

.industry-detail__left h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.1;
}

.industry-detail__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
  margin-bottom: 32px;
  line-height: 1.4;
}

.industry-detail__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.industry-detail__cols h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.industry-detail__cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-detail__cols li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.industry-detail__cols li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .industry-detail { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .industry-detail__left { position: static; flex-direction: row; align-items: baseline; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .industry-detail__cols { grid-template-columns: 1fr; gap: 24px; }
}

/* Insights featured ------------------------------------ */

.insights-featured {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.insight-featured__meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.insight-featured__meta span:first-child {
  color: var(--gold-deep);
}

.insight-featured__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.insight-featured__lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 58ch;
}

.insight-featured-viz {
  aspect-ratio: 4 / 5;
}

.insight-featured-viz svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .insights-featured { grid-template-columns: 1fr; gap: 32px; }
  .insight-featured-viz { aspect-ratio: 3 / 2; }
}

/* Newsletter block ----------------------------------- */

.newsletter-block {
  margin-top: 96px;
  padding: 48px;
  background: var(--navy);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-radius: 2px;
}

.newsletter-block p { color: rgba(248, 250, 252, 0.75); }
.newsletter-block h3 { color: var(--cream) !important; }
.newsletter-block .eyebrow { color: var(--gold); }

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(40, 108, 255, 0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(248, 250, 252, 0.5); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }

.newsletter-form a { color: var(--gold) !important; }

@media (max-width: 768px) {
  .newsletter-block { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
}

/* Contact grid ------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrap { max-width: 640px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

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

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 20px 0 24px;
  max-width: 58ch;
}

.form-consent input[type="checkbox"] { margin-top: 4px; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
  margin: 12px 0 6px;
}

.contact-block p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
}

.contact-hours {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--slate);
}

.contact-hours__row span:first-child {
  color: var(--navy);
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Map block ---------------------------------------- */

.map-block {
  border: 1px solid var(--line);
  overflow: hidden;
}

/* Careers ------------------------------------------ */

.hire-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.hire-profile__block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.hire-profile__block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hire-profile__block li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.hire-profile__block li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hire-profile { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

.roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.role {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease-out);
}

.role:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.role__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 600;
}

.role__tag { color: var(--gold-deep); }

.role__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 4px;
}

.role__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .roles { grid-template-columns: 1fr; }
}

.hire-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hire-step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hire-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.hire-step h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
}

.hire-step p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
}

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

@media (max-width: 500px) {
  .hire-process { grid-template-columns: 1fr; }
}

/* Prose (legal pages, long-form) ------------------------ */

.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

.prose .prose__lede {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-faint);
  max-width: none;
}

.prose__toc {
  padding: 24px 32px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  margin-bottom: 48px;
}

.prose__toc h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
}

.prose__toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

.prose__toc li {
  counter-increment: toc;
  padding-left: 28px;
  position: relative;
  font-size: 0.875rem;
}

.prose__toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-deep);
  top: 2px;
}

.prose__toc a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
  display: inline-block;
  padding: 2px 0;
}

.prose__toc a:hover { color: var(--gold-deep); }

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

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  scroll-margin-top: 120px;
}

.prose h2:first-of-type { margin-top: 0; }

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.prose p {
  margin-bottom: 16px;
  max-width: none;
}

.prose ul,
.prose ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.prose ul { list-style: none; padding-left: 0; }

.prose ul li {
  padding-left: 20px;
  position: relative;
}

.prose ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.prose a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.prose a:hover { color: var(--gold-deep); }

.prose strong {
  color: var(--navy);
  font-weight: 600;
}

.prose__callout {
  padding: 24px 32px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  margin: 32px 0;
}

.prose__callout p { margin: 0; }

/* Logo cloud --------------------------------------------- */

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}

.logo-cloud__item {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-muted);
  opacity: 0.7;
  transition: opacity 0.3s var(--ease-out);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.logo-cloud__item:hover { opacity: 1; }

@media (max-width: 768px) {
  .logo-cloud { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
