:root {
  --navy: #182336;
  --navy-2: #22314b;
  --navy-3: #31415c;
  --gold: #b58a4a;
  --gold-dark: #8e672f;
  --tan: #e7d8bd;
  --sand: #f4efe6;
  --paper: #fbfbfa;
  --gray-50: #f4f5f6;
  --gray-100: #e5e8ec;
  --gray-300: #c6cbd2;
  --gray-600: #606977;
  --white: #ffffff;
  --ink: var(--navy);
  --muted: var(--gray-600);
  --line: var(--gray-100);
  --radius: 24px;
  --shadow: 0 14px 38px rgba(24, 35, 54, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(229, 232, 236, 0.95);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { display: block; width: 42px; height: 42px; object-fit: contain; flex: 0 0 auto; }
.brand span:last-child { display: flex; flex-direction: column; }
.brand strong { font: 700 21px Georgia, "Times New Roman", serif; line-height: 1; color: var(--navy); }
.brand small { font-size: 11px; letter-spacing: 0.11em; margin-top: 4px; color: var(--gray-600); }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: var(--navy); }
.primary-nav > a:not(.button):hover, .text-link:hover, footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); padding: 9px 14px; }

.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; padding-block: 96px 88px; }
.eyebrow { margin: 0 0 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); }
.eyebrow-light { color: var(--tan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -0.045em; line-height: 1.02; }
h1 { font-size: clamp(50px, 7vw, 82px); max-width: 780px; margin-bottom: 28px; color: var(--navy); }
h2 { font-size: clamp(38px, 5vw, 58px); max-width: 900px; margin-bottom: 28px; color: var(--navy); }
h3 { font-size: 21px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--navy); }
.lede { font-size: 21px; line-height: 1.65; color: var(--muted); max-width: 720px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; padding: 14px 22px; font-weight: 750; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(24, 35, 54, 0.16); }
.button-dark { background: var(--navy); color: var(--white); }
.button-dark:hover { background: var(--navy-2); }
.button-light { background: var(--white); color: var(--navy); border-color: var(--gray-300); }
.button-light:hover { border-color: var(--gold); }
.button-small { padding: 10px 16px; }

.leadership-card { background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--gold); border-radius: 30px; padding: 32px 34px 34px; box-shadow: var(--shadow); }
.voice-card { display: flex; flex-direction: column; gap: 5px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 16px; padding: 18px 20px; margin-top: 13px; }
.voice-card strong { color: var(--navy); }
.voice-card span, .card-conclusion, .section-intro, .card p { color: var(--muted); }
.card-conclusion { border-top: 1px solid var(--line); margin: 24px 0 0; padding-top: 22px; }
.section-pad { padding-block: 92px; }

.dark-band { background: var(--navy); color: var(--white); }
.dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band h2 { max-width: 950px; }
.three-grid, .two-grid { display: grid; gap: 22px; margin-top: 42px; }
.three-grid { grid-template-columns: repeat(3, 1fr); }
.two-grid { grid-template-columns: repeat(2, 1fr); }
.problem-grid article { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); background: rgba(255, 255, 255, 0.055); padding: 28px; }
.problem-grid article:hover { background: rgba(255, 255, 255, 0.075); }
.problem-grid p { color: #d7dce3; }
.icon { display: block; font-size: 30px; margin-bottom: 22px; color: var(--gold); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 29px; box-shadow: 0 5px 16px rgba(24, 35, 54, 0.035); }
.white-band { background: var(--gray-50); border-block: 1px solid var(--line); }
.white-band .card { background: var(--white); }
.section-intro { font-size: 18px; line-height: 1.75; max-width: 850px; }

.process { list-style: none; margin: 52px 0 0; padding: 0; }
.process li { position: relative; display: grid; grid-template-columns: 60px 260px 1fr; gap: 24px; align-items: start; padding-bottom: 48px; }
.process li:not(:last-child)::before { content: ""; position: absolute; left: 22px; top: 47px; bottom: 0; width: 1px; background: var(--tan); }
.step { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--white); border: 3px solid var(--tan); font-weight: 800; }
.process p { color: var(--muted); max-width: 680px; }

.outcome-band { background: var(--sand); border-block: 1px solid var(--tan); }
.outcome-band .card { border-color: rgba(181, 138, 74, 0.28); }

.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; background: var(--navy); color: var(--white); border-radius: 34px; padding: 52px; box-shadow: 0 18px 48px rgba(24, 35, 54, 0.16); }
.contact-panel h2 { font-size: clamp(38px, 5vw, 56px); color: var(--white); }
.contact-panel > div > p:not(.eyebrow) { color: #d7dce3; font-size: 18px; }
.contact-panel .button-light { background: var(--tan); color: var(--navy); border-color: var(--tan); }
.contact-panel .button-light:hover { background: #efdfc4; border-color: #efdfc4; }
.text-link { display: inline-block; margin-top: 18px; font-weight: 750; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; }
.contact-email { margin-top: 0; color: var(--white); font-size: 18px; }

footer { border-top: 1px solid var(--line); background: var(--white); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding-block: 38px; color: var(--muted); font-size: 14px; }
.footer-inner > div:last-child { text-align: right; }
.footer-inner p { margin: 7px 0 0; }
.footer-brand { color: var(--navy); }

.reveal { animation: rise 0.6s ease both; }
.leadership-card.reveal { animation-delay: 0.12s; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 850px) {
  .nav-toggle { display: block; }
  .primary-nav { display: none; position: absolute; left: 20px; right: 20px; top: 68px; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .hero, .contact-panel { grid-template-columns: 1fr; }
  .hero { padding-block: 70px; }
  .three-grid, .two-grid { grid-template-columns: 1fr; }
  .process li { grid-template-columns: 60px 1fr; }
  .process li p { grid-column: 2; }
  .contact-panel { gap: 34px; padding: 34px; }
  .footer-inner { align-items: flex-start; gap: 28px; flex-direction: column; }
  .footer-inner > div:last-child { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding-block: 70px; }
  .hero { padding-block: 55px; }
  .leadership-card { padding: 24px; }
  .contact-panel { padding: 27px; border-radius: 24px; }
  .primary-nav { left: 14px; right: 14px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .button { transition: none; }
}


/* Examples page */
.nav-active { color: var(--gold-dark); font-weight: 800; }
.examples-hero { background: var(--navy); color: var(--white); }
.examples-hero-inner { padding-block: 94px 88px; }
.examples-hero h1 { max-width: 930px; color: var(--white); margin-bottom: 28px; }
.examples-hero .lede { max-width: 840px; color: #d7dce3; }
.examples-intro { padding-bottom: 56px; }
.examples-list { padding-bottom: 96px; }
.example-case { display: grid; grid-template-columns: 110px 1fr; gap: 34px; padding: 58px 0; border-top: 1px solid var(--line); }
.example-case:last-child { border-bottom: 1px solid var(--line); }
.example-number { font: 700 38px/1 Georgia, "Times New Roman", serif; color: var(--gold); padding-top: 6px; }
.example-content > h2 { max-width: 900px; font-size: clamp(34px, 4vw, 50px); margin-bottom: 22px; }
.example-kicker { margin: 0 0 12px; color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.example-summary { max-width: 850px; font-size: 19px; line-height: 1.7; color: var(--muted); }
.example-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 34px; }
.example-details > div { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 25px 27px; box-shadow: 0 5px 16px rgba(24, 35, 54, 0.03); }
.example-details h3 { font-size: 17px; margin-bottom: 10px; }
.example-details p { margin-bottom: 0; color: var(--muted); }
.example-focus { margin-top: 22px; border-left: 4px solid var(--gold); background: var(--sand); padding: 18px 22px; color: var(--navy-2); }
.examples-principle { background: var(--gray-50); border-block: 1px solid var(--line); }
.principle-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.principle-grid p:not(.eyebrow) { color: var(--muted); font-size: 19px; line-height: 1.75; }
.principle-grid p:last-child { margin-bottom: 0; }

@media (max-width: 850px) {
  .example-case { grid-template-columns: 1fr; gap: 12px; padding: 48px 0; }
  .example-number { font-size: 30px; }
  .example-details, .principle-grid { grid-template-columns: 1fr; }
  .principle-grid { gap: 12px; }
}

@media (max-width: 520px) {
  .examples-hero-inner { padding-block: 62px; }
  .example-details > div { padding: 22px; }
  .example-focus { padding: 17px 18px; }
}


/* Examples action section */
.examples-action { background: var(--white); }
.examples-action h2 { max-width: 940px; }
.action-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
.action-card { position: relative; min-height: 250px; padding: 34px 32px 30px; border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--radius); background: var(--gray-50); }
.action-number { display: block; margin-bottom: 24px; font: 700 18px/1 Georgia, "Times New Roman", serif; color: var(--gold-dark); }
.action-card h3 { max-width: 430px; font-size: 24px; }
.action-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.action-outcome { margin-top: 24px; padding: 24px 28px; border-left: 4px solid var(--gold); background: var(--navy); color: #e8ebef; font-size: 18px; line-height: 1.65; }
.action-outcome strong { color: var(--tan); }

@media (max-width: 850px) {
  .action-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 0; }
}

@media (max-width: 520px) {
  .action-card { padding: 27px 24px; }
  .action-outcome { padding: 21px 22px; }
}
