/*
Theme Name: kbb strategy
Theme URI: https://kbbstrategies.com
Author: kbb strategy
Author URI: https://kbbstrategies.com
Description: Premier development consulting firm. Editorial / institutional theme for kbb strategy, led by Katie Blanco Bourdeau (former CDO and President, Archdiocese of Miami). Auto-creates all seven content pages on activation. Magazine-style layouts, Fraunces + Manrope typography.
Version: 2.6.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kbb-strategies
Tags: business, custom-colors, custom-logo, custom-menu, editor-style, theme-options
*/

/* =====================================================================
   kbb strategy — premier development consulting
   Stylesheet
   ===================================================================== */

:root {
  --navy: #0a1f44;
  --navy-deep: #061533;
  --navy-soft: #1c3361;
  --gold: #c9b88a;
  --gold-deep: #a8966a;
  --cream: #faf7f1;
  --paper: #f5f1e8;
  --ink: #1a1a1a;
  --ink-soft: #555;
  --grey: #8a8a8a;
  --grey-line: #d4ceb8;
  --white: #ffffff;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* =====================================================================
   TICKER STRIP
   ===================================================================== */
.top-strip {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  position: relative;
  height: 40px;
}
.ticker {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker span::after {
  content: '◆';
  margin-left: 60px;
  color: var(--gold);
  font-size: 8px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================================
   NAV
   ===================================================================== */
nav.main {
  background: var(--cream);
  border-bottom: 1px solid var(--grey-line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-links { 
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active {
  color: var(--navy);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.nav-toggle .bars {
  display: inline-block;
  width: 22px;
  height: 14px;
  position: relative;
}
.nav-toggle .bars span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  left: 0;
  transition: all 0.3s;
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }

/* =====================================================================
   HERO — Home page
   ===================================================================== */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-weight: 600;
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.hero-eyebrow .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.1; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-side .lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 350;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-side .lede strong {
  color: var(--navy);
  font-weight: 500;
}
.hero-side .lede em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Stats bar under hero */
.stats-bar {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stats-bar .stat {
  text-align: center;
}
.stats-bar .stat .num {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 6px;
}
.stats-bar .stat .num em {
  font-style: italic;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.stats-bar .stat .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* =====================================================================
   PAGE HEADER (interior pages)
   ===================================================================== */
.page-header {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--grey-line);
}
.page-header .crumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.page-header .crumb .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 16px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-header .crumb a {
  color: var(--ink-soft);
}
.page-header .crumb a:hover { color: var(--navy); }
.page-header .crumb .sep {
  color: var(--grey);
}
.page-header .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-header h1.display {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.page-header h1.display em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-header .lede {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 350;
}
.page-header .lede .first {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-header .lede em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* =====================================================================
   SECTION HEADER (used inside sections)
   ===================================================================== */
.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-header .label {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.section-header .label .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.section-header .label .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.section-header h2.display {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.section-header h2.display em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* =====================================================================
   "WHY KBB" SECTION (Home)
   ===================================================================== */
.why-kbb {
  padding: 140px 0 100px;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.why-card {
  padding: 40px 32px;
  background: var(--paper);
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
}
.why-card .icon-block {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 16px;
}
.why-card h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* =====================================================================
   SERVICES BANNER ON HOME
   ===================================================================== */
.services-band {
  padding: 140px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.services-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.54 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}
.services-band > .container { position: relative; }
.services-band .section-header h2.display { color: var(--cream); }
.services-band .section-header .label .eyebrow { color: var(--gold); }
.services-band .section-header h2.display em { color: var(--gold); }
.services-list {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 280px 1fr 200px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: center;
  transition: padding 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  cursor: pointer;
}
.service-row:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(255,255,255,0.04);
}
.service-row .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.service-row .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.service-row .name em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.service-row .desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.service-row .arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  text-align: right;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  transition: transform 0.25s;
}
.service-row:hover .arrow {
  transform: translateX(8px);
}

/* =====================================================================
   FOUNDER FEATURE BAND (Home)
   ===================================================================== */
.founder-feature {
  padding: 140px 0;
  background: var(--cream);
}
.founder-feature-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.founder-card {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='500'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.4;
}
.founder-card .frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.founder-card .monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(180px, 26vw, 380px);
  color: var(--cream);
  opacity: 0.16;
  letter-spacing: -0.06em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  line-height: 0.85;
}
.founder-card .top-label {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
.founder-card .name-block {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: var(--cream);
}
.founder-card .name-block .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.founder-card .name-block .name em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.founder-card .name-block .role {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 600;
}
.founder-feature-content .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-weight: 600;
}
.founder-feature-content h2 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.founder-feature-content h2 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.founder-feature-content .body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.founder-feature-content .body p em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.founder-feature-content .creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--grey-line);
}
.founder-feature-content .creds dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.founder-feature-content .creds dd {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  line-height: 1.4;
}

/* =====================================================================
   TESTIMONIALS BAND
   ===================================================================== */
.testimonials {
  padding: 140px 0;
  background: var(--paper);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.testimonial-card {
  padding: 50px 44px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.06);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 30px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  position: relative;
  z-index: 1;
}
.testimonial-card blockquote em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 16px;
  font-style: normal;
  padding-top: 24px;
  border-top: 1px solid var(--grey-line);
}
.testimonial-card cite .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.testimonial-card cite .who { line-height: 1.2; }
.testimonial-card cite .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-card cite .role {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta {
  padding: 120px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.54 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}
.cta > .container { position: relative; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-inner .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.cta-inner .cta-side p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
}
.cta-inner .cta-side .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-inner .cta-side .btn-gold {
  align-self: flex-start;
}
.cta-inner .cta-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.cta-inner .cta-contact span {
  display: flex;
  gap: 14px;
}
.cta-inner .cta-contact .key {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  width: 70px;
  flex-shrink: 0;
  padding-top: 2px;
  font-weight: 600;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand .foot-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.foot-brand .foot-logo em {
  font-style: italic;
  color: var(--gold);
}
.foot-brand .foot-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.foot-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.foot-col h5 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.foot-col ul {
  list-style: none;
}
.foot-col li {
  margin-bottom: 11px;
}
.foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--gold);
}

.foot-wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(140px, 22vw, 320px);
  color: rgba(255,255,255,0.04);
  text-align: center;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  pointer-events: none;
  user-select: none;
  margin-top: 60px;
  margin-bottom: -20px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.foot-bottom .legal {
  display: flex;
  gap: 24px;
}
.foot-bottom .legal a:hover { color: var(--gold); }

/* =====================================================================
   ABOUT page specific
   ===================================================================== */
.about-katie {
  padding: 120px 0;
  background: var(--cream);
}
.katie-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.katie-bio .marker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-weight: 600;
}
.katie-bio h2 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.katie-bio h2 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.katie-bio p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.katie-bio p em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.katie-bio p strong {
  color: var(--navy);
  font-weight: 600;
}
.katie-bio dl {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.katie-bio dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.katie-bio dd {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  line-height: 1.45;
}

/* Firm values band */
.values {
  padding: 140px 0;
  background: var(--paper);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}
.value-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 18px;
}
.value-card h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.value-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* =====================================================================
   SERVICES PAGE
   ===================================================================== */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--grey-line);
}
.service-detail:nth-child(even) { background: var(--paper); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.service-meta .num-big {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 120px;
  color: var(--navy);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  opacity: 0.8;
}
.service-meta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 20px;
}
.service-meta h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.service-meta .pricing {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.service-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.service-content p:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 350;
  margin-bottom: 30px;
}
.service-content p strong {
  color: var(--navy);
  font-weight: 600;
}
.service-content p em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.service-content h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}
.service-content ul {
  list-style: none;
  margin: 14px 0 24px;
}
.service-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.service-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* =====================================================================
   APPROACH page
   ===================================================================== */
.method-section { padding: 120px 0; background: var(--cream); }
.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 50px;
  padding: 50px 0;
  border-bottom: 1px solid var(--grey-line);
  align-items: start;
}
.method-step:last-child { border-bottom: none; }
.method-step .step-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 64px;
  color: var(--navy);
  line-height: 0.9;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.02em;
}
.method-step .step-num em { color: var(--gold-deep); }
.method-step .step-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 18px;
}
.method-step .step-content h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.method-step .step-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 720px;
}
.method-step .step-content p em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* differentiator band */
.differentiators {
  padding: 140px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.differentiators::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.54 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}
.differentiators > .container { position: relative; }
.differentiators .section-header h2.display { color: var(--cream); }
.differentiators .section-header .label .eyebrow { color: var(--gold); }
.differentiators .section-header h2.display em { color: var(--gold); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.diff-card {
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.diff-card .iconrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.diff-card .iconrow .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.diff-card .iconrow .lbl {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.diff-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 16px;
}
.diff-card h3 em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.diff-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

/* =====================================================================
   RESULTS / IMPACT page
   ===================================================================== */
.headline-stats {
  padding: 100px 0;
  background: var(--navy);
  color: var(--cream);
}
.headline-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.headline-stat {
  text-align: center;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.headline-stat:last-child { border-right: none; }
.headline-stat .big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.9;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.headline-stat .big em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.headline-stat .lbl {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Case grid */
.cases {
  padding: 140px 0;
  background: var(--cream);
}
.case-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-line);
  align-items: start;
}
.case-card:last-child { border-bottom: none; }
.case-meta-block .org-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--paper);
  border: 1px solid var(--grey-line);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 600;
}
.case-meta-block h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 30px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.case-meta-block h3 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.case-meta-block dl {
  display: grid;
  gap: 16px;
}
.case-meta-block dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--grey-line);
}
.case-meta-block dl dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  padding-top: 2px;
}
.case-meta-block dl dd {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 15px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.case-result-block .pull-stat {
  background: var(--navy);
  color: var(--cream);
  padding: 36px 40px;
  border-radius: 2px;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 350;
}
.case-result-block .pull-stat em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.case-result-block .pull-stat-label {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.case-result-block h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy);
  margin: 24px 0 12px;
  letter-spacing: -0.005em;
}
.case-result-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.case-result-block p em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* =====================================================================
   INSIGHTS page
   ===================================================================== */
.insights-list {
  padding: 80px 0 120px;
  background: var(--cream);
}
.insight-row {
  display: grid;
  grid-template-columns: 1fr 2fr 200px;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid var(--grey-line);
  align-items: start;
  transition: padding 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s;
}
.insight-row:first-child { border-top: 1px solid var(--grey-line); }
.insight-row:hover { padding-left: 16px; padding-right: 16px; background: var(--paper); }
.insight-row .meta-side .date {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  margin-bottom: 8px;
}
.insight-row .meta-side .tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--paper);
  border: 1px solid var(--grey-line);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  border-radius: 999px;
}
.insight-row h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 16px;
}
.insight-row h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.insight-row .summary {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.insight-row .right-meta {
  text-align: right;
}
.insight-row .right-meta .read {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.insight-row .right-meta .arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.newsletter-band {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--grey-line);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-inner h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.newsletter-inner h3 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.newsletter-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--navy);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder {
  color: var(--ink-soft);
  font-style: italic;
}
.newsletter-form button {
  background: var(--navy);
  color: var(--cream);
  padding: 0 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  margin-left: 16px;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--navy-deep); }
.newsletter-fine {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* =====================================================================
   CONTACT page
   ===================================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info .marker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-weight: 600;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 30px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.contact-info h2 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.contact-info p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-line);
  align-items: center;
}
.contact-row .key {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-row .val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.contact-row .val a:hover { color: var(--gold-deep); }

.cform {
  background: var(--paper);
  padding: 50px;
  border: 1px solid var(--grey-line);
  border-radius: 2px;
}
.cform h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cform h3 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.cform .form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--grey-line);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.cform button[type="submit"] {
  margin-top: 12px;
  width: 100%;
}

/* =====================================================================
   ANIMATIONS — reveal on scroll
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 16px 24px; }
  .nav-links {  display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 24px;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open a { font-size: 24px; font-family: var(--font-display); font-weight: 350; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-header { padding: 60px 0 50px; }
  .page-header .grid { grid-template-columns: 1fr; gap: 40px; }
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .why-kbb, .services-band, .founder-feature, .testimonials, .cta, .values, .differentiators { padding: 80px 0; }
  .why-grid, .testimonial-grid, .values-grid, .diff-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-row { grid-template-columns: 30px 1fr; gap: 16px; padding: 28px 0; }
  .service-row .desc, .service-row .arrow { grid-column: 2; }
  .service-row .arrow { text-align: left; padding-top: 6px; }
  .founder-feature-inner { grid-template-columns: 1fr; gap: 50px; }
  .founder-feature-content .creds { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 36px 28px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; padding: 30px 0; }
  .katie-inner { grid-template-columns: 1fr; gap: 50px; }
  .katie-bio dl { grid-template-columns: 1fr; gap: 16px; }
  .service-detail { padding: 70px 0; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-meta .num-big { font-size: 80px; }
  .method-step { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .method-step .step-num { font-size: 44px; }
  .headline-stats-grid { grid-template-columns: 1fr; gap: 50px; }
  .headline-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 40px; }
  .headline-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .case-card { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .insight-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .insight-row .right-meta { text-align: left; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-form { flex-direction: column; align-items: stretch; gap: 16px; border-bottom: none; }
  .newsletter-form input { border-bottom: 1px solid var(--navy); padding: 12px 0; }
  .newsletter-form button { margin-left: 0; padding: 14px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .cform { padding: 32px 24px; }
}

/* =====================================================================
   LOGO HERO — v2.4
   Logo as the centerpiece of the home page hero
   ===================================================================== */
.logo-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--grey-line);
}
.logo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
}
.logo-hero > .container { position: relative; z-index: 1; }

.logo-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.logo-hero-mark {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 50px;
  display: block;
}
.logo-hero-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.02em;
  color: var(--gold-deep);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 400;
}
.logo-hero-tagline::before,
.logo-hero-tagline::after {
  content: '— ';
  color: var(--gold-deep);
  opacity: 0.7;
}
.logo-hero-tagline::after { content: ' —'; }

.logo-hero h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 36px;
  max-width: 920px;
}
.logo-hero h1 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.logo-hero-lede {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 40px;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.logo-hero-lede em,
.logo-hero-lede strong {
  color: var(--navy);
}
.logo-hero-lede em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 400;
}
.logo-hero-lede strong {
  font-weight: 600;
}

.logo-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.logo-hero .stats-bar {
  margin-top: 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: none;
  padding: 40px 0 10px;
  width: 100%;
}

/* =====================================================================
   FIVE-STEP PROCESS — v2.4
   ===================================================================== */
.process-section {
  padding: 140px 0;
  background: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.process-step {
  padding: 50px 28px;
  border-right: 1px solid var(--grey-line);
  background: var(--cream);
  transition: background 0.3s;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--paper); }
.process-step .pnum {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.process-step h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .logo-hero { padding: 50px 0 40px; }
  .logo-hero-mark { max-width: 360px; margin-bottom: 32px; }
  .logo-hero h1 { font-size: clamp(28px, 8vw, 42px); }
  .logo-hero-lede { font-size: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--grey-line); padding: 32px 24px; }
  .process-step:last-child { border-bottom: none; }
  .process-section { padding: 80px 0; }
}

/* =====================================================================
   WHO / WHAT / WHY SECTIONS — v2.5
   Static home page introduction sections
   ===================================================================== */
.intro-section {
  padding: 110px 0;
  position: relative;
}
.intro-section.alt-bg { background: var(--paper); }
.intro-section.dark-bg {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.intro-section.dark-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.54 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}
.intro-section.dark-bg > .container { position: relative; z-index: 1; }

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.intro-meta {
  position: sticky;
  top: 100px;
}
.intro-meta .marker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 30px;
}
.intro-meta .marker .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 7vw, 84px);
  line-height: 0.85;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.03em;
}
.intro-section.dark-bg .intro-meta .marker .num { color: var(--gold); }

.intro-meta .marker .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.intro-section.dark-bg .intro-meta .marker .eyebrow { color: var(--gold); }

.intro-meta .question {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.intro-section.dark-bg .intro-meta .question { color: var(--gold); }

.intro-content h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.intro-section.dark-bg .intro-content h3 { color: var(--cream); }
.intro-content h3 em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.intro-section.dark-bg .intro-content h3 em { color: var(--gold); }

.intro-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.intro-section.dark-bg .intro-content p { color: rgba(255,255,255,0.82); }
.intro-content p em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.intro-section.dark-bg .intro-content p em { color: var(--gold); }
.intro-content p strong {
  color: var(--navy);
  font-weight: 600;
}
.intro-section.dark-bg .intro-content p strong { color: var(--cream); }

@media (max-width: 960px) {
  .intro-section { padding: 70px 0; }
  .intro-inner { grid-template-columns: 1fr; gap: 30px; }
  .intro-meta { position: static; }
  .intro-meta .marker { margin-bottom: 16px; }
  .intro-meta .marker .num { font-size: 48px; }
  .intro-meta .question { font-size: 40px; }
  .intro-content h3 { font-size: 24px; margin-bottom: 18px; }
  .intro-content p { font-size: 16px; }
}

/* Tighten mobile layout further */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .logo-hero-mark { max-width: 280px; }
  .logo-hero-tagline { font-size: 13px; }
  .logo-hero h1 { font-size: 26px; line-height: 1.15; }
  .logo-hero-lede { font-size: 15px; line-height: 1.55; }
  .stats-bar .stat .num { font-size: 32px; }
  .stats-bar .stat .lbl { font-size: 9px; }
  .stats-bar { padding-top: 28px !important; gap: 18px !important; }
  .hero-cta, .logo-hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; width: 100%; }
}
