@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg2:       #f7f7f7;
  --bg3:       #f0f0f0;
  --border:    #e8e8e8;
  --border2:   #d4d4d4;
  --text:      #111111;
  --text-2:    #555555;
  --text-3:    #999999;
  --accent:    #111111;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --sans:      'Inter', system-ui, sans-serif;
  --serif:     'Inter', system-ui, sans-serif;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-wordmark {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s;
}
.nav-phone:hover { border-color: var(--border2); color: var(--text); }
.nav-phone svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  padding: 140px 48px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  margin-bottom: 32px;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-name {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 14px;
}
.hero-role {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-2);
  margin-bottom: 32px;
}
.hero-bio {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 48px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* pill — shared component */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pill:hover {
  border-color: var(--border2);
  color: var(--text);
  background: var(--bg2);
}
.pill svg { width: 14px; height: 14px; opacity: 0.5; flex-shrink: 0; }
.pill:hover svg { opacity: 1; }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
section { padding: 80px 48px; }
.sec-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sec-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
}
.sec-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 500px;
}

/* ─────────────────────────────────────────
   WORK GRID — 5 equal cards in a row
───────────────────────────────────────── */
#work { background: var(--bg); border-top: 1px solid var(--border); }
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.wc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.wc:hover {
  border-color: var(--border2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.wc-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}
.wc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wc:hover .wc-img img { transform: scale(1.04); }
.wc-body { padding: 16px 18px 20px; }
.wc-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.wc-tags {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
#services {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.svc-header {
  text-align: center;
  margin-bottom: 56px;
}
.svc-header .sec-sub { margin: 0 auto; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.svc-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.svc-card:hover { background: #fafafa; }
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ic-amber  { background: #f59e0b; }
.ic-blue   { background: #3b82f6; }
.ic-rose   { background: #f43f5e; }
.ic-violet { background: #8b5cf6; }
.ic-orange { background: #f97316; }
.ic-green  { background: #22c55e; }
.svc-ey {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.svc-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-2);
}

/* ─────────────────────────────────────────
   SIDE PROJECTS
───────────────────────────────────────── */
#projects { background: var(--bg); border-top: 1px solid var(--border); }
.proj-header { text-align: center; margin-bottom: 48px; }
.proj-header .sec-sub { margin: 0 auto; }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pc:hover {
  border-color: var(--border2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.pc-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
}
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-body { padding: 20px 22px 24px; }
.pc-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pc-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 18px;
}
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}
.pc-btn.live {
  color: var(--text);
  cursor: pointer;
}
.pc-btn.live:hover { border-color: var(--border2); }

/* ─────────────────────────────────────────
   CONTACT / CTA
───────────────────────────────────────── */
#contact {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 48px 80px;
}
.ct-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 16px;
}
.ct-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 420px;
  margin: 0 auto 40px;
}
.ct-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}
.ft-logo {
  display: flex; align-items: center; gap: 9px;
}
.ft-av {
  width: 28px; height: 28px;
  border-radius: 50%; overflow: hidden;
  border: 1px solid var(--border);
}
.ft-av img { width: 100%; height: 100%; object-fit: cover; }
.ft-name { font-size: 13px; font-weight: 600; color: var(--text); }
.ft-copy { font-size: 12px; color: var(--text-3); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ─────────────────────────────────────────
   CASE STUDY PAGES — shared
───────────────────────────────────────── */
/* nav on case study pages uses same nav */
.case-hero {
  padding: 120px 72px 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.case-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 40px;
  transition: color 0.2s;
}
.case-back:hover { color: var(--text); }
.case-back svg { width: 14px; height: 14px; }
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.case-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--text);
  margin-bottom: 20px;
}

/* breakout image system for case study pages */
.cs-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 48px 120px;
}
.cs-img {
  margin-left: -25%;
  margin-right: -25%;
  width: 150%;
  display: block;
  border-radius: 14px;
  margin-top: 48px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
}
.cs-img img { width: 100%; height: auto; display: block; }
.cs-img.portrait img { max-height: 90vh; object-fit: cover; object-position: top; }

/* case study nav */
.case-back-nav { 
  background: var(--bg2); 
  border-top: 1px solid var(--border); 
  padding: 32px 72px; 
}
.blob-scene { display: none; } /* kill any leftover blob refs */
.b-blue,.b-purple,.b-cyan,.b-orange,.b-bluepurp,.b-teal,.b-white,.b-contact { display: none; }

/* ─────────────────────────────────────────
   CASE STUDY TYPOGRAPHY
───────────────────────────────────────── */
.cs-p { font-size:17px;font-weight:400;line-height:1.88;color:#333;margin-bottom:22px; }
.cs-p:last-child { margin-bottom:0; }
.cs-strong { color:var(--text);font-weight:600; }
.cs-h2 { font-size:clamp(26px,3.2vw,36px);font-weight:700;letter-spacing:-.022em;line-height:1.08;margin-bottom:20px; color:#111; }
.cs-tag { font-size:11.5px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#999;margin-bottom:12px; }
.cs-section { margin-top:56px; }

.meta-bar { display:flex;border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-bottom:56px; }
.meta-cell { flex:1;padding:18px 22px;border-right:1px solid var(--border); }
.meta-cell:last-child { border-right:none; }
.meta-cell label { display:block;font-size:10.5px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#aaa;margin-bottom:6px; }
.meta-cell span { font-size:15px;font-weight:500;color:#333; }

.stat-row { display:flex;gap:10px;margin:32px 0; }
.stat-box { flex:1;background:var(--bg2);border:1px solid var(--border);border-radius:12px;padding:22px;text-align:center; }
.stat-n { font-size:40px;font-weight:700;letter-spacing:-.03em;color:var(--text);display:block;line-height:1;margin-bottom:7px; }
.stat-l { font-size:11px;font-weight:400;color:var(--text-3);line-height:1.4; }

.steps { margin:24px 0 40px;border:1px solid var(--border);border-radius:12px;overflow:hidden; }
.step { display:flex;gap:18px;align-items:flex-start;padding:20px 24px;border-bottom:1px solid var(--border); }
.step:last-child { border-bottom:none; }
.step-n { font-size:18px;font-weight:700;color:var(--text-3);flex-shrink:0;width:28px; }
.step-title { font-size:13px;font-weight:600;color:var(--text);margin-bottom:4px; }
.step-desc { font-size:13px;font-weight:400;line-height:1.65;color:var(--text-2);margin:0; }

.pull-quote { border-left:3px solid var(--border2);padding:4px 0 4px 24px;margin:36px 0; }
.pull-quote p { font-size:20px;font-weight:500;font-style:italic;line-height:1.5;color:var(--text);margin:0 0 8px; }
.pull-quote cite { font-size:12px;color:var(--text-3);font-style:normal; }

.card-grid { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:24px 0 40px; }
.cs-card { background:var(--bg2);border:1px solid var(--border);border-radius:12px;padding:20px 22px; }
.cs-card-title { font-size:13px;font-weight:600;color:var(--text);margin-bottom:6px; }
.cs-card p { font-size:13px;font-weight:400;line-height:1.65;color:var(--text-2);margin:0; }

.outcome-callout { background:var(--bg2);border:1px solid var(--border);border-radius:14px;padding:32px 36px;margin:32px 0; }
.outcome-callout p { font-size:18px;font-weight:500;font-style:italic;line-height:1.55;color:var(--text);margin:0; }

.proj-row { display:flex;flex-direction:column;border:1px solid var(--border);border-radius:12px;overflow:hidden;margin:28px 0 40px; }
.proj-row-item { padding:16px 24px;border-bottom:1px solid var(--border);display:flex;align-items:flex-start;gap:18px; }
.proj-row-item:last-child { border-bottom:none; }
.proj-url { font-size:14.5px;font-weight:600;color:#111;flex-shrink:0;width:230px; }
.proj-desc { font-size:14.5px;font-weight:400;line-height:1.72;color:#444; }

.case-nav-footer { margin-top:72px;padding-top:36px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px; }

/* lightbox */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:40px 0}
.gal-thumb{border-radius:10px;overflow:hidden;cursor:pointer;border:1px solid var(--border);transition:border-color .2s,transform .2s;aspect-ratio:4/3;position:relative}
.gal-thumb:hover{border-color:var(--border2);transform:translateY(-2px)}
.gal-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.gal-thumb:hover img{transform:scale(1.03)}
.gal-overlay{position:absolute;inset:0;background:rgba(0,0,0,.2);opacity:0;transition:opacity .2s;display:flex;align-items:center;justify-content:center}
.gal-thumb:hover .gal-overlay{opacity:1}
.gal-overlay svg{width:22px;height:22px;color:white}
.lb{position:fixed;inset:0;background:rgba(0,0,0,.88);z-index:9500;display:none;align-items:center;justify-content:center;backdrop-filter:blur(20px)}
.lb.open{display:flex}
.lb-inner{position:relative;max-width:90vw;max-height:88vh;display:flex;align-items:center;justify-content:center}
.lb-img{max-width:100%;max-height:88vh;border-radius:10px;display:block;object-fit:contain}
.lb-close{position:fixed;top:24px;right:28px;width:38px;height:38px;background:rgba(255,255,255,.12);border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center}
.lb-prev,.lb-next{position:fixed;top:50%;transform:translateY(-50%);width:40px;height:40px;background:rgba(255,255,255,.1);border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center}
.lb-prev{left:20px}.lb-next{right:20px}
.lb-counter{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);font-size:12px;color:rgba(255,255,255,.5);font-family:var(--sans)}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media(max-width:1100px){
  .cs-img{margin-left:-15%;margin-right:-15%;width:130%}
  .work-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .proj-grid{grid-template-columns:repeat(2,1fr)}
  .work-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  nav{padding:14px 20px}
  .nav-links{display:none}
  section{padding:56px 20px}
  .hero{padding:100px 20px 72px}
  #contact{padding:72px 20px 56px}
  footer{padding:20px;flex-direction:column;gap:10px;text-align:center}
  .work-grid{grid-template-columns:1fr 1fr}
  .svc-grid,.proj-grid{grid-template-columns:1fr}
  .ct-pills{flex-direction:column;align-items:center}
  .cs-img{margin-left:0;margin-right:0;width:100%;border-radius:10px}
  .cs-wrap{padding:48px 20px 80px}
  .meta-bar{flex-direction:column}
  .meta-cell{border-right:none;border-bottom:1px solid var(--border)}
  .meta-cell:last-child{border-bottom:none}
  .stat-row,.card-grid{flex-direction:column;grid-template-columns:1fr}
  .proj-row-item{flex-direction:column;gap:4px}
  .proj-url{width:auto}
  .case-hero{padding:100px 24px 48px}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}

/* ─────────────────────────────────────────
   HERO ANIMATIONS
   Staggered fade-up on page load
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-avatar  { animation: fadeUp 0.7s ease both; animation-delay: 0.05s; }
.hero-name    { animation: fadeUp 0.7s ease both; animation-delay: 0.15s; }
.hero-role    { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-bio     { animation: fadeUp 0.7s ease both; animation-delay: 0.35s; }
.hero-pills   { animation: fadeUp 0.7s ease both; animation-delay: 0.45s; }

/* ─────────────────────────────────────────
   WORK CARD STAGGER
   Cards animate in on scroll via .reveal.in
   but also get a stagger via nth-child
───────────────────────────────────────── */
.work-grid .wc.reveal { transition-delay: 0s; }
.work-grid .wc:nth-child(1).reveal { transition-delay: 0.0s; }
.work-grid .wc:nth-child(2).reveal { transition-delay: 0.07s; }
.work-grid .wc:nth-child(3).reveal { transition-delay: 0.14s; }
.work-grid .wc:nth-child(4).reveal { transition-delay: 0.21s; }
.work-grid .wc:nth-child(5).reveal { transition-delay: 0.28s; }

/* ─────────────────────────────────────────
   TYPOGRAPHY SYSTEM — refined & consistent
───────────────────────────────────────── */

/* Hero — slightly larger, more presence */
.hero-name {
  font-size: clamp(52px, 8vw, 96px);
}
.hero-role {
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.01em;
}
.hero-bio {
  font-size: 18px;
  line-height: 1.72;
  color: #444;
}

/* Section headings — unified scale */
.sec-title {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.028em;
  line-height: 1.05;
}

/* Section subtitles — slightly larger + better colour */
.sec-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Work card text */
.wc-title {
  font-size: 15px;
  font-weight: 600;
}
.wc-tags {
  font-size: 12.5px;
  color: #888;
  margin-top: 3px;
}

/* Services */
.svc-title { font-size: 17px; }
.svc-desc  { font-size: 14px; line-height: 1.72; color: #555; }
.svc-ey    { font-size: 10.5px; color: #aaa; }

/* Projects */
.pc-title { font-size: 16px; }
.pc-desc  { font-size: 14px; line-height: 1.7; color: #555; }

/* Contact CTA */
.ct-title { font-size: clamp(38px, 5.5vw, 68px); }
.ct-sub   { font-size: 17px; color: #555; }

/* Pills — slightly bigger text */
.pill { font-size: 13.5px; }

/* ── Case study typography ── */
.cs-p          { font-size: 17px; line-height: 1.88; color: #333; font-weight: 400; }
.cs-h2         { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; color: #111; letter-spacing: -0.022em; }
.cs-tag        { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; color: #888; }
.cs-section    { margin-top: 60px; }

/* Steps */
.step-title    { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 6px; }
.step-desc     { font-size: 15px; font-weight: 400; line-height: 1.75; color: #444; }
.step-n        { font-size: 20px; font-weight: 700; color: #ccc; }

/* Meta bar */
.meta-cell label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; color: #aaa; }
.meta-cell span  { font-size: 15px; font-weight: 500; color: #333; }

/* Stats */
.stat-n  { font-size: 46px; font-weight: 700; }
.stat-l  { font-size: 13px; font-weight: 400; color: #777; line-height: 1.5; }

/* Cards */
.cs-card-title { font-size: 14.5px; font-weight: 600; color: #111; margin-bottom: 8px; }
.cs-card p     { font-size: 14.5px; font-weight: 400; line-height: 1.75; color: #444; }

/* Client list */
.proj-url      { font-size: 14.5px; font-weight: 600; color: #111; }
.proj-desc     { font-size: 14.5px; font-weight: 400; line-height: 1.7; color: #444; }

/* Pull quote */
.pull-quote       { border-left: 3px solid #ddd; padding: 6px 0 6px 28px; margin: 44px 0; }
.pull-quote p     { font-size: 22px; font-weight: 500; font-style: italic; line-height: 1.5; color: #111; }
.pull-quote cite  { font-size: 13px; font-weight: 400; color: #999; }

/* Outcome callout */
.outcome-callout   { background: #fafafa; border: 1px solid #eee; border-radius: 14px; padding: 36px 40px; margin: 36px 0; }
.outcome-callout p { font-size: 20px; font-weight: 500; font-style: italic; line-height: 1.6; color: #111; }

/* Case nav pills */
.case-nav-footer .pill { font-size: 14px; font-weight: 500; }

/* Footer */
.ft-name { font-size: 13.5px; }
.ft-copy { font-size: 12.5px; color: #aaa; }



/* ─────────────────────────────────────────
   FLUID GRADIENT — section colour styles
   Blobs animated via fluid-gradient.js
───────────────────────────────────────── */

/* Services grid cards — frosted white so they pop above blobs */
.svc-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.svc-card:hover {
  background: rgba(255,255,255,0.95);
}
.svc-grid {
  border-color: rgba(139,92,246,0.10);
  background: rgba(139,92,246,0.06);
}

/* Keep footer plain white — no colour there */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.ft-name { color: var(--text); }
.ft-copy { color: var(--text-3); }
