:root {
  --bg: #F4F1EC;
  --bg-elevated: #ECE8E1;
  --bg-deep: #E5E0D7;
  --ink: #0F1419;
  --ink-soft: #2A3038;
  --accent: #1F3A2E;
  --accent-bright: #2D5440;
  --clay: #B8654A;
  --clay-soft: #D88B6F;
  --smoke: #7A7670;
  --smoke-light: #A8A39B;
  --rule: #D8D3CA;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--bg); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* Type */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
em { font-style: italic; color: var(--accent); }

.h1 {
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
}
.h2 {
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.h3 {
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h4 {
  font-size: 24px;
  line-height: 1.2;
  font-style: italic;
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0;
}
.section-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0;
}

/* Eyebrow */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--clay);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--clay);
}
.section-label.on-dark { color: var(--clay-soft); }
.section-label.on-dark::before { background: var(--clay-soft); }

/* Buttons */
.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--accent);
  transition: all 0.25s ease;
  background: var(--accent);
  color: var(--bg);
}
.btn:hover { background: var(--ink); border-color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 236, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-emblem {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  line-height: 1;
}
.logo-word {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { color: var(--bg); }
.nav-links .btn:hover { color: var(--bg); }
@media (max-width: 768px) {
  .nav-links a:not(.btn) { display: none; }
}

/* Hero */
.hero {
  padding: 100px 0 120px;
}
@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-copy > * + * { margin-top: 36px; }
.hero-copy .h1 { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-copy .hero-sub { animation: fadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both; }

/* Stat card */
.stat-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1.5px solid var(--rule);
  padding: 32px;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.stat-card::before, .stat-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
}
.stat-card::before {
  top: -1.5px; left: -1.5px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.stat-card::after {
  bottom: -1.5px; right: -1.5px;
  border-bottom: 2px solid var(--clay);
  border-right: 2px solid var(--clay);
}
.stat-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 16px;
}
.stat-value {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 18px;
}
.stat-value sup {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--clay);
  vertical-align: super;
  margin-left: 4px;
  top: -0.2em;
  position: relative;
}
.stat-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: '\2726';
  color: var(--clay-soft);
  font-style: normal;
  font-size: 18px;
}

/* Services */
.services {
  padding: 130px 0;
}
@media (max-width: 768px) { .services { padding: 80px 0; } }
.services-head {
  max-width: 720px;
  margin: 0 auto 96px;
  text-align: center;
}
.services-head .h2 { margin-bottom: 32px; }
.services-head .section-label { justify-content: center; }
.services-head .section-sub { margin: 0 auto; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--bg-elevated);
  padding: 48px 36px 44px;
  border-top: 2px solid var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover { background: var(--bg-deep); transform: translateY(-2px); }
.service-card.card-2 { border-top-color: var(--clay); }
.service-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 32px;
}
.service-card .h3 { margin-bottom: 20px; }
.service-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 6px 10px;
  border: 1px solid var(--rule);
  background: var(--bg);
}
.service-reassure {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* Dark philosophy */
.philosophy {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 101, 74, 0.22) 0%, rgba(184, 101, 74, 0.05) 40%, transparent 70%);
  pointer-events: none;
}
.philosophy::after {
  content: '\2726';
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--clay);
  opacity: 0.5;
  font-style: normal;
}
.philosophy .container { position: relative; z-index: 1; }
.philosophy h2 { color: var(--bg); max-width: 1000px; }
.philosophy h2 em { color: var(--clay-soft); }
.philosophy .h2 { margin-bottom: 0; }

.doctrine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 0;
  margin-top: 96px;
}
@media (max-width: 768px) {
  .doctrine-grid { grid-template-columns: 1fr; margin-top: 64px; }
}
.doctrine-item {
  border-top: 1px solid rgba(244, 241, 236, 0.18);
  padding: 36px 0 56px;
}
@media (max-width: 768px) {
  .doctrine-item { padding: 28px 0 40px; }
}
.doctrine-item h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--clay-soft);
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.doctrine-item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(244, 241, 236, 0.78);
  margin: 0;
  max-width: 460px;
}

/* CTA */
.cta {
  padding: 160px 0;
  text-align: center;
}
@media (max-width: 768px) { .cta { padding: 100px 0; } }
.cta-glyph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--clay);
  margin: 0 0 24px;
}
.cta .h2 { max-width: 760px; margin: 0 auto 32px; }
.cta .section-sub { margin: 0 auto 48px; }

/* Reviews */
.reviews { padding: 130px 0 100px; }
@media (max-width: 768px) { .reviews { padding: 80px 0; } }
.reviews-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.reviews-head .section-label { justify-content: center; }
.reviews-head .h2 { margin-bottom: 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; gap: 48px; } }
.review {
  margin: 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--rule);
}
.review-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: -0.002em;
  margin: 0 0 32px;
  font-style: normal;
}
.review-quote em { font-style: italic; color: var(--accent); }
.review:nth-child(2) .review-quote em { color: var(--clay); }
.review-attribution {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--smoke);
  letter-spacing: 0.01em;
}

/* Footer */
.footer {
  background: var(--bg-deep);
  padding: 80px 0 40px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 360px;
  margin: 24px 0 0;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--smoke);
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Work / case studies  (added 2026-08-01)
   ============================================================ */

/* --- Homepage: selected work strip --- */
.work { padding: 130px 0; background: var(--bg-elevated); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (max-width: 768px) { .work { padding: 80px 0; } }
.work-head { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.work-head .section-label { justify-content: center; }
.work-head .h2 { margin-bottom: 32px; }
.work-head .section-sub { margin: 0 auto; }

.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  display: block;
  position: relative;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-top: 2px solid var(--accent);
  padding: 40px 34px 34px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.work-card:hover { background: var(--bg-deep); transform: translateY(-2px); }
.work-card.card-2 { border-top-color: var(--clay); }
.work-card .work-eyebrow {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--smoke); margin-bottom: 24px;
}
.work-card .h3 { margin-bottom: 18px; }
.work-card p { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--ink-soft); margin: 0 0 28px; }
.work-metric {
  font-family: var(--serif); font-size: 40px; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink); margin: 0 0 8px;
}
.work-metric-label { font-size: 13px; color: var(--smoke); margin: 0 0 28px; }
.work-more {
  font-size: 14px; font-weight: 500; color: var(--accent);
  padding-top: 20px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 8px;
}
.work-card.card-2 .work-more { color: var(--clay); }

/* --- Case study page --- */
.cs-hero { padding: 90px 0 64px; }
@media (max-width: 768px) { .cs-hero { padding: 56px 0 40px; } }
.cs-back { font-size: 14px; color: var(--smoke); display: inline-flex; gap: 8px; margin-bottom: 40px; transition: color 0.2s ease; }
.cs-back:hover { color: var(--ink); }
.cs-hero .h1 { font-size: clamp(40px, 5.6vw, 74px); max-width: 15ch; }
.cs-lede {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 27px); font-weight: 400;
  line-height: 1.4; letter-spacing: -0.01em; color: var(--ink);
  max-width: 780px; margin: 36px 0 0;
}
.cs-lede em { font-style: italic; color: var(--accent); }

.cs-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--rule);
}
@media (max-width: 900px) { .cs-meta { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .cs-meta { grid-template-columns: 1fr; } }
.cs-meta dt {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 10px;
}
.cs-meta dd { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* Body */
.cs-body { padding: 0 0 40px; }
.cs-section { padding: 72px 0; border-top: 1px solid var(--rule); }
@media (max-width: 768px) { .cs-section { padding: 56px 0; } }
.cs-section > .container > .section-label { margin-bottom: 28px; }
.cs-narrow { max-width: 760px; }
.cs-section h2.h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 36px; }
.cs-section h3.h3 { margin: 0 0 20px; }
.cs-section p { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin: 0 0 24px; max-width: 760px; }
.cs-section p:last-child { margin-bottom: 0; }
.cs-section p strong { font-weight: 500; color: var(--ink); }
.cs-section p em { font-style: italic; color: var(--accent); }

/* Findings */
.finding { padding: 56px 0; border-top: 1px solid var(--rule); }
.finding:first-of-type { border-top: none; padding-top: 0; }
.finding-no {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--clay); margin-bottom: 20px;
}
.finding h3 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 400;
  line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 28px; max-width: 22ch;
}

/* Data table */
.cs-table-wrap { overflow-x: auto; margin: 0 0 28px; -webkit-overflow-scrolling: touch; }
table.cs-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 480px; }
table.cs-table caption {
  caption-side: bottom; text-align: left; font-size: 13px; color: var(--smoke);
  font-style: italic; font-family: var(--serif); padding-top: 16px; line-height: 1.5;
}
table.cs-table th {
  text-align: left; font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke);
  padding: 0 16px 12px 0; border-bottom: 1.5px solid var(--ink);
}
table.cs-table td { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--rule); color: var(--ink-soft); vertical-align: baseline; }
table.cs-table td strong { color: var(--ink); font-weight: 500; }
table.cs-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.cs-table .over { color: var(--clay); }

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 0 0 32px; }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stat-row { grid-template-columns: 1fr; } }
.stat-cell { background: var(--bg); padding: 28px 24px; }
.stat-cell .v { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 42px); line-height: 1; letter-spacing: -0.03em; color: var(--ink); margin: 0 0 12px; }
.stat-cell .k { font-size: 13px; line-height: 1.45; color: var(--smoke); margin: 0; }

/* Pull quote */
.pull {
  margin: 40px 0; padding: 32px 0 32px 32px; border-left: 2px solid var(--clay);
  font-family: var(--serif); font-size: clamp(20px, 2.3vw, 26px); font-weight: 400;
  line-height: 1.45; letter-spacing: -0.01em; color: var(--ink); max-width: 760px;
}
.pull p { font-family: var(--serif) !important; font-size: inherit !important; font-weight: 400 !important; line-height: inherit !important; color: inherit !important; margin: 0 !important; }

/* Dark honesty section */
.cs-honesty { background: var(--ink); color: var(--bg); padding: 110px 0; position: relative; overflow: hidden; }
@media (max-width: 768px) { .cs-honesty { padding: 76px 0; } }
.cs-honesty::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,101,74,0.20) 0%, rgba(184,101,74,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.cs-honesty .container { position: relative; z-index: 1; }
.cs-honesty h2 { color: var(--bg); max-width: 900px; }
.cs-honesty h2 em { color: var(--clay-soft); }
.cs-honesty > .container > p { color: rgba(244,241,236,0.78); }
.honesty-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 72px; margin-top: 64px; }
@media (max-width: 768px) { .honesty-grid { grid-template-columns: 1fr; margin-top: 48px; } }
.honesty-item { border-top: 1px solid rgba(244,241,236,0.18); padding: 32px 0 40px; }
.honesty-item h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px;
  color: var(--clay-soft); margin: 0 0 16px; line-height: 1.25;
}
.honesty-item p { font-size: 15px; font-weight: 300; line-height: 1.65; color: rgba(244,241,236,0.78); margin: 0; max-width: 460px; }

/* Build list */
.build-list { display: grid; gap: 0; margin: 0; }
.build-item { padding: 32px 0; border-top: 1px solid var(--rule); }
.build-item:first-child { border-top: none; padding-top: 0; }
.build-item h4 {
  font-family: var(--serif); font-size: 21px; font-weight: 400; font-style: italic;
  color: var(--ink); margin: 0 0 14px; line-height: 1.25;
}
.build-item p { font-size: 16px; margin: 0; }

/* Next / prev */
.cs-next { padding: 90px 0 110px; text-align: center; }
.cs-next .section-label { justify-content: center; }
.cs-next .h3 { margin-bottom: 28px; }

/* Three-up service grid (offer ladder) */
.service-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 1140px; }
@media (max-width: 980px) { .service-grid.three { grid-template-columns: 1fr; max-width: 620px; } }
.service-card.card-3 { border-top-color: var(--accent-bright); }
.service-card .h3 em { font-style: italic; }

/* --- Capability strip (the toolkit, subordinate to the domain) --- */
.capability { margin-top: 96px; padding-top: 56px; border-top: 1px solid var(--rule); }
@media (max-width: 768px) { .capability { margin-top: 64px; padding-top: 44px; } }
.capability-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.capability-head .h3 { margin-bottom: 18px; }
.capability-head p { font-size: 16px; font-weight: 300; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: 48px; row-gap: 0; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: 1fr 1fr; column-gap: 40px; } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-item { border-top: 1px solid var(--rule); padding: 26px 0 30px; }
.cap-item h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 19px;
  color: var(--ink); margin: 0 0 10px; line-height: 1.25;
}
.cap-item p { font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--smoke); margin: 0; }
.cap-note {
  text-align: center; max-width: 700px; margin: 48px auto 0;
  font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.5; color: var(--ink-soft);
}

/* Single-card work grid (used while a case study is hidden) */
.work-grid.single { grid-template-columns: 1fr; max-width: 560px; }
