/* ============================================
   STRATAVYA — Design System
   Colors: Deep Teal #0F5B5B / Dark Navy #0F2027 / Gold #C8A24D
   Type: Cormorant Garamond (headings) / Inter (body)
   ============================================ */

:root {
  --teal: #0F5B5B;
  --teal-dark: #0A4444;
  --navy: #0F2027;
  --gold: #C8A24D;
  --gold-light: #D9BC7A;
  --warm-white: #FCFCFB;
  --soft-grey: #F4F5F5;
  --ink: #16211F;
  --ink-soft: #4B5A57;
  --line: #E3E6E4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --space-xs: 0.4rem;
  --space-sm: 0.8rem;
  --space-md: 1.6rem;
  --space-lg: 3.2rem;
  --space-xl: 5.6rem;
  --space-2xl: 8rem;

  --radius-pill: 999px;
  --radius-card: 14px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* { box-sizing: border-box; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.section-dark .eyebrow,
.section-dark p,
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--warm-white); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark p { color: rgba(252, 252, 251, 0.72); }

.lede {
  font-size: 1.2rem;
  max-width: 640px;
  color: var(--ink-soft);
}
.lede-large {
  font-size: 1.75rem;
  max-width: 780px;
  line-height: 1.5;
  color: var(--navy);
  font-family: var(--font-display);
}
.lede-wide {
  max-width: none;
  width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--navy);
  color: var(--warm-white);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Nav CTA specifically: dark teal (not navy) */
.nav .btn-primary {
  background: var(--teal);
}
.nav .btn-primary:hover {
  background: var(--teal-dark);
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--warm-white);
}
.btn-outline:hover { border-color: var(--warm-white); background: rgba(255,255,255,0.06); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-outline-dark:hover { border-color: var(--navy); }

/* ---------- Navigation ---------- */
body { padding-top: var(--nav-h, 106px); }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  padding: 14px clamp(1rem, 3vw, 2rem) 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.5rem;
  background: rgba(252,252,251,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(15,32,39,0.10);
  padding: 0 1.75rem;
  height: 92px;
  max-width: 1260px;
  margin: 0 auto;
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.nav.scrolled .nav-inner {
  height: 78px;
  box-shadow: 0 14px 34px rgba(15,32,39,0.18);
  backdrop-filter: saturate(200%) blur(18px);
}
.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 64px; width: auto; transition: height 0.35s var(--ease); }
.nav.scrolled .brand img { height: 54px; }
.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2.3rem; /* equal visual gap between every item, Home through Perspectives */
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding-bottom: 6px;
  display: inline-block;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; animation: navActiveGrow 0.6s var(--ease) 0.1s both; }
@keyframes navActiveGrow { from { width: 0; } to { width: 100%; } }

.nav-cta { display: flex; align-items: center; gap: 1.25rem; }
.nav .btn-primary {
  background: var(--navy);
  color: var(--warm-white);
  padding: 0.85rem 1.6rem;
  font-size: 0.76rem;
}
.nav .btn-primary:hover { background: var(--teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile right-side drawer */
.nav-drawer-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(10,31,31,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.nav-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 260;
  width: min(320px, 82vw);
  background: var(--warm-white);
  box-shadow: -14px 0 40px rgba(0,0,0,0.18);
  padding: calc(var(--nav-h, 106px) + 0.5rem) 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-links { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; }
.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0.15rem;
  font-size: 1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.nav-drawer-links a.active { color: var(--teal); font-weight: 600; }
.nav-drawer-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }
.nav-drawer-icon svg { width: 100%; height: 100%; }
.nav-drawer-cta { margin-top: auto; justify-content: center; width: 100%; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (min-width: 901px) {
  .nav-drawer, .nav-drawer-overlay { display: none; }
}
@media (max-width: 480px) {
  .brand img { height: 62px; }
  .nav.scrolled .brand img { height: 52px; }
  .nav-inner { height: 76px; padding: 0 1.1rem; }
  .nav.scrolled .nav-inner { height: 66px; }
}

/* ---------- Sections ---------- */
.section {
  padding: var(--space-xl) 0;
}
.section-tight { padding: var(--space-lg) 0; }
.section-grey { background: var(--soft-grey); }
.section-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-dark::before,
.section-dark::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.section-dark::before { width: 520px; height: 520px; right: -180px; top: -140px; }
.section-dark::after { width: 340px; height: 340px; left: -120px; bottom: -160px; }
.section-dark .container { position: relative; z-index: 1; }

.hero { padding-top: var(--space-2xl); padding-bottom: var(--space-xl); }
.hero-tight { padding-bottom: var(--space-md); }

.italic-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.45;
  max-width: 760px;
  margin-bottom: 1.5rem;
}

@media (max-width: 780px) {
  .section { padding: var(--space-lg) 0; }
  .hero { padding-top: 3.5rem; }
}

/* ---------- Grids & Cards ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; }
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.9rem;
}
.section-grey .card, .section-dark .card { background: var(--warm-white); }
.section-dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section-dark .card h2, .section-dark .card h3, .section-dark .card p { color: var(--warm-white); }
.section-dark .card p { color: rgba(252,252,251,0.7); }

.card-label {
  font-size: 1.44rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
  display: block;
}
.section-dark .card-label { color: var(--gold-light); }

.card h3 { margin-bottom: 1rem; }
.card-title-large { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1.1rem; color: var(--navy); }

/* Pledge banner (About page) — full width beneath Mission/Vision */
.pledge-card {
  grid-column: 1 / -1;
  background: var(--teal-dark);
  border: none;
}
.pledge-card .card-label { color: var(--gold-light); }
.pledge-card p.card-title-large {
  color: var(--warm-white);
  max-width: 720px;
  margin: 0;
}

/* Fit card (Industries) — text fills the box, justified */
.fit-card p.card-title-large {
  max-width: none;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
}

.dim-badge {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--soft-grey);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.dim-card { text-align: left; }

.list-clean { list-style: none; margin: 0; padding: 0; }
.list-clean li {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.list-clean li:first-child { border-top: none; }
.section-dark .list-clean li { border-top-color: rgba(255,255,255,0.12); color: rgba(252,252,251,0.75); }

.bullets-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
@media (max-width: 640px) { .bullets-2col { grid-template-columns: 1fr; } }
.bullets-2col ul { list-style: none; margin: 0; padding: 0; }
.bullets-2col li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.96rem;
  color: rgba(252,252,251,0.82);
}
.bullets-2col li::before {
  content: '';
  position: absolute; left: 0; top: 1.35rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.bullets-2col li:first-child { border-top: none; }

/* Light-background equivalent (used inside white/grey cards) */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
@media (max-width: 640px) { .two-col-list { grid-template-columns: 1fr; } }
.two-col-list .list-clean { margin: 0; }

/* Numbered statements */
.numbered-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) { .numbered-list { grid-template-columns: 1fr; } }
.numbered-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.numbered-item:nth-child(-n+2) { border-top: 1px solid var(--line); }
.numbered-item span.num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  flex-shrink: 0;
  width: 2rem;
}
.numbered-item p { margin: 0; color: var(--ink); font-size: 1.02rem; }

/* Phase / process blocks (Framework page) */
.phase-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  margin-bottom: 1.4rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
}
@media (max-width: 780px) {
  .phase-block { grid-template-columns: 1fr; gap: 1.25rem; }
}
.phase-label { color: var(--gold-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem; }
.phase-block h3 { color: var(--warm-white); font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.phase-content > p:first-of-type { font-family: var(--font-display); font-size: 1.3rem; color: var(--warm-white); margin-bottom: 0.4rem; }
.phase-content > p:nth-of-type(2) { color: rgba(252,252,251,0.65); margin-bottom: 1.5rem; }

/* Blockquote */
blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--navy);
}
.section-dark blockquote { color: var(--warm-white); }

/* Pills (Industries) */
.pill-tag {
  display: inline-flex;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--warm-white);
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0.6rem 0.6rem 0;
}
.pill-wrap { display: flex; flex-wrap: wrap; }

/* Two-col text blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 780px) { .split { grid-template-columns: 1fr; gap: 1.5rem; } }

/* CTA banner */
.cta-actions { display: flex; gap: 1rem; margin-top: 2.25rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
/* Footer — dark rounded card floating on the page background */
.footer {
  padding: 3rem 0 3.5rem;
  background: var(--warm-white);
}
.footer-card {
  background: #0a1f1f;
  border-radius: 24px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 3.4rem 3rem 0;
  overflow: hidden;
}
@media (max-width: 640px) { .footer-card { padding: 2.6rem 1.5rem 0; border-radius: 18px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem 3rem;
  padding-bottom: 2.6rem;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand {
  display: inline-flex;
  margin-bottom: 1.1rem;
  background: var(--warm-white);
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
}
.footer-brand .brand img { height: 230px; width: auto; display: block; }
.footer-blurb { color: rgba(252,252,251,0.68); font-size: 0.92rem; line-height: 1.6; max-width: 260px; margin: 0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.85rem; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(252,252,251,0.82);
  font-size: 0.94rem;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--warm-white); }
.footer-link-arrow {
  display: inline-block;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-col a:hover .footer-link-arrow { opacity: 1; transform: translateX(0); }

.footer-connect li { display: flex; align-items: flex-start; gap: 0.65rem; color: rgba(252,252,251,0.82); font-size: 0.94rem; margin-bottom: 0.95rem; }
.footer-connect a { display: flex; align-items: flex-start; gap: 0.65rem; color: rgba(252,252,251,0.82); }
.footer-connect a:hover { color: var(--warm-white); }
.footer-connect-icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--gold); margin-top: 0.15rem; }
.footer-connect-icon svg { width: 100%; height: 100%; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(252,252,251,0.10);
  font-size: 0.8rem;
  color: rgba(252,252,251,0.55);
  letter-spacing: 0.02em;
}

/* Card hover lift — subtle, premium */
.card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 32, 39, 0.08);
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 1.25rem; } }
.form-row-phone { grid-template-columns: 110px 1fr; }
@media (max-width: 560px) { .form-row-phone { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(15, 91, 91, 0.28);
  border-radius: 10px;
  background: var(--soft-grey);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--warm-white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.form-submit-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.side-card { margin-bottom: 1.5rem; }
.side-card p { margin-bottom: 0.7rem; font-size: 0.95rem; }
.side-card .muted { color: #8b968f; font-size: 0.82rem; }
.map-placeholder {
  height: 160px;
  background: var(--soft-grey);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b968f;
  font-size: 0.85rem;
  text-align: center;
}
.next-steps li { margin-bottom: 1rem; font-size: 0.95rem; color: var(--ink-soft); }
.next-steps b { color: var(--navy); }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { color: var(--teal); }
.form-status.error { color: #a33; }

/* ---------- Home page ---------- */
.img-placeholder {
  background: var(--soft-grey);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8b968f;
  font-size: 0.85rem;
  padding: 1.5rem;
  line-height: 1.5;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.home-hero-media {
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-media { order: -1; }
}

.why-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.home-why-media {
  aspect-ratio: 1390/745;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.home-why-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .why-section { grid-template-columns: 1fr; }
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .home-cards-grid { grid-template-columns: 1fr; }
}
.home-card {
  display: block;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
}
.home-card .home-card-media { aspect-ratio: 4/5; overflow: hidden; border-bottom: 1px solid var(--line); }
.home-card .home-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.home-card:hover .home-card-media img { transform: scale(1.04); }
.home-card-body { padding: 1.9rem; }
.home-card-body h3 { margin-bottom: 0.6rem; }
.home-card-body p { font-size: 0.95rem; margin-bottom: 1.1rem; }
.home-card-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.home-card:hover .home-card-arrow { gap: 0.6rem; }

.home-close {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.home-close p.line1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: rgba(252,252,251,0.75);
  margin-bottom: 0.3rem;
}
.home-close p.line2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--warm-white);
  margin-bottom: 2.25rem;
  font-weight: 500;
  line-height: 1.15;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Generic hero split (image + content) — reusable across pages ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-split-media {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.hero-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-media { order: -1; }
}

/* ---------- Editorial centered section ---------- */
.editorial-section {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.editorial-section h2 { margin-bottom: 2.25rem; }
.editorial-lines p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.editorial-section .lede {
  max-width: none;
  margin: 1.75rem auto 0;
  text-align: center;
}
.editorial-close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--teal);
  margin-top: 1.75rem;
}

/* Dimension cards with description (Framework page) */
.dim-card p { font-size: 0.92rem; margin-top: 0.4rem; }

/* Benefit cards (equal, minimal) */
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.92rem; margin: 0; }

/* ---------- About Us page ---------- */
body.about-page p { text-align: justify; }
body.about-page .eyebrow,
body.about-page .card-label { text-align: left; }

.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0.55;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,31,31,0.5); /* dark teal green layer, 50% */
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero h1 { max-width: 820px; margin-bottom: 0.9rem; color: var(--warm-white); }
.about-hero .eyebrow { color: var(--gold-light); }
.about-hero .editorial-lines { margin: 0 0 1rem; text-align: left; }
.about-hero .editorial-lines p {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  color: rgba(252,252,251,0.85);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.about-hero p.lede { max-width: 720px; margin-top: 0; color: rgba(252,252,251,0.75); }

/* Meaning of Stratavya — 3 columns with subtle bg texture */
.meaning-section {
  position: relative;
  overflow: hidden;
}
.meaning-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.meaning-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}
.meaning-section .container { position: relative; z-index: 1; }
.meaning-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 780px) {
  .meaning-columns { grid-template-columns: 1fr; gap: 2.5rem; }
}
.meaning-col h3 { margin-bottom: 0.9rem; }
.meaning-col .meaning-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal);
  text-align: left;
  margin-bottom: 0.9rem;
}
.meaning-col p:not(.meaning-lead) { text-align: justify; }

/* Our Thinking — image left, content right */
.thinking-split {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 3rem;
  align-items: center;
}
.thinking-split-media {
  aspect-ratio: 377/516;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.thinking-split-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
@media (max-width: 900px) {
  .thinking-split { grid-template-columns: 1fr; }
}

/* Pledge card — emotional centre, visually distinguished */
.pledge-card.pledge-large {
  padding: 3.5rem;
}
.pledge-card.pledge-large p.card-title-large {
  font-size: 2.1rem;
  line-height: 1.35;
  max-width: 780px;
}
.pledge-card .pledge-line { display: block; }

/* CTA subtle background texture */
.cta-texture-wrap {
  position: relative;
  overflow: hidden;
}
.cta-texture-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-texture-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.06; }
.cta-texture-wrap .container { position: relative; z-index: 1; }

/* Why Stratavya Exists — teal background, expanded, larger text */
.section-teal { background: var(--teal-dark) !important; }
.about-page .section-teal h2 { color: var(--warm-white); }
.about-page .section-teal p.why-desc { color: rgba(252,252,251,0.9); font-size: 1.2rem; }

/* Meaning of Stratavya column headings — bold, +20% size */
.meaning-col h3 { font-weight: 700; font-size: 1.8rem; }

/* Our Thinking — Buddha image as subtle background only */
.thinking-bg-section { position: relative; overflow: hidden; }
.thinking-bg { position: absolute; inset: 0; z-index: 0; }
.thinking-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.08; }
.thinking-bg-section .container { position: relative; z-index: 1; }

/* Meaning columns — equal alignment regardless of lead-line length */
.meaning-col .meaning-lead { min-height: 4rem; }

/* Gold heading utility */
.heading-gold { color: var(--gold) !important; }
.heading-teal-dark { color: var(--teal-dark) !important; }

/* Meaning of Stratavya — elegant cards, off-white bg, dark teal outline */
.meaning-card {
  background: var(--warm-white);
  border: 1px solid rgba(10, 68, 68, 0.22);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.2rem;
  box-shadow: 0 4px 18px rgba(15, 32, 39, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.meaning-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 32, 39, 0.1);
  border-color: var(--teal-dark);
}

/* ============================================
   HOME PAGE v2 — Stratavya as an integrated system
   ============================================ */

/* --- Hero --- */
.home2-hero {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3.5rem;
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}
@media (max-width: 900px) {
  .home2-hero { grid-template-columns: 1fr; }
  .home2-hero-media { order: -1; }
}
.home2-hero h1 { font-size: clamp(2rem, 3.4vw, 2.85rem); }
.home2-hero-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.home2-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gearSway 26s ease-in-out infinite;
  transform-origin: 46% 50%;
}
@keyframes gearSway {
  0%, 100% { transform: scale(1.06) rotate(0deg); }
  50% { transform: scale(1.06) rotate(1.2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .home2-hero-media img { animation: none; }
}
.home2-hero p.lede { max-width: 560px; }

/* --- What We Do: connected nodes diagram --- */
.nodes-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 3rem 0 1rem;
  padding: 1rem 0;
}
.node-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
  min-width: 0;
}
.node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--soft-grey);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  flex-shrink: 0;
}
.node-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition: color 0.35s var(--ease);
  white-space: nowrap;
}
.node-connector {
  flex: 0 0 auto;
  width: clamp(16px, 4vw, 48px);
  height: 1.5px;
  background: var(--line);
  margin-top: -2.2rem;
  transition: background 0.35s var(--ease);
}
.nodes-diagram:has(.node-item:hover) .node-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--warm-white);
  transform: scale(1.08);
}
.nodes-diagram:has(.node-item:hover) .node-label { color: var(--navy); }
.nodes-diagram:has(.node-item:hover) .node-connector { background: var(--teal); }

@media (max-width: 780px) {
  .nodes-diagram { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .node-item { flex-direction: row; justify-content: flex-start; }
  .node-connector { display: none; }
  .node-circle { width: 52px; height: 52px; font-size: 1.1rem; }
}

/* --- Where We Create Value: outcome cards with line icons --- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .outcome-grid { grid-template-columns: 1fr; } }
.outcome-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 32, 39, 0.08);
}
.outcome-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.outcome-icon svg { width: 100%; height: 100%; }
.outcome-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--teal-dark); min-height: 2.6rem; display: flex; align-items: flex-start; }
.outcome-card p { font-size: 0.9rem; margin: 0; }

/* --- Explore Stratavya: 4 image cards --- */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .explore-grid { grid-template-columns: 1fr; } }
.explore-card {
  display: block;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.explore-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 16px 34px rgba(15, 32, 39, 0.1);
}
.explore-card-media { aspect-ratio: 4/5; overflow: hidden; border-bottom: 1px solid var(--line); }
.explore-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.explore-card:hover .explore-card-media img { transform: scale(1.03); }
.explore-card-body { padding: 1.6rem; }
.explore-card-body h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.explore-card-body p { font-size: 0.88rem; margin-bottom: 1rem; }
.explore-card-arrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.explore-card-arrow .arrow-char { transition: transform 0.3s var(--ease); display: inline-block; }
.explore-card:hover .explore-card-arrow .arrow-char { transform: translateX(4px); }

.explore-card-placeholder {
  aspect-ratio: 4/5;
  background: var(--soft-grey);
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8b968f;
  font-size: 0.8rem;
  padding: 1.25rem;
  line-height: 1.5;
}

/* ============================================
   HOME PAGE v2 — round 2 revisions
   ============================================ */

/* Justify all body text on Home page, headings stay left */
body.home2-page p { text-align: justify; }

/* Hero — background image treatment, tighter top spacing */
.home2-hero-bg-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.home2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.16;
}
.home2-hero-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(252,252,251,0.5) 0%, rgba(252,252,251,0.65) 100%);
}
.home2-hero-content { position: relative; z-index: 2; }
.home2-hero-content h1 { font-size: clamp(2rem, 3.4vw, 2.85rem); max-width: none; }

/* Unify content width across every section on this page */
.home2-page .lede { max-width: none; }

/* Full-width text block for What We Do intro */
.home2-full-width { max-width: none; }

/* SOGPE nodes — +40% size */
.node-circle { width: 90px; height: 90px; font-size: 1.82rem; }
.node-label { font-size: 1.19rem; }
.node-connector { margin-top: -3.4rem; }
@media (max-width: 780px) {
  .node-circle { width: 64px; height: 64px; font-size: 1.3rem; }
  .node-label { font-size: 0.95rem; }
}

/* Where We Create Value — dark teal background */
.section-teal-dark { background: var(--teal-dark); }
.home2-page .section-teal-dark h2 { color: var(--warm-white); }
.home2-page .section-teal-dark p.lede { color: rgba(252,252,251,0.85); }
.section-teal-dark .outcome-card { background: var(--warm-white); }
.section-teal-dark .outcome-card p { color: var(--ink-soft); text-align: justify; }

/* Explore cards — consistent CTA alignment regardless of description length */
.explore-card { display: flex; flex-direction: column; }
.explore-card-body { display: flex; flex-direction: column; flex: 1; }
.explore-card-arrow { margin-top: auto; }

/* ============================================
   EPCPA FRAMEWORK PAGE v2
   ============================================ */
body.epcpa2-page p { text-align: justify; }

/* Section 1 — Hero with background illustration (About-page pattern, page-scoped) */
.epcpa2-hero { position: relative; overflow: hidden; }
.epcpa2-hero-bg { position: absolute; inset: 0; z-index: 0; }
.epcpa2-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.6;
}
.epcpa2-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,31,31,0.5); /* dark teal green layer, 50% */
}
.epcpa2-hero .container { position: relative; z-index: 2; }
.epcpa2-hero h1 { max-width: none; color: var(--warm-white); }
.epcpa2-hero .eyebrow { color: var(--gold-light); }
.epcpa2-hero p.lede { max-width: none; color: rgba(252,252,251,0.75); }

/* Section 2 — Understanding split (image 40 / content 60) */
.epcpa2-understanding-split {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 3.5rem;
  align-items: stretch;
}
.epcpa2-understanding-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 32, 39, 0.1);
  height: 100%;
}
.epcpa2-understanding-media img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
@media (max-width: 900px) {
  .epcpa2-understanding-split { grid-template-columns: 1fr; }
  .epcpa2-understanding-media { order: -1; aspect-ratio: 702/437; height: auto; }
}

/* Section 3 — The centerpiece: interactive circular framework */
.epcpa2-centerpiece {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (max-width: 980px) {
  .epcpa2-centerpiece { min-height: 0; padding: var(--space-lg) 0; }
}

/* This section is the visual centerpiece — allowed to run wider than the
   standard page container so the framework has room to breathe. */
.epcpa2-wide-wrap {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 640px) {
  .epcpa2-wide-wrap { padding: 0 1.25rem; }
}

.epcpa2-wheel-layout {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 5.5rem;
}
@media (max-width: 1150px) {
  .epcpa2-wheel-layout { grid-template-columns: 1fr; gap: 3.5rem; margin-top: 3rem; justify-items: center; }
}

.epcpa2-wheel {
  position: relative;
  width: 640px;
  height: 640px;
  margin: 0;
}
@media (max-width: 1150px) {
  .epcpa2-wheel { width: min(640px, 90vw); height: min(640px, 90vw); }
}
@media (max-width: 560px) {
  .epcpa2-wheel { width: min(400px, 92vw); height: min(400px, 92vw); }
}
.epcpa2-wheel svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.epcpa2-wheel-line {
  stroke: var(--line);
  stroke-width: 1.5;
  transition: stroke 0.4s var(--ease);
}

.epcpa2-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 34px rgba(15, 32, 39, 0.2);
  z-index: 2;
  text-align: center;
}

.epcpa2-segment {
  position: absolute;
  width: 195px;
  height: 195px;
  border-radius: 50%;
  background: var(--soft-grey);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0.82;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease), opacity 0.28s var(--ease);
  box-shadow: 0 4px 12px rgba(15, 32, 39, 0.04);
  z-index: 3;
  line-height: 1.3;
}
.epcpa2-segment span { transition: font-weight 0.2s var(--ease); }
.epcpa2-segment.preview,
.epcpa2-segment.active {
  opacity: 1;
  background: var(--teal);
  border-color: var(--teal);
  color: var(--warm-white);
  box-shadow: 0 16px 34px rgba(15, 91, 91, 0.24);
}
.epcpa2-segment.preview { transform: translate(-50%, -50%) scale(1.09); }
.epcpa2-segment.active { transform: translate(-50%, -50%) scale(1.09); }
.epcpa2-segment.active span, .epcpa2-segment.preview span { font-weight: 700; }
.epcpa2-segment:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.epcpa2-segment[data-seg="0"] { top: 19.5%; left: 50%; }
.epcpa2-segment[data-seg="1"] { top: 40.6%; left: 79%; }
.epcpa2-segment[data-seg="2"] { top: 74.7%; left: 67.9%; }
.epcpa2-segment[data-seg="3"] { top: 74.7%; left: 32.1%; }
.epcpa2-segment[data-seg="4"] { top: 40.6%; left: 21%; }

@media (max-width: 560px) {
  .epcpa2-center { width: 88px; height: 88px; font-size: 0.85rem; }
  .epcpa2-segment { width: 108px; height: 108px; font-size: 0.6rem; padding: 0.35rem; }
}

/* Dynamic header above the cards */
.epcpa2-panel-col { width: 100%; }
.epcpa2-dynamic-header { margin-bottom: 1.75rem; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); }
.epcpa2-dynamic-header h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.epcpa2-dynamic-header p { font-size: 1.02rem; color: var(--ink-soft); margin: 0; }
.epcpa2-dynamic-header.fading { opacity: 0; transform: translateY(8px); }

/* Info cards — horizontal row, generous width, refined styling */
.epcpa2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 700px) {
  .epcpa2-cards { grid-template-columns: 1fr; }
}
.epcpa2-info-card {
  background: var(--teal-dark);
  border: none;
  border-radius: var(--radius-card);
  padding: 2.1rem 1.9rem;
  box-shadow: 0 6px 20px rgba(15, 32, 39, 0.12);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.epcpa2-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(200, 162, 77, 0.4);
}
.epcpa2-info-card ul { list-style: none; margin: 0; padding: 0; }
.epcpa2-info-card li {
  font-size: 0.93rem;
  color: var(--warm-white);
  padding: 0.6rem 0;
  border-top: 1px solid rgba(252, 252, 251, 0.14);
  line-height: 1.4;
}
.epcpa2-info-card li:first-child { border-top: none; }
.epcpa2-cards.fading .epcpa2-info-card { opacity: 0; transform: translateY(10px); }

/* Section 4 — Closing, minimal */
.epcpa2-closing {
  padding: var(--space-2xl) 0;
}
.epcpa2-closing h2 { max-width: 720px; margin: 0 0 2rem; }

.epcpa2-closing-teal {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
}
.epcpa2-closing-bg { position: absolute; inset: 0; z-index: 0; }
.epcpa2-closing-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.epcpa2-closing-teal .container { position: relative; z-index: 1; }
.epcpa2-closing-teal h2 { color: var(--warm-white); }

/* ============================================
   WORKING WITH STRATAVYA PAGE
   ============================================ */
body.wws-page p { text-align: justify; }

/* Hero */
.wws-hero {
  background: #082f2f;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.wws-hero-bg { position: absolute; inset: 0; z-index: 0; }
.wws-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.wws-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #082f2f 0%, rgba(8,47,47,0.78) 45%, rgba(8,47,47,0.45) 100%);
}
.wws-hero-content-wrap { position: relative; z-index: 2; width: 100%; }
.wws-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) 0;
}
.wws-hero-content .eyebrow { color: var(--gold-light); }
.wws-hero-content h1 { color: var(--warm-white); max-width: 620px; }
.wws-hero-content p { color: rgba(252,252,251,0.82); max-width: 560px; margin: 0; }
@media (max-width: 900px) {
  .wws-hero { min-height: 0; padding: var(--space-lg) 0; }
}

/* Journey timeline */
.wws-journey-intro { max-width: 680px; margin-bottom: 3rem; }
.wws-timeline {
  position: relative;
  height: 220px;
}
.wws-timeline::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 34px;
  right: -16px;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 11px);
  z-index: 0;
}
.wws-timeline-arrow {
  position: absolute;
  top: 34px;
  right: -30px;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transform: translateY(-50%);
  z-index: 1;
}
.wws-timeline-arrow svg { width: 100%; height: 100%; }
@media (max-width: 980px) {
  .wws-timeline-arrow { display: none; }
}
.wws-timeline-item {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 150px;
  transform: translateX(-50%);
}
.wws-timeline-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 6px 16px rgba(15, 32, 39, 0.12);
  flex-shrink: 0;
}
.wws-timeline-icon svg { width: 28px; height: 28px; }
.wws-timeline-icon-gold { color: var(--gold); }
.wws-timeline-icon-gold svg { width: 38px; height: 38px; }
.wws-infinity-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.wws-infinity-img-sm { width: 28px; height: 28px; margin: auto; }
.wws-timeline-item:hover .wws-timeline-icon { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(15, 32, 39, 0.18); }
.wws-timeline-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.wws-timeline-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; min-height: 2.9rem; display: flex; align-items: flex-start; }
.wws-timeline-item p { font-size: 0.82rem; text-align: center; color: var(--ink-soft); margin: 0; }
@media (max-width: 980px) {
  .wws-timeline { height: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 0.5rem; }
  .wws-timeline::before { display: none; }
  .wws-timeline-item { position: static; transform: none; width: auto; }
}
@media (max-width: 640px) {
  .wws-timeline { grid-template-columns: repeat(2, 1fr); }
}

/* Engage cards */
.wws-engage-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.eyebrow-line {
  display: inline-block;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
}
.wws-engage-supporting { margin-top: 2.6rem; }
@media (max-width: 780px) { .wws-engage-supporting { margin-top: 0; } }
@media (max-width: 780px) {
  .wws-engage-intro { grid-template-columns: 1fr; align-items: start; gap: 1rem; }
}
.wws-engage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .wws-engage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wws-engage-grid { grid-template-columns: 1fr; } }
.wws-engage-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wws-engage-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(15,32,39,0.08); }
.wws-engage-icon { width: 41px; height: 41px; color: var(--gold); margin-bottom: 1.1rem; }
.wws-engage-icon svg { width: 100%; height: 100%; }
.wws-engage-card h3 { font-size: 1.16rem; margin-bottom: 1rem; min-height: 2.6rem; }
.wws-engage-card ul { list-style: none; margin: 0 0 1.25rem; padding: 0; flex: 1; }
.wws-engage-card li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 0.35rem 0 0.35rem 0.9rem;
  position: relative;
  text-align: left;
}
.wws-engage-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.75rem;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal);
}
.wws-engage-arrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* What Makes Every Engagement Different */
.wws-difference { background: #082f2f; }
.wws-difference-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .wws-difference-grid { grid-template-columns: 1fr; } }
.wws-difference-grid h2 { color: var(--warm-white); }
.wws-difference .eyebrow { color: var(--gold); font-weight: 700; }
.wws-difference-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 780px) { .wws-difference-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 480px) { .wws-difference-cols { grid-template-columns: 1fr; } }
.wws-diff-col {
  padding: 0 1.75rem;
  border-left: 1px solid rgba(252,252,251,0.15);
}
.wws-diff-col:first-child { border-left: none; padding-left: 0; }
@media (max-width: 780px) { .wws-diff-col { border-left: none; padding: 0; } }
.wws-diff-icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 1.1rem; }
.wws-diff-icon svg { width: 100%; height: 100%; }
.wws-diff-col h3 { color: var(--warm-white); font-size: 1.05rem; margin-bottom: 0.75rem; min-height: 2.9rem; }
.wws-diff-col p { color: rgba(252,252,251,0.72); font-size: 0.88rem; margin: 0; }

/* Closing CTA with decorative S */
.wws-cta {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
  padding: var(--space-lg) 0;
}
.wws-cta-bg { position: absolute; inset: 0; z-index: 0; }
.wws-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.wws-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(252, 252, 251, 0.6);
}
.wws-cta .container { position: relative; z-index: 2; }
.wws-cta-content h2 { max-width: 560px; color: var(--teal-dark); }
.wws-cta-content p { max-width: 520px; }

/* ============================================
   PERSPECTIVES PAGE
   ============================================ */
body.persp-page p { text-align: justify; }

/* Hero — split, dark teal, image right */
.persp-hero {
  position: relative;
  overflow: hidden;
  background: #082f2f;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.persp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.persp-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.persp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #082f2f 0%, rgba(8,47,47,0.72) 45%, rgba(8,47,47,0.4) 100%);
}
.persp-hero .container { position: relative; z-index: 2; width: 100%; }
.persp-hero-content { padding: var(--space-lg) 0; }
.persp-hero-content .eyebrow { color: var(--gold-light); }
.persp-hero-content h1 { color: var(--warm-white); max-width: 620px; }
.persp-hero-content p { color: rgba(252,252,251,0.82); max-width: 560px; margin: 0; }
@media (max-width: 900px) {
  .persp-hero { min-height: 0; padding: var(--space-lg) 0; }
}

/* Section intro (heading left, supporting text right) */
.persp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (max-width: 780px) { .persp-intro { grid-template-columns: 1fr; gap: 1rem; } }

/* Perspectives From Practice — 6 numbered cards */
.persp-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .persp-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .persp-grid-6 { grid-template-columns: 1fr; } }
.persp-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.persp-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(15,32,39,0.08); }
.persp-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.persp-card-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.persp-card-icon svg { width: 29px; height: 29px; }
.persp-card-num { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.persp-card h3 { font-size: 1.08rem; margin-bottom: 0.75rem; min-height: 2.7rem; }
.persp-card p { font-size: 0.9rem; margin: 0; }

/* Experience Across Business Contexts — icon grid */
.persp-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}
.persp-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.persp-icon-item:nth-child(6n) { border-right: none; }
.persp-icon-item svg { width: 39px; height: 39px; color: #A9813A; stroke-width: 1.85px; }
.persp-icon-item span { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
@media (max-width: 900px) {
  .persp-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .persp-icon-item:nth-child(6n) { border-right: 1px solid var(--line); }
  .persp-icon-item:nth-child(3n) { border-right: none; }
}
@media (max-width: 560px) {
  .persp-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .persp-icon-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .persp-icon-item:nth-child(2n) { border-right: none; }
}

/* Frameworks & Methodologies — 5 cards */
.persp-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .persp-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .persp-grid-5 { grid-template-columns: 1fr; } }
.persp-fw-card {
  background: var(--soft-grey);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.persp-fw-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(15,32,39,0.08); }
.persp-fw-icon { width: 41px; height: 41px; color: #A9813A; margin-bottom: 1.1rem; }
.persp-fw-icon svg { stroke-width: 1.85px; }
.persp-fw-icon svg { width: 100%; height: 100%; }
.persp-fw-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; min-height: 2.5rem; color: var(--teal-dark); }
.persp-fw-card p { font-size: 0.85rem; margin: 0; }

/* Meet the Founder */
.persp-founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
}
@media (max-width: 900px) { .persp-founder-grid { grid-template-columns: 1fr; } }

/* Areas of Advisory — 4 columns */
.persp-advisory-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) { .persp-advisory-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .persp-advisory-cols { grid-template-columns: 1fr; } }
.persp-advisory-col h3 { font-size: 1.32rem; margin-bottom: 1.1rem; color: var(--teal-dark); }
.persp-advisory-col ul { list-style: none; margin: 0; padding: 0; }
.persp-advisory-col li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.5rem 0 0.5rem 0.9rem;
  position: relative;
  border-top: 1px solid var(--line);
}
.persp-advisory-col li:first-child { border-top: none; }
.persp-advisory-col li::before {
  content: '';
  position: absolute; left: 0; top: 1rem;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal);
}

/* Closing CTA */
.persp-cta { background: var(--teal-dark); padding: var(--space-lg) 0; }
.persp-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) { .persp-cta-grid { grid-template-columns: 1fr; } }
.persp-cta-content h2 { color: var(--warm-white); max-width: 520px; }
.persp-cta-media { aspect-ratio: 16/10; position: relative; }
.persp-cta-media img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 18%, black 45%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 18%, black 45%);
}
@media (max-width: 900px) { .persp-cta-media { order: -1; } }

/* ============================================
   HOME PAGE v3 — full redesign
   ============================================ */
body.home3-page p { text-align: justify; }

/* Hero */
.h3-hero { position: relative; overflow: hidden; background: #0a1f1f; min-height: 560px; display: flex; align-items: center; }
.h3-hero-bg { position: absolute; inset: 0; z-index: 0; }
.h3-hero-bg img, .h3-hero-bg .img-placeholder { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.h3-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #0a1f1f 0%, rgba(10,31,31,0.82) 38%, rgba(10,31,31,0.35) 75%, rgba(10,31,31,0.15) 100%);
}
.h3-hero .container { position: relative; z-index: 2; padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.h3-hero h1 { color: var(--warm-white); max-width: 640px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.h3-hero h1 em { color: var(--gold-light); font-style: normal; }
.h3-hero p.lede { color: rgba(252,252,251,0.78); max-width: 540px; }
.h3-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.h3-watch-story { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.75rem; color: rgba(252,252,251,0.85); font-size: 0.88rem; }
.h3-play-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(252,252,251,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.h3-play-btn svg { width: 12px; height: 12px; }
.h3-watch-story .h3-watch-time { display: block; font-size: 0.76rem; color: rgba(252,252,251,0.55); }

/* Does this feel familiar */
.h3-familiar { background: #0a1f1f; padding: var(--space-lg) 0; }
.h3-familiar h2 { color: var(--warm-white); text-align: center; margin-bottom: 3rem; position: relative; display: block; }
.h3-familiar-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .h3-familiar-row { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; } }
@media (max-width: 560px) { .h3-familiar-row { grid-template-columns: repeat(2, 1fr); } }
.h3-familiar-item { text-align: center; }
.h3-familiar-item svg { width: 32px; height: 32px; color: var(--gold-light); margin-bottom: 1rem; }
.h3-familiar-item p { color: rgba(252,252,251,0.75); font-size: 0.85rem; margin: 0; text-align: center; }

/* Quote band */
.h3-quote { background: var(--soft-grey); padding: var(--space-lg) 0; text-align: center; position: relative; }
.h3-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-style: italic;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}

/* Capability system section (dark, 3-part) */
.h3-capability { background: #0a1f1f; position: relative; overflow: hidden; }
.h3-capability-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 1100px) { .h3-capability-grid { grid-template-columns: 1fr; } }
.h3-capability h2 { color: var(--warm-white); }
.h3-capability p { color: rgba(252,252,251,0.72); }
.h3-capability .gold-line { color: var(--gold-light); font-weight: 600; }
.h3-mini-row { display: flex; gap: 1.25rem; margin: 1.5rem 0; flex-wrap: wrap; }
.h3-mini-item { text-align: center; }
.h3-mini-item .h3-mini-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(252,252,251,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.5rem;
  color: var(--gold-light);
}
.h3-mini-item .h3-mini-icon svg { width: 18px; height: 18px; }
.h3-mini-item span { font-size: 0.65rem; color: rgba(252,252,251,0.65); }

.h3-chain { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; }
.h3-chain-item { display: flex; align-items: center; gap: 1rem; position: relative; padding: 0.6rem 0; }
.h3-chain-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(200,162,77,0.08);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  z-index: 1;
}
.h3-chain-icon svg { width: 22px; height: 22px; }
.h3-chain-item span { color: var(--warm-white); font-size: 0.98rem; font-weight: 500; }
.h3-chain-connector { width: 1.5px; height: 22px; background: var(--gold); opacity: 0.5; }

.h3-capability-right { position: relative; border-radius: var(--radius-card); overflow: hidden; padding: 2.5rem; min-height: 280px; display: flex; align-items: flex-end; }
.h3-capability-right-bg { position: absolute; inset: 0; z-index: 0; }
.h3-capability-right-bg img, .h3-capability-right-bg .img-placeholder { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.h3-capability-right::before { content:''; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(10,31,31,0.1) 0%, rgba(10,31,31,0.85) 100%); }
.h3-capability-right p { position: relative; z-index: 2; color: var(--warm-white); font-family: var(--font-display); font-size: 1.4rem; margin: 0; text-align: left; }

/* The Stratavya Difference */
.h3-difference { background: #0a1f1f; }
.h3-difference h2 { color: var(--warm-white); text-align: center; margin-bottom: 3rem; }
.h3-vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) { .h3-vs-grid { grid-template-columns: 1fr; } }
.h3-vs-badge {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.h3-diff-card {
  background: rgba(252,252,251,0.03);
  border: 1px solid rgba(252,252,251,0.12);
  border-radius: var(--radius-card);
  padding: 2.25rem;
}
.h3-diff-card h3 { color: var(--warm-white); font-size: 1.3rem; margin-bottom: 0.4rem; }
.h3-diff-card > p { color: rgba(252,252,251,0.65); font-size: 0.92rem; margin-bottom: 1.75rem; }
.h3-diff-4col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.h3-diff-4col-item { text-align: center; }
.h3-diff-4col-item svg { width: 26px; height: 26px; color: var(--gold-light); margin-bottom: 0.6rem; }
.h3-diff-4col-item h4 { color: var(--warm-white); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.3rem; }
.h3-diff-4col-item p { color: rgba(252,252,251,0.55); font-size: 0.78rem; margin: 0; text-align: center; }

.h3-ims-wheel { position: relative; width: 240px; height: 240px; margin: 0 auto 1.75rem; }
.h3-ims-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 0.62rem; font-weight: 700; line-height: 1.2; padding: 0.5rem;
  z-index: 2;
}
.h3-ims-node {
  position: absolute; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,31,31,0.6);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.h3-ims-node svg { width: 18px; height: 18px; }
.h3-ims-node[data-n="0"] { top: 3%; left: 50%; }
.h3-ims-node[data-n="1"] { top: 27%; left: 92%; }
.h3-ims-node[data-n="2"] { top: 80%; left: 78%; }
.h3-ims-node[data-n="3"] { top: 80%; left: 22%; }
.h3-ims-node[data-n="4"] { top: 27%; left: 8%; }
.h3-ims-wheel svg.h3-ims-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.h3-ims-lines line { stroke: rgba(200,162,77,0.4); stroke-width: 1; stroke-dasharray: 3 3; }
.h3-diff-card.gold-border { border-color: var(--gold); }

/* How We Help */
.h3-help { background: #0a1f1f; }
.h3-help h2 { color: var(--warm-white); text-align: center; margin-bottom: 3rem; }
.h3-help-row { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.h3-help-row::before {
  content: '';
  position: absolute; top: 26px; left: 12.5%; right: 12.5%;
  height: 1.5px; background: var(--gold); opacity: 0.5; z-index: 0;
}
@media (max-width: 780px) { .h3-help-row { grid-template-columns: repeat(2, 1fr); } .h3-help-row::before { display: none; } }
.h3-help-item { text-align: center; position: relative; z-index: 1; }
.h3-help-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: #0a1f1f;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.h3-help-num svg { width: 22px; height: 22px; }
.h3-help-item .h3-help-numlabel { font-size: 0.7rem; color: var(--gold-light); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.3rem; display: block; }
.h3-help-item h3 { color: var(--warm-white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.h3-help-item p { color: rgba(252,252,251,0.65); font-size: 0.85rem; margin: 0; }

/* Where We Create Value — 5 image cards */
.h3-value { background: #0a1f1f; }
.h3-value h2 { color: var(--warm-white); text-align: center; margin-bottom: 3rem; }
/* Section: 5 cards reusing the .h3-explore-card component (see "Discover the
   thinking" grid below) so they match it exactly — image on top, pending upload. */
.h3-value-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 1.25rem; }
@media (max-width: 980px) { .h3-value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .h3-value-grid { grid-template-columns: minmax(0,1fr); } }

/* Discover the thinking — 4 cards, light section */
.h3-explore-intro { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.h3-explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .h3-explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .h3-explore-grid { grid-template-columns: 1fr; } }
.h3-explore-card {
  display: flex; flex-direction: column;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.h3-explore-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(15,32,39,0.08); }
.h3-explore-media { aspect-ratio: 4/3; overflow: hidden; }
.h3-explore-media img, .h3-explore-media .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.h3-explore-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.h3-explore-body h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.h3-explore-body p { font-size: 0.85rem; margin-bottom: 1rem; }
.h3-explore-link { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-top: auto; }

/* Closing CTA */
.h3-closing { background: #0a1f1f; text-align: center; }
.h3-closing-mark { width: 64px; height: auto; margin: 0 auto 1.5rem; opacity: 0.85; display: block; }
/* Section 9: header and content area widened 20% (620px -> 744px, 560px -> 672px). */
.h3-closing h2 { color: var(--warm-white); max-width: 744px; margin: 0 auto 1rem; }
.h3-closing p { color: rgba(252,252,251,0.7); max-width: 672px; margin: 0 auto 2rem; }

/* ============================================
   FINAL HOMEPAGE ALIGNMENT / SPACING PASS
   ============================================ */
body.home3-page {
  background: var(--warm-white);
}

/* Section 7 (final): paragraphs across all sections are justified by default. */
body.home3-page p { text-align: justify; }

/* Section 1 (Hero): heading and lede copy stay fully left-aligned. */
.h3-hero h1,
.h3-hero p.lede,
.h3-hero .h3-hero-actions { text-align: left; }

/* Hero: supplied image sits behind the content with controlled visibility. */
.h3-hero {
  min-height: 650px;
  background: #0a1f1f;
}
.h3-hero-bg img {
  opacity: 0.85;
  object-position: center center;
}
.h3-hero::before {
  background: linear-gradient(90deg,
    rgba(10,31,31,0.94) 0%,
    rgba(10,31,31,0.80) 30%,
    rgba(10,31,31,0.38) 60%,
    rgba(10,31,31,0.14) 100%);
}
.h3-hero .container {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  width: 100%;
  padding-left: 1.25rem;
}
.h3-hero h1 { max-width: 650px; }
.h3-hero p.lede {
  max-width: 650px;
  line-height: 1.72;
}
.h3-hero-actions { margin-top: 2rem; }

/* Alternating section rhythm: dark / off-white / dark / off-white. */
.h3-familiar {
  background: #f5f1e8;
  padding: 5.4rem 0;
  border-bottom: 1px solid rgba(15,32,39,0.08);
}
.h3-familiar h2 {
  color: var(--navy);
  margin-bottom: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.h3-familiar h2::before,
.h3-familiar h2::after {
  content: '';
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.h3-familiar-row { gap: 0; }
.h3-familiar-item {
  min-height: 155px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid rgba(15,32,39,0.14);
}
.h3-familiar-item:last-child { border-right: 0; }
.h3-familiar-item svg {
  width: 38px;
  height: 38px;
  color: var(--teal);
  margin-bottom: 1.25rem;
  flex: 0 0 auto;
}
.h3-familiar-item p {
  color: var(--ink-soft);
  font-size: 0.95rem; /* Section 2: +10% over the previous 0.86rem */
  font-weight: 700;
  line-height: 1.55;
  max-width: 170px;
  text-align: center;
}

/* Quote band becomes the next dark anchor. */
.h3-quote {
  background: var(--teal-dark);
  padding: 4.7rem 0;
}
.h3-quote::before,
.h3-quote::after {
  position: absolute;
  font-family: Georgia, serif;
  color: var(--gold-light);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.85;
}
.h3-quote::before { content: '“'; left: calc(50% - 440px); top: 50%; transform: translateY(-58%); }
.h3-quote::after { content: '”'; right: calc(50% - 440px); top: 50%; transform: translateY(-58%); }
.h3-quote p {
  color: var(--warm-white);
  font-style: normal;
  max-width: 800px;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.35;
}

/* Capability section: left content sits directly on the section's own dark teal
   background (no separate white/light card) — matches the supplied reference
   screenshot's plain dark styling. Right stays the mountain-photo panel. */
.h3-capability {
  background: #0a1f1f;
  padding: 6.4rem 0;
  border-bottom: 1px solid rgba(15,32,39,0.08);
}
.h3-capability-grid {
  grid-template-columns: minmax(0,0.82fr) minmax(0,1fr);
  gap: 3rem;
  align-items: stretch;
}
.h3-capability-left {
  background: transparent;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h3-capability h2 {
  color: var(--warm-white);
  max-width: 460px;
  margin-bottom: 1.1rem;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}
.h3-capability-text {
  border-left: none;
  padding-left: 0;
  max-width: 460px;
}
.h3-capability-text p {
  color: rgba(252,252,251,0.75);
  line-height: 1.7;
  font-size: 0.9rem;
}
/* Divider matching the reference screenshot's thin rule under the first line. */
.h3-capability-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(200,162,77,0.35);
  margin: 1.1rem 0 1.3rem;
}
.h3-capability .gold-line { color: var(--gold-light); font-weight: 700; }

/* Vertical timeline: all 5 circles share one centered spine, labels sit left-aligned beside it. */
.h3-chain {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.55rem;
  min-width: 220px;
  flex-shrink: 0;
}
.h3-chain-item { display: contents; }
.h3-chain-icon {
  grid-column: 1;
  justify-self: center;
  width: 48px;
  height: 48px;
  background: rgba(10,31,31,0.55);
  border-color: var(--gold);
}
.h3-chain-item span {
  grid-column: 2;
  justify-self: start;
  text-align: left;
  color: var(--warm-white);
  font-size: 0.9rem;
}
.h3-chain-connector {
  grid-column: 1;
  justify-self: center;
  height: 22px;
  background: var(--gold);
  opacity: 0.7;
}

/* Right panel: full-bleed mountain photo with the capability chain, a curly
   bracket, and the closing line laid directly over it. */
.h3-capability-right {
  position: relative;
  min-height: 460px;
  height: 100%;
  overflow: hidden;
  display: block;
  padding: 0;
  border-radius: var(--radius-card);
}
.h3-capability-right-media { position: absolute; inset: 0; }
.h3-capability-right-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.h3-capability-right-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,31,31,0.60) 0%, rgba(10,31,31,0.32) 25%, rgba(10,31,31,0.32) 100%);
}
.h3-capability-right-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 1.4rem;
  padding: 2.8rem 2.6rem 2.8rem 3rem;
}
.h3-capability-bracket { flex-shrink: 0; width: 22px; color: var(--gold); opacity: 0.85; }
.h3-capability-bracket svg { width: 100%; height: 100%; display: block; }
.h3-capability-caption {
  align-self: center;
  color: var(--warm-white);
  font-family: var(--font-display);
  font-weight: 600;
  max-width: 280px;
  font-size: 1.8rem; /* +20% over the previous 1.5rem */
  line-height: 1.25;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Difference: dark section with equal-height, internally aligned cards. */
.h3-difference {
  background: #0a1f1f;
  padding: 6.2rem 0;
}
.h3-difference h2,
.h3-help h2,
.h3-value h2 { margin-bottom: 3.7rem; }
.h3-vs-grid {
  grid-template-columns: minmax(0,0.9fr) 56px minmax(0,1fr);
  gap: 2.2rem;
  align-items: stretch;
}
.h3-vs-badge { align-self: center; }
.h3-diff-card {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.h3-diff-card:first-child { padding: 2.16rem; }
.h3-diff-card > p { margin-bottom: 2rem; }
/* Section 5 left box: content is pulled up — the icon row now follows the
   copy directly instead of being pushed to the bottom of the card. */
.h3-diff-4col {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.1rem;
  margin-top: 0;
}
.h3-diff-4col-item {
  padding: 0 0.35rem;
  min-width: 0;
}
.h3-diff-4col-item + .h3-diff-4col-item {
  border-left: 1px solid rgba(252,252,251,0.12);
}
.h3-diff-4col-item svg { width: 39px; height: 39px; } /* Section 5: +30% over the previous 30px */
.h3-diff-4col-item p { line-height: 1.45; }

.h3-ims-wheel {
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
}
.h3-ims-center { width: 86px; height: 86px; }
.h3-ims-node { width: 42px; height: 42px; }
.h3-ims-label {
  position: absolute;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.h3-ims-node[data-n="0"] .h3-ims-label { top: calc(100% + 0.35rem); left: 50%; transform: translateX(-50%); }
.h3-ims-node[data-n="1"] .h3-ims-label { left: calc(100% + 0.45rem); top: 50%; transform: translateY(-50%); }
.h3-ims-node[data-n="2"] .h3-ims-label { left: 50%; top: calc(100% + 0.35rem); transform: translateX(-50%); }
.h3-ims-node[data-n="3"] .h3-ims-label { right: calc(100% + 0.45rem); top: 50%; transform: translateY(-50%); }
.h3-ims-node[data-n="4"] .h3-ims-label { right: calc(100% + 0.45rem); top: 50%; transform: translateY(-50%); }

/* How We Help: light section with the process line and step markers aligned. */
.h3-help {
  background: #f5f1e8;
  padding: 3.2rem 0; /* ribbon height reduced from 5.58rem */
  border-bottom: 1px solid rgba(15,32,39,0.08);
}
.h3-help h2 { color: var(--navy); }
.h3-help-row { gap: 2.3rem; }
/* Section 6: the connecting line now runs the full width of the row, matching the
   edge-to-edge (no extra inset) indentation used by the section above. */
.h3-help-row::before {
  top: 23px;
  left: 0;
  right: 0;
  background: var(--gold);
  opacity: 0.75;
}
.h3-help-item { min-width: 0; }
.h3-help-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-dark);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
  position: relative;
  z-index: 2;
}
.h3-help-item .h3-help-numlabel {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  display: block;
}
.h3-help-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.h3-help-icon svg { width: 34px; height: 34px; }
.h3-help-item h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 0.7rem; }
.h3-help-item p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
  max-width: 245px;
  margin: 0 auto;
  text-align: center;
}

/* Value section remains dark and gets more breathing room. */
.h3-value {
  background: #0a1f1f;
  padding: 6.82rem 0;
}
.h3-value > .container { padding-left: 1.25rem; padding-right: 1.25rem; }
.h3-value-grid { gap: 1.75rem; }
/* Cards here are .h3-explore-card (shared with the section below) — see that
   component's rules further down for the actual card styling. */

/* Explore section: off-white and deliberately separated from the dark value section. */
.home3-page > section.section:not(.h3-closing) {
  background: #f5f1e8;
  padding: 6.3rem 0;
}
.h3-explore-intro {
  max-width: none;
  margin-bottom: 0 auto 2.6rem;
}
.h3-explore-intro h2 {
  max-width: 1050px;
  margin: 0 auto 0.9rem;
}
.h3-explore-intro .lede {
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}
.h3-explore-grid { gap: 1.45rem; align-items: stretch; }
.h3-explore-card { min-height: 100%; }
/* Section 8: image area only, ~10% taller than the previous 4/3 ratio (4 / 3.3). Text below is untouched. */
.h3-explore-media { aspect-ratio: 4/3.3; }
.h3-explore-media img { object-position: center center; }
.h3-explore-body { padding: 1.55rem; }
.h3-explore-body h3 { color: var(--navy); }
.h3-explore-body p { color: var(--ink-soft); line-height: 1.55; }

/* Closing CTA stays the final dark anchor before the unchanged footer. */
/* Section 9: ribbon height reduced 50% (5.22rem -> 2.61rem) per explicit request. */
.h3-closing {
  background: #0a1f1f;
  padding: 2.61rem 0;
}
.h3-closing-mark { margin: 0 auto 1rem; }
.h3-closing p { margin: 0 auto 1.4rem; }

/* Header/footer geometry remains unchanged; only the supplied logo asset is used. */

/* Responsive alignment */
@media (max-width: 1100px) {
  .h3-capability-grid { grid-template-columns: 1fr; }
  .h3-capability-right { min-height: 340px; }
  .h3-capability-right-content { flex-direction: column; align-items: flex-start; padding: 2.2rem; }
  .h3-capability-bracket { display: none; }
}
@media (max-width: 900px) {
  .h3-hero { min-height: 620px; }
  .h3-hero .container { padding-top: 5rem; padding-bottom: 5rem; }
  .h3-familiar-item { padding: 0 1rem; }
  .h3-vs-grid { grid-template-columns: 1fr; }
  .h3-vs-badge { margin: 0 auto; }
  .h3-diff-card { min-height: 0; }
}
@media (max-width: 780px) {
  .h3-familiar, .h3-capability, .h3-difference, .h3-help, .h3-value,
  .home3-page > section.section:not(.h3-closing) { padding-top: 4.6rem; padding-bottom: 4.6rem; }
  .h3-familiar h2,
  .h3-difference h2,
  .h3-help h2,
  .h3-value h2 { margin-bottom: 2.8rem; }
  .h3-familiar-row { gap: 2rem 0; }
  .h3-familiar-item:nth-child(3n) { border-right: 0; }
  .h3-familiar-item:nth-child(-n+3) { border-bottom: 1px solid rgba(15,32,39,0.10); padding-bottom: 2rem; }
  .h3-quote::before { left: calc(50% - 300px); }
  .h3-quote::after { right: calc(50% - 300px); }
  .h3-diff-4col { grid-template-columns: repeat(2, 1fr); }
  .h3-help-row { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .h3-help-row::before { display: none; }
}
@media (max-width: 560px) {
  .h3-hero { min-height: 650px; }
  .h3-hero h1 { font-size: 2.25rem; }
  .h3-hero p.lede { font-size: 1rem; }
  .h3-familiar-row { grid-template-columns: 1fr; }
  .h3-familiar-item,
  .h3-familiar-item:nth-child(3n) { border-right: 0; border-bottom: 1px solid rgba(15,32,39,0.10); padding-bottom: 1.75rem; }
  .h3-familiar-item:last-child { border-bottom: 0; }
  .h3-quote { padding: 4rem 0; }
  .h3-quote::before, .h3-quote::after { display: none; }
  .h3-capability-right { min-height: 290px; }
  .h3-help-row { grid-template-columns: 1fr; }
  .h3-diff-4col { grid-template-columns: 1fr 1fr; }
  .h3-value-grid { grid-template-columns: 1fr; }
}

/* All headers on this page: Cormorant Garamond, bold */
.home3-page h1, .home3-page h2, .home3-page h3, .home3-page h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

/* Hover lift on all remaining card types */
.h3-diff-card { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.h3-diff-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

/* =========================================================
   OUR ENGAGEMENT MODELS
   ========================================================= */

.engagement-models-section {
  position: relative;
  overflow: hidden;
}

/* ---------- Intro ---------- */

.engagement-models-intro {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.engagement-models-intro h2 {
  margin-top: 0.75rem;
}


/* ---------- Model Cards ---------- */

.engagement-model-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

/* ---------- Model Cards ---------- */

.engagement-model-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.engagement-model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  min-height: 205px;
  padding: 1.75rem 2.25rem;

  text-align: left;
  background: var(--warm-white);
  color: var(--ink);

  border: 1px solid var(--line);
  border-radius: var(--radius-card);

  cursor: pointer;
  font: inherit;

  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

/* Hover */
.engagement-model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 132, 70, 0.65);
  background: #fbfaf6;
  box-shadow: 0 12px 28px rgba(15, 32, 39, 0.07);
}

/* Selected */
.engagement-model-card.is-active {
  background: var(--warm-white);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(15, 32, 39, 0.06);
}

/* Small gold accent on selected card */


.engagement-model-number {
  display: block;
  margin-bottom: 1.25rem;

  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.engagement-model-card h3 {
  margin: 0 0 0.65rem;

  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.engagement-model-card strong {
  display: block;
  margin-bottom: 0.75rem;

  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.engagement-model-card p {
  max-width: 620px;
  margin: 0;

  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.engagement-model-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  margin-top: auto;
  padding-top: 1.25rem;

  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.engagement-model-action span {
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}

.engagement-model-card:hover .engagement-model-action span {
  transform: translateX(4px);
}

/* ---------- Journey ---------- */

.engagement-journey {
  display: none;
}

.engagement-journey.is-active {
  display: block;
}

.engagement-journey-heading {
  max-width: 760px;
  margin: 0 0 1.25rem;
  text-align: left;
}

.engagement-journey-heading h3 {
  margin-top: 0.75rem;
}


/* ---------- Stage Grid ---------- */

.engagement-stage-grid {
  display: grid;
  gap: 1.25rem;
}

.specific-stages {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.retainer-stages {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}


/* ---------- Stage Cards ---------- */

.engagement-stage {
  position: relative;
  min-width: 0;
  min-height: 300px;

  perspective: 1200px;
  cursor: pointer;
}

.engagement-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 310px;

  transform-style: preserve-3d;
  transition: transform 0.65s var(--ease);
}

.engagement-stage.is-flipped .engagement-stage-inner {
  transform: rotateY(180deg);
}

.engagement-stage-face {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 1.6rem 1.65rem;

  border: 1px solid var(--line);
  border-radius: var(--radius-card);

  background: var(--warm-white);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.engagement-stage-front {
  color: var(--ink);
}

.engagement-stage-back {
  background: var(--warm-white);
  color: var(--ink);

  transform: rotateY(180deg);
}

.engagement-stage-number {
  display: block;
  margin-bottom: 1.5rem;

  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.engagement-stage-face h4 {
  margin: 0 0 0.7rem;

  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.engagement-stage-face p {
  margin: 0;

  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.engagement-stage-back h4 {
  margin: 0 0 0.85rem;
}

.engagement-stage-back ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.engagement-stage-back li {
  position: relative;

  margin-bottom: 0.8rem;
  padding-left: 0.85rem;

  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: left;
}

.engagement-stage-back li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.65em;

  width: 4px;
  height: 4px;

  border-radius: 50%;
  background: var(--gold);
}

.engagement-stage-hint {
  display: block;

  margin-top: 1.35rem;

  color: var(--ink-soft);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.engagement-stage-hint span {
  margin-left: 0.25rem;
  color: var(--gold);
}


/* ---------- Hover indication ---------- */

.engagement-stage:hover .engagement-stage-front {
  border-color: rgba(166, 132, 70, 0.5);
  box-shadow: 0 10px 24px rgba(15, 32, 39, 0.06);
}


/* ---------- Tablet ---------- */

@media (max-width: 1000px) {

  .specific-stages,
  .retainer-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


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

@media (max-width: 760px) {

  .engagement-model-selector {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  .engagement-model-card {
    min-height: 270px;
    padding: 2rem;
  }

  .engagement-stage {
    min-height: 290px;
  }

  .engagement-stage-inner {
    min-height: 290px;
  }

}


/* ---------- Small Mobile ---------- */

@media (max-width: 560px) {

  .specific-stages,
  .retainer-stages {
    grid-template-columns: 1fr;
  }

  .engagement-model-card {
    padding: 1.75rem;
  }

}
/* =========================================================
   AREAS OF ADVISORY
   ========================================================= */

.advisory-section {
  background: var(--soft-grey);
}

.advisory-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.advisory-intro h2 {
  margin-top: 0.7rem;
  margin-bottom: 0.9rem;
}

.advisory-intro p {
  max-width: 680px;
  margin: 0;
}


/* Dimension selector */

.advisory-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}

.advisory-tab {
  appearance: none;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;

  padding: 1.1rem 0.75rem;

  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-soft);

  cursor: pointer;

  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.advisory-tab:hover {
  color: var(--navy);
  background: rgba(255,255,255,0.45);
}

.advisory-tab.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}


/* Advisory panels */

.advisory-panel {
  padding-top: 0.25rem;
}

.advisory-panel[hidden] {
  display: none;
}

.advisory-panel-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.advisory-panel-heading h3 {
  margin-top: 0.7rem;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  font-weight: 500;
}


/* Subcategories */

.advisory-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.advisory-subcategory {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.6rem;
}

.advisory-subcategory h4 {
  margin: 0 0 1rem;

  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.advisory-subcategory ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.advisory-subcategory li {
  position: relative;
  padding: 0.55rem 0 0.55rem 0.9rem;

  border-top: 1px solid var(--line);

  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.advisory-subcategory li:first-child {
  border-top: none;
}

.advisory-subcategory li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 1.05em;

  width: 4px;
  height: 4px;

  border-radius: 50%;
  background: var(--gold);
}


/* Responsive */

@media (max-width: 1000px) {
  .advisory-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advisory-subcategory-grid {
    grid-template-columns: 1fr;
  }
}

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

  .advisory-tab {
    text-align: left;
  }

  .advisory-subcategory-grid {
    gap: 1rem;
  }
}
/* =========================================================
   WHERE LEADERSHIP TEAMS TYPICALLY NEED US
   ========================================================= */

.leadership-needs-section {
  background: var(--soft-grey);
}

.leadership-needs-intro {
  max-width: 1060px;
  margin-bottom: 3rem;
}

.leadership-needs-intro h2 {
  max-width: 1050px;
  margin-top: 0.75rem;
}


/* Cards */

.leadership-needs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.leadership-needs-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem 1.5rem;

  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.leadership-needs-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 162, 77, 0.65);
  box-shadow: 0 12px 28px rgba(15, 32, 39, 0.08);
}

.leadership-needs-card-header {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--teal-dark);
  border-radius: 10px;
  transition: background 0.3s var(--ease);
}

.leadership-needs-card:hover .leadership-needs-card-header {
  background: var(--teal);
}

.leadership-needs-card h3 {
  margin: 0;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.leadership-needs-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.leadership-needs-card li {
  position: relative;
  padding: 0.6rem 0 0.6rem 0.9rem;

  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: left;

  border-top: 1px solid var(--line);
}

.leadership-needs-card li:first-child {
  border-top: none;
}

.leadership-needs-card li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 1.1em;

  width: 4px;
  height: 4px;

  border-radius: 50%;
  background: var(--gold);
}


/* Bridge */

.leadership-needs-bridge {
  margin-top: 1.75rem;
  text-align: center;
}

.leadership-needs-bridge p {
  max-width: 1000px;
  margin: 0 auto;

  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.4;
}


/* Responsive */

@media (max-width: 1050px) {
  .leadership-needs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .leadership-needs-grid {
    grid-template-columns: 1fr;
  }

  .leadership-needs-card {
    padding: 1.4rem;
  }

  .leadership-needs-bridge {
    margin-top: 2rem;
    text-align: left;
  }
}
/* Bring Advisory sections closer together */
.leadership-needs-section {
  padding-bottom: 3rem;
}

.advisory-section {
  padding-top: 3rem;
}