/* ============================================
   PINNACLE DEALER SERVICES — Microsite stylesheet
   Shared by all pages
   ============================================ */

:root {
  --navy: #1a2944;
  --navy-deep: #0f1a2e;
  --navy-mid: #233456;
  --blue: #1d4f9c;
  --blue-deep: #143a76;
  --blue-soft: #e6edf7;
  --gold: #c89432;
  --gold-soft: #d4a648;
  --gold-pale: #f4e8cf;
  --cream: #faf7f2;
  --cream-2: #f3eee4;
  --ink: #1a2944;
  --ink-soft: #4a5673;
  --ink-light: #6b7896;
  --line: #e3dccf;
  --white: #ffffff;
  --green: #1f7a3d;
  --green-soft: #2c9d52;
  --red: #b04020;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

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

/* ============================================
   LAYOUT — containers, sections
   ============================================ */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, .display {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 40px;
}

/* ============================================
   TOP NAV
   ============================================ */

.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}
.topnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topnav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topnav-brand img { height: 56px; width: auto; }
.topnav-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}
.topnav-brand-text .sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  margin-top: 2px;
}

.topnav-links {
  display: flex;
  align-items: center;
  gap: 17px;
}
.topnav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.topnav-links a:hover { color: var(--gold); }

/* mobile nav toggle — hidden on desktop, shown at <=880px */
.nav-toggle, .nav-burger { display: none; }
html { overflow-x: clip; }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
.hero-mountain svg { width: 100%; height: 100%; }

.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 68px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 1000px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin-bottom: 44px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   PROBLEM SECTION (manifesto thesis)
   ============================================ */

.problem {
  background: var(--cream);
  padding: 100px 0;
}

.problem-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}
.problem-headline em { font-style: normal; color: var(--gold); }

.problem-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 48px;
}

.stat-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.stat-card {
  background: var(--white);
  padding: 32px 26px;
  border-top: 4px solid var(--gold);
}
.stat-card .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-card .label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.stat-card .source {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   FAILURE POINTS
   ============================================ */

.failures {
  background: var(--white);
}

.failures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.failure {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 4px solid var(--blue);
}
.failure .num {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 44px;
}
.failure h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.failure p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============================================
   FIVE SHIFTS
   ============================================ */

.shifts {
  background: var(--cream);
}

.shifts-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.shift {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.shift:last-child { border-bottom: none; }
.shift .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.shift h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.shift p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================
   FRAMEWORK (Measure / Fix / Sustain)
   ============================================ */

.framework {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.framework .eyebrow { color: var(--gold); border-color: var(--gold); }
.framework .section-title { color: var(--white); }
.framework .section-title em { color: var(--gold); }
.framework .section-sub { color: rgba(255,255,255,0.78); }

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.framework-card {
  background: var(--navy-mid);
  padding: 36px 32px;
  border-left: 5px solid var(--gold);
  position: relative;
}
.framework-card .phase {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.framework-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.framework-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}
.framework-card ul {
  list-style: none;
  padding: 0;
}
.framework-card li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
  padding: 6px 0 6px 18px;
  position: relative;
}
.framework-card li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

/* ============================================
   WHAT WE DO (capability teasers)
   ============================================ */

.capabilities-teaser {
  background: var(--white);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cap-card {
  background: var(--cream);
  padding: 36px 30px;
  border-top: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,41,68,0.08);
}
.cap-card .cap-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cap-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.cap-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
  flex: 1;
}
.cap-card .more {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cap-card .more:after { content: ' →'; }

/* ============================================
   CASE STUDY TEASER
   ============================================ */

.case {
  background: var(--cream);
}
.case-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.case-stat {
  background: var(--navy);
  color: var(--white);
  padding: 56px 44px;
  text-align: center;
  border-left: 6px solid var(--gold);
}
.case-stat .big {
  font-family: 'Montserrat', sans-serif;
  font-size: 76px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.case-stat .tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
}
.case-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.case-text h3 em { font-style: normal; color: var(--gold); }
.case-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.case-mini-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-mini {
  text-align: left;
}
.case-mini .v {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.case-mini .l {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
}

/* ============================================
   FOREWORD (Matt)
   ============================================ */

.foreword {
  background: var(--white);
}
.foreword-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: flex-start;
  max-width: 1000px;
}
.foreword-portrait {
  background: var(--cream);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.foreword-portrait .silhouette {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
}
.foreword-portrait .name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.foreword-portrait .title {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.foreword-text .eyebrow { margin-bottom: 20px; }
.foreword-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.foreword-text h3 em { font-style: normal; color: var(--gold); }
.foreword-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}
.foreword-text .signature {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 24px;
}

/* ============================================
   FINAL CTA BAND
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.cta-band h2 em { font-style: normal; color: var(--gold); }
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.cta-band .hero-cta { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   TEAM GRID  (/about page)
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 50px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.team-photo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--cream);
  box-shadow: 0 0 0 3px var(--gold), 0 12px 28px rgba(26, 41, 68, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.team-card:hover .team-photo-wrap {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px var(--gold), 0 18px 36px rgba(26, 41, 68, 0.20);
}
.team-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.team-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  align-self: stretch;
}
.team-bio {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Story / heritage band */
.story {
  background: var(--cream);
}
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.story-text h2 em { font-style: normal; color: var(--gold); }
.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}
.story-facts {
  background: var(--navy);
  color: var(--white);
  padding: 48px 40px;
  border-left: 6px solid var(--gold);
}
.story-fact {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.story-fact:last-child { border-bottom: none; }
.story-fact .big {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.story-fact .label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

/* Credentials bar */
.creds {
  background: var(--navy);
  color: var(--white);
}
.creds .eyebrow { color: var(--gold); border-color: var(--gold); }
.creds .section-title { color: var(--white); }
.creds .section-title em { color: var(--gold); }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.creds-card {
  background: var(--navy-mid);
  padding: 28px 24px;
  border-top: 4px solid var(--gold);
}
.creds-card .big {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
}
.creds-card .label {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   INSIGHTS HUB
   ============================================ */

.insights-hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.insights-hero .container { position: relative; z-index: 2; }
.insights-hero-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 28px;
}
.insights-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 920px;
  margin-bottom: 24px;
}
.insights-hero h1 em { font-style: normal; color: var(--gold); }
.insights-hero p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 50px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s ease;
  position: relative;
}
.article-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 41, 68, 0.10);
  color: inherit;
}
.article-card.featured {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-left: 6px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  padding: 56px;
}
.article-card.featured:hover { box-shadow: 0 20px 44px rgba(15,26,46,0.30); }
.article-card .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.article-card .category {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-card .dot {
  color: var(--ink-light);
}
.article-card.featured .dot { color: rgba(255,255,255,0.4); }
.article-card .read-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.article-card.featured .read-time { color: rgba(255,255,255,0.6); }
.article-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
.article-card.featured h3 {
  font-size: 38px;
  color: var(--white);
  line-height: 1.05;
}
.article-card.featured h3 em { font-style: normal; color: var(--gold); }
.article-card .synopsis {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
}
.article-card.featured .synopsis {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.article-card .by {
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.article-card.featured .by { color: rgba(255,255,255,0.6); }
.article-card .read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-card .read-more:after { content: ' →'; }
.article-card .stub-flag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: var(--cream-2);
  padding: 4px 9px;
  border-radius: 2px;
}

/* ============================================
   INDIVIDUAL ARTICLE PAGE
   ============================================ */

.article-header {
  background: var(--white);
  padding: 80px 0 50px;
  border-bottom: 1px solid var(--line);
}
.article-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 28px;
}
.article-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 900px;
}
.article-title em { font-style: normal; color: var(--gold); }
.article-dek {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 32px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.article-byline strong { font-weight: 800; }
.article-byline .sep { color: var(--ink-light); }

.article-body {
  background: var(--white);
  padding: 60px 0 90px;
}
.article-body .container-narrow {
  max-width: 760px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 24px;
}
.article-body p.lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 32px;
}
.article-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 48px 0 18px;
  line-height: 1.15;
}
.article-body h2 em { font-style: normal; color: var(--gold); }
.article-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.article-body ul, .article-body ol {
  margin: 16px 0 28px 22px;
}
.article-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 10px;
}
.article-body strong { font-weight: 700; color: var(--navy); }
.article-body em { color: var(--ink); }
.article-body a { color: var(--blue); border-bottom: 1px solid var(--blue-soft); }
.article-body a:hover { border-bottom-color: var(--blue); }

.pullquote {
  margin: 44px -40px;
  padding: 36px 44px;
  background: var(--cream);
  border-left: 5px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.pullquote em { font-style: normal; color: var(--gold); }

.stat-callout {
  margin: 36px 0;
  padding: 32px 36px;
  background: var(--navy);
  color: var(--white);
  border-left: 5px solid var(--gold);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.stat-callout .big {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-callout .text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.stat-callout .text strong { color: var(--white); }
.stat-callout .source {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.sources {
  background: var(--cream);
  padding: 50px 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.sources h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.sources ol { margin-left: 20px; }
.sources li { margin-bottom: 6px; }

.read-next {
  background: var(--white);
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.read-next h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.read-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 880px) {
  .hero-title { font-size: 44px; }
  .hero-tag { font-size: 17px; }
  .section-title { font-size: 32px; }
  .problem-headline { font-size: 36px; }
  .stat-wall { grid-template-columns: repeat(2, 1fr); }
  .failures-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .case-block { grid-template-columns: 1fr; gap: 32px; }
  .case-stat { padding: 40px 32px; }
  .case-stat .big { font-size: 60px; }
  .foreword-block { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .topnav .container { gap: 16px; position: relative; flex-wrap: nowrap; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 34px; height: 34px; cursor: pointer; flex: none;
  }
  .nav-burger span { display: block; height: 2px; width: 24px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .topnav-links {
    display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); padding: 6px 24px 16px;
    border-bottom: 1px solid var(--line); box-shadow: 0 18px 34px rgba(11,27,46,.12);
  }
  .nav-toggle:checked ~ .topnav-links { display: flex; }
  .topnav-links a { padding: 14px 2px; font-size: 15px; border-bottom: 1px solid var(--line); }
  .topnav-links a.btn { margin-top: 14px; text-align: center; border-bottom: none; }
  section { padding: 60px 0; }
  .cta-band h2 { font-size: 32px; }
  .shift { grid-template-columns: 60px 1fr; gap: 20px; }
  .shift .num { font-size: 36px; }
  .shift h3 { font-size: 22px; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-photo-wrap { width: 180px; height: 180px; }
  .insights-hero h1 { font-size: 36px; }
  .insights-hero p { font-size: 16px; }
  .article-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-card.featured { grid-template-columns: 1fr; padding: 36px 28px; gap: 0; }
  .article-card.featured h3 { font-size: 28px; }
  .article-title { font-size: 34px; }
  .article-dek { font-size: 18px; }
  .article-body p { font-size: 17px; }
  .article-body h2 { font-size: 24px; }
  .pullquote { margin: 32px 0; padding: 26px 28px; font-size: 22px; }
  .stat-callout { grid-template-columns: 1fr; gap: 14px; padding: 24px 26px; }
  .stat-callout .big { font-size: 44px; }
  .read-next-grid { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 32px; }
  .story-text h2 { font-size: 32px; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SMALL PHONES (<=560px) — kill headline overflow
   ============================================ */
@media (max-width: 560px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero-title { font-size: 31px; line-height: 1.08; }
  .hero-tag { font-size: 15px; }
  .hero-eyebrow { letter-spacing: .18em; }
  .section-title { font-size: 25px; line-height: 1.12; }
  .section-intro, .section-sub { font-size: 16px; }
  .problem-headline { font-size: 27px; line-height: 1.14; }
  .cta-band h2 { font-size: 26px; }
  .stat-wall { grid-template-columns: 1fr; }
  .stat-card .num, .stat-wall .num { font-size: 46px; }
  .footer-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .shift { grid-template-columns: 48px 1fr; gap: 16px; }
  .shift .num { font-size: 30px; }
  .insights-hero h1 { font-size: 29px; }
  .article-title { font-size: 28px; }
  .article-card.featured h3 { font-size: 24px; }
  .story-text h2 { font-size: 26px; }
  .pullquote { font-size: 19px; }
  .stat-callout .big { font-size: 38px; }
  .case-stat .big { font-size: 52px; }
}
