
:root {
  --navy-950: #03101d;
  --navy-900: #06182a;
  --navy-800: #0a233b;
  --navy-700: #12344f;
  --gold: #d4af37;
  --gold-2: #e1bd55;
  --champagne: #e6d7b8;
  --cream: #f7f3eb;
  --white: #ffffff;
  --ink: #152231;
  --slate: #52606d;
  --line: rgba(212, 175, 55, 0.30);
  --shadow: 0 24px 60px rgba(3, 16, 29, 0.16);
  --radius: 18px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.05; margin: 0 0 18px; }
h1 { font-size: clamp(3.1rem, 7vw, 6.2rem); font-weight: 600; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.3rem); font-weight: 600; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 600; }
h4 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.27rem); color: var(--slate); max-width: 760px; }
.gold { color: var(--gold-2); }
.muted { color: var(--slate); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), #b98824); color: var(--navy-950); box-shadow: 0 10px 30px rgba(212,175,55,.22); }
.btn-primary:hover { background: var(--champagne); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3,16,29,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,.18);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 255px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  font-weight: 600;
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { right: 0; }
.site-nav .client-link { color: var(--gold-2); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: white; border-radius: 6px; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ''; display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,.14), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #0b2b47);
  color: var(--white);
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; padding: 90px 0; }
.hero-copy { max-width: 650px; }
.hero-copy .lead { color: rgba(255,255,255,.78); max-width: 620px; }
.hero-mark { margin: 24px 0; display: flex; align-items: center; gap: 10px; }
.hero-mark::before, .hero-mark::after { content: ''; height: 1px; width: 76px; background: var(--gold); }
.hero-mark i { width: 9px; height: 9px; border: 1px solid var(--gold); transform: rotate(45deg); }
.hero-visual { position: relative; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 7% -6% -7% 12%;
  border: 1px solid rgba(212,175,55,.32);
  border-radius: var(--radius);
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  object-position: 63% center;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero-badge {
  position: absolute;
  z-index: 3;
  left: -32px;
  bottom: 36px;
  width: min(310px, 80%);
  background: rgba(3,16,29,.93);
  border: 1px solid rgba(212,175,55,.45);
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; color: var(--gold-2); font-family: var(--serif); font-size: 1.5rem; margin-bottom: 4px; }
.hero-badge span { display: block; color: rgba(255,255,255,.72); font-size: .82rem; }

.pillar-strip { background: var(--navy-900); color: white; border-top: 1px solid rgba(212,175,55,.2); border-bottom: 1px solid rgba(212,175,55,.2); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); }
.pillar { padding: 28px; border-right: 1px solid rgba(255,255,255,.12); }
.pillar:last-child { border-right: none; }
.pillar b { display: block; color: var(--gold-2); text-transform: uppercase; letter-spacing: .09em; font-size: .76rem; margin-bottom: 6px; }
.pillar span { color: rgba(255,255,255,.72); font-size: .86rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.card {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(6,24,42,.09);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(3,16,29,.06);
}
.card:hover { border-color: rgba(212,175,55,.45); }
.icon-ring {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-2);
  margin-bottom: 20px;
}
.icon-ring svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.card p { color: var(--slate); font-size: .94rem; }
.card-link { color: var(--navy-900); font-weight: 700; text-decoration: none; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
.card-link:hover { color: #9b701e; }

.dark-section {
  color: white;
  background:
    radial-gradient(circle at 90% 15%, rgba(212,175,55,.12), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}
.dark-section .lead, .dark-section p { color: rgba(255,255,255,.74); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.quote-block { border-left: 2px solid var(--gold); padding-left: 28px; margin: 30px 0; }
.quote-block p { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.18; color: white; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { position: relative; padding: 10px 0 10px 32px; }
.check-list li::before { content: '\25C6'; position: absolute; left: 0; color: var(--gold); font-size: .72rem; top: 14px; }

.method-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 44px; border: 1px solid var(--line); }
.method-step { min-height: 180px; padding: 24px 18px; border-right: 1px solid var(--line); background: rgba(255,255,255,.45); }
.method-step:last-child { border-right: none; }
.method-step .number { display: block; font-family: var(--serif); color: var(--gold); font-size: 2rem; margin-bottom: 24px; }
.method-step b { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; margin-bottom: 8px; }
.method-step p { font-size: .82rem; color: var(--slate); margin: 0; }

.founder-image { position: relative; }
.founder-image img { border-radius: 10px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.founder-image::after { content: ''; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--line); border-radius: 10px; z-index: -1; }
.credentials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.credential { padding: 16px; border: 1px solid rgba(6,24,42,.10); background: rgba(255,255,255,.6); }
.credential b { display: block; font-family: var(--serif); font-size: 1.18rem; }
.credential span { color: var(--slate); font-size: .8rem; }

.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; }
.industry { border: 1px solid rgba(212,175,55,.35); padding: 24px; text-align: center; background: rgba(255,255,255,.04); }
.industry b { color: var(--gold-2); display: block; font-family: var(--serif); font-size: 1.35rem; }
.industry span { color: rgba(255,255,255,.66); font-size: .82rem; }

.cta-panel { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--navy-900); color: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cta-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.cta-copy { padding: clamp(40px, 7vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.cta-copy p { color: rgba(255,255,255,.72); }
.contact-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.contact-chip { border: 1px solid rgba(255,255,255,.2); padding: 10px 14px; text-decoration: none; color: rgba(255,255,255,.85); font-size: .82rem; }
.contact-chip:hover { border-color: var(--gold); color: var(--gold-2); }

.page-hero { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: white; padding: 104px 0 88px; border-bottom: 1px solid var(--gold); }
.page-hero .lead { color: rgba(255,255,255,.72); }
.page-hero h1 { font-size: clamp(3.1rem, 7vw, 5.6rem); max-width: 900px; }
.breadcrumbs { margin-bottom: 30px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); }
.breadcrumbs a { color: var(--gold-2); text-decoration: none; }

.service-detail { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid rgba(6,24,42,.1); }
.service-detail:last-child { border-bottom: none; }
.service-detail .icon-ring { margin: 0; }
.service-detail ul { margin: 12px 0 0; color: var(--slate); }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.article-card { background: white; border: 1px solid rgba(6,24,42,.1); padding: 30px; min-height: 340px; display: flex; flex-direction: column; }
.article-card .tag { color: var(--gold); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.article-card p { color: var(--slate); }
.article-card a { margin-top: auto; }
.article-body { background: white; padding: 42px; border: 1px solid rgba(6,24,42,.08); margin-top: 28px; }
.article-body h2 { font-size: 2.3rem; }
.article-body h3 { margin-top: 30px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field small { color: var(--slate); font-size: .74rem; }
label { font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(6,24,42,.18);
  background: white;
  padding: 14px 15px;
  border-radius: 4px;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(212,175,55,.45); border-color: var(--gold); }
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-notice { margin: 20px 0; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(212,175,55,.10); font-size: .86rem; }
.form-notice.is-error { border-left-color: #a33a33; background: rgba(163,58,51,.08); color: #7e2924; }
.form-consent { font-size: .78rem; margin-top: 16px; }
.form-consent a { color: var(--navy-900); font-weight: 700; }
button:disabled { cursor: wait; opacity: .72; transform: none !important; }
.contact-box { background: var(--navy-900); color: white; padding: 36px; border-radius: 8px; }
.contact-box p { color: rgba(255,255,255,.72); }
.contact-line { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.contact-line strong { color: var(--gold-2); display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.site-footer { background: var(--navy-950); color: white; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 46px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo { width: 280px; margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.64); font-size: .86rem; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .86rem; }
.footer-nav a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.48); font-size: .74rem; }
.footer-bottom a { color: inherit; }

.reveal { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid rgba(212,175,55,.65); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .site-nav .nav-consult { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .method-grid { grid-template-columns: repeat(3,1fr); }
  .method-step { border-bottom: 1px solid var(--line); }
  .method-step:nth-child(3) { border-right: none; }
  .industries { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .brand { width: 210px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: var(--navy-950);
    border-bottom: 1px solid var(--gold);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 4px; }
  .site-nav a::after { display: none; }
  .site-nav .nav-consult { display: inline-flex; margin-top: 8px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 72px 0 84px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 620px; margin: 0 auto; }
  .hero-visual img { aspect-ratio: 5 / 4; }
  .hero-badge { left: 18px; bottom: 18px; }
  .pillars { grid-template-columns: repeat(2,1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .split, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .founder-image { max-width: 560px; }
  .cta-image { order: 2; }
  .cta-image img { min-height: 420px; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .section-sm { padding: 48px 0; }
  h1 { font-size: 3.25rem; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-grid { padding-top: 56px; }
  .hero-visual::before { display: none; }
  .hero-badge { position: relative; left: auto; bottom: auto; width: 100%; margin-top: -2px; }
  .pillars, .card-grid, .method-grid, .industries, .credentials, .form-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .pillar:last-child { border-bottom: none; }
  .method-step { border-right: none !important; }
  .field.full { grid-column: auto; }
  .service-detail { grid-template-columns: 1fr; }
  .article-body { padding: 26px 20px; }
  .page-hero { padding: 76px 0 64px; }
}

/* MISHOR restoration fixes — 2026-07-17 */
body.menu-open { overflow: hidden; }
.brand img, .footer-logo { object-fit: contain; }
.hero-visual img { object-position: 58% center; }
.btn { visibility: visible; opacity: 1; }
@media (max-width: 820px) {
  .site-header { position: sticky; top: 0; }
  .site-nav {
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    box-shadow: 0 18px 40px rgba(0,0,0,.34);
  }
  .site-nav.open { display: flex; }
  .hero-visual img { object-position: 58% center; }
}
@media (max-width: 560px) {
  .brand { width: 190px; }
  .nav-wrap { min-height: 70px; }
  .site-nav { inset: 70px 0 auto; }
  .hero-copy .lead { font-size: 1rem; }
  .hero-visual img { aspect-ratio: 4 / 3; object-position: 58% center; }
}

/* Homepage v2: executive stewardship experience */
.hero-v2 { min-height: 780px; }
.hero-v2 .hero-grid { grid-template-columns: 1.08fr .92fr; }
.hero-v2 h1 { font-size: clamp(3.35rem, 5.8vw, 5.8rem); line-height: .94; }
.hero-line { display: block; }
.hero-note {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 1px solid rgba(212,175,55,.55);
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  letter-spacing: .04em;
}
.badge-kicker {
  color: rgba(255,255,255,.48) !important;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .64rem !important;
  margin-bottom: 7px;
}
.signal-strip { background: #081c30; color: rgba(255,255,255,.72); border-block: 1px solid rgba(212,175,55,.22); }
.signal-row { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 24px; text-align: center; }
.signal-row span { text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; }
.signal-row i { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); flex: 0 0 auto; }

.executive-showcase { background: #f4f0e7; }
.showcase-intro { display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 64px; margin-bottom: 44px; }
.showcase-intro h2 { max-width: 720px; margin-bottom: 0; }
.showcase-intro .lead { margin-bottom: 7px; }
.executive-shell { border: 1px solid rgba(212,175,55,.38); border-radius: 16px; overflow: hidden; background: #f8fafb; box-shadow: 0 30px 80px rgba(3,16,29,.18); }
.executive-topbar { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 24px; background: var(--navy-950); color: white; border-bottom: 1px solid rgba(212,175,55,.35); }
.executive-topbar > div { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.2rem; }
.executive-topbar img { width: 30px; height: 30px; object-fit: contain; }
.preview-label { padding: 7px 10px; border: 1px solid rgba(212,175,55,.35); color: var(--gold-2); text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; font-weight: 700; }
.executive-body { padding: 26px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.briefing-panel, .decision-panel { background: white; border: 1px solid rgba(6,24,42,.09); padding: 28px; }
.briefing-heading, .decision-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.briefing-heading h3, .decision-header h3 { font-size: 1.85rem; margin-bottom: 8px; }
.briefing-panel > p { color: var(--slate); font-size: .9rem; }
.micro-label { margin: 0 0 6px !important; color: #9d741f !important; text-transform: uppercase; letter-spacing: .12em; font-size: .66rem !important; font-weight: 700; }
.status-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(212,175,55,.14); color: #7c5913; text-transform: uppercase; letter-spacing: .08em; font-size: .62rem; font-weight: 800; }
.briefing-questions { margin-top: 22px; display: grid; gap: 10px; }
.briefing-questions > div { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(6,24,42,.08); }
.briefing-questions span { color: var(--gold); font-family: var(--serif); font-size: 1.08rem; }
.briefing-questions p { margin: 0; color: var(--slate); font-size: .82rem; }
.briefing-questions b { color: var(--ink); }
.executive-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.executive-kpi { min-height: 145px; padding: 20px; background: var(--navy-900); color: white; border-top: 2px solid var(--gold); display: flex; flex-direction: column; }
.executive-kpi > span { color: rgba(255,255,255,.52); text-transform: uppercase; letter-spacing: .09em; font-size: .62rem; font-weight: 700; }
.executive-kpi strong { display: block; margin: auto 0 4px; color: var(--gold-2); font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }
.executive-kpi small { color: rgba(255,255,255,.58); font-size: .7rem; }
.decision-panel { grid-column: 1 / -1; }
.decision-header { align-items: center; }
.decision-header a { color: #8a651a; text-decoration: none; text-transform: uppercase; letter-spacing: .06em; font-size: .66rem; font-weight: 700; white-space: nowrap; }
.decision-list { margin-top: 18px; border-top: 1px solid rgba(6,24,42,.09); }
.decision-list > div { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(6,24,42,.08); }
.decision-list > div:last-child { border-bottom: none; }
.priority { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(6,24,42,.15); font-size: .67rem; font-weight: 800; }
.priority.high { background: #efe1bd; border-color: #c8a44e; }
.decision-list p { margin: 0; }
.decision-list b { display: block; font-family: var(--serif); font-size: 1.08rem; }
.decision-list small { display: block; color: var(--slate); font-size: .73rem; }
.decision-list em { font-style: normal; color: var(--slate); text-transform: uppercase; letter-spacing: .08em; font-size: .61rem; }

.conviction-section { overflow: hidden; }
.conviction-grid { align-items: start; }
.stewardship-sequence { display: grid; }
.stewardship-sequence article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); }
.stewardship-sequence article:first-child { border-top-color: rgba(212,175,55,.55); }
.stewardship-sequence article > span { color: var(--gold-2); font-family: var(--serif); font-size: 1.5rem; }
.stewardship-sequence h3 { font-size: 1.55rem; margin-bottom: 7px; }
.stewardship-sequence p { margin: 0; font-size: .86rem; }

.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 44px; }
.value-card { position: relative; min-height: 300px; padding: 34px; background: rgba(255,255,255,.72); border: 1px solid rgba(6,24,42,.09); overflow: hidden; }
.value-card::after { content: ''; position: absolute; inset: auto 0 0; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--gold); transition: transform .25s ease; }
.value-card:hover::after { transform: scaleX(1); }
.value-number { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.value-card h3 { max-width: 450px; margin-top: 42px; }
.value-card p { color: var(--slate); max-width: 520px; }
.value-card a, .text-link { color: var(--navy-900); text-decoration: none; text-transform: uppercase; letter-spacing: .07em; font-size: .7rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; padding: 0 4px; }

.moment-section { background: #eae3d6; }
.moment-heading { max-width: 820px; }
.moment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.moment-card { min-height: 330px; padding: 32px; background: var(--navy-900); color: white; border-top: 2px solid var(--gold); }
.moment-card > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; font-weight: 700; }
.moment-card h3 { margin-top: 52px; font-size: 2rem; }
.moment-card p { color: rgba(255,255,255,.66); font-size: .88rem; }

.founder-proof { background: white; }
.proof-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 28px; border-top: 1px solid rgba(6,24,42,.1); border-left: 1px solid rgba(6,24,42,.1); }
.proof-list > div { padding: 18px; border-right: 1px solid rgba(6,24,42,.1); border-bottom: 1px solid rgba(6,24,42,.1); }
.proof-list b { display: block; font-family: var(--serif); font-size: 1.14rem; }
.proof-list span { color: var(--slate); font-size: .76rem; }

.method-ribbon { background: var(--navy-900); color: white; border-block: 1px solid rgba(212,175,55,.3); }
.method-ribbon .container { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 46px; }
.method-ribbon-heading h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 0; }
.method-ribbon-steps { display: grid; grid-template-columns: repeat(6,1fr); border: 1px solid rgba(255,255,255,.12); }
.method-ribbon-steps span { min-height: 100px; padding: 16px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-right: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .06em; font-size: .56rem; }
.method-ribbon-steps span:last-child { border-right: none; }
.method-ribbon-steps b { color: var(--gold-2); font-family: var(--serif); font-size: 1.45rem; }

/* About: executive credibility and career evidence */
.about-hero .lead { max-width: 900px; }
.founder-intro { align-items: start; }
.executive-scope { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.executive-scope span { padding: 8px 11px; border: 1px solid rgba(6,24,42,.13); background: rgba(255,255,255,.65); color: var(--navy-800); text-transform: uppercase; letter-spacing: .07em; font-size: .62rem; font-weight: 700; }
.pattern-section { position: relative; overflow: hidden; }
.pattern-section::after { content: ''; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(212,175,55,.12); border-radius: 50%; right: -180px; bottom: -260px; }
.pattern-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.pattern-grid > div { min-height: 145px; padding: 24px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.pattern-grid b { display: block; color: var(--gold-2); font-family: var(--serif); font-size: 1.55rem; margin-bottom: 8px; }
.pattern-grid span { color: rgba(255,255,255,.65); font-size: .8rem; }

.experience-section { background: #f2ede3; }
.experience-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 60px; margin-bottom: 50px; }
.experience-heading h2 { margin-bottom: 0; }
.experience-timeline { position: relative; }
.experience-timeline::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--gold), rgba(212,175,55,.15)); }
.experience-entry { position: relative; display: grid; grid-template-columns: 66px minmax(0,1fr) minmax(220px, .42fr); gap: 30px; padding: 32px 0; border-top: 1px solid rgba(6,24,42,.11); }
.experience-entry:last-child { border-bottom: 1px solid rgba(6,24,42,.11); }
.experience-marker { position: relative; z-index: 2; width: 66px; display: flex; justify-content: center; }
.experience-marker span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); border: 1px solid var(--gold); color: var(--gold-2); font-family: var(--serif); font-size: 1rem; box-shadow: 0 0 0 8px #f2ede3; }
.experience-copy h3 { font-size: clamp(1.75rem,3vw,2.35rem); margin-bottom: 12px; }
.experience-copy > p:last-child { margin-bottom: 0; color: var(--slate); font-size: .91rem; }
.experience-outcome { align-self: center; padding: 20px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.55); }
.experience-outcome b { display: block; color: var(--navy-900); font-family: var(--serif); font-size: 1.25rem; margin-bottom: 5px; }
.experience-outcome span { color: var(--slate); font-size: .76rem; }
.experience-note { max-width: 840px; margin: 24px 0 0 96px; color: var(--slate); font-size: .7rem; }

.leadership-section { background: white; }
.leadership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 42px; }
.leadership-card { min-height: 270px; padding: 28px; border: 1px solid rgba(6,24,42,.09); background: #fbfaf7; }
.leadership-card > span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.leadership-card h3 { margin-top: 38px; font-size: 1.75rem; }
.leadership-card p { color: var(--slate); font-size: .85rem; }
.purpose-section .quote-block { max-width: 660px; }

/* Services: engagement pathways */
.engagement-section { background: #eae3d6; border-bottom: 1px solid rgba(6,24,42,.08); }
.engagement-intro { display: grid; grid-template-columns: 1fr .85fr; align-items: end; gap: 54px; }
.engagement-intro h2 { margin-bottom: 0; }
.engagement-intro .lead { margin-bottom: 8px; }
.engagement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 34px; }
.engagement-card { min-height: 315px; padding: 28px; background: white; border-top: 2px solid var(--gold); box-shadow: 0 12px 34px rgba(3,16,29,.05); }
.engagement-card > span { color: #8d681c; text-transform: uppercase; letter-spacing: .1em; font-size: .64rem; font-weight: 800; }
.engagement-card h3 { margin-top: 38px; font-size: 1.85rem; }
.engagement-card p { color: var(--slate); font-size: .85rem; }
.engagement-card a { color: var(--navy-900); text-decoration: none; text-transform: uppercase; letter-spacing: .06em; font-size: .68rem; font-weight: 800; }

/* Platform: governed executive intelligence */
.platform-hero .lead { max-width: 900px; }
.platform-positioning { background: #eae3d6; }
.positioning-grid, .brief-intro, .governance-intro { display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 58px; }
.positioning-grid h2, .brief-intro h2, .governance-intro h2 { margin-bottom: 0; }
.intelligence-flow { margin-top: 44px; display: grid; grid-template-columns: 1fr 54px 1.25fr 54px 1fr; align-items: stretch; padding: 14px; background: #f8f6f1; border: 1px solid rgba(6,24,42,.1); box-shadow: 0 24px 60px rgba(3,16,29,.09); }
.flow-column { padding: 26px; }
.flow-items { display: grid; gap: 8px; margin-top: 18px; }
.flow-items span { padding: 9px 11px; border: 1px solid rgba(6,24,42,.09); background: white; color: var(--slate); font-size: .72rem; }
.flow-core { display: flex; flex-direction: column; justify-content: center; background: var(--navy-900); color: white; border-top: 2px solid var(--gold); }
.flow-core img { width: 42px; margin-bottom: 20px; }
.flow-core h3 { font-size: 1.72rem; }
.core-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.core-tags span { padding: 6px 8px; border: 1px solid rgba(212,175,55,.35); color: var(--gold-2); text-transform: uppercase; letter-spacing: .08em; font-size: .56rem; }
.flow-arrow { display: grid; place-items: center; color: var(--gold); font-size: 1.65rem; }

.platform-capabilities { background: white; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 44px; }
.capability-card { min-height: 330px; padding: 26px; display: flex; flex-direction: column; border: 1px solid rgba(6,24,42,.09); background: #fbfaf7; }
.capability-card > span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.capability-card h3 { margin-top: 38px; font-size: 1.72rem; }
.capability-card p { color: var(--slate); font-size: .83rem; }
.capability-card b { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(6,24,42,.09); color: var(--navy-900); text-transform: uppercase; letter-spacing: .07em; font-size: .61rem; }

.executive-brief-section { background: #f2ede3; }
.brief-intro { margin-bottom: 40px; }
.platform-brief { border: 1px solid rgba(212,175,55,.38); background: white; box-shadow: 0 28px 70px rgba(3,16,29,.15); }
.platform-brief-header { min-height: 64px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--navy-950); color: white; }
.platform-brief-header > div { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.2rem; }
.platform-brief-header img { width: 30px; }
.platform-brief-header > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; }
.brief-status { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(6,24,42,.09); }
.brief-status strong { display: block; font-family: var(--serif); font-size: 1.55rem; }
.brief-status > span { padding: 8px 12px; border-radius: 999px; background: rgba(212,175,55,.14); color: #775510; text-transform: uppercase; letter-spacing: .08em; font-size: .64rem; font-weight: 800; }
.brief-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.brief-grid article { min-height: 245px; padding: 28px; border-right: 1px solid rgba(6,24,42,.09); border-bottom: 1px solid rgba(6,24,42,.09); }
.brief-grid article:nth-child(2n) { border-right: none; }
.brief-grid article:nth-last-child(-n+2) { border-bottom: none; }
.brief-grid h3 { font-size: 1.72rem; }
.brief-grid article > p:last-child { color: var(--slate); font-size: .84rem; }
.brief-confidence { background: #f8f5ee; }
.brief-confidence ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.brief-confidence li { color: var(--slate); font-size: .73rem; }
.brief-confidence li span { display: inline-block; min-width: 68px; margin-right: 8px; color: var(--navy-900); text-transform: uppercase; letter-spacing: .06em; font-size: .58rem; font-weight: 800; }

.governance-section { overflow: hidden; }
.governance-intro { margin-bottom: 40px; }
.governance-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.governance-card { min-height: 275px; padding: 26px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.governance-card > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .1em; font-size: .64rem; font-weight: 700; }
.governance-card h3 { margin-top: 42px; font-size: 1.75rem; }
.governance-card p { color: rgba(255,255,255,.64); font-size: .82rem; }

.intelligence-architecture { background: white; }
.architecture-intro { max-width: 880px; }
.architecture-layers { margin-top: 40px; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(6,24,42,.11); }
.architecture-layer { min-height: 190px; padding: 24px; border-right: 1px solid rgba(6,24,42,.11); }
.architecture-layer > span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.architecture-layer > div { margin-top: 48px; }
.architecture-layer b { display: block; font-family: var(--serif); font-size: 1.4rem; }
.architecture-layer p { margin: 5px 0 0; color: var(--slate); font-size: .75rem; }
.architecture-result { grid-column: 1 / -1; padding: 26px; display: grid; grid-template-columns: .3fr 1fr; align-items: center; gap: 30px; background: var(--navy-900); color: white; border-top: 1px solid var(--gold); }
.architecture-result strong { font-family: var(--serif); color: var(--gold-2); font-size: 1.5rem; }

.platform-audience { background: #eae3d6; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.audience-card { min-height: 280px; padding: 28px; background: var(--navy-900); color: white; border-top: 2px solid var(--gold); }
.audience-card > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .1em; font-size: .64rem; font-weight: 700; }
.audience-card h3 { margin-top: 52px; font-size: 2rem; }
.audience-card p { color: rgba(255,255,255,.66); font-size: .84rem; }

@media (max-width: 1050px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr 1fr; }
  .showcase-intro { gap: 36px; }
  .executive-body { grid-template-columns: 1fr; }
  .decision-panel { grid-column: auto; }
  .moment-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: auto; }
  .moment-card h3 { margin-top: 32px; }
  .method-ribbon .container { grid-template-columns: 1fr; }
  .experience-entry { grid-template-columns: 66px minmax(0,1fr); }
  .experience-outcome { grid-column: 2; align-self: auto; }
  .leadership-grid { grid-template-columns: repeat(2,1fr); }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: auto; }
  .intelligence-flow { grid-template-columns: 1fr; }
  .flow-arrow { min-height: 44px; transform: rotate(90deg); }
  .capability-grid, .governance-grid { grid-template-columns: repeat(2,1fr); }
  .architecture-layers { grid-template-columns: repeat(2,1fr); }
  .architecture-layer:nth-child(2) { border-right: none; }
  .architecture-layer:nth-child(-n+2) { border-bottom: 1px solid rgba(6,24,42,.11); }
}

@media (max-width: 820px) {
  .hero-v2 { min-height: auto; }
  .hero-v2 .hero-grid, .showcase-intro { grid-template-columns: 1fr; }
  .signal-row { justify-content: flex-start; overflow-x: auto; padding-block: 18px; }
  .signal-row span { white-space: nowrap; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .method-ribbon-steps { grid-template-columns: repeat(3,1fr); }
  .method-ribbon-steps span:nth-child(3) { border-right: none; }
  .method-ribbon-steps span:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .experience-heading { grid-template-columns: 1fr; gap: 22px; }
  .engagement-intro { grid-template-columns: 1fr; gap: 20px; }
  .positioning-grid, .brief-intro, .governance-intro { grid-template-columns: 1fr; gap: 22px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .audience-card h3 { margin-top: 34px; }
}

@media (max-width: 560px) {
  .hero-v2 h1 { font-size: clamp(2.8rem, 13vw, 3.35rem); }
  .executive-topbar { align-items: flex-start; padding: 16px; }
  .executive-topbar > div { font-size: 1rem; }
  .executive-body { padding: 12px; }
  .briefing-panel, .decision-panel { padding: 20px; }
  .briefing-heading, .decision-header { flex-direction: column; align-items: flex-start; }
  .executive-kpis { grid-template-columns: 1fr; }
  .executive-kpi { min-height: 126px; }
  .decision-list > div { grid-template-columns: 38px 1fr; }
  .decision-list em { grid-column: 2; }
  .value-card { padding: 26px 22px; }
  .proof-list { grid-template-columns: 1fr; }
  .method-ribbon-steps { grid-template-columns: repeat(2,1fr); }
  .method-ribbon-steps span:nth-child(2n) { border-right: none; }
  .method-ribbon-steps span:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  .method-ribbon-steps span:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .pattern-grid, .leadership-grid { grid-template-columns: 1fr; }
  .experience-timeline::before { left: 20px; }
  .experience-entry { grid-template-columns: 42px minmax(0,1fr); gap: 15px; padding: 28px 0; }
  .experience-marker { width: 42px; }
  .experience-marker span { width: 34px; height: 34px; font-size: .8rem; box-shadow: 0 0 0 5px #f2ede3; }
  .experience-outcome { grid-column: 2; padding: 16px; }
  .experience-note { margin-left: 57px; }
  .capability-grid, .governance-grid, .brief-grid, .architecture-layers { grid-template-columns: 1fr; }
  .capability-card, .governance-card { min-height: auto; }
  .brief-status, .platform-brief-header { align-items: flex-start; }
  .brief-status { flex-direction: column; }
  .brief-grid article { min-height: auto; border-right: none; border-bottom: 1px solid rgba(6,24,42,.09) !important; }
  .brief-grid article:last-child { border-bottom: none !important; }
  .architecture-layer { min-height: auto; border-right: none !important; border-bottom: 1px solid rgba(6,24,42,.11); }
  .architecture-layer > div { margin-top: 28px; }
  .architecture-result { grid-template-columns: 1fr; }
}

/* MISHOR Method */
.method-hero .lead { max-width: 900px; }
.method-hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.method-hero-proof span { padding: 9px 12px; border: 1px solid rgba(212,175,55,.34); background: rgba(255,255,255,.04); color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; font-size: .6rem; font-weight: 700; }
.method-positioning { background: #eae3d6; }
.method-process-section { background: #f8f5ee; }
.method-process-intro, .method-example-intro, .method-cadence-intro { display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 58px; margin-bottom: 42px; }
.method-process-intro h2, .method-example-intro h2, .method-cadence-intro h2 { margin-bottom: 0; }
.method-chain { border: 1px solid rgba(6,24,42,.11); background: white; }
.method-stage { display: grid; grid-template-columns: 72px .7fr 1.3fr .55fr; align-items: stretch; border-bottom: 1px solid rgba(6,24,42,.11); }
.method-stage:last-child { border-bottom: none; }
.method-stage > * { padding: 24px; border-right: 1px solid rgba(6,24,42,.09); }
.method-stage > *:last-child { border-right: none; }
.method-letter { display: flex; align-items: center; justify-content: center; padding: 0 !important; background: var(--navy-900); color: var(--gold-2); font-family: var(--serif); font-size: 2rem; }
.method-stage h3 { margin: 2px 0 5px; font-size: 1.55rem; }
.method-stage p { margin: 0; color: var(--slate); font-size: .78rem; }
.method-stage strong { display: block; margin-top: 20px; color: var(--navy-900); font-family: var(--serif); font-size: 1.08rem; }
.mini-label { color: #8a651a !important; text-transform: uppercase; letter-spacing: .1em; font-size: .56rem !important; font-weight: 800; }
.method-example-section { position: relative; overflow: hidden; }
.method-example-section::after { content: ""; position: absolute; width: 540px; height: 540px; right: -270px; bottom: -300px; border: 1px solid rgba(212,175,55,.16); border-radius: 50%; }
.method-example-intro, .method-example-flow, .method-example-result { position: relative; z-index: 1; }
.method-example-flow { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,.13); }
.method-example-flow article { min-height: 285px; padding: 26px; border-right: 1px solid rgba(255,255,255,.13); }
.method-example-flow article:last-child { border-right: none; }
.method-example-flow span { color: var(--gold-2); font-family: var(--serif); font-size: 1.2rem; }
.method-example-flow b { display: block; margin-top: 76px; font-family: var(--serif); font-size: 1.35rem; }
.method-example-flow p { margin: 9px 0 0; color: rgba(255,255,255,.62); font-size: .78rem; }
.method-example-result { padding: 26px; display: grid; grid-template-columns: .26fr 1fr; align-items: center; gap: 28px; background: rgba(212,175,55,.11); border: 1px solid rgba(212,175,55,.28); border-top: none; }
.method-example-result span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; font-weight: 800; }
.method-example-result strong { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; }
.method-governance-section { background: white; }
.method-gates { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 42px; border: 1px solid rgba(6,24,42,.11); }
.method-gates article { min-height: 265px; padding: 26px; border-right: 1px solid rgba(6,24,42,.11); }
.method-gates article:last-child { border-right: none; }
.method-gates span, .method-cadence span { color: #8a651a; text-transform: uppercase; letter-spacing: .1em; font-size: .61rem; font-weight: 800; }
.method-gates h3 { margin-top: 60px; font-size: 1.45rem; }
.method-gates p { color: var(--slate); font-size: .78rem; }
.method-cadence-section { background: #eae3d6; }
.method-cadence { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.method-cadence article { min-height: 255px; padding: 27px; background: var(--navy-900); color: white; border-top: 2px solid var(--gold); }
.method-cadence span { color: var(--gold-2); }
.method-cadence h3 { margin-top: 70px; font-size: 1.8rem; }
.method-cadence p { color: rgba(255,255,255,.64); font-size: .79rem; }
.method-outcome-section { background: #f8f5ee; }
.method-cta { background: white; }
.method-cta-buttons { justify-content: center; }

@media (max-width: 1050px) {
  .method-stage { grid-template-columns: 62px .7fr 1.3fr; }
  .method-stage > div:last-child { grid-column: 2 / -1; border-top: 1px solid rgba(6,24,42,.09); }
  .method-stage strong { margin-top: 4px; }
  .method-example-flow, .method-gates, .method-cadence { grid-template-columns: repeat(2,1fr); }
  .method-example-flow article:nth-child(2), .method-gates article:nth-child(2) { border-right: none; }
  .method-example-flow article:nth-child(-n+2), .method-gates article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .method-gates article:nth-child(-n+2) { border-bottom-color: rgba(6,24,42,.11); }
}

@media (max-width: 820px) {
  .method-process-intro, .method-example-intro, .method-cadence-intro { grid-template-columns: 1fr; gap: 22px; }
  .method-stage { grid-template-columns: 54px 1fr; }
  .method-stage > * { padding: 20px; }
  .method-stage > div:nth-child(3), .method-stage > div:last-child { grid-column: 2; border-top: 1px solid rgba(6,24,42,.09); }
  .method-stage > div:nth-child(2), .method-stage > div:nth-child(3), .method-stage > div:last-child { border-right: none; }
  .method-letter { grid-row: 1 / span 3; }
  .method-example-result { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 560px) {
  .method-hero-proof { display: grid; }
  .method-example-flow, .method-gates, .method-cadence { grid-template-columns: 1fr; }
  .method-example-flow article, .method-gates article { min-height: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,.13); }
  .method-gates article { border-bottom-color: rgba(6,24,42,.11); }
  .method-example-flow article:last-child, .method-gates article:last-child { border-bottom: none; }
  .method-example-flow b, .method-gates h3, .method-cadence h3 { margin-top: 34px; }
  .method-cadence article { min-height: 220px; }
}

/* Brand-system and editorial refinement — 2026-07-19 */
.brand.brand-approved {
  width: 292px;
}
.brand-approved img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-logo-approved {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin-bottom: 14px;
}
.compass-emblem {
  position: relative;
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212,175,55,.8);
  border-radius: 50%;
}
.compass-emblem::before,
.compass-emblem::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, #bd8420, #f2d37a, #bd8420);
  transform: translate(-50%,-50%);
}
.compass-emblem::before { width: 2px; height: 36px; }
.compass-emblem::after { width: 36px; height: 2px; }
.compass-emblem-large {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  margin-bottom: 20px;
}
.compass-emblem-large::before { height: 52px; }
.compass-emblem-large::after { width: 52px; }
.briefing-questions > div {
  grid-template-columns: minmax(72px, auto) 1fr;
}
.briefing-questions span,
.stewardship-sequence article > span,
.value-number,
.capability-card > span,
.architecture-layer > span,
.leadership-card > span {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.decision-list > div {
  grid-template-columns: minmax(62px, auto) 1fr auto;
}
.priority {
  width: auto;
  min-width: 58px;
  padding: 0 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stewardship-sequence article {
  grid-template-columns: 88px 1fr;
}
.value-card h3 {
  margin-top: 26px;
}
.experience-marker {
  align-items: center;
}
.experience-marker span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--navy-900);
  background: var(--gold);
  color: transparent;
  font-size: 0;
  box-shadow: 0 0 0 8px #f2ede3;
}

@media (max-width: 1050px) {
  .brand.brand-approved { width: 255px; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 82px; }
  .brand.brand-approved { width: 224px; }
  .site-nav { inset: 82px 0 auto; }
}

@media (max-width: 560px) {
  .brand.brand-approved { width: 204px; }
  .briefing-questions > div { grid-template-columns: 1fr; gap: 5px; }
  .decision-list > div { grid-template-columns: 1fr; }
  .decision-list em { grid-column: 1; }
  .stewardship-sequence article { grid-template-columns: 1fr; gap: 8px; }
  .experience-marker span { width: 12px; height: 12px; }
}

/* Visual authority and original MISHOR artwork */
.site-header {
  background: rgba(3,16,29,.985);
  border-bottom-color: rgba(212,175,55,.42);
  box-shadow: 0 12px 34px rgba(3,16,29,.18);
}
.nav-wrap { min-height: 98px; }
.brand.brand-approved {
  position: relative;
  width: 370px;
  padding: 0;
}
.brand.brand-approved::after {
  display: none;
}
.brand-approved img {
  filter: none;
}

.cta-image {
  background: #03101d;
  overflow: hidden;
}
.cta-image img { object-position: center; }

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950) url('mishor-path-to-clarity-v1.png') right center / cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3,16,29,.98) 0%, rgba(3,16,29,.94) 42%, rgba(3,16,29,.57) 68%, rgba(3,16,29,.2) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 790px; text-wrap: balance; }
.page-hero .lead { max-width: 720px; }

.signature-visual-section {
  padding: 34px 0 92px;
  background: #f2ede3;
}
.signature-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.45);
  box-shadow: 0 30px 80px rgba(3,16,29,.2);
  background: var(--navy-950);
}
.signature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,16,29,.96) 0%, rgba(3,16,29,.78) 38%, rgba(3,16,29,.08) 74%);
}
.signature-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.signature-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 74px);
  top: 50%;
  width: min(470px, calc(100% - 56px));
  transform: translateY(-50%);
  color: white;
}
.signature-visual figcaption h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.signature-visual figcaption > p:last-child { color: rgba(255,255,255,.72); font-size: 1.05rem; }

.purpose-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.purpose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background: url('mishor-stewardship-compass-v1.png') 88% center / cover no-repeat;
}

@media (max-width: 1050px) {
  .brand.brand-approved { width: 320px; }
  .page-hero { min-height: 490px; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 92px; }
  .brand.brand-approved { width: 270px; }
  .site-nav { inset: 92px 0 auto; }
  .page-hero {
    min-height: 480px;
    background-position: 64% center;
  }
  .page-hero::before { background: linear-gradient(90deg, rgba(3,16,29,.98), rgba(3,16,29,.8)); }
  .signature-visual, .signature-visual img { min-height: 470px; }
  .signature-visual::after { background: linear-gradient(90deg, rgba(3,16,29,.94), rgba(3,16,29,.38)); }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 86px; }
  .brand.brand-approved { width: 238px; }
  .site-nav { inset: 86px 0 auto; }
  .page-hero { min-height: 470px; padding: 72px 0 64px; }
  .page-hero::before { background: rgba(3,16,29,.82); }
  .signature-visual-section { padding: 20px 0 68px; }
  .signature-visual, .signature-visual img { min-height: 430px; }
  .signature-visual img { object-position: 62% center; }
  .signature-visual::after { background: linear-gradient(90deg, rgba(3,16,29,.94), rgba(3,16,29,.55)); }
  .cta-image img { min-height: 340px; height: 340px; }
}
