/* ═══════════════════════════════════════════════
   ROHOGAKA — DESIGN SYSTEM
   B&W only · Bricolage Grotesque + Plus Jakarta Sans
════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --cream:    #f5f4f1;
  --white:    #ffffff;
  --ink:      #0f0e0c;
  --ink-soft: #2a2926;
  --gray-1:   #3d3c3a;
  --gray-2:   #636159;
  --gray-3:   #969490;
  --gray-4:   #c8c6c2;
  --gray-5:   #e8e6e2;
  --charcoal: #181714;

  --font-display: 'Bricolage Grotesque', 'Montserrat', Helvetica, Arial, sans-serif;
  --font-body:    'Plus Jakarta Sans', Helvetica, Arial, sans-serif;

  --max-w: 1160px;
  --pad:   clamp(20px, 5vw, 48px);
  --ease:  cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINER ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ── TYPOGRAPHY ─────────────────────────────── */
.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: all .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-4);
}
.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--full { width: 100%; justify-content: center; }

/* ── SECTION BASE ───────────────────────────── */
.section { padding: clamp(72px, 10vw, 120px) 0; }

/* ── REVEAL ANIMATIONS ──────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: none; }

.work-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.work-reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .25s var(--ease), padding .25s var(--ease), border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(245, 244, 241, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-color: var(--gray-5);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.logo span { color: var(--gray-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-2);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }

.nav-cta {
  margin-left: 16px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gray-1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding-top: 100px;
  border-bottom: 1px solid var(--gray-5);
}

.hero-display {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--pad) 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.05em;
  color: var(--ink);
  margin-bottom: 0;
}

.hero-headline .hero-line { display: block; }

/* Outline text for alternate lines */
.hero-headline .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  font-weight: 800;
}

.hero-foot {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--gray-5);
  margin-top: 40px;
  padding-top: 36px;
  padding-bottom: 56px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.75;
  max-width: 400px;
}

.hero-right-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--ink);
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 0 24px;
}
.ticker-dot { color: rgba(255,255,255,.25) !important; padding: 0 !important; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services { background: var(--white); }

.section-intro { margin-bottom: 52px; }

.section-intro--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.work-sub {
  max-width: 300px;
  color: var(--gray-2);
  font-size: .92rem;
  line-height: 1.7;
  padding-top: 52px;
}

.service-list { border-top: 1px solid var(--gray-5); }
.service-row  { border-bottom: 1px solid var(--gray-5); }

.service-row-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  user-select: none;
}
.service-row-header:hover .sr-name { color: var(--gray-1); }

.sr-num {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-3);
  letter-spacing: .1em;
  width: 28px;
  flex-shrink: 0;
}

.sr-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  flex: 1;
  transition: color .2s var(--ease);
  letter-spacing: -.03em;
  line-height: 1;
}

.sr-arrow {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gray-3);
  transition: transform .3s var(--ease), color .2s;
  width: 28px;
  text-align: right;
  line-height: 1;
  font-family: var(--font-body);
}
.service-row.open .sr-arrow { transform: rotate(45deg); color: var(--ink); }
.service-row-header:hover .sr-arrow { color: var(--ink); }

.sr-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.service-row.open .sr-body { max-height: 400px; }

.sr-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 0 36px 52px;
  align-items: start;
}

.sr-body-inner p {
  font-size: .9rem;
  color: var(--gray-2);
  line-height: 1.75;
}

.sr-body-inner ul { display: flex; flex-direction: column; gap: 8px; }
.sr-body-inner ul li {
  font-size: .85rem;
  color: var(--gray-2);
  padding-left: 16px;
  position: relative;
}
.sr-body-inner ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-3);
  font-size: .7rem;
}

.sr-outcome {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 2px solid var(--ink);
  padding-left: 14px;
  display: block;
  line-height: 1.55;
}

/* ════════════════════════════════════════════
   OUR WORK
════════════════════════════════════════════ */
.work { background: var(--cream); }

.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
}

.work-grid > .work-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.work-grid > .work-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.work-grid > .work-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.work-grid > .work-card:nth-child(4) { grid-column: 1; grid-row: 2; }

.work-card { display: block; overflow: hidden; border-radius: 2px; }

.work-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease);
}
.work-card:hover .work-card-img { transform: scale(1.04); }

/* Work card SVG backgrounds */
.wc-img--1 { background-image: url('/images/work/ola-finance.svg');  background-size: cover; background-position: left 70%; }
.wc-img--2 { background-image: url('/images/work/beam.svg');         background-size: cover; background-position: left 70%; }
.wc-img--3 { background-image: url('/images/work/kickico.svg');      background-size: cover; background-position: left 70%; }
.wc-img--4 { background-image: url('/images/work/studyforfe.svg');   background-size: cover; background-position: left 70%; }

.work-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 65%);
}

.wc-tag {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.5);
  padding: 5px 12px;
  border-radius: 1px;
  border: 1px solid rgba(255,255,255,.12);
}

.work-card-info {
  padding: 18px 2px 4px;
  background: var(--cream);
}

.work-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -.02em;
}

.work-card-info p {
  font-size: .84rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process { background: var(--white); }
.process .section-title { margin-bottom: 52px; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: var(--gray-4);
  margin-top: 17px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gray-3);
  border-right: 1px solid var(--gray-3);
  transform: rotate(45deg);
}

.process-step { flex: 1; padding: 0 20px 0 0; }

.ps-num {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gray-3);
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.process-step p {
  font-size: .84rem;
  color: var(--gray-2);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   ABOUT / TEAM
════════════════════════════════════════════ */
.about { background: var(--cream); }

.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.about-name-display {
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.07em;
  color: var(--ink);
  margin: 14px 0 10px;
  -webkit-text-stroke: 3px var(--ink);
}

.about-role {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-2);
  border-left: 2px solid var(--ink);
  padding-left: 12px;
}

.about-right {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  border-left: 3px solid var(--ink);
  padding-left: 28px;
  letter-spacing: -.01em;
}

.about-bio {
  font-size: .9rem;
  color: var(--gray-2);
  line-height: 1.75;
  max-width: 460px;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gray-4);
  transition: text-decoration-color .2s;
}
.about-link:hover { text-decoration-color: var(--ink); }

.about-socials { display: flex; gap: 8px; }

.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-5);
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-3);
  transition: border-color .2s, color .2s;
  font-family: var(--font-body);
}
.social-icon:hover { border-color: var(--ink); color: var(--ink); }

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.reviews { background: var(--white); }

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-5);
  margin-top: 52px;
}

.review-block {
  padding: 52px 44px;
  border-right: 1px solid var(--gray-5);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-block:last-child { border-right: none; }

.review-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .55;
  color: var(--gray-4);
  font-weight: 800;
}

.review-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
  letter-spacing: -.01em;
}

.review-attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--gray-5);
  padding-top: 20px;
}
.review-attr strong { font-size: .88rem; font-weight: 600; color: var(--ink); }
.review-attr span   { font-size: .78rem; color: var(--gray-3); }

/* ════════════════════════════════════════════
   BLOG
════════════════════════════════════════════ */
.blog { background: var(--cream); }

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-5);
  border: 1px solid var(--gray-5);
}

.blog-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background .2s;
}
.blog-card:hover { background: var(--cream); }

.blog-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.bc-img--1 { background: #1c1c1a; }
.bc-img--2 { background: #282826; }
.bc-img--3 { background: #202020; }

/* Subtle pattern overlays */
.bc-img--1::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 11px); }
.bc-img--2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 60%, rgba(255,255,255,.06), transparent 60%); }
.bc-img--3::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 70%); }

.blog-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-label {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 14px;
  border-radius: 1px;
}

.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-cat {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-3);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -.02em;
}

.blog-card-excerpt {
  font-size: .84rem;
  color: var(--gray-2);
  line-height: 1.65;
  flex: 1;
}

.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-5);
}

.blog-date {
  font-size: .72rem;
  color: var(--gray-3);
  font-family: var(--font-body);
}

.blog-read {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  transition: letter-spacing .2s;
}
.blog-card:hover .blog-read { letter-spacing: .08em; }

.blog-note {
  margin-top: 24px;
  font-size: .78rem;
  color: var(--gray-3);
  text-align: center;
  font-family: var(--font-body);
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  margin: 16px 0 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 14px; }

.contact-email {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gray-4);
  transition: text-decoration-color .2s;
  letter-spacing: -.01em;
}
.contact-email:hover { text-decoration-color: var(--ink); }

.contact-addr {
  font-size: .88rem;
  color: var(--gray-2);
  line-height: 1.6;
}

.contact-note {
  font-size: .75rem;
  color: var(--gray-3);
  font-weight: 500;
  letter-spacing: .04em;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.field input,
.field select,
.field textarea {
  background: var(--cream);
  border: 1px solid var(--gray-5);
  border-radius: 2px;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-4); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.45);
}

.footer-inner {
  padding: 68px var(--pad) 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

.footer-top { display: flex; flex-direction: column; gap: 14px; }

.footer-logo { color: rgba(255,255,255,.8); }
.footer-logo span { color: rgba(255,255,255,.4); }

.footer-top p { font-size: .87rem; line-height: 1.65; max-width: 290px; }

.footer-cert {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 12px;
  border-radius: 1px;
  width: fit-content;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 2px;
}

.footer-col a,
.footer-col span {
  font-size: .84rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.8); }

.footer-bar { border-top: 1px solid rgba(255,255,255,.06); }

.footer-bar-inner {
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .74rem;
  color: rgba(255,255,255,.22);
  font-family: var(--font-body);
}

/* ════════════════════════════════════════════
   GOVERNMENT PAGE
════════════════════════════════════════════ */
.gov-page { background: var(--cream); }

/* Gov Hero — compact split layout */
.gov-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}

.gov-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 0;
}

.gov-hero .section-kicker { color: rgba(255,255,255,.5); margin-bottom: 18px; }

.gov-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 28px;
}

.gov-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.gov-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.gov-hero .btn--dark { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.gov-hero .btn--dark:hover { background: var(--cream); border-color: var(--cream); }
.gov-hero .btn--outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.65); }
.gov-hero .btn--outline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* Credentials panel inside hero */
.gov-hero-creds {
  border-left: 1px solid rgba(255,255,255,.1);
  padding: 0 0 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.gov-cred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gov-cred-row:first-child { border-top: 1px solid rgba(255,255,255,.07); }

.gcr-label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.gcr-val {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: -.01em;
}

.gcr-val--active {
  color: #7fcf8a;
}

.gov-hero-rule {
  max-width: var(--max-w);
  margin: 40px auto 0;
  height: 1px;
  background: rgba(255,255,255,.08);
}

/* Gov sections */
.gov-creds { background: var(--white); }

.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-5);
  border: 1px solid var(--gray-5);
  margin-top: 48px;
}

.cred-card {
  padding: 26px 22px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cred-label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-3);
}

.cred-value {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

.cred-active { color: #2a7a3a; }

.gov-naics { background: var(--cream); }

.naics-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.naics-primary {
  margin-bottom: 20px;
  border: 1px solid var(--gray-5);
  border-radius: 1px;
  overflow: hidden;
}

.naics-row {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-5);
  background: var(--white);
}
.naics-row:last-child { border-bottom: none; }

.naics-code {
  font-family: 'Courier New', monospace;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: .02em;
}

.naics-desc { font-size: .88rem; color: var(--gray-2); }

.naics-also {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 10px;
}

.naics-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.naics-tags span {
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-5);
  padding: 5px 10px;
  border-radius: 1px;
  letter-spacing: .02em;
}

.gov-capabilities { background: var(--white); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-5);
  border: 1px solid var(--gray-5);
  margin-top: 48px;
}

.cap-item {
  padding: 32px 28px;
  background: var(--white);
}

.cap-num {
  display: block;
  color: var(--gray-4);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 300;
}

.cap-item h3 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.cap-item p { font-size: .84rem; color: var(--gray-2); line-height: 1.7; }

.gov-diff { background: var(--cream); }

.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-item {
  padding: 24px 0;
  border-top: 1px solid var(--gray-5);
}

.diff-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.diff-item p { font-size: .86rem; color: var(--gray-2); line-height: 1.7; }

.gov-contact { background: var(--white); }

.gov-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.gov-contact-info {
  margin-top: 40px;
  border: 1px solid var(--gray-5);
  border-radius: 1px;
  overflow: hidden;
}

.gc-row {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 15px 22px;
  border-bottom: 1px solid var(--gray-5);
}
.gc-row:last-child { border-bottom: none; }

.gc-label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-3);
  width: 76px;
  flex-shrink: 0;
}

.gc-val { font-size: .9rem; color: var(--ink); font-family: var(--font-body); }
.gc-link { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gray-4); transition: text-decoration-color .2s; }
.gc-link:hover { text-decoration-color: var(--ink); }

.gov-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 56px;
}
.gov-contact-actions .btn { justify-content: center; }
.gov-contact-note { font-size: .74rem; color: var(--gray-3); line-height: 1.6; margin-top: 8px; font-family: var(--font-body); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-foot          { grid-template-columns: 1fr; gap: 24px; }
  .hero-right-foot    { align-items: flex-start; }
  .hero-actions       { justify-content: flex-start; }
  .about-layout       { grid-template-columns: 1fr; gap: 20px; }
  .about-right        { padding-top: 0; }
  .contact-layout     { grid-template-columns: 1fr; gap: 48px; }
  .work-grid          { grid-template-columns: 1fr 1fr; }
  .work-grid > .work-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-inner       { grid-template-columns: 1fr; gap: 40px; }
  .naics-layout       { grid-template-columns: 1fr; gap: 40px; }
  .diff-layout        { grid-template-columns: 1fr; gap: 0; }
  .gov-contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .gov-contact-actions { padding-top: 0; }
  .creds-grid         { grid-template-columns: repeat(2, 1fr); }
  .cap-grid           { grid-template-columns: 1fr 1fr; }
  .gov-hero-inner     { grid-template-columns: 1fr; gap: 40px; }
  .gov-hero-creds     { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding: 32px 0 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--cream);
    padding: 28px var(--pad);
    gap: 22px;
    border-bottom: 1px solid var(--gray-5);
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; color: var(--ink); }

  .hero-headline { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-headline .outline { -webkit-text-stroke: 1.5px var(--ink); }

  .sr-body-inner { grid-template-columns: 1fr; gap: 18px; padding-left: 0; }

  .process-steps { flex-direction: column; gap: 0; }
  .process-connector { width: 1px; height: 28px; margin-top: 0; margin-left: 10px; }
  .process-connector::after { display: none; }
  .process-step { padding: 0 0 4px 0; }

  .reviews-layout { grid-template-columns: 1fr; }
  .review-block   { border-right: none; border-bottom: 1px solid var(--gray-5); padding: 36px 24px; }
  .review-block:last-child { border-bottom: none; }

  .blog-grid      { grid-template-columns: 1fr; }
  .blog-header    { flex-direction: column; align-items: flex-start; gap: 16px; }

  .work-grid      { grid-template-columns: 1fr; }
  .work-card-img  { height: 210px; }

  .section-intro--row { flex-direction: column; gap: 8px; }
  .work-sub { padding-top: 0; }

  .form-row { grid-template-columns: 1fr; }
  .footer-cols    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bar-inner { flex-direction: column; text-align: center; gap: 6px; }

  .creds-grid { grid-template-columns: 1fr; }
  .cap-grid   { grid-template-columns: 1fr; }

  .about-name-display { font-size: clamp(6rem, 22vw, 9rem); }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   CASE STUDY PAGES
════════════════════════════════════════════ */

/* Hero */
.cs-hero {
  background: var(--cream);
  padding: 120px 0 0;
  border-bottom: 1px solid var(--gray-5);
}

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 28px;
  transition: color .2s;
}
.cs-back:hover { color: var(--ink); }
.cs-back::before { content: '←'; }

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cs-tag {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-2);
  background: var(--white);
  border: 1px solid var(--gray-5);
  padding: 5px 12px;
  border-radius: 1px;
}

.cs-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 36px;
}

.cs-meta {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
  margin-bottom: 0;
}

.cs-meta-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--gray-5);
}
.cs-meta-item:last-child { border-right: none; }

.cs-meta-label {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 5px;
}

.cs-meta-val {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

/* Full-width visual block */
.cs-visual {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.cs-visual-label {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.06);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Page bg colors per client */
.cs-bg--ola     { background: #111110; }
.cs-bg--beam    { background: #1e1e1c; }
.cs-bg--kickico { background: #191917; }
.cs-bg--study   { background: #141412; }

/* Body sections */
.cs-body { background: var(--white); }

.cs-content {
  max-width: 800px;
  margin: 0 auto;
}

.cs-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-5);
}
.cs-section:last-child { border-bottom: none; }

.cs-section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 16px;
}

.cs-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.1;
}

.cs-section p {
  font-size: .97rem;
  color: var(--gray-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.cs-section p:last-child { margin-bottom: 0; }

/* Solution bullets */
.cs-bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--gray-5);
  border-radius: 2px;
  overflow: hidden;
}

.cs-bullet {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-5);
  background: var(--cream);
}
.cs-bullet:last-child { border-bottom: none; }

.cs-bullet-num {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  color: var(--gray-4);
  flex-shrink: 0;
  width: 24px;
  padding-top: 2px;
  letter-spacing: .05em;
}

.cs-bullet p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* Results */
.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-5);
  border: 1px solid var(--gray-5);
  margin-top: 8px;
}

.cs-result-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-result-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}

.cs-result-label {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--gray-2);
  line-height: 1.5;
}

/* Testimonial */
.cs-quote-section {
  background: var(--charcoal);
  padding: clamp(56px, 8vw, 96px) 0;
}

.cs-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cs-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .5;
  color: rgba(255,255,255,.15);
  font-weight: 800;
}

.cs-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  letter-spacing: -.01em;
}

.cs-quote-attr {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Key takeaways */
.cs-takeaways {
  background: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0;
}

.cs-takeaways-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cs-takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cs-takeaway {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-takeaway-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-5);
  letter-spacing: -.04em;
  line-height: 1;
}

.cs-takeaway h3 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.35;
}

.cs-takeaway p {
  font-size: .84rem;
  color: var(--gray-2);
  line-height: 1.65;
}

/* More work strip */
.cs-more {
  background: var(--white);
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--gray-5);
}

.cs-more-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.cs-more-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}

.cs-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cs-more-card {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--gray-5);
  transition: border-color .2s;
}
.cs-more-card:hover { border-color: var(--gray-4); }

.cs-more-card-img {
  height: 140px;
  overflow: hidden;
  transition: transform .45s var(--ease);
}
.cs-more-card:hover .cs-more-card-img { transform: scale(1.05); }

.cs-more-card-body {
  padding: 16px;
}

.cs-more-tag {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-3);
  display: block;
  margin-bottom: 6px;
}

.cs-more-card-title {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .cs-results-grid   { grid-template-columns: 1fr; }
  .cs-takeaways-grid { grid-template-columns: 1fr; gap: 28px; }
  .cs-more-grid      { grid-template-columns: 1fr; }
  .cs-meta           { flex-wrap: wrap; }
  .cs-meta-item      { flex: 1 1 50%; border-bottom: 1px solid var(--gray-5); }
  .cs-visual         { height: 260px; }
  .cs-more-header    { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════
   BLOG — LISTING PAGE
════════════════════════════════════════════════ */

.blog-index-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--gray-5);
}

.blog-index-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.blog-index-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 16px;
}

.blog-index-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
}

.blog-index-sub {
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.7;
  max-width: 360px;
  align-self: end;
  padding-bottom: 6px;
}

/* Filters */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blog-filter-btn {
  background: transparent;
  border: 1.5px solid var(--gray-5);
  color: var(--gray-2);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .15s var(--ease);
  white-space: nowrap;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* Blog listing grid */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-5);
  border: 1px solid var(--gray-5);
  margin: clamp(32px, 5vw, 56px) 0;
}

.blog-listing-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
  transition: background .2s;
}
.blog-listing-card:hover { background: var(--white); }

.blc-img {
  height: 200px;
  overflow: hidden;
  background: var(--charcoal);
  flex-shrink: 0;
  transition: transform .45s var(--ease);
}
.blog-listing-card:hover .blc-img { transform: scale(1.04); }

.blc-img--1 { background: linear-gradient(135deg, #1a1a18 0%, #2d2d29 100%); }
.blc-img--2 { background: linear-gradient(135deg, #181816 0%, #252522 100%); }
.blc-img--3 { background: linear-gradient(135deg, #1c1c19 0%, #2a2a26 100%); }

.blc-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blc-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-3);
  display: block;
  margin-bottom: 10px;
}

.blc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blc-excerpt {
  font-size: .875rem;
  color: var(--gray-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-5);
  font-size: .75rem;
}

.blc-date { color: var(--gray-3); }
.blc-read {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════
   BLOG — ARTICLE / POST PAGE
════════════════════════════════════════════════ */

.article-hero {
  padding: clamp(80px, 12vw, 140px) 0 0;
}

.article-hero .container {
  max-width: 760px;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.article-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-2);
  border: 1.5px solid var(--gray-4);
  padding: 4px 10px;
  border-radius: 2px;
}

.article-date {
  font-size: .75rem;
  color: var(--gray-3);
}

.article-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 24px;
}

.article-deck {
  font-size: 1.125rem;
  color: var(--gray-1);
  line-height: 1.7;
  margin-bottom: 40px;
  border-left: 3px solid var(--gray-4);
  padding-left: 20px;
}

.article-cover {
  width: 100%;
  height: clamp(220px, 35vw, 440px);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
}

.article-cover-label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.12);
  text-align: center;
  padding: 0 24px;
}

/* Article body content */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--pad);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 48px 0 20px;
  line-height: 1.15;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 36px 0 14px;
}

.article-body p {
  font-size: 1rem;
  color: var(--gray-1);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.article-body li {
  font-size: 1rem;
  color: var(--gray-1);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article-body strong { color: var(--ink); }

/* Pull quote */
.article-pullquote {
  border-left: 3px solid var(--ink);
  margin: 40px 0;
  padding: 24px 28px;
  background: var(--white);
}

.article-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

/* Numbered list block */
.article-numlist {
  counter-reset: numlist;
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.article-numlist li {
  counter-increment: numlist;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-5);
}
.article-numlist li:first-child { border-top: 1px solid var(--gray-5); }

.article-numlist li::before {
  content: counter(numlist, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-3);
  padding-top: 3px;
}

/* Article CTA box */
.article-cta-box {
  background: var(--ink);
  color: var(--white);
  padding: 36px 40px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.article-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 6px;
}

.article-cta-box p {
  font-size: .875rem;
  color: var(--gray-4);
  margin: 0;
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-5);
  border-color: var(--gray-5);
}

/* Article author / footer */
.article-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
  margin-bottom: 56px;
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}

.article-author-info span {
  display: block;
  font-size: .8rem;
  color: var(--gray-3);
}

.article-author-info strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

/* Related posts */
.article-related {
  padding: clamp(48px, 8vw, 80px) 0;
  border-top: 1px solid var(--gray-5);
}

.article-related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.article-related-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-5);
  border: 1px solid var(--gray-5);
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-index-hero .container { grid-template-columns: 1fr; gap: 24px; }
  .blog-index-sub { max-width: 100%; }
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
  .article-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .blog-listing-grid { grid-template-columns: 1fr; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-cta-box { flex-direction: column; align-items: flex-start; }
  .blog-filters { gap: 6px; }
}
