/* ============================================================
   Pearson Construction Consulting — styles.css
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:root {
  --yellow: #ffb612;
  --black: #000;
  --white: #fff;
  --gray-100: #f4f4f4;
  --gray-200: #ddd;
  --gray-400: #888;
  --gray-600: #555;
}
::selection { background: #ffb612; color: #000; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* === CONTAINER === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="60"]  { transition-delay: 60ms; }
.reveal[data-delay="80"]  { transition-delay: 80ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="120"] { transition-delay: 120ms; }
.reveal[data-delay="140"] { transition-delay: 140ms; }
.reveal[data-delay="160"] { transition-delay: 160ms; }
.reveal[data-delay="180"] { transition-delay: 180ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }

/* === EYEBROW === */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb612;
  margin-bottom: 12px;
}
.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 182, 18, 0.3);
}
.eyebrow--light::after { background: rgba(255, 182, 18, 0.2); }

/* === BUTTONS === */
.btn-yellow {
  display: inline-block;
  background: #ffb612;
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-yellow:hover { background: #cc9100; transform: scale(1.02); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 31px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.6); color: #ffb612; }

.btn-dark {
  display: inline-block;
  background: #000;
  color: #ffb612;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-dark:hover { background: #222; }

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #000;
  border-bottom: 2px solid #ffb612;
  height: 56px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5); }

.nav-mark {
  width: 56px; height: 56px;
  background: #ffb612;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-mark:hover { background: #cc9100; }

.nav-wordmark {
  padding: 0 16px;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  line-height: 1;
}
.nav-wordmark-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
}
.nav-wordmark-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 8px;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #888;
  background: none;
  border: none;
  border-left: 1px solid #1a1a1a;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  position: relative;
}
.nav-link:hover { color: #ffb612; background: rgba(255, 182, 18, 0.06); }
.nav-link.active { color: #ffb612; background: rgba(255, 182, 18, 0.06); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #ffb612;
}

.nav-cta {
  margin: 0 12px;
  padding: 9px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffb612;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: #cc9100; }

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 16px;
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: 56px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s, transform 0.25s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #ffb612;
}
.nav-hamburger.open span:nth-child(2) {
  transform: scaleX(0);
  background: #ffb612;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #ffb612;
}

.nav-drawer {
  position: fixed;
  top: 56px; left: 0; right: 0;
  z-index: 199;
  background: #000;
  border-bottom: 2px solid #ffb612;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  padding: 8px 0 16px;
}
.nav-drawer.open { transform: translateY(0); }

.nav-drawer-link {
  display: block;
  width: 100%;
  padding: 14px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  background: none;
  border-bottom: 1px solid #111;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer-link:hover,
.nav-drawer-link.active { color: #ffb612; }

.nav-drawer-cta-wrap { padding: 12px 24px 0; }
.nav-drawer-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ffb612;
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

/* === PAGE WRAPPER (accounts for fixed nav) === */
.page-wrap { margin-top: 56px; }

/* === PAGE HERO (dark) === */
.page-hero {
  background: #000;
  padding: 100px 0 80px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: #ffb612;
}

/* === HERO ANIMATIONS === */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-line-1 { animation: heroFade 0.7s ease 0.08s both; }
.hero-line-2 { animation: heroFade 0.7s ease 0.20s both; }
.hero-line-3 { animation: heroFade 0.7s ease 0.34s both; }
.hero-line-4 { animation: heroFade 0.7s ease 0.46s both; }
.hero-scroll  { animation: heroFade 0.7s ease 0.68s both; }

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}
.scroll-indicator { animation: scrollPulse 2s ease-in-out infinite; }

/* === STATS BAR === */
.stats-bar { background: #ffb612; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(odd) { background: rgba(0, 0, 0, 0.06); }
.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #000;
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* === SECTION UTILITIES === */
.section-white  { background: #fff; }
.section-gray   { background: #f4f4f4; }
.section-black  { background: #000; position: relative; }
.section-black::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: #ffb612;
}
.section-yellow { background: #ffb612; }

.section-pad     { padding: 80px 0; }
.section-pad-sm  { padding: 56px 0; }

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-2-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }

/* === CARDS === */
.card-dark {
  background: #000;
  border-radius: 8px;
  padding: 28px 24px;
}
.card-light {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 28px 24px;
}
.card-gray {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 28px 24px;
}
.card-yellow {
  background: #ffb612;
  border-radius: 8px;
  padding: 28px 24px;
}

/* === TESTIMONIAL === */
.testimonial {
  border-left: 3px solid #ffb612;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
}
.testimonial blockquote {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

/* === PROOF POINT BAR === */
.proof-bar {
  background: rgba(255, 182, 18, 0.06);
  border: 1px solid rgba(255, 182, 18, 0.2);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.proof-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #ffb612;
  line-height: 1;
}
.proof-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* === CTA BAND === */
.cta-band {
  background: #000;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: #ffb612;
}
.cta-band-deco {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border: 60px solid #ffb612;
  opacity: 0.03;
  border-radius: 8px;
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffb612;
  margin-bottom: 20px;
}
.cta-band-dig {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #fff;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cta-band-level {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #ffb612;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.cta-band-divider {
  width: 64px;
  height: 1px;
  background: #333;
  margin: 0 auto 36px;
}
.cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-yellow { font-size: 16px; padding: 16px 44px; }
.cta-band .btn-outline { font-size: 16px; padding: 15px 43px; }

/* === CTA YELLOW SECTION (services/about) === */
.cta-yellow {
  background: #ffb612;
  padding: 64px 0;
  text-align: center;
}
.cta-yellow h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  margin-bottom: 28px;
}

/* === FOOTER === */
.site-footer {
  background: #000;
  border-top: 2px solid #ffb612;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
}
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.footer-logo-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 8px;
  color: #aaa;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffb612;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover { color: #ffb612; }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #aaa;
}

/* === HOVER LIFT === */
.lift { transition: transform 0.2s, box-shadow 0.2s; }
.lift:hover { transform: translateY(-2px); }
.lift-3:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* === SERVICES PILLAR GRID === */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #ddd;
}
.pillar-card {
  padding: 36px 32px;
  cursor: pointer;
  transition: transform 0.2s;
}
.pillar-card:hover { transform: translateY(-2px); }
.pillar-num {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar-bar {
  width: 28px; height: 3px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

/* === SERVICES DETAIL CARDS === */
.service-card {
  border-radius: 8px;
  padding: 32px 28px;
  height: 100%;
}
.service-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
}

/* === LIFECYCLE BAR === */
.lifecycle-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.lifecycle-item {
  padding: 20px 16px;
  text-align: center;
}
.lifecycle-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* === PROCESS STEPS === */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  transition: background 0.2s;
  cursor: default;
}
.process-step:hover { background: #fafafa; }
.process-step-num {
  background: #ffb612;
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  width: 36px; height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.process-step-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* === ENGAGEMENT MODEL CARDS === */
.engagement-card {
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
}
.engagement-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb612;
  margin-bottom: 12px;
}
.engagement-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}
.engagement-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

/* === BLOG CARDS === */
.blog-card {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 32px 28px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}
.blog-card:hover { transform: translateY(-2px); background: #fff; }
.blog-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb612;
  margin-bottom: 12px;
}
.blog-card-bar {
  width: 24px; height: 3px;
  background: #ffb612;
  border-radius: 2px;
  margin-bottom: 16px;
}
.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-card-meta {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: #888;
  display: flex;
  gap: 20px;
}

/* === ARTICLE BODY === */
.article-body { font-family: 'Barlow', sans-serif; font-size: 16px; color: #555; line-height: 1.8; }
.article-body p  { margin-bottom: 20px; }
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: #000;
  margin: 36px 0 14px;
  line-height: 1.1;
}
.article-body ul  { margin: 0 0 20px 20px; }
.article-body li  { margin-bottom: 8px; }
.article-body strong { font-weight: 600; color: #000; }
.article-body a   { color: #ffb612; text-decoration: underline; }

/* === CONTACT FORM === */
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  color: #000;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-input:focus { border-color: #ffb612; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === ABOUT PAGE === */
.about-photo-wrap { position: relative; }
.about-photo-deco {
  position: absolute;
  top: -8px; left: -8px;
  width: 48px; height: 48px;
  background: #ffb612;
  border-radius: 4px;
  z-index: 0;
}
.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.about-bio-card {
  margin-top: 20px;
  background: #000;
  border-radius: 8px;
  padding: 24px 28px;
}
.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.credential-card {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 18px 20px;
}
.credential-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffb612;
  line-height: 1;
  margin-bottom: 4px;
}
.credential-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.about-quote {
  border-left: 3px solid #ffb612;
  padding: 14px 20px;
  margin: 12px 0;
  background: #fafafa;
  border-radius: 0 6px 6px 0;
}
.about-quote blockquote {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

/* === PROOF TABLE === */
.proof-table {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.proof-table-header {
  padding: 20px 28px;
  border-bottom: 1px solid #eee;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
}
.proof-table-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-table-cell {
  padding: 32px 28px;
  border-right: 1px solid #eee;
}
.proof-table-cell:last-child { border-right: none; }
.proof-big-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
}
.proof-table-note {
  padding: 18px 28px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #555;
  font-style: italic;
  line-height: 1.7;
}

/* === "NOT FOR EVERYONE" LIST === */
.not-for-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.not-for-item:last-child { border-bottom: none; }
.not-for-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ffb612;
  flex-shrink: 0;
  margin-top: 6px;
}

/* === CONTACT PAGE === */
.contact-info-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.contact-info-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.contact-info-val {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  white-space: pre-line;
  line-height: 1.6;
}
.contact-quote {
  border-left: 3px solid #ffb612;
  padding: 16px 20px;
  background: #f9f9f9;
  border-radius: 0 6px 6px 0;
  margin-bottom: 24px;
}
.booking-card {
  background: #000;
  border-radius: 8px;
  padding: 24px;
}
.booking-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.form-success {
  background: #000;
  border-radius: 8px;
  padding: 64px 36px;
  text-align: center;
}

/* === FEATURED ARTICLE CARD === */
.featured-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.featured-card-grid { display: grid; grid-template-columns: 1fr 1fr; }
.featured-card-dark {
  background: #000;
  padding: 48px 40px;
  position: relative;
}
.featured-card-dark::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #ffb612;
}
.featured-card-light {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === PITCH SECTION CARDS === */
.pitch-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pitch-card {
  border-radius: 8px;
  padding: 24px 20px;
}
.pitch-card-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb612;
  margin-bottom: 10px;
}
.pitch-card-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

/* === LIFECYCLE BAR (HOME) === */
.lifecycle-home {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.lifecycle-home-item {
  padding: 20px 16px;
  text-align: center;
}
.lifecycle-home-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* === "WHERE WE WORK" CARD === */
.where-card {
  margin-top: 20px;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px 28px;
}

/* ============================================================
   RESPONSIVE — 900px (nav breakpoint)
   ============================================================ */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wordmark-top { font-size: 14px; }
  .nav-wordmark-sub { display: none; }
}

/* ============================================================
   RESPONSIVE — 768px (content breakpoint)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Typography */
  .page-hero { padding: 80px 0 48px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 48px 0; }

  /* Grids → single column */
  .grid-2,
  .grid-2-wide,
  .grid-3,
  .pitch-cards,
  .credential-grid { grid-template-columns: 1fr; gap: 24px; }

  .grid-4,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .grid-5,
  .lifecycle-bar,
  .lifecycle-home { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .pillar-grid { grid-template-columns: 1fr; }

  .featured-card-grid { grid-template-columns: 1fr; }
  .proof-table-body { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-dig,
  .cta-band-level { font-size: 52px; }

  /* Stats */
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,.1); }

  /* Process */
  .grid-2-wide { gap: 40px; }

  /* About */
  .about-photo { max-width: 100%; }

  /* Blog */
  .blog-card { padding: 24px 20px; }

  /* Contact booking bar */
  .booking-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .proof-table-body { grid-template-columns: 1fr; }
  .proof-table-cell { border-right: none; border-bottom: 1px solid #eee; }
  .proof-table-cell:last-child { border-bottom: none; }
  .grid-4,
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .lifecycle-home,
  .lifecycle-bar { grid-template-columns: 1fr; }
}
