/*
Theme Name: ODB Growth
Theme URI: https://odbgrowth.nl
Author: Onno de Bel
Description: Custom theme voor ODB Growth — sales process automation, CRM alignment, hands-on commercial execution. Founder-led design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: odb-growth
*/

/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --navy: #061B33;
  --teal: #007C7A;
  --teal-light: #00a09d;
  --off-white: #F6F1E8;
  --white: #FFFFFF;
  --charcoal: #1F2428;
  --charcoal-light: #3a4047;
  --border: rgba(6, 27, 51, 0.1);
  --border-light: rgba(6, 27, 51, 0.06);
  --font-head: 'Manrope', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 24px rgba(6,27,51,0.08);
  --shadow-hover: 0 8px 40px rgba(6,27,51,0.14);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --section-pad: 96px 0;
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

.section-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,124,122,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(6,27,51,0.25);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(6,27,51,0.04);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-teal-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-teal-ghost:hover {
  background: var(--teal);
  color: var(--white);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
  transition: var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { transition: var(--transition); }

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* HEADER / NAV */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(6,27,51,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-odb {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-growth {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.06em;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
nav.main-nav a:hover {
  color: var(--navy);
  background: var(--off-white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* HERO */
#hero {
  background: var(--navy);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,124,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left { z-index: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,124,122,0.15);
  border: 1px solid rgba(0,124,122,0.3);
  color: #4dd8d6;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero-headline em {
  color: var(--teal);
  font-style: normal;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 480px;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 100px;
}
.chip::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}
.founder-card {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.founder-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder-badge {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: rgba(6,27,51,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 20px 24px;
}
.founder-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.founder-title {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  font-family: var(--font-body);
}

/* MEANING */
#meaning {
  padding: var(--section-pad);
  background: var(--white);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.meaning-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.meaning-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.meaning-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.meaning-letter {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 16px;
}
.meaning-card h3 { font-size: 20px; margin-bottom: 12px; }
.meaning-card p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.section-link-wrap { text-align: center; }

/* TRANSFORMATION */
#transformation {
  padding: var(--section-pad);
  background: var(--off-white);
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.transform-col { padding: 48px 44px; }
.transform-col.old { background: var(--white); border-right: none; }
.transform-col.new { background: var(--navy); }
.transform-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.transform-col.old .transform-label { color: rgba(31,36,40,0.45); }
.transform-col.new .transform-label { color: rgba(255,255,255,0.45); }
.transform-items { display: flex; flex-direction: column; gap: 12px; }
.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.transform-col.old .transform-item { color: var(--charcoal-light); }
.transform-col.new .transform-item { color: rgba(255,255,255,0.85); }
.transform-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.transform-col.old .transform-dot { background: rgba(31,36,40,0.2); }
.transform-col.new .transform-dot { background: var(--teal); }
.result-bar {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.result-bar p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}
.result-bar p span { color: var(--teal); }
.transform-cta { text-align: center; }

/* PROCESS */
#process {
  padding: var(--section-pad);
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.process-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,124,122,0.2);
}
.process-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}
.process-card h3 { font-size: 20px; margin-bottom: 12px; }
.process-card p {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.process-cta { text-align: center; }

/* SERVICES */
#services {
  padding: var(--section-pad);
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,124,122,0.15);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.service-card p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.services-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.services-cta p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  max-width: 560px;
}

/* ABOUT */
#about {
  padding: var(--section-pad);
  background: var(--white);
}
blockquote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.4;
  border-left: 3px solid var(--teal);
  padding-left: 24px;
  margin: 32px 0;
}
.about-body {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* EXECUTION PILLARS */
#execution {
  padding: var(--section-pad);
  background: var(--off-white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 56px;
}
.pillar {
  background: var(--white);
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(0,124,122,0.06); }
.pillar-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.pillar h3 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 14px;
  font-weight: 800;
}
.pillar p {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.execution-cta { text-align: center; }

/* FINAL CTA */
#cta-final {
  padding: 96px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,124,122,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-final-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-final-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  line-height: 1.7;
}
.cta-final-inner .btn-primary {
  font-size: 17px;
  padding: 18px 40px;
}

/* FOOTER */
footer.site-footer {
  background: #030f1c;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ARTICLE */
.article-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,124,122,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.article-category {
  display: inline-block;
  background: rgba(0,124,122,0.2);
  border: 1px solid rgba(0,124,122,0.35);
  color: #4dd8d6;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.article-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 28px;
  max-width: 680px;
  line-height: 1.15;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-weight: 500;
}
.meta-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 48px;
  transition: var(--transition);
}
.back-link:hover { gap: 12px; }
.article-body { padding: 64px 0; }
.article-intro {
  font-size: 20px;
  line-height: 1.75;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.article-content h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.article-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.article-content p {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
}
.article-content a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-content strong { color: var(--navy); font-weight: 700; }
.article-content ul,
.article-content ol {
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-content ul li,
.article-content ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.65;
}
.article-content ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.article-content ol { counter-reset: list-counter; }
.article-content ol li {
  counter-increment: list-counter;
}
.article-content ol li::before {
  content: counter(list-counter) ".";
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  min-width: 18px;
}
.article-content blockquote,
.pull-quote {
  margin: 48px 0;
  padding: 36px 40px;
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.article-content blockquote p,
.pull-quote p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}
.article-content img {
  border-radius: var(--radius);
  margin: 32px 0;
}
.article-cta-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.article-cta-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,124,122,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta-block h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
}
.article-cta-block p {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  margin-bottom: 36px;
  position: relative;
}
.related-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pillar:nth-child(2), .pillar:nth-child(4) { border-right: none; }
  .hero-grid { gap: 48px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .container { padding: 0 20px; }
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner > .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .founder-card { max-width: 320px; margin: 0 auto; }
  .meaning-grid { grid-template-columns: 1fr; gap: 16px; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-col.old { border-bottom: 3px solid var(--off-white); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .result-bar { flex-direction: column; text-align: center; }
  .services-cta { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .article-container { padding: 0 20px; }
  .pull-quote, .article-content blockquote { padding: 24px; }
  .pull-quote p, .article-content blockquote p { font-size: 18px; }
  .article-cta-block { padding: 40px 24px; }
  .article-cta-block h2 { font-size: 24px; }
  .article-title { font-size: 28px; }
  #about-grid-wrap { display: flex !important; flex-direction: column !important; gap: 40px !important; }
  #about-photo { height: 360px !important; aspect-ratio: unset !important; width: 100% !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .footer-bottom-row { flex-direction: column !important; text-align: center; gap: 8px !important; }
  .related-grid { grid-template-columns: 1fr !important; }
  .growth-notes-header { display: flex !important; flex-direction: column !important; gap: 16px !important; }
  .growth-notes-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 32px !important; }
  .container { padding: 0 16px; }
  .article-container { padding: 0 16px; }
  .btn { font-size: 14px !important; padding: 12px 20px !important; }
}
