/* ============================================================
   OUTREMER GLOBAL — STYLESHEET
   Apple / Linear Design Language
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --hero-bg:    #060C16;
  --navy:       #060C16;
  --navy-mid:   #0B1628;
  --gold:       #C89D4C;
  --gold-lt:    #D9B87A;
  --white:      #FFFFFF;
  --off-white:  #F9F8F6;
  --border:     #E5E0D8;
  --slate:      #3D4554;
  --slate-lt:   #6B7280;
  --text-muted: rgba(255,255,255,0.78);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w:      1280px;
  --pad-x:      clamp(1.5rem, 5vw, 5rem);
  --section-y:  clamp(5.5rem, 9vw, 9rem);
  --nav-h:      68px;
  --gap:        clamp(2.5rem, 5vw, 5rem);
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }
p { font-weight: 400; line-height: 1.8; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
h3, h4 { font-weight: 400; }
h1 { font-size: clamp(2.8rem, 5.5vw, 6rem); line-height: 0.95; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.0; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.1; }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }

.label,
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--slate);
  font-weight: 400;
}

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

section { padding: var(--section-y) 0; }

.section--white   { background: var(--white); }
.section--off     { background: var(--off-white); }
.section--navy    { background: var(--navy); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- Dividers --------------------------------------------- */
.gold-rule {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  display: block;
  margin-bottom: 2.5rem;
}
.border-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  display: block;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
  border-radius: 2px;
}
.btn--primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  transition: background 0.28s var(--ease), color 0.28s var(--ease);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  border-radius: 2px;
}
.btn--primary:hover,
.btn-primary:hover { background: #0f2040; }

.btn--gold,
.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  transition: background 0.28s var(--ease);
  cursor: pointer;
  border: none;
  border-radius: 2px;
}
.btn--gold:hover,
.btn-gold:hover { background: var(--gold-lt); }

.btn--outline,
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--navy);
  transition: border-color 0.28s, color 0.28s;
  border-radius: 2px;
}
.btn--outline:hover,
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-white,
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  transition: border-color 0.28s, color 0.28s;
  cursor: pointer;
  border-radius: 2px;
}
.btn--outline-white:hover,
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(6,12,22,0.22);
  color: var(--navy);
  transition: border-color 0.28s, color 0.28s;
  cursor: pointer;
  border-radius: 2px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.25s;
  gap: 0.45rem;
}
.btn-link:hover { color: var(--gold); }

.btn-full { width: 100%; justify-content: center; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-mark,
.nav__mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,157,76,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 400;
}
.nav__logo-text,
.nav__wordmark {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  transition: color 0.3s;
}
.nav.scrolled .nav__logo-text,
.nav.scrolled .nav__wordmark { color: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s;
  font-weight: 400;
}
.nav__link:hover,
.nav__link.active { color: rgba(255,255,255,0.95); }
.nav.scrolled .nav__link { color: rgba(6,12,22,0.72); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--navy); }

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  transition: background 0.28s;
  font-weight: 400;
  border-radius: 2px;
}
.nav__cta:hover { background: #0f2040; }
.nav.scrolled .nav__cta { background: var(--navy); color: var(--white); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav__burger span { background: var(--navy); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--pad-x);
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav__overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav__overlay-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  font-weight: 400;
}
.nav__overlay-link:hover { color: var(--gold); }
.nav__overlay-cta {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  transition: background 0.3s;
  font-weight: 400;
  border-radius: 2px;
}
.nav__overlay-cta:hover { background: var(--gold-lt); }

/* ============================================================
   HERO — deep dark
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-start;
  background: var(--hero-bg);
  overflow: hidden;
}

/* Remove dot-grid and vignette per brief */
.hero__grid-overlay { display: none; }
.hero::after { display: none; }

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
}

.hero__left {
  max-width: 740px;
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2.5rem;
  display: block;
}

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

/* Stats strip */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 3rem;
}
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 400;
}
.hero__stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  margin-right: 3rem;
  flex-shrink: 0;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.hero__scroll:hover { opacity: 0.6; }
.hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40%       { transform: scaleY(1); opacity: 1; transform-origin: top; }
  80%       { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* Mobile hero */
@media (max-width: 768px) {
  .hero__h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem; }
  .hero__stat-divider { display: none; }
  .hero__stat { padding-right: 0; width: 45%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PROBLEM SECTION — white, large bg numbers
   ============================================================ */
.problem { background: var(--white); }

.problem__header {
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  max-width: 800px;
}
.problem__header h2 { color: var(--navy); }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.problem__card {
  background: var(--white);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.problem__card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Large background number */
.problem__card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  color: rgba(6,12,22,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.problem__card:hover::before { color: rgba(200,157,76,0.06); }

.problem__num,
.problem__icon {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 400;
}
.problem__card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--navy);
}
.problem__card p { color: var(--slate); font-size: 0.95rem; line-height: 1.8; }

.problem__tagline {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 700px;
}
.problem__tagline-rule {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.75rem;
}
.problem__tagline p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
}

/* ============================================================
   POSITIONING SECTION — dark navy, 2-col pillars
   ============================================================ */
.positioning { background: var(--navy-mid); }

.positioning__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.positioning__left .section-label { color: rgba(200,157,76,0.9); }
.positioning__left .section-h2 { color: var(--white); margin-bottom: 1.75rem; }
.positioning__left p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
  line-height: 1.85;
}
.positioning__left .btn-link {
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  display: inline-flex;
}
.positioning__left .btn-link:hover { color: var(--gold); }

.positioning__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pillar {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: border-color 0.3s;
}
.pillar:hover { border-bottom-color: rgba(200,157,76,0.3); }
.pillar__num {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  padding-top: 0.2rem;
}
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.pillar p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  font-weight: 400;
}
.pillar:hover h4 { color: var(--gold); }

/* Positioning section headings */
.positioning .section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.0;
}

/* ============================================================
   CAPABILITY SECTION — off-white, 2-col spec grid
   ============================================================ */
.capability { background: var(--off-white); }

.capability__left { padding-right: 2rem; }
.capability__left h2,
.capability__left .section-h2 { color: var(--navy); margin-bottom: 1.5rem; }
.capability__left .body-text { max-width: 380px; }
.capability__left .section-label { color: var(--gold); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}

.spec-item {
  background: var(--white);
  padding: clamp(2rem, 3vw, 2.75rem);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-color 0.3s var(--ease), border-left-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.spec-item:hover {
  border-color: var(--border);
  border-left-color: var(--gold);
  transform: translateY(-2px);
}
.spec-item__label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.spec-item:hover .spec-item__label { color: var(--gold); }
.spec-item p { font-size: 0.9375rem; color: var(--slate); line-height: 1.8; font-weight: 400; }

/* Capability section — standalone heading layout */
.capability .section-label { color: var(--gold); }
.capability > .container > .section-label,
.capability > .container > h2,
.capability > .container > .section-h2,
.capability > .container > p.section-intro { max-width: 600px; }

/* ============================================================
   OUTCOMES SECTION — dark #060C16, huge metric numbers
   ============================================================ */
.outcomes { background: var(--hero-bg); }

.outcomes .section-label { color: rgba(200,157,76,0.9); }
.outcomes .section-h2,
.outcomes__header h2 { color: var(--white); }
.outcomes__header { margin-bottom: clamp(3rem, 5vw, 5rem); }

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.outcome-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3.5vw, 3rem);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.outcome-card:hover {
  border-color: rgba(200,157,76,0.35);
  background: rgba(255,255,255,0.07);
}

.outcome-card__metric {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.outcome-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.72); line-height: 1.8; }

.testimonial {
  border-left: 2px solid var(--gold);
  padding: 2.5rem 3rem;
  background: rgba(255,255,255,0.03);
  max-width: 860px;
  border-radius: 0 2px 2px 0;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-size: 0.925rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.60);
  font-style: normal;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================================
   CREDIBILITY SECTION — white, 2-col
   ============================================================ */
.credibility { background: var(--white); }

.credibility__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.credibility__left .section-label { color: var(--gold); }
.credibility__left .section-h2 { color: var(--navy); margin-bottom: 1.75rem; }
.credibility__left p {
  color: var(--slate);
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
  line-height: 1.85;
}
.credibility__left .btn-link { margin-top: 0.5rem; }

.credibility__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.5rem;
}

.cred-stat {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.cred-stat:last-child { border-bottom: 1px solid var(--border); }
.cred-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.cred-stat p { font-size: 0.9375rem; color: var(--slate); line-height: 1.7; }

/* Credibility card variants (legacy) */
.credibility__card {
  background: var(--off-white);
  padding: clamp(2.5rem, 4vw, 4rem);
}
.credibility__card.heading-card h2 { margin-bottom: 0; }
.market-label {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.credibility__card p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
}
.credibility__footer {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.credibility__footer-rule {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.65rem;
}
.credibility__footer p { color: var(--slate); font-size: 0.95rem; }

/* ============================================================
   INSIGHTS SECTION (home) — white
   ============================================================ */
.insights-section { background: var(--white); }

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

.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.insight-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.insight-cat,
.insight-card__meta {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.insight-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.insight-card p,
.insight-excerpt {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1.75rem;
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.insight-date { font-size: 0.9rem; color: var(--slate-lt); }
.insight-arrow {
  width: 16px;
  height: 16px;
  color: var(--gold);
  transition: transform 0.25s;
}
.insight-card:hover .insight-arrow { transform: translateX(4px); }
.insight-card .btn-link { color: var(--navy); margin-top: auto; }
.insight-card:hover .btn-link { color: var(--gold); }

/* ============================================================
   CTA BAND — very dark, centered, italic serif heading
   ============================================================ */
.cta-band { background: var(--navy-mid); }

.cta-band__inner {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.cta-band__inner .section-label {
  display: block;
  text-align: center;
  color: rgba(200,157,76,0.9);
}
.cta-band__inner h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
}
.cta-band__inner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   CONTACT SECTION — off-white
   ============================================================ */
.contact { background: var(--off-white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.contact__left .section-label { color: var(--gold); }
.contact__left .section-h2 { margin-bottom: 1rem; color: var(--navy); }
.contact__left > p {
  color: var(--slate);
  font-size: 0.975rem;
  line-height: 1.85;
  max-width: 400px;
}
.contact__details { margin-top: 2.5rem; }
.contact__row {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.contact__label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-lt);
  font-weight: 400;
  flex-shrink: 0;
  width: 4.5rem;
}
.contact__row a,
.contact__row span {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 400;
  transition: color 0.25s;
}
.contact__row a:hover { color: var(--gold); }

/* Legacy contact variants */
.contact__left h2 { margin-bottom: 1.5rem; }
.contact__left p { color: var(--slate); margin-bottom: 2.5rem; max-width: 400px; }
.contact__info { margin-top: 3rem; }
.contact__info-row {
  display: flex;
  gap: 2rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.contact__info-label {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-lt);
  font-weight: 400;
  width: 5rem;
  flex-shrink: 0;
}
.contact__info-value { font-size: 0.9rem; color: var(--navy); }
.contact__info-value a { transition: color 0.25s; }
.contact__info-value a:hover { color: var(--gold); }

/* Form */
.form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.form-row,
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field + .form-field,
.form-row + .form-field,
.form-field + .form-row { margin-top: 0; }

.form-field input,
.form-field textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navy);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--slate-lt); }
.form-field input:focus,
.form-field textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--gold); }

.form__submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.925rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: background 0.28s;
  border-radius: 2px;
}
.form__submit:hover { background: #0f2040; }

.form__success {
  display: none;
  padding: 3rem 0;
}
.form__success h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.form__success p { color: var(--slate); }

.form-msg { font-size: 0.9rem; min-height: 1.2em; }
.form-msg.success { color: #5a8a5a; }
.form-msg.error   { color: #c0504d; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: clamp(4rem, 7vw, 6rem) 0 2.5rem; }

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--gap);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2.5rem;
}
.footer__brand .nav__logo-mark { border-color: rgba(200,157,76,0.35); }
.footer__brand .nav__logo-text { color: rgba(255,255,255,0.68); }
.footer__tagline {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.75;
  max-width: 240px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col-label {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.footer__col a,
.footer__col span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s;
  display: block;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.18);
}

/* Legacy footer structure */
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer__mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,157,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
}
.footer__name {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  font-weight: 400;
}
.footer__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.75;
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  transition: color 0.25s;
  font-weight: 400;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__contact a,
.footer__contact span {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.25s;
}
.footer__contact a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADERS (inner pages) — dark navy
   ============================================================ */
.page-header {
  background: var(--hero-bg);
  padding: calc(var(--nav-h) + 6rem) 0 clamp(4rem, 7vw, 7rem);
}
.page-header__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: end;
}
.page-header .section-label { color: rgba(200,157,76,0.9); }
.page-header h1,
.page-header__h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.page-header__sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  max-width: 560px;
}

/* ============================================================
   SECTION HEADING UTILITIES
   ============================================================ */
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.75rem;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.section-intro {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--slate);
  max-width: 680px;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
}
.section-cta { margin-top: clamp(3rem, 5vw, 4.5rem); text-align: center; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--white); }

.service-list { }
.service-item {
  border-bottom: 1px solid var(--border);
}
.service-trigger,
.service-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  text-align: left;
  cursor: pointer;
  gap: 2rem;
  transition: color 0.25s;
}
.service-trigger__left {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  flex: 1;
}
.service-num,
.service-trigger__num {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  width: 2rem;
}
.service-main { flex: 1; }
.service-title,
.service-trigger__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  display: block;
  transition: color 0.25s;
  letter-spacing: -0.02em;
}
.service-focus {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-lt);
  font-weight: 400;
}
.service-trigger:hover .service-title,
.service-trigger:hover .service-trigger__title { color: var(--gold); }

.service-icon,
.service-trigger__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  line-height: 1;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 0.4rem;
}
.service-icon::before,
.service-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s;
}
.service-icon::before { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
.service-icon::after  { width: 100%; height: 1px; top: 50%; transform: translateY(-50%); }
.service-item.open .service-icon::before { transform: translateX(-50%) rotate(90deg); }
.service-item.open .service-trigger__icon { transform: rotate(45deg); }

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.service-body-inner {
  padding: 0 0 2.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.service-body__inner {
  padding: 0 0 3rem 0;
}
.service-body__intro {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  max-width: 750px;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.service-detail h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-detail p { font-size: 0.9375rem; color: var(--slate); line-height: 1.8; }

.service-cap-label,
.service-outcome-label {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.service-cap-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-cap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.service-cap-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-outcome-right {
  border-left: 1px solid var(--border);
  padding-left: 2.5rem;
}
.service-outcome-right p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
}

/* Delivery section (services page) */
.delivery { background: var(--off-white); }
.delivery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}
.delivery__card {
  background: var(--white);
  padding: clamp(2.25rem, 3.5vw, 3.25rem);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.delivery__card:hover {
  border-color: rgba(200,157,76,0.35);
  transform: translateY(-2px);
}
.delivery__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.7;
}
.delivery__card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.delivery__card p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.8;
}

/* Legacy delivery block */
.delivery-block {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.delivery-block h2 { }
.delivery-block p { color: var(--slate); font-size: 0.975rem; line-height: 1.85; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Overview */
.about-overview { background: var(--white); }
.about-overview__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.about-overview__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.about-overview__text p {
  color: var(--slate);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-overview__stats {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.about-stat p { font-size: 0.9375rem; color: var(--slate); line-height: 1.7; }

/* Journey section */
.journey { background: var(--off-white); }
.journey__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.journey-card {
  background: var(--white);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.journey-card:hover {
  border-color: rgba(200,157,76,0.35);
  transform: translateY(-2px);
}
.journey-card__phase,
.journey-num {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  display: block;
}
.journey-location {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.journey-card h3,
.journey-card h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.journey-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.8; }
.journey-credit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.journey-credit-rule { width: 2rem; height: 1px; background: var(--gold); flex-shrink: 0; }
.journey-credit span { font-size: 0.9rem; color: var(--slate); }

/* Beliefs */
.beliefs { background: var(--white); }
.beliefs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}
.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.belief-card {
  background: var(--off-white);
  padding: clamp(2.5rem, 3.5vw, 3.5rem);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.belief-card:hover { border-color: rgba(200,157,76,0.3); }
.belief-card__num,
.belief-num {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2rem;
  display: block;
  text-transform: uppercase;
}
.belief-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.belief-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.8;
}

/* Structure */
.structure { background: var(--off-white); }
.structure__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.structure__left .section-label { color: var(--gold); }
.structure__left p {
  color: var(--slate);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.structure__right {
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.structure-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.structure-item__marker {
  color: var(--gold);
  font-weight: 400;
  padding-top: 0.2rem;
}
.structure-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.structure-item p { font-size: 0.9375rem; color: var(--slate); line-height: 1.8; }

/* Structure list (legacy) */
.structure-list { border-top: 1px solid var(--border); }
.structure-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.structure-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.structure-row p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
}

/* Global reach / markets */
.global-reach { background: var(--white); }
.markets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}
.market-card {
  padding: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border);
  transition: border-top-color 0.3s, border-color 0.3s;
}
.market-card:hover { border-top-color: var(--gold); border-color: rgba(200,157,76,0.2); }
.market-card__label {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}
.market-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}
.market-card p { font-size: 0.9375rem; color: var(--slate); line-height: 1.8; }

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-featured { background: var(--white); padding-bottom: 0; }
.featured-article {
  border-top: 1px solid var(--border);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  max-width: 860px;
}
.featured-article__meta {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.75rem;
}
.featured-article__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.featured-article__excerpt {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.insights-all { background: var(--off-white); }

/* ============================================================
   SCROLL ANIMATIONS — cleaner, faster
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   CALENDLY MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,12,22,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
}
.modal__sub {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-top: 0.2rem;
}
.modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-lt);
  transition: color 0.25s;
  flex-shrink: 0;
}
.modal__close:hover { color: var(--navy); }
.modal__close svg { width: 14px; height: 14px; }
.modal__body { flex: 1; overflow: hidden; }
.modal__body iframe { width: 100%; height: 600px; border: none; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .outcomes__grid { grid-template-columns: repeat(2, 1fr); }
  .page-header__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .delivery-block { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .positioning__inner  { grid-template-columns: 1fr; }
  .credibility__inner  { grid-template-columns: 1fr; }
  .about-overview__inner { grid-template-columns: 1fr; }
  .structure__inner    { grid-template-columns: 1fr; }
  .footer__top         { grid-template-columns: 1fr; }
  .footer__cols        { grid-template-columns: 1fr 1fr; }
  .delivery__grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-y: clamp(3.5rem, 7vw, 5rem); }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__wordmark { display: none; }

  .hero__og { display: none; }
  .hero__content { max-width: 100%; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .problem__grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .journey__grid { grid-template-columns: 1fr; }
  .journey-grid  { grid-template-columns: 1fr; }
  .beliefs__grid { grid-template-columns: 1fr; }
  .belief-grid   { grid-template-columns: 1fr; }
  .markets       { grid-template-columns: 1fr; }
  .delivery__grid { grid-template-columns: 1fr; }
  .spec-grid     { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer__cols  { grid-template-columns: 1fr; }
  .footer__top   { grid-template-columns: 1fr; }

  .positioning__inner  { grid-template-columns: 1fr; }
  .credibility__inner  { grid-template-columns: 1fr; }
  .about-overview__inner { grid-template-columns: 1fr; }
  .structure__inner    { grid-template-columns: 1fr; }

  .cta-band__actions { flex-direction: column; align-items: center; }
  .hero__actions     { flex-direction: column; align-items: flex-start; }
  .footer__bottom    { flex-direction: column; text-align: center; }

  .page-header { padding-top: calc(var(--nav-h) + 3.5rem); }
  .delivery-block { grid-template-columns: 1fr; }

  .service-body-inner { grid-template-columns: 1fr; padding-left: 2.5rem; }
  .service-outcome-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.5rem; }

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

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .outcomes__grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .btn-primary, .btn-gold, .btn-ghost, .btn-outline { width: 100%; justify-content: center; }
  .service-trigger__title { font-size: 1.25rem; }
}

/* ============================================================
   UTILITY — responsive line breaks
   ============================================================ */
.br-lg { display: none; }
@media (min-width: 768px) { .br-lg { display: inline; } }

/* ── Icons ──────────────────────────────────────── */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: inherit;
  transition: color 0.25s;
}

/* Problem card icons */
.problem__icon .icon { margin-right: 0.5rem; color: var(--gold); }

/* Pillar icons */
.pillar .icon { color: var(--gold); opacity: 0.8; margin-bottom: 0.75rem; display: block; }
.pillar:hover .icon { opacity: 1; }

/* Spec item icons */
.spec-item .icon { color: var(--gold); margin-bottom: 0.75rem; display: block; }

/* Outcome card icons */
.outcome-card .icon { color: var(--gold); opacity: 0.7; display: block; margin-top: 0.75rem; }

/* Hero stat icons */
.hero__stat .icon { color: var(--gold); opacity: 0.6; margin-bottom: 0.25rem; display: block; }

/* Service trigger icon */
.service-trigger__icon-svg {
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.25s, color 0.25s;
}
.service-trigger:hover .service-trigger__icon-svg { opacity: 1; color: var(--gold); }
.service-item.open .service-trigger__icon-svg { color: var(--gold); opacity: 1; }

/* Delivery card icons */
.delivery__card .icon {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}
.delivery__card:hover .icon { opacity: 1; }

/* Journey card icons */
.journey-card .icon { color: var(--gold); opacity: 0.6; margin-bottom: 0.75rem; display: block; }

/* Structure item arrow */
.structure-item__marker .icon { color: var(--gold); }

/* Founder portrait */
.founder-portrait {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.founder-portrait__img {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.founder-portrait__initials {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: absolute;
  inset: 0;
}
.founder-portrait__ring {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(200,157,76,0.3);
  border-radius: 50%;
}
.founder-portrait__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.founder-portrait__title {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-lt);
}

/* Footer contact rows */
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s;
}
.footer__contact-row:hover { color: var(--gold); }
.footer__contact-row .icon { opacity: 0.6; }

/* =====================================================
   PROFESSIONAL IMAGERY — Insights, About, Index, Services
   ===================================================== */

/* --- Insight card image thumbnail --- */
.insight-card__img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 2px 2px 0 0;
}
.insight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.insight-card:hover .insight-card__img img {
  transform: scale(1.05);
}

/* --- Featured article cover image --- */
.featured-article__cover {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}
.featured-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.featured-article:hover .featured-article__cover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .featured-article__cover { height: 240px; }
}

/* --- About visual image strip --- */
.about-visual {
  padding: 0;
  overflow: hidden;
}
.about-visual__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 440px;
}
.about-visual__panel {
  position: relative;
  overflow: hidden;
}
.about-visual__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-visual__panel:hover img {
  transform: scale(1.05);
}
.about-visual__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(6,12,22,0.55);
  padding: 0.3rem 0.7rem;
  border-radius: 1px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .about-visual__strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .about-visual__panel {
    height: 240px;
  }
}

/* --- Index proof strip --- */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.proof-strip__img-col {
  overflow: hidden;
}
.proof-strip__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.proof-strip:hover .proof-strip__img-col img {
  transform: scale(1.04);
}
.proof-strip__quote-col {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.proof-strip__quote-col .section-label {
  color: var(--gold);
}
.proof-strip__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
  border: none;
  padding: 0;
}
.proof-strip__attr {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
@media (max-width: 900px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }
  .proof-strip__img-col {
    height: 300px;
  }
}

/* --- Pillar card image --- */
.pillar-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border-radius: 2px;
}
.pillar-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: grayscale(20%);
}
.pillar-card:hover .pillar-card__img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .pillar-card__img { height: 160px; }
}

/* --- Service accordion image --- */
.service-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-item.open .service-img img {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .service-img { height: 200px; }
}
.footer__contact-row:hover .icon { opacity: 1; }

/* ======================================================
   SCROLL SPLIT — full-screen image → half-section reveal
   ====================================================== */

.scroll-split-wrapper {
  height: 250vh;
  position: relative;
}

.scroll-split {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--off-white);
}

.scroll-split__img-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  overflow: hidden;
  will-change: width;
  z-index: 1;
}

.scroll-split__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.scroll-split__content {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  transform: translateX(100%);
  opacity: 0;
  will-change: transform, opacity;
  z-index: 2;
}

.scroll-split__content .section-label {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.scroll-split__content h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-style: italic;
}

.scroll-split__content p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2rem;
}

.scroll-split__content .btn-link {
  align-self: flex-start;
}

/* Dark variant */
.scroll-split--dark {
  background: var(--navy);
}

.scroll-split--dark .scroll-split__content {
  background: var(--navy);
}

.scroll-split--dark .scroll-split__content h2 {
  color: var(--white);
}

.scroll-split--dark .scroll-split__content .section-label {
  color: var(--gold);
}

.scroll-split--dark .scroll-split__content p {
  color: rgba(255, 255, 255, 0.78);
}

.scroll-split__blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.scroll-split__attr {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2.5rem;
}

/* Mobile: static stacked layout */
@media (max-width: 767px) {
  .scroll-split-wrapper {
    height: auto;
  }
  .scroll-split {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .scroll-split__img-wrap {
    position: static;
    width: 100% !important;
    height: 300px;
  }
  .scroll-split__content {
    position: static;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    padding: 3rem 1.5rem;
  }
}

/* ======================================================
   SCROLL SPLIT — OVERLAY VARIANT
   Image stays full-screen; dark veil fades in; text rises
   ====================================================== */

.scroll-split--overlay .scroll-split__img-wrap {
  width: 100vw !important; /* never clips — always full-screen */
}

/* Dark veil layer that fades over the image */
.scroll-split__veil {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 22, 0);
  z-index: 2;
  will-change: background;
  pointer-events: none;
}

/* Content sits over the image, pinned to lower-left */
.scroll-split--overlay .scroll-split__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 820px;
  background: transparent;
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 7vw, 7rem);
  transform: translateY(70px);
  opacity: 0;
  z-index: 3;
}

.scroll-split--overlay .scroll-split__content .section-label {
  color: var(--gold);
}

.scroll-split--overlay .scroll-split__blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.scroll-split--overlay .scroll-split__attr {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
  display: block;
}

/* Mobile fallback */
@media (max-width: 767px) {
  .scroll-split--overlay .scroll-split__img-wrap {
    height: 300px;
  }
  .scroll-split--overlay .scroll-split__content {
    position: static;
    background: var(--navy);
    transform: none !important;
    opacity: 1 !important;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
  }
  .scroll-split__veil {
    display: none;
  }
}
