/* ═══════════════════════════════════════════
   DESIGN TOKENS — matching weinheimergroup.com
   ═══════════════════════════════════════════ */
:root {
  --navy:        #0B1220;
  --navy-mid:    #162035;
  --burgundy:    #6B1B2D;
  --burg-light:  #8B2D42;
  --gold:        #B8945A;
  --gold-bright: #D4A853;
  --white:       #FFFFFF;
  --off-white:   #F7F7F5;
  --light-gray:  #EBEBEA;
  --mid-gray:    #C8C4C0;
  --text-dark:   #111111;
  --text-mid:    #484542;
  --text-light:  #787472;
  --max-w:       1100px;
  --gutter:      clamp(24px, 5vw, 80px);
  --pad:         clamp(60px, 8vw, 100px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; }

.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Labels & headings ── */
.eyebrow {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--burgundy); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 660px;
  margin-bottom: 48px;
}

.divider { height: 1px; background: var(--light-gray); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  height: 66px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(184,148,90,0.18);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--gold); }
.header-nav .btn-nav {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 9px 20px;
  transition: background 0.2s;
}
.header-nav .btn-nav:hover { background: var(--burg-light); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: clamp(72px, 10vw, 120px) var(--gutter) clamp(60px, 8vw, 96px);
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.7s ease 0.1s forwards;
}
.hero-kicker::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-kicker .eyebrow { margin: 0; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 400;
  line-height: 1.07;
  color: var(--white);
  max-width: 840px;
  margin-bottom: 44px;
  opacity: 0;
  animation: up 0.8s ease 0.2s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-stats {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  animation: up 0.8s ease 0.35s forwards;
}
.hero-stat {
  flex: 1;
  padding: 26px 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hs-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hs-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 610px;
  margin-bottom: 34px;
  opacity: 0;
  animation: up 0.8s ease 0.45s forwards;
}

.interim-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(107,27,45,0.3);
  border: 1px solid rgba(107,27,45,0.65);
  color: #F5A0B8;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 7px 16px;
  opacity: 0;
  animation: up 0.8s ease 0.55s forwards;
}
.interim-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #F5A0B8;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

/* ═══════════════════════════════════════════
   SPOTLIGHT
   ═══════════════════════════════════════════ */
.spotlight {
  background: var(--white);
  padding: var(--pad) var(--gutter);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  margin-top: 44px;
}
.spotlight-card {
  background: var(--white);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.spotlight-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.spotlight-card:hover { background: #FDFBF9; }
.spotlight-card:hover::after { transform: scaleX(1); }

.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sc-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.5;
}
.sc-context {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   FINDINGS
   ═══════════════════════════════════════════ */
.finding-wrap {
  padding: var(--pad) var(--gutter);
}
.finding-wrap.alt { background: var(--white); }

.finding-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.finding-grid.flip { direction: rtl; }
.finding-grid.flip > * { direction: ltr; }

.f-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.f-num {
  font-size: 0.85rem;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.f-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.f-body {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.f-body + .f-body { margin-top: 13px; }

/* Bar chart */
.chart-box {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 34px 30px;
}
.finding-wrap.alt .chart-box { background: var(--off-white); }

.bars { display: flex; flex-direction: column; gap: 22px; }

.bar-row {}
.bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 7px;
}
.bar-label {
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.3;
  padding-right: 10px;
}
.bar-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.bar-track {
  height: 10px;
  background: var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--burgundy);
  border-radius: 2px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.23, 0.46, 0.45, 0.94);
}
.bar-fill.g  { background: var(--gold); }
.bar-fill.s  { background: #8096B0; }
.bar-fill.lt { background: var(--mid-gray); }

/* ═══════════════════════════════════════════
   PULL QUOTE
   ═══════════════════════════════════════════ */
.pull-quote {
  background: var(--navy);
  padding: clamp(64px, 8vw, 96px) var(--gutter);
}
.pq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}
.pq-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.42;
}
.pq-quote em { font-style: normal; color: var(--gold); }
.pq-label {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.pq-body {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.82;
}

/* ═══════════════════════════════════════════
   VOICES
   ═══════════════════════════════════════════ */
.voices {
  background: var(--off-white);
  padding: var(--pad) var(--gutter);
}
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px;
}
.voice-card {
  background: var(--white);
  border-left: 4px solid var(--burgundy);
  padding: 28px 26px 24px;
}
.voice-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
}
.voice-attr {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   TAKEAWAYS
   ═══════════════════════════════════════════ */
.takeaways {
  background: var(--burgundy);
  padding: var(--pad) var(--gutter);
}
.takeaways .section-heading { color: var(--white); }
.takeaways .section-intro { color: rgba(255,255,255,0.6); margin-bottom: 44px; }

.taway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.taway-card {
  border: 1px solid rgba(255,255,255,0.14);
  padding: 30px 26px;
  transition: background 0.25s, border-color 0.25s;
}
.taway-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}
.tc-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.taway-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.taway-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   ACTION BRIDGE
   ═══════════════════════════════════════════ */
.bridge {
  background: var(--white);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.bridge p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.62rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}
.bridge p strong { font-style: normal; color: var(--text-dark); }

/* ═══════════════════════════════════════════
   ACTION SECTIONS
   ═══════════════════════════════════════════ */
.action {
  padding: var(--pad) var(--gutter);
}
.action.white  { background: var(--white); }
.action.light  { background: var(--off-white); }
.action.dark   { background: var(--navy); }
.action-inner  { max-width: var(--max-w); margin: 0 auto; }

.action-hdr {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 44px;
}
.a-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 0.85;
  color: var(--light-gray);
  user-select: none;
}
.action.dark .a-roman { color: rgba(255,255,255,0.06); }

.a-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.action.dark .a-title { color: var(--white); }

.a-lead {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 640px;
}
.action.dark .a-lead { color: rgba(255,255,255,0.52); }

.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ac {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 30px 26px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ac:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.action.dark .ac {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}
.action.dark .ac:hover {
  border-color: rgba(184,148,90,0.5);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.ac-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ac-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}
.action.dark .ac-n { color: var(--gold); }

.badge {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}
.b-free     { background: rgba(107,27,45,0.08); color: var(--burgundy); }
.b-strategy { background: rgba(184,148,90,0.12); color: #7B5C20; }
.b-commit   { background: rgba(11,18,32,0.08); color: var(--navy); }
.action.dark .b-commit { background: rgba(184,148,90,0.15); color: var(--gold-bright); }

.ac h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 11px;
  line-height: 1.3;
}
.action.dark .ac h4 { color: var(--white); }
.ac p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.82;
}
.action.dark .ac p { color: rgba(255,255,255,0.52); }
.ac a { color: var(--burgundy); text-decoration-color: rgba(107,27,45,0.3); text-underline-offset: 3px; }
.action.dark .ac a { color: var(--gold); }

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  background: var(--off-white);
  padding: var(--pad) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--light-gray);
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--text-dark);
  max-width: 660px;
  margin: 0 auto 18px;
  line-height: 1.2;
}
.cta h2 em { font-style: italic; color: var(--burgundy); }
.cta p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 490px;
  margin: 0 auto 40px;
  line-height: 1.78;
}
.btn-grp { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-p {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background 0.25s;
}
.btn-p:hover { background: var(--burg-light); }

.btn-s {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--mid-gray);
  transition: all 0.25s;
}
.btn-s:hover { border-color: var(--text-dark); background: var(--text-dark); color: var(--white); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 34px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(184,148,90,0.18);
}
.site-footer p { font-size: 0.76rem; color: rgba(255,255,255,0.36); }
.site-footer a { font-size: 0.76rem; color: var(--gold); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }

/* ═══════════════════════════════════════════
   BUDGET CHART SECTION
   ═══════════════════════════════════════════ */
.budget-section {
  background: var(--white);
  padding: var(--pad) var(--gutter);
}
.budget-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.budget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin-top: 44px;
}
.budget-chart-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}
.budget-chart-wrap canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
}
.budget-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding-top: 8px;
}
.bl-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bl-swatch {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.bl-text { flex: 1; }
.bl-label {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
}
.bl-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.bl-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy);
  white-space: nowrap;
}
.budget-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .header-nav .hide-sm { display: none; }
  .hero-stats { flex-direction: column; max-width: 280px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:last-child { border-bottom: none; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 1px; }
  .finding-grid { grid-template-columns: 1fr; gap: 32px; }
  .finding-grid.flip { direction: ltr; }
  .pq-inner { grid-template-columns: 1fr; gap: 36px; }
  .voices-grid { grid-template-columns: 1fr; }
  .taway-grid { grid-template-columns: 1fr 1fr; }
  .action-hdr { grid-template-columns: 1fr; gap: 14px; }
  .a-roman { font-size: 3.5rem; }
  .action-cards { grid-template-columns: 1fr; }
  .budget-layout { grid-template-columns: 1fr; }
  .budget-chart-wrap { max-width: 280px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .taway-grid { grid-template-columns: 1fr; }
  .hero-stats { max-width: none; }
  .hero-stat { padding: 20px 24px; }
}
