/* =========================================================================
   IMPERIAL MAX GROUP — Master Stylesheet
   Integrated Advisory & Execution Platform
   Design language: editorial, executive, restrained. Navy + muted gold.
   ========================================================================= */

/* ---------- TOKENS ---------- */
:root {
  --navy-950: #071A2B;
  --navy-900: #0B263D;
  --navy-800: #123A59;
  --navy-700: #1B4A6E;
  --gold-600: #A67C34;
  --gold-500: #BE9653;
  --gold-400: #D2B274;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --ink: #101828;
  --white: #FFFFFF;
  --warm-white: #FAFAF7;
  --mist: #F3F5F7;
  --line: #DCE2E8;
  --line-dark: rgba(255,255,255,0.12);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --nav-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
::selection { background: var(--gold-500); color: var(--navy-950); }

/* ---------- TYPE ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow--light { color: var(--gold-400); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.65; color: var(--slate-700); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
@media (min-width: 1024px) { .container { padding-inline: 40px; } }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--mist { background: var(--mist); }
.section--dark { background: var(--navy-950); color: rgba(255,255,255,0.82); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--navy { background: var(--navy-900); color: rgba(255,255,255,0.82); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.measure { max-width: 720px; }
.measure-sm { max-width: 560px; }
.rule { height: 1px; width: 56px; background: var(--gold-600); border: 0; }
.rule--full { width: 100%; background: var(--line); }
.section--dark .rule--full, .section--navy .rule--full { background: var(--line-dark); }

/* Section heading block */
.head { max-width: 760px; }
.head .eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.head .eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.6; }
.head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.head p { margin-top: 20px; font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--slate-700); }
.section--dark .head p, .section--navy .head p { color: rgba(255,255,255,0.7); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-gold { background: var(--gold-600); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-500); }
.btn-dark { background: var(--navy-950); color: var(--white); }
.btn-dark:hover { background: var(--navy-800); }
.btn-outline { border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--navy-950); }
.btn-outline-light { border-color: rgba(255,255,255,0.3); color: var(--white); }
.btn-outline-light:hover { border-color: var(--gold-500); color: var(--gold-400); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--gold-500); color: var(--gold-500);
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
}
.brand-name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1; color: var(--white); white-space: nowrap; }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-500); margin-top: 4px; }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-link {
  position: relative; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.86); padding-block: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold-500); transition: width .35s var(--ease); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link .caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: 0.6; transition: transform .3s var(--ease); }
.has-mega:hover .caret { transform: rotate(225deg); margin-top: 2px; }
.nav-cta { display: none; }

/* Header states: transparent over hero, solid on scroll, solid on inner pages */
.site-header.is-solid { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(7,26,43,0.4); }
.site-header.is-solid .brand-name { color: var(--ink); }
.site-header.is-solid .nav-link { color: var(--slate-700); }
.site-header.is-solid .nav-link:hover { color: var(--ink); }
.site-header.is-solid .brand-mark { border-color: var(--gold-600); color: var(--gold-600); }
.site-header.is-solid .burger span { background: var(--ink); }

/* Mega menu (Services) */
.has-mega { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: var(--nav-h);
  background: var(--navy-950); color: var(--white);
  border-top: 1px solid var(--line-dark);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.has-mega:hover .mega, .mega:hover, .mega.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding-block: 16px; }
.mega-item { display: block; padding: 22px 22px; border-left: 1px solid var(--line-dark); transition: background .3s var(--ease); }
.mega-item:first-child { border-left: 0; }
.mega-item:hover { background: var(--navy-900); }
.mega-item .mi-no { font-family: var(--serif); font-size: 0.85rem; color: var(--gold-500); }
.mega-item h4 { font-size: 1.12rem; margin-top: 10px; color: var(--white); }
.mega-item p { margin-top: 8px; font-size: 0.82rem; line-height: 1.5; color: rgba(255,255,255,0.6); }
.mega-foot { border-top: 1px solid var(--line-dark); padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; color: rgba(255,255,255,0.65); }
.mega-foot a { color: var(--gold-400); }

/* Burger */
.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 95;
  background: var(--navy-950); color: var(--white);
  transform: translateX(100%); transition: transform .45s var(--ease);
  overflow-y: auto; padding: 28px 24px 60px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { display: block; font-family: var(--serif); font-size: 1.5rem; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu .mm-group-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-500); margin: 22px 0 4px; }
.mobile-menu .mm-sub { font-family: var(--sans); font-size: 1.05rem; padding: 11px 0; color: rgba(255,255,255,0.8); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 26px; }

@media (min-width: 1080px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
}

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--navy-950); color: var(--white); overflow: hidden; padding-top: calc(var(--nav-h) + 70px); padding-bottom: 90px; }
.hero-grid-bg { position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(var(--gold-500) 1px, transparent 1px), linear-gradient(90deg, var(--gold-500) 1px, transparent 1px); background-size: 120px 120px; pointer-events: none; }
.hero-glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(166,124,52,0.18), transparent 65%); top: -200px; right: -160px; pointer-events: none; }
.hero .container { position: relative; }
.hero-layout { display: grid; gap: 56px; align-items: center; }
@media (min-width: 960px) { .hero-layout { grid-template-columns: 1.15fr 0.85fr; gap: 64px; } }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 1.04; color: var(--white); }
.hero h1 .accent { color: var(--gold-500); }
.hero-sub { margin-top: 26px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.6; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 26px; align-items: center; font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); }
.hero-trust .dot { width: 5px; height: 5px; background: var(--gold-500); transform: rotate(45deg); }

/* Hero pillar index panel */
.pillar-index { border: 1px solid var(--line-dark); background: rgba(255,255,255,0.02); }
.pillar-index-head { padding: 18px 24px; border-bottom: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: baseline; }
.pillar-index-head .eyebrow { color: var(--gold-400); }
.pi-row { display: flex; align-items: center; gap: 18px; padding: 17px 24px; border-bottom: 1px solid var(--line-dark); transition: background .3s var(--ease); }
.pi-row:last-child { border-bottom: 0; }
.pi-row:hover { background: rgba(255,255,255,0.03); }
.pi-row .pi-no { font-family: var(--serif); font-size: 0.85rem; color: var(--gold-500); width: 24px; }
.pi-row .pi-name { font-family: var(--serif); font-size: 1.15rem; color: var(--white); flex: 1; }
.pi-row .pi-tag { font-size: 0.74rem; color: rgba(255,255,255,0.5); }
.pi-row .arr { color: var(--gold-500); transition: transform .3s var(--ease); }
.pi-row:hover .arr { transform: translateX(4px); }

/* ---------- PAGE BANNER (inner pages) ---------- */
.banner { position: relative; background: var(--navy-950); color: var(--white); overflow: hidden; padding-top: calc(var(--nav-h) + 64px); padding-bottom: clamp(56px, 7vw, 96px); }
.banner .hero-grid-bg { opacity: 0.05; }
.banner .container { position: relative; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { color: var(--gold-600); }
.banner h1 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--white); max-width: 16ch; }
.banner h1 .accent { color: var(--gold-500); }
.banner .banner-sub { margin-top: 24px; font-size: clamp(1.02rem, 1.4vw, 1.25rem); color: rgba(255,255,255,0.72); max-width: 640px; }

/* ---------- GRIDS & CARDS ---------- */
.grid { display: grid; gap: 0; }
.hairline-grid { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hairline-grid > * { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark .hairline-grid, .section--navy .hairline-grid { border-color: var(--line-dark); }
.section--dark .hairline-grid > *, .section--navy .hairline-grid > * { border-color: var(--line-dark); }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cols-2 { grid-template-columns: repeat(2,1fr); } .cols-3 { grid-template-columns: repeat(2,1fr); } .cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .cols-3 { grid-template-columns: repeat(3,1fr); } .cols-4 { grid-template-columns: repeat(4,1fr); } }

/* Pillar card */
.pcard { padding: 34px 30px; background: var(--warm-white); transition: background .4s var(--ease), color .4s var(--ease); position: relative; }
.pcard .pc-no { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-600); }
.pcard h3 { font-size: 1.5rem; margin-top: 18px; }
.pcard .pc-sub { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-500); margin-top: 6px; }
.pcard p { margin-top: 16px; color: var(--slate-700); font-size: 0.96rem; }
.pcard ul { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.pcard li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; color: var(--slate-700); }
.pcard li::before { content: ""; width: 6px; height: 6px; background: var(--gold-600); transform: rotate(45deg); margin-top: 7px; flex: none; }
.pcard .pc-link { margin-top: 24px; display: inline-flex; gap: 8px; align-items: center; font-size: 0.88rem; font-weight: 600; color: var(--gold-600); }
.pcard .pc-link .arr { transition: transform .3s var(--ease); }
.pcard:hover { background: var(--navy-950); color: rgba(255,255,255,0.8); }
.pcard:hover h3 { color: var(--white); }
.pcard:hover p, .pcard:hover li { color: rgba(255,255,255,0.72); }
.pcard:hover .pc-sub { color: var(--gold-400); }
.pcard:hover .pc-link { color: var(--gold-400); }
.pcard:hover .pc-link .arr { transform: translateX(4px); }

/* Dark pillar card (on dark sections) */
.pcard--dark { background: var(--navy-900); color: rgba(255,255,255,0.8); }
.pcard--dark h3 { color: var(--white); }
.pcard--dark p, .pcard--dark li { color: rgba(255,255,255,0.66); }
.pcard--dark:hover { background: var(--navy-800); }

/* Simple feature cell */
.cell { padding: 30px 28px; background: var(--warm-white); transition: background .4s var(--ease), color .4s var(--ease); }
.cell .marker { width: 9px; height: 9px; background: var(--gold-600); transform: rotate(45deg); margin-bottom: 18px; transition: transform .4s var(--ease); }
.cell h3 { font-size: 1.2rem; }
.cell p { margin-top: 10px; font-size: 0.92rem; color: var(--slate-700); }
.cell:hover { background: var(--navy-950); color: rgba(255,255,255,0.78); }
.cell:hover h3 { color: var(--white); }
.cell:hover p { color: rgba(255,255,255,0.66); }
.cell:hover .marker { transform: rotate(45deg) scale(1.25); }
.section--dark .cell, .section--navy .cell { background: var(--navy-900); color: rgba(255,255,255,0.78); }
.section--dark .cell h3, .section--navy .cell h3 { color: var(--white); }
.section--dark .cell p, .section--navy .cell p { color: rgba(255,255,255,0.62); }
.section--dark .cell:hover, .section--navy .cell:hover { background: var(--navy-800); }

/* Numbered statement / question cell */
.qcell { padding: 34px 30px; background: var(--navy-900); display: flex; gap: 22px; align-items: flex-start; transition: background .4s var(--ease); }
.qcell:hover { background: var(--navy-800); }
.qcell .q-no { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-500); flex: none; }
.qcell p { font-size: 1.18rem; color: rgba(255,255,255,0.9); line-height: 1.4; }

/* Index list (services, process) */
.ilist { border-top: 1px solid var(--line); }
.section--dark .ilist, .section--navy .ilist { border-color: var(--line-dark); }
.irow { display: grid; gap: 18px; padding: 30px 4px; border-bottom: 1px solid var(--line); grid-template-columns: 1fr; transition: background .3s var(--ease); }
.section--dark .irow, .section--navy .irow { border-color: var(--line-dark); }
@media (min-width: 900px) { .irow { grid-template-columns: 64px 0.9fr 1.4fr; gap: 32px; align-items: start; padding: 38px 4px; } }
.irow .ir-no { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-600); }
.irow h3 { font-size: 1.4rem; }
.irow .ir-body { color: var(--slate-700); }
.section--dark .irow .ir-body, .section--navy .irow .ir-body { color: rgba(255,255,255,0.68); }
.irow .ir-list { margin-top: 14px; display: grid; gap: 8px; }
@media (min-width: 560px) { .irow .ir-list { grid-template-columns: repeat(2,1fr); gap: 8px 24px; } }
.irow .ir-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.irow .ir-list li::before { content: ""; width: 5px; height: 5px; background: var(--gold-600); transform: rotate(45deg); margin-top: 7px; flex: none; }

/* ---------- INTEGRATED GROWTH MODEL ---------- */
.model { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 920px) { .model { grid-template-columns: repeat(5, 1fr); position: relative; } }
.model-node { border: 1px solid var(--line-dark); padding: 26px 20px; background: rgba(255,255,255,0.02); transition: background .4s var(--ease), border-color .4s var(--ease); }
.model-node:hover { background: rgba(255,255,255,0.05); border-color: var(--gold-600); }
.model-node .mn-no { font-family: var(--serif); color: var(--gold-500); font-size: 0.9rem; }
.model-node h4 { color: var(--white); font-size: 1.18rem; margin-top: 12px; }
.model-node p { margin-top: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.model-flow { display: flex; align-items: center; gap: 14px; margin-top: 30px; font-size: 0.86rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.model-flow . chip { }

/* ---------- PLATFORM / SPOTLIGHT ---------- */
.spotlight { position: relative; overflow: hidden; background: var(--navy-950); color: var(--white); }
.spotlight .hero-glow { top: auto; bottom: -200px; right: -160px; }
.platform-card { display: block; padding: 30px 28px; background: var(--navy-900); transition: background .35s var(--ease); }
.platform-card:hover { background: var(--navy-800); }
.platform-card h3 { color: var(--white); font-size: 1.3rem; }
.platform-card .pf-tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 14px; display: block; }
.platform-card p { margin-top: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.66); }

/* ---------- INDUSTRIES ---------- */
.itag { display: flex; align-items: center; gap: 14px; padding: 24px 26px; background: var(--warm-white); transition: background .4s var(--ease), color .4s var(--ease); }
.itag .marker { width: 8px; height: 8px; background: var(--gold-600); transform: rotate(45deg); flex: none; transition: transform .4s var(--ease); }
.itag span.label { font-family: var(--serif); font-size: 1.18rem; }
.itag:hover { background: var(--navy-950); color: var(--white); }
.itag:hover .marker { transform: rotate(45deg) scale(1.3); }
.section--dark .itag, .section--navy .itag { background: var(--navy-900); color: rgba(255,255,255,0.85); }
.section--dark .itag:hover, .section--navy .itag:hover { background: var(--navy-800); }

/* ---------- LEADERSHIP ---------- */
.leader { padding: 32px 28px; background: var(--navy-900); border: 1px solid var(--line-dark); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.leader:hover { border-color: var(--gold-600); transform: translateY(-4px); }
.leader-mono { display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid var(--gold-600); border-radius: 50%; font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-bottom: 22px; background: radial-gradient(circle at 32% 26%, rgba(166,124,52,0.22), transparent 62%); }
.leader .l-role { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 8px; }
.leader h3 { color: var(--white); font-size: 1.35rem; }
.leader .l-pos { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-dark); font-size: 0.9rem; color: rgba(255,255,255,0.62); }

/* ---------- ACCORDION ---------- */
.acc { border-top: 1px solid var(--line); }
.section--dark .acc, .section--navy .acc { border-color: var(--line-dark); }
.acc-item { border-bottom: 1px solid var(--line); }
.section--dark .acc-item, .section--navy .acc-item { border-color: var(--line-dark); }
.acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; text-align: left; }
.acc-trigger h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); transition: color .3s var(--ease); }
.acc-trigger:hover h3 { color: var(--gold-600); }
.section--dark .acc-trigger:hover h3, .section--navy .acc-trigger:hover h3 { color: var(--gold-400); }
.acc-trigger .acc-no { font-family: var(--serif); color: var(--gold-500); font-size: 0.9rem; margin-right: 18px; }
.acc-icon { font-size: 1.6rem; color: var(--gold-600); flex: none; transition: transform .35s var(--ease); line-height: 1; }
.acc-item.is-open .acc-icon { transform: rotate(45deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc-body > div { overflow: hidden; }
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-content { padding: 0 0 28px; color: var(--slate-700); }
.section--dark .acc-content, .section--navy .acc-content { color: rgba(255,255,255,0.68); }
.acc-tags { display: grid; gap: 10px 28px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .acc-tags { grid-template-columns: repeat(2,1fr); } }
.acc-tags li { display: flex; gap: 11px; align-items: center; }
.acc-tags li::before { content: ""; width: 6px; height: 6px; background: var(--gold-500); transform: rotate(45deg); flex: none; }

/* ---------- PILL / CHIP ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 16px; border: 1px solid var(--line); font-size: 0.82rem; color: var(--slate-700); }
.section--dark .chip, .section--navy .chip { border-color: var(--line-dark); color: rgba(255,255,255,0.72); }

/* ---------- QUOTE / STATEMENT ---------- */
.statement { text-align: center; max-width: 940px; margin-inline: auto; }
.statement p { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.32; color: rgba(255,255,255,0.92); }
.statement .accent { color: var(--gold-500); }

/* ---------- SPLIT CTA ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy-950); color: var(--white); padding: clamp(40px, 6vw, 80px); }
.cta-band .hero-glow { bottom: -180px; right: -120px; top: auto; }
.cta-grid { position: relative; display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .cta-grid { grid-template-columns: 1.6fr 1fr; gap: 48px; } .cta-grid .cta-action { text-align: right; } }
.cta-grid h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--white); }
.cta-grid p { margin-top: 18px; color: rgba(255,255,255,0.7); max-width: 52ch; }

/* ---------- FORMS ---------- */
.form { background: var(--navy-900); border: 1px solid var(--line-dark); padding: 32px; }
.form-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-grid { grid-template-columns: repeat(2,1fr); } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 11px 0; color: var(--white); font-family: var(--sans); font-size: 0.96rem;
  transition: border-color .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select { background: var(--navy-900); }
.field select option { background: var(--navy-900); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.32); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold-500); }
.field.consent { flex-direction: row; align-items: flex-start; gap: 12px; }
.field.consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--gold-600); }
.field.consent label { text-transform: none; letter-spacing: 0; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.form .btn { width: 100%; justify-content: center; margin-top: 28px; }
.form-note { margin-top: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { margin-top: 16px; font-size: 0.9rem; text-align: center; }
.form-status.ok { color: var(--gold-400); }
.form-status.err { color: #E2A0A0; }

/* Contact detail blocks */
.contact-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .contact-grid { grid-template-columns: repeat(2,1fr); } }
.contact-item .ci-label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 7px; }
.contact-item .ci-value { color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.contact-item a.ci-value:hover { color: var(--gold-400); }

/* ---------- PROSE (privacy / terms / insights article) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin-top: 48px; margin-bottom: 14px; }
.prose h3 { font-size: 1.2rem; margin-top: 30px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; color: var(--slate-700); }
.prose ul { margin: 0 0 18px; padding-left: 0; display: grid; gap: 9px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); }
.prose ul li::before { content: ""; width: 6px; height: 6px; background: var(--gold-600); transform: rotate(45deg); margin-top: 8px; flex: none; }
.prose a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .updated { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 8px; }

/* Disclaimer / note box */
.note-box { border: 1px solid var(--line); border-left: 3px solid var(--gold-600); background: var(--mist); padding: 22px 26px; }
.note-box p { color: var(--slate-700); font-size: 0.92rem; }
.note-box .nb-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 8px; }

/* ---------- ARTICLE / EDITORIAL ---------- */
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 26px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.article-meta .am-sep { width: 5px; height: 5px; background: var(--gold-500); transform: rotate(45deg); }
.article-meta .am-author { color: var(--gold-400); }
.article-col { max-width: 800px; margin-inline: auto; }
.exec-summary { border: 1px solid var(--line); border-left: 3px solid var(--gold-600); background: var(--mist); padding: 28px 30px; margin-bottom: 40px; }
.exec-summary .es-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 16px; }
.exec-summary ul { display: grid; gap: 12px; }
.exec-summary li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); font-size: 0.96rem; }
.exec-summary li::before { content: ""; width: 7px; height: 7px; background: var(--gold-600); transform: rotate(45deg); margin-top: 8px; flex: none; }
.framework { border: 1px solid var(--line); background: var(--white); padding: 30px; margin: 40px 0; }
.framework .fw-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 8px; }
.framework h3 { font-size: 1.3rem; margin-bottom: 18px; }
.framework .fw-check { display: grid; gap: 13px; }
.framework .fw-check li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); }
.framework .fw-check li::before { content: ""; width: 16px; height: 16px; border: 1.5px solid var(--gold-600); margin-top: 3px; flex: none; }

/* Editorial table */
.tbl { width: 100%; border-collapse: collapse; margin: 6px 0; font-size: 0.92rem; }
.tbl caption { text-align: left; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 12px; }
.tbl th, .tbl td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl thead th { background: var(--navy-950); color: var(--white); font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; }
.tbl tbody th { font-family: var(--serif); font-weight: 600; color: var(--ink); width: 30%; }
.tbl tbody tr:nth-child(even) { background: var(--mist); }
.tbl-wrap { overflow-x: auto; margin: 28px 0; }

/* ---------- CLIENT STRIP ---------- */
.client-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px; max-width: 940px; margin-inline: auto; }
.client-name { font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--slate-700); letter-spacing: 0.01em; white-space: nowrap; }
.client-sep { width: 6px; height: 6px; background: var(--gold-600); transform: rotate(45deg); flex: none; opacity: 0.7; }

/* ---------- INSIGHTS CARDS ---------- */
.post { display: flex; flex-direction: column; padding: 30px 28px; background: var(--warm-white); border: 1px solid var(--line); transition: border-color .35s var(--ease), transform .35s var(--ease); height: 100%; }
.post:hover { border-color: var(--gold-600); transform: translateY(-4px); }
.post .p-cat { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 16px; }
.post h3 { font-size: 1.3rem; line-height: 1.25; }
.post p { margin-top: 12px; font-size: 0.92rem; color: var(--slate-700); flex: 1; }
.post .p-more { margin-top: 20px; font-size: 0.85rem; font-weight: 600; color: var(--gold-600); display: inline-flex; gap: 8px; align-items: center; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding-block: 64px 36px; }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 20px; font-size: 0.9rem; line-height: 1.7; max-width: 34ch; }
.footer-brand .f-contact { margin-top: 22px; display: grid; gap: 6px; font-size: 0.88rem; }
.footer-brand .f-contact a:hover { color: var(--gold-400); }
.footer-col h4 { color: var(--white); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.9rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { padding-top: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 0.78rem; }
.footer-bottom .eyebrow { color: rgba(255,255,255,0.4); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* ---------- SKIP LINK ---------- */
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--gold-600); color: var(--navy-950); padding: 10px 18px; font-weight: 600; transition: top .3s var(--ease); }
.skip-link:focus { top: 14px; }

/* ---------- UTILITIES ---------- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.text-gold { color: var(--gold-600); }
.cta-link { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 600; color: var(--gold-600); }
.cta-link .arr { transition: transform .3s var(--ease); }
.cta-link:hover .arr { transform: translateX(4px); }
.section--dark .cta-link, .section--navy .cta-link { color: var(--gold-400); }
.grid-2-uneven { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .grid-2-uneven { grid-template-columns: 5fr 7fr; gap: 64px; } }
.grid-2-even { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid-2-even { grid-template-columns: 1fr 1fr; gap: 56px; } }
