/* ════════════════════════════════════════════════════
   FUNSO OYEBAMI — PORTFOLIO  |  Full-Width Edition
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --navy:     #0f1c35;
  --navy-mid: #1a2d50;
  --navy-deep:#080f1e;
  --gold:     #c8961e;
  --gold-lt:  #e8b84b;
  --gold-dim: rgba(200,150,30,0.15);
  --terra:    #9b3d22;
  --offwhite: #f7f4ee;
  --cream:    #faf8f3;
  --ink:      #111827;
  --gray:     #3a4a60;
  --border:   rgba(200,185,160,.18);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Syne', sans-serif;
  --r:        8px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.up-delay-1 { transition-delay: .1s; }
.reveal.up-delay-2 { transition-delay: .2s; }
.reveal.up-delay-3 { transition-delay: .3s; }
.reveal.up-delay-4 { transition-delay: .4s; }
.reveal.visible    { opacity: 1; transform: none; }

/* ══════════════════════════════
   NAVIGATION
   ══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(15,28,53,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-logo   { display: flex; align-items: center; gap: 10px; }
.nav-mono   { width: 34px; height: 34px; flex-shrink: 0; }
.nav-name   { font-family: var(--serif); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: .3px; }
.nav-name span { color: var(--gold); }
.nav-links  { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.6); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta    { font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 9px 20px; background: var(--gold); color: #fff; border-radius: 3px; transition: background .2s, transform .15s; }
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 800;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-drawer.open { opacity: 1; pointer-events: all; }
.mobile-drawer a { font-family: var(--serif); font-size: 38px; font-weight: 700; color: rgba(255,255,255,.7); padding: 12px 0; transition: color .2s; }
.mobile-drawer a:hover { color: var(--gold); }
.mobile-drawer .mobile-cta { margin-top: 24px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 14px 36px; background: var(--gold); color: #fff; border-radius: 3px; }

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(200,150,30,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(155,61,34,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-h1 { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 74px); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -.5px; margin-bottom: 32px; }
.hero-h1 .type-wrap { display: block; }
.hero-h1 em { color: var(--gold-lt); font-style: italic; }
#type-cursor { display: inline-block; width: 3px; height: .85em; background: var(--gold); margin-left: 2px; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 14px 28px; background: var(--gold); color: #fff; border-radius: 3px; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 14px 28px; background: transparent; color: rgba(232,226,214,.75); border: 1px solid rgba(200,180,120,.3); border-radius: 3px; transition: border-color .2s, color .2s, transform .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.hero-right { position: relative; }
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,185,150,.1);
  border-radius: var(--r);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card-stat { display: flex; align-items: baseline; gap: 8px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.hero-card-stat:last-child { border-bottom: none; }
.hcs-n { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.hcs-l { font-size: 12px; color: rgba(200,185,150,.6); line-height: 1.4; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.2); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(200,150,30,.6), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%{height:0;opacity:1} 100%{height:40px;opacity:0} }

/* ══════════════════════════════
   TRUST MARQUEE
   ══════════════════════════════ */
.trust { background: var(--navy-mid); padding: 16px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.trust-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
.trust-item { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(200,185,150,.45); padding: 0 28px; border-right: 1px solid rgba(200,150,30,.15); white-space: nowrap; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════
   PHILOSOPHY BAR
   ══════════════════════════════ */
.philo { background: var(--terra); padding: 56px 0; position: relative; overflow: hidden; }
.philo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.1) 0%, transparent 60%); pointer-events: none; }
.philo .container { position: relative; z-index: 1; }
.philo-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,200,160,.6); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.philo-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: rgba(255,200,160,.4); }
.philo-q { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: #fff; line-height: 1.3; max-width: 820px; }
.philo-q em { color: rgba(255,210,160,.9); font-style: italic; }
.philo-attr { margin-top: 14px; font-size: 11px; color: rgba(255,200,160,.5); letter-spacing: .5px; }

/* ══════════════════════════════
   STATS
   ══════════════════════════════ */
.stats { background: var(--navy-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,.05); transition: background .3s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(200,150,30,.04); }
.stat-n { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--gold-lt); line-height: 1; display: inline; }
.stat-sup { font-family: var(--serif); font-size: 22px; color: var(--gold-lt); vertical-align: super; }
.stat-l { font-size: 11px; letter-spacing: .3px; color: rgba(139,154,179,.75); margin-top: 8px; line-height: 1.5; }

/* ══════════════════════════════
   ABOUT
   ══════════════════════════════ */
.about { display: grid; grid-template-columns: 380px 1fr; }
.about-col-l { background: var(--navy); padding: 64px 48px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-photo-ring { width: 200px; height: 200px; border-radius: 50%; border: 3px solid rgba(200,150,30,.4); padding: 4px; margin-bottom: 24px; flex-shrink: 0; }
.about-photo-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; }
.about-name { font-family: var(--serif); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.about-role { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.about-chip { font-size: 10px; font-weight: 500; padding: 5px 12px; border: 1px solid rgba(200,150,30,.25); border-radius: 20px; color: rgba(200,185,150,.7); transition: border-color .2s, color .2s; }
.about-chip:hover { border-color: var(--gold); color: var(--gold); }
.about-links { display: flex; gap: 16px; }
.about-link { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); padding-bottom: 2px; border-bottom: 1px solid rgba(200,150,30,.35); transition: border-color .2s; }
.about-link:hover { border-color: var(--gold); }
.about-col-r { padding: 64px clamp(32px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.about-col-r .section-label { margin-bottom: 16px; }
.about-col-r h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 20px; }
.about-col-r p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.about-col-r p strong { color: var(--ink); }
.testimonial-block { border-left: 3px solid var(--gold); padding: 14px 20px; background: var(--cream); border-radius: 0 6px 6px 0; margin: 24px 0; }
.testimonial-block blockquote { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.6; font-style: italic; margin-bottom: 8px; }
.testimonial-block cite { font-size: 11px; color: var(--gray); font-style: normal; }

/* ══════════════════════════════
   SECTION LABELS (shared)
   ══════════════════════════════ */
.section-label { font-size: 9px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; color: var(--ink); line-height: 1.15; margin: 12px 0 8px; }

/* ══════════════════════════════
   METHODOLOGY — clickable cards
   ══════════════════════════════ */
.method { padding: 96px 0; }
.method-header { margin-bottom: 52px; }
.method-intro { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 560px; margin-top: 16px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; }
.method-card {
  background: #fff;
  padding: 36px 32px;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease);
  position: relative;
}
.method-card:hover { background: var(--cream); }
.method-card.active { background: var(--navy); }
.method-num { font-family: var(--serif); font-size: 52px; font-weight: 700; color: rgba(200,150,30,.15); line-height: 1; margin-bottom: 16px; transition: color .35s; }
.method-card.active .method-num { color: rgba(200,150,30,.3); }
.method-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.2; transition: color .35s; }
.method-card.active h3 { color: #fff; }
.method-summary { font-size: 13px; color: var(--gray); line-height: 1.6; transition: color .35s; }
.method-card.active .method-summary { color: rgba(200,185,150,.7); }
.method-detail {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .35s var(--ease), margin .35s;
  opacity: 0; margin-top: 0; font-size: 13px; line-height: 1.7;
}
.method-card.active .method-detail { max-height: 200px; opacity: 1; margin-top: 16px; color: rgba(200,185,150,.75); }
.method-principle { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--terra); margin-top: 14px; display: block; transition: color .35s; }
.method-card.active .method-principle { color: rgba(200,150,30,.6); }
.method-click-hint { font-size: 10px; color: rgba(200,185,150,.35); margin-top: 28px; text-align: center; letter-spacing: 1px; text-transform: uppercase; }

/* ══════════════════════════════
   WORK — filterable cards
   ══════════════════════════════ */
.work { padding: 96px 0; background: var(--offwhite); }
.work-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.work-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-size: 10px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 7px 16px; border: 1px solid var(--border); border-radius: 20px; background: #fff; color: var(--gray); cursor: pointer; transition: all .2s; }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 0.5px solid var(--border);
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15,28,53,.12); }
.work-card.hidden { display: none; }
.wc-top { background: var(--navy); padding: 28px 28px 20px; }
.wc-top.gov  { background: var(--navy-mid); }
.wc-top.un   { background: #102030; }
.wc-sector { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.wc-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.wc-metric { font-size: 12px; color: rgba(200,185,150,.6); line-height: 1.5; }
.wc-metric strong { color: var(--gold-lt); font-size: 20px; font-family: var(--serif); display: block; }
.wc-foot { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.wc-pill { font-size: 9px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; background: var(--gold-dim); color: var(--gold); border: 0.5px solid rgba(200,150,30,.25); }
.wc-year { font-size: 11px; color: var(--gray); }
.work-card-overlay {
  position: absolute; inset: 0;
  background: rgba(8,15,30,.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.work-card:hover .work-card-overlay { opacity: 1; }
.overlay-btn { font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 12px 24px; background: var(--gold); color: #fff; border-radius: 3px; transition: background .2s; }
.overlay-btn:hover { background: var(--gold-lt); }
.overlay-tag { font-size: 10px; color: rgba(200,185,150,.45); letter-spacing: 1px; }

/* ══════════════════════════════
   SERVICES
   ══════════════════════════════ */
.services { padding: 96px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; margin-top: 48px; }
.svc { padding: 36px 32px; background: #fff; transition: background .25s; }
.svc:hover { background: var(--cream); }
.svc-icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .25s; }
.svc:hover .svc-icon { background: rgba(200,150,30,.25); }
.svc h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.svc p { font-size: 13px; color: var(--gray); line-height: 1.7; }
.svc-tag { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-top: 16px; background: var(--gold-dim); color: var(--gold); border: 0.5px solid rgba(200,150,30,.3); }

/* ══════════════════════════════
   SPEAKING
   ══════════════════════════════ */
.speaking { padding: 96px 0; background: var(--offwhite); }
.speaking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.speak-card { padding: 28px; border: 0.5px solid var(--border); border-radius: var(--r); background: #fff; transition: border-color .25s, transform .25s, box-shadow .25s; }
.speak-card:hover { border-color: rgba(200,150,30,.4); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,28,53,.08); }
.speak-icon { width: 36px; height: 36px; background: var(--gold-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.speak-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.speak-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }
.speak-format { font-size: 10px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); margin-top: 14px; }
.speaking-cta { margin-top: 36px; padding: 28px 36px; background: var(--navy); border-radius: var(--r); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.speaking-cta-text strong { color: #fff; display: block; font-size: 17px; font-family: var(--serif); margin-bottom: 4px; }
.speaking-cta-text span { font-size: 13px; color: rgba(200,185,150,.6); }
.speaking-cta a { font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 12px 24px; background: var(--gold); color: #fff; border-radius: 3px; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.speaking-cta a:hover { background: var(--gold-lt); }

/* ══════════════════════════════
   WRITING / BLOG
   ══════════════════════════════ */
.blog { padding: 96px 0; }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.blog-see-all { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--gold); border-bottom: 1px solid rgba(200,150,30,.35); padding-bottom: 2px; }
.blog-see-all:hover { border-color: var(--gold); }
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; margin-bottom: 24px; }
.blog-feat { border: 0.5px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .25s, box-shadow .25s; display: block; color: inherit; }
.blog-feat:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(15,28,53,.1); }
.bf-top { background: var(--navy); padding: 32px 28px 24px; }
.bf-cat { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.bf-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.bf-excerpt { font-size: 13px; color: rgba(200,185,150,.6); line-height: 1.6; }
.bf-bot { padding: 16px 24px; background: var(--offwhite); display: flex; align-items: center; justify-content: space-between; }
.bf-meta { font-size: 11px; color: var(--gray); }
.bf-read { font-size: 11px; font-weight: 600; color: var(--gold); }
.blog-stack { display: flex; flex-direction: column; gap: 12px; }
.blog-sm { border: 0.5px solid var(--border); border-radius: var(--r); padding: 20px 22px; background: var(--offwhite); transition: border-color .2s, background .2s; display: block; }
.blog-sm:hover { border-color: rgba(200,150,30,.4); background: #fff; }
.bsc-cat { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.bsc-cat.tech  { color: #378ADD; }
.bsc-cat.faith { color: #3B6D11; }
.bsc-cat.life  { color: var(--terra); }
.bsc-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.25; }
.bsc-meta { font-size: 11px; color: var(--gray); }
.newsletter { background: var(--offwhite); border-radius: var(--r); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 0.5px solid var(--border); }
.nl-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.nl-sub { font-size: 12px; color: var(--gray); line-height: 1.5; }
.nl-form { display: flex; gap: 8px; flex-shrink: 0; }
.nl-form input { padding: 11px 16px; border: 0.5px solid var(--border); border-radius: 3px; font-family: var(--sans); font-size: 12px; background: #fff; color: var(--ink); width: 220px; transition: border-color .2s; }
.nl-form input:focus { outline: none; border-color: var(--gold); }
.nl-form button { padding: 11px 20px; background: var(--navy); color: #fff; border: none; border-radius: 3px; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); white-space: nowrap; transition: background .2s; }
.nl-form button:hover { background: var(--navy-mid); }

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.ct-l { padding: 80px clamp(32px, 5vw, 72px); background: var(--navy); }
.ct-l h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.ct-l > p { font-size: 14px; color: rgba(200,185,150,.65); line-height: 1.8; margin-bottom: 32px; }
.ct-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ct-info-row { display: flex; gap: 12px; align-items: flex-start; }
.ct-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.ct-info-text { font-size: 13px; color: rgba(200,185,150,.65); line-height: 1.5; }
.ct-info-text strong { display: block; font-size: 10px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: rgba(200,185,150,.9); margin-bottom: 2px; }
.ct-r { padding: 80px clamp(32px, 5vw, 72px); background: #fff; }
.ct-r .section-label { margin-bottom: 20px; }
.ct-r h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.ct-r > p { font-size: 13px; color: var(--gray); margin-bottom: 4px; }
.form-group { margin-top: 18px; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px;
  border: 0.5px solid var(--border); border-radius: 3px;
  font-family: var(--sans); font-size: 13px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,30,.1); }
.form-group textarea { resize: none; height: 90px; }
.ct-submit { margin-top: 20px; padding: 13px 24px; background: var(--navy); color: #fff; border: none; border-radius: 3px; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; cursor: pointer; width: 100%; font-family: var(--sans); transition: background .2s, transform .15s; }
.ct-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.form-success { display: none; margin-top: 12px; font-size: 12px; color: #3B6D11; font-weight: 600; text-align: center; }

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer { background: var(--navy-deep); padding: 28px clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-name { font-family: var(--serif); font-size: 15px; color: rgba(232,226,214,.7); font-weight: 600; }
.footer-name span { color: var(--gold); }
.footer-copy { font-size: 10px; color: rgba(139,154,179,.5); letter-spacing: .3px; }

/* ══════════════════════════════
   INNER PAGES (blog / case study)
   ══════════════════════════════ */
.page-hero { background: var(--navy); padding: 120px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(200,150,30,.05), transparent 70%); pointer-events: none; }
.ph-content { position: relative; z-index: 1; }
.ph-breadcrumb { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,150,30,.6); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.ph-breadcrumb a { color: rgba(200,150,30,.6); }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb span { color: rgba(200,185,150,.25); }
.ph-cat { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ph-title { font-family: var(--serif); font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.3px; max-width: 800px; margin-bottom: 20px; }
.ph-meta { font-size: 11px; color: rgba(200,185,150,.45); letter-spacing: .3px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.ph-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(200,150,30,.35); }

/* Case study metrics */
.cs-metrics { background: var(--navy-deep); }
.cs-metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.cs-metric { padding: 32px clamp(24px, 4vw, 48px); border-right: 1px solid rgba(255,255,255,.05); }
.cs-metric:last-child { border-right: none; }
.cs-metric-n { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 6px; }
.cs-metric-l { font-size: 11px; letter-spacing: .3px; color: rgba(139,154,179,.75); line-height: 1.5; }

.cs-tags { padding: 18px clamp(24px, 5vw, 80px); background: var(--offwhite); border-bottom: 0.5px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cs-tag-label { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-right: 4px; }
.cs-tag { font-size: 10px; font-weight: 500; padding: 4px 12px; background: #fff; border: 0.5px solid var(--border); border-radius: 2px; color: var(--gray); }

.cs-section { padding: 56px clamp(24px, 5vw, 80px); border-bottom: 0.5px solid var(--border); }
.cs-section-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cs-section h2 { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 18px; }
.cs-section h2.white { color: #fff; }
.cs-section p { font-size: 14px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.cs-section p strong { color: var(--ink); }
.cs-section.dark { background: var(--navy); }
.cs-section.dark p { color: rgba(200,185,150,.7); }
.cs-section.dark h2 { color: #fff; }
.cs-section.dark .cs-section-label { color: rgba(200,150,30,.7); }
.cs-section.light { background: var(--offwhite); }
.cs-section ul { padding-left: 20px; margin-bottom: 16px; }
.cs-section li { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 10px; }
.cs-section li strong { color: var(--ink); }

.cs-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; margin: 24px 0; }
.cs-method-card { background: #fff; padding: 24px 22px; }
.cs-method-card .mnum { font-family: var(--serif); font-size: 36px; font-weight: 700; color: rgba(200,150,30,.2); line-height: 1; margin-bottom: 10px; }
.cs-method-card h3 { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.cs-method-card p { font-size: 12.5px; color: var(--gray); line-height: 1.65; }

.outcome-bar { background: var(--navy); border-radius: var(--r); padding: 20px 24px; margin: 24px 0; }
.outcome-bar p { font-size: 14px; color: rgba(200,185,150,.75); line-height: 1.65; margin: 0; }
.outcome-bar strong { color: #fff; }

.pull-stat { background: var(--navy); color: #fff; border-radius: var(--r); padding: 28px 32px; margin: 32px 0; display: flex; gap: 28px; align-items: center; }
.ps-n { font-family: var(--serif); font-size: clamp(44px, 5vw, 64px); font-weight: 700; color: var(--gold-lt); line-height: 1; flex-shrink: 0; }
.ps-l { font-size: 14px; color: rgba(200,185,150,.7); line-height: 1.6; }
.ps-l strong { color: #fff; display: block; font-size: 16px; margin-bottom: 4px; }

.live-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 10px 18px; border: 1px solid rgba(200,150,30,.35); border-radius: 3px; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); transition: background .2s, border-color .2s; }
.live-link:hover { background: rgba(200,150,30,.08); border-color: var(--gold); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.9)} }

/* Article prose */
.prose-wrap { max-width: 720px; margin: 0 auto; padding: 64px clamp(24px, 5vw, 80px); }
.prose-wrap h2 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.2; margin: 52px 0 18px; }
.prose-wrap h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1.25; margin: 36px 0 12px; }
.prose-wrap p { font-size: 16px; color: var(--gray); line-height: 1.9; margin-bottom: 22px; }
.prose-wrap p strong { color: var(--ink); font-weight: 600; }
.prose-wrap blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; background: var(--cream); border-radius: 0 6px 6px 0; margin: 32px 0; }
.prose-wrap blockquote p { font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.5; font-style: italic; margin: 0; }
.prose-wrap ul, .prose-wrap ol { padding-left: 24px; margin-bottom: 24px; }
.prose-wrap li { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 10px; }
.prose-wrap hr { border: none; border-top: 0.5px solid var(--border); margin: 48px 0; }

.author-bio { border-top: 0.5px solid var(--border); padding: 28px clamp(24px, 5vw, 80px); background: var(--offwhite); display: flex; gap: 20px; align-items: flex-start; }
.author-photo { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.author-name { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.author-role { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.author-text { font-size: 12.5px; color: var(--gray); line-height: 1.6; }
.author-links { margin-top: 10px; display: flex; gap: 14px; }
.author-links a { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: .3px; }
.author-links a:hover { text-decoration: underline; }

.page-nav { padding: 24px clamp(24px, 5vw, 80px); background: var(--offwhite); border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.pnav-link { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); }
.pnav-link:hover { text-decoration: underline; }

/* Blog listing */
.blog-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: clamp(24px, 4vw, 52px) clamp(24px, 5vw, 80px); }
.blog-list-card { border: 0.5px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .2s, transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.blog-list-card:hover { border-color: rgba(200,150,30,.5); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(15,28,53,.1); }
.blc-top { padding: 28px 24px; flex: 1; }
.blc-cat { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blc-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.blc-excerpt { font-size: 12.5px; color: rgba(200,185,150,.6); line-height: 1.6; }
.blc-bot { padding: 14px 20px; background: var(--offwhite); display: flex; align-items: center; justify-content: space-between; border-top: 0.5px solid rgba(255,255,255,.05); }
.blc-meta { font-size: 11px; color: var(--gray); }
.blc-read { font-size: 11px; font-weight: 600; color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .cs-method-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-col-l { padding: 48px 24px; }
  .about-col-r { padding: 48px 24px; }
  .method-grid { grid-template-columns: 1fr; }
  .speaking-grid { grid-template-columns: 1fr; }
  .speaking-cta { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.05); }
  .newsletter { flex-direction: column; align-items: flex-start; }
  .nl-form { width: 100%; flex-direction: column; }
  .nl-form input { width: 100%; }
  .blog-list-grid { grid-template-columns: 1fr; padding: 24px; }
  .cs-metrics-grid { grid-template-columns: 1fr 1fr; }
  .cs-metric:nth-child(2) { border-right: none; }
  .cs-metric:nth-child(1), .cs-metric:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.05); }
  .pull-stat { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.05); }
  .stat:last-child { border-bottom: none; }
  .hero-h1 { font-size: 34px; }
  .cs-metrics-grid { grid-template-columns: 1fr; }
  .cs-metric { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.05); }
  .work-header { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════
   NEW TEMPLATE CLASSES
   ══════════════════════════════ */

/* Nav inner */
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 14px 28px; border-radius: 3px; transition: background .2s, transform .15s, border-color .2s, color .2s; cursor: pointer; border: none; }
.btn-ghost { background: transparent; color: rgba(232,226,214,.75); border: 1px solid rgba(200,180,120,.3); }
.btn-ghost:hover { border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* Hero — new layout */
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-inner h1 { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 74px); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -.5px; margin-bottom: 16px; }
.hero-role { font-size: clamp(16px, 2vw, 22px); color: rgba(200,185,150,.7); margin-bottom: 20px; min-height: 1.5em; }
.hero-sub { font-size: 15px; color: rgba(200,185,150,.6); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { position: relative; display: flex; justify-content: center; align-items: center; }
.photo-wrap { width: 100%; max-width: 440px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(200,150,30,.2); box-shadow: 0 32px 80px rgba(0,0,0,.4); }
.photo-wrap img { width: 100%; height: auto; display: block; object-fit: cover; object-position: center top; }
.hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-1 { top: -10%; right: -8%; width: 45vw; height: 45vw; background: radial-gradient(circle, rgba(200,150,30,.06) 0%, transparent 65%); }
.deco-2 { bottom: -8%; left: -5%; width: 30vw; height: 30vw; background: radial-gradient(circle, rgba(155,61,34,.08) 0%, transparent 65%); }

/* Trust */
.trust-section { background: var(--navy-mid); padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.trust-track-wrap { overflow: hidden; }
.trust-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
.trust-track span { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(200,185,150,.45); padding: 0 28px; white-space: nowrap; }

/* Stats section */
.stats-section { background: var(--navy-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,.05); transition: background .3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,150,30,.04); }
.stat-num { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--gold-lt); line-height: 1; display: block; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: .3px; color: rgba(139,154,179,.75); line-height: 1.5; }

/* About section */
.about-section { padding: 96px 0; }
.about-inner { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: center; }
.about-photo { border-radius: 12px; overflow: hidden; border: 1px solid rgba(200,150,30,.15); }
.about-photo img { width: 100%; height: auto; object-fit: cover; object-position: center top; }
.about-text .section-label { margin-bottom: 16px; }
.about-text h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.about-roles { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.role-tag { font-size: 10px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(200,150,30,.3); border-radius: 20px; color: var(--gold); }

/* Methodology section */
.method-section { padding: 96px 0; background: var(--offwhite); }
.method-section .section-label { margin-bottom: 12px; }
.method-section > .container > h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 8px; }
.section-sub { font-size: 13px; color: var(--gray); margin-bottom: 40px; }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; }
.method-card { background: #fff; padding: 36px 32px; cursor: pointer; transition: background .35s var(--ease); }
.method-card:hover { background: var(--cream); }
.method-card.active { background: var(--navy); }
.method-header { display: flex; align-items: center; gap: 16px; }
.method-icon { font-family: var(--serif); font-size: 28px; font-weight: 700; color: rgba(200,150,30,.4); flex-shrink: 0; min-width: 36px; }
.method-header h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.2; flex: 1; transition: color .35s; }
.method-card.active .method-header h3 { color: #fff; }
.method-toggle { margin-left: auto; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform .35s; }
.method-card.active .method-toggle { transform: rotate(45deg); }
.method-detail { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s var(--ease), opacity .35s var(--ease), margin .35s; font-size: 14px; line-height: 1.7; color: var(--gray); }
.method-card.active .method-detail { max-height: 200px; opacity: 1; margin-top: 16px; color: rgba(200,185,150,.75); }

/* Work section */
.work-section { padding: 96px 0; }
.work-section .section-label { margin-bottom: 12px; }
.work-section > .container > h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 24px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work-card { display: block; border-radius: var(--r); overflow: hidden; position: relative; min-height: 280px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(15,28,53,.2); }
.work-card.hidden { display: none; }
.work-card-bg { position: absolute; inset: 0; }
.work-card-content { position: relative; z-index: 1; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; }
.work-tag { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.work-card-content h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.work-card-content p { font-size: 13px; color: rgba(200,185,150,.65); line-height: 1.6; }
.work-card-overlay { position: absolute; inset: 0; background: rgba(8,15,30,.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s var(--ease); z-index: 2; }
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-overlay span { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--gold); padding: 12px 24px; border: 1px solid rgba(200,150,30,.5); border-radius: 3px; }

/* Services section */
.services-section { padding: 96px 0; background: var(--offwhite); }
.services-section .section-label { margin-bottom: 12px; }
.services-section > .container > h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; }
.service-card { background: #fff; padding: 36px 32px; transition: background .25s; }
.service-card:hover { background: var(--cream); }
.service-icon { font-size: 20px; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* Speaking section */
.speaking-section { padding: 96px 0; background: var(--navy); }
.speaking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.speaking-text .section-label { margin-bottom: 12px; }
.speaking-text h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.speaking-text p { font-size: 15px; color: rgba(200,185,150,.7); line-height: 1.85; margin-bottom: 24px; }
.speaking-topics { list-style: none; padding: 0; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.speaking-topics li { font-size: 14px; color: rgba(200,185,150,.65); line-height: 1.5; padding-left: 20px; position: relative; }
.speaking-topics li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.quote-block { background: rgba(255,255,255,.04); border: 1px solid rgba(200,150,30,.2); border-radius: 12px; padding: 40px 36px; }
.quote-block p { font-family: var(--serif); font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; color: #fff; line-height: 1.45; font-style: italic; margin-bottom: 20px; }
.quote-block cite { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* Blog section */
.blog-section { padding: 96px 0; }
.blog-section .section-label { margin-bottom: 12px; }
.blog-section > .container > h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { display: block; padding: 28px; border: 0.5px solid var(--border); border-radius: var(--r); background: #fff; transition: border-color .2s, transform .25s, box-shadow .25s; }
.blog-card:hover { border-color: rgba(200,150,30,.4); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(15,28,53,.08); }
.blog-category { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.blog-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: 11px; color: rgba(139,154,179,.6); }
.text-center { text-align: center; }

/* Contact section */
.contact-section { padding: 96px 0; background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text .section-label { margin-bottom: 12px; }
.contact-text h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.contact-text p { font-size: 15px; color: rgba(200,185,150,.7); line-height: 1.85; margin-bottom: 28px; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(200,185,150,.75); transition: color .2s; }
.contact-link:hover { color: var(--gold); }
.contact-link span { color: var(--gold); }
.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(200,150,30,.15); border-radius: 12px; padding: 36px 32px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px;
  border: 0.5px solid rgba(200,150,30,.2); border-radius: 4px;
  font-family: var(--sans); font-size: 13px;
  background: rgba(255,255,255,.05); color: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(200,185,150,.35); }
.contact-form select option { background: var(--navy); color: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,30,.1); }
.contact-form textarea { resize: none; height: 110px; }

/* Footer new layout */
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand p { font-size: 12px; color: rgba(139,154,179,.5); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: rgba(200,185,150,.45); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* Blog index inner hero */
.inner-hero { background: var(--navy); padding: 120px 0 64px; position: relative; overflow: hidden; }
.inner-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(200,150,30,.05), transparent 70%); pointer-events: none; }
.inner-hero .section-label { margin-bottom: 16px; }
.inner-hero h1 { font-family: var(--serif); font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.3px; max-width: 700px; margin-bottom: 16px; }
.inner-hero-sub { font-size: 16px; color: rgba(200,185,150,.6); line-height: 1.7; max-width: 560px; }
.blog-list-section { padding: 64px 0 96px; }
.blog-list { display: flex; flex-direction: column; gap: 2px; border-radius: var(--r); overflow: hidden; background: var(--border); }
.blog-list-item { display: block; padding: 32px 36px; background: #fff; transition: background .2s; }
.blog-list-item:hover { background: var(--cream); }
.bli-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.bli-date { font-size: 11px; color: var(--gray); }
.blog-list-item h2 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 10px; }
.blog-list-item p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 640px; margin-bottom: 16px; }
.bli-cta { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); }

/* Article / Case Study pages */
.article-page { padding-top: 64px; }
.article-hero { background: var(--navy); padding: 80px 0 60px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(200,150,30,.05), transparent 70%); pointer-events: none; }
.cs-hero { padding: 100px 0 60px; }
.article-hero .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(200,150,30,.6); margin-bottom: 24px; transition: color .2s; }
.article-hero .back-link:hover { color: var(--gold); }
.article-hero .blog-category { display: block; margin-bottom: 16px; }
.article-hero h1 { font-family: var(--serif); font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.3px; max-width: 820px; margin-bottom: 16px; }
.article-meta { font-size: 11px; color: rgba(200,185,150,.45); letter-spacing: .3px; margin-bottom: 20px; }
.article-lede { font-size: 17px; color: rgba(200,185,150,.65); line-height: 1.75; max-width: 640px; }
.article-body { padding: 64px 0 80px; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--ink); line-height: 1.2; margin: 52px 0 18px; }
.article-content p { font-size: 16px; color: var(--gray); line-height: 1.9; margin-bottom: 22px; }
.article-content p strong { color: var(--ink); font-weight: 600; }
.article-content em { font-style: italic; color: var(--ink); }

/* Case study summary grid */
.cs-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 52px; }
.cs-stat { background: var(--offwhite); padding: 20px 22px; }
.cs-stat strong { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cs-stat span { font-size: 13px; color: var(--ink); line-height: 1.4; }
.cs-quote { background: var(--navy); border-radius: var(--r); padding: 32px 36px; margin-top: 40px; }
.cs-quote blockquote { font-family: var(--serif); font-size: clamp(17px, 2vw, 22px); color: rgba(232,226,214,.85); line-height: 1.55; font-style: italic; margin-bottom: 16px; }
.cs-quote cite { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* Article navigation */
.article-nav { border-top: 0.5px solid var(--border); padding: 40px 0; background: var(--offwhite); }
.article-nav-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.art-nav-link { display: flex; flex-direction: column; gap: 6px; padding: 20px 24px; border: 0.5px solid var(--border); border-radius: var(--r); background: #fff; transition: border-color .2s, transform .2s; }
.art-nav-link:hover { border-color: rgba(200,150,30,.4); transform: translateY(-2px); }
.art-nav-link span { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.art-nav-link strong { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.art-nav-next { text-align: right; }

/* Responsive additions */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .speaking-inner { grid-template-columns: 1fr; gap: 48px; }
  .cs-summary { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.05); }
  .method-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-nav-inner { grid-template-columns: 1fr; }
  .cs-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.05); }
  .stat-item:last-child { border-bottom: none; }
  .cs-summary { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .blog-list-item { padding: 24px 20px; }
  .work-card-content { padding: 24px; }
}

/* Contact form feedback */
.form-feedback { margin-top: 12px; font-size: 13px; font-weight: 600; text-align: center; min-height: 20px; }
.form-feedback--ok  { color: #4ade80; }
.form-feedback--err { color: #f87171; }

/* ══════════════════════════════
   NAV LOGO — badge treatment
   ══════════════════════════════ */
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  padding: 5px 13px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { background: var(--gold); color: #fff; }
.nav-logo:hover span { color: #fff; }

/* Footer logo reuse */
.footer .nav-logo { border-color: rgba(200,150,30,.45); }

/* ══════════════════════════════
   ALL ARTICLES BUTTON
   ══════════════════════════════ */
.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: background .2s, color .2s, transform .15s;
}
.btn-gold-outline:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════
   HOMEPAGE BLOG CARDS WITH IMAGE
   ══════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  display: flex; flex-direction: column;
  border-radius: var(--r); overflow: hidden;
  border: 0.5px solid var(--border); background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(15,28,53,.1); border-color: rgba(200,150,30,.3); }
.blog-card-img {
  height: 180px;
  background-size: cover; background-position: center;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body .blog-category { margin-bottom: 10px; }
.blog-card-body h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.blog-card-body p { font-size: 13px; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.blog-meta { font-size: 11px; color: rgba(139,154,179,.6); }

/* ══════════════════════════════
   BLOG INDEX — full list with images
   ══════════════════════════════ */
.blog-list-full { display: flex; flex-direction: column; gap: 2px; }
.bif-card {
  display: grid; grid-template-columns: 280px 1fr;
  background: #fff; border-radius: var(--r); overflow: hidden;
  border: 0.5px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .25s;
}
.bif-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(15,28,53,.1); border-color: rgba(200,150,30,.35); }
.bif-image { background-size: cover; background-position: center; min-height: 200px; transition: transform .5s var(--ease); }
.bif-card:hover .bif-image { transform: scale(1.03); }
.bif-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: space-between; }
.bif-body .blog-category { margin-bottom: 12px; }
.bif-body h2 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 12px; }
.bif-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.bif-foot { display: flex; align-items: center; justify-content: space-between; }
.bif-meta { font-size: 11px; color: rgba(139,154,179,.6); }
.bif-read { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════
   BLOG POST PAGE — full redesign
   ══════════════════════════════ */
.post-page { padding-top: 64px; }

/* Hero with cover image */
.post-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  background-image: var(--cover);
  background-size: cover; background-position: center top;
  padding-bottom: 64px;
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,15,30,.3) 0%, rgba(8,15,30,.75) 55%, rgba(8,15,30,.96) 100%);
}
.post-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.post-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(200,150,30,.75); margin-bottom: 28px;
  transition: color .2s;
}
.post-back:hover { color: var(--gold); }
.post-hero .blog-category { display: block; margin-bottom: 16px; }
.post-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700; color: #fff; line-height: 1.05;
  letter-spacing: -.3px; margin-bottom: 20px;
}
.post-meta-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.post-meta-item { font-size: 11px; color: rgba(200,185,150,.55); display: flex; align-items: center; gap: 5px; }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(200,150,30,.35); }
.post-category-tag { display: none; }
.post-lede {
  font-size: clamp(15px, 2vw, 18px); color: rgba(200,185,150,.8);
  line-height: 1.7; max-width: 640px;
}

/* Article body */
.post-body { background: var(--cream); }
.post-content {
  max-width: 700px; margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 48px) 56px;
}
.post-content p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2vw, 19px);
  color: #2a3446; line-height: 1.9; margin-bottom: 26px;
}
.post-content h2 {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: var(--ink); line-height: 1.2;
  margin: 56px 0 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content em { font-style: italic; color: var(--navy-mid); }

/* Pull quotes */
.pull-quote {
  margin: 44px 0;
  padding: 32px 36px 32px 28px;
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.pull-quote .pq-mark {
  display: block;
  font-family: var(--serif); font-size: 80px; font-weight: 700;
  color: var(--gold); opacity: .25;
  line-height: .6; margin-bottom: 12px;
  user-select: none;
}
.pull-quote {
  font-family: var(--serif); font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic; color: rgba(232,226,214,.9); line-height: 1.55;
  font-weight: 400;
}

/* In-article images */
.post-figure {
  margin: 44px -24px;
  border-radius: var(--r); overflow: hidden;
}
.post-figure img { width: 100%; height: auto; display: block; }
.post-figure figcaption {
  padding: 10px 20px;
  font-size: 12px; color: var(--gray); line-height: 1.5;
  background: var(--offwhite); font-style: italic;
  border-top: 0.5px solid var(--border);
}

/* Author bio */
.post-author {
  max-width: 700px; margin: 0 auto;
  padding: 36px clamp(24px, 5vw, 48px) 72px;
  display: flex; gap: 24px; align-items: flex-start;
  border-top: 0.5px solid var(--border);
}
.post-author-photo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(200,150,30,.35);
}
.post-author-text strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.post-author-text span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-author-text p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 12px; }
.post-author-link { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--gold); text-transform: uppercase; }
.post-author-link:hover { text-decoration: underline; }

/* Post nav */
.post-nav { background: var(--offwhite); border-top: 0.5px solid var(--border); padding: 48px 0; }
.post-nav-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 28px; background: #fff;
  border: 0.5px solid var(--border); border-radius: var(--r);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.post-nav-card:hover { border-color: rgba(200,150,30,.4); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,28,53,.08); }
.pnc-dir { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.post-nav-card strong { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.post-nav-next { text-align: right; }
.post-nav-next .pnc-dir { justify-content: flex-end; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bif-card { grid-template-columns: 220px 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .bif-card { grid-template-columns: 1fr; }
  .bif-image { min-height: 220px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav-inner { grid-template-columns: 1fr; }
  .post-author { flex-direction: column; }
}
@media (max-width: 540px) {
  .post-figure { margin: 32px 0; }
  .pull-quote { padding: 24px 20px 24px 20px; }
}
