/* ── TOKENS + RESET ──────────────────────────────────── */
:root {
  --carbon:    #212121;
  --mocha:     #332c26;
  --graphite:  #3e3937;
  --khaki:     #b7a694;
  --alabaster: #e9e6e1;

  --serif: 'Source Serif 4', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--carbon); color: #fff; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(233,230,225,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33,33,33,0.08);
}
.nav-logo, a.nav-logo {
  font-family: var(--serif); font-weight: 300;
  font-size: 22px; letter-spacing: 0.04em; color: var(--carbon);
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px; color: rgba(33,33,33,0.55); font-weight: 500;
  text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--carbon); }
.nav-links a.nav-active { color: var(--carbon); font-weight: 500; border-bottom: 2px solid var(--khaki); padding-bottom: 2px; }
.lang-switch {
  display: flex; gap: 2px;
  border: 1px solid rgba(33,33,33,0.18);
  border-radius: 20px; padding: 2px;
}
.lang-btn {
  padding: 4px 10px; border-radius: 16px; font-size: 11px;
  letter-spacing: 0.08em; color: rgba(33,33,33,0.45);
  cursor: pointer; transition: all 0.2s; background: none; border: none;
  font-family: var(--sans); font-weight: 600;
}
.lang-btn.active { background: var(--carbon); color: var(--alabaster); }
.lang-btn[disabled] { opacity: 0.35; cursor: default; }

/* ── NAV DROPDOWN ────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  background: rgba(233,230,225,0.98); backdrop-filter: blur(14px);
  border: 1px solid rgba(33,33,33,0.1); border-radius: 8px;
  padding: 14px 8px 8px; min-width: 244px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateY(-4px); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex; flex-direction: column;
  padding: 10px 16px; border-radius: 4px;
  color: var(--carbon); text-decoration: none;
  transition: background 0.15s; font-weight: 500; font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-dropdown-menu a:hover { background: rgba(33,33,33,0.06); }
.nav-dropdown-menu a span {
  font-size: 11px; color: rgba(33,33,33,0.42);
  font-weight: 400; margin-top: 2px; letter-spacing: 0.01em;
}

/* ── WORK TILE BASE (used on index + service pages) ─── */
.wc {
  position: relative; overflow: hidden; background: var(--alabaster);
  cursor: pointer;
}
.wc img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wc:hover img { transform: scale(1.03); }
.wc-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 24px 22px;
  background: linear-gradient(0deg, rgba(33,33,33,0.72) 0%, transparent 100%);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.wc:hover .wc-label { opacity: 1; transform: translateY(0); }
.wc-label span {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); font-weight: 600;
}
.wc-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2; pointer-events: none;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 600;
  background: rgba(33,33,33,0.55); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 20px;
}

/* ── MODAL ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(62,57,55,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal-box {
  display: grid; grid-template-columns: 58% 42%;
  max-width: 1200px; width: 100%;
  height: 90vh; max-height: 840px;
  background: var(--carbon); border-radius: 4px; overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-gallery { display: flex; flex-direction: column; background: #111; overflow: hidden; min-height: 0; }
.modal-img-wrap { flex: 1; position: relative; overflow: hidden; min-height: 0; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-zoom-btn {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(33,33,33,0.65); backdrop-filter: blur(4px);
  border: none; color: rgba(255,255,255,0.75);
  font-size: 18px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; font-family: var(--sans);
}
.modal-zoom-btn:hover { background: rgba(33,33,33,0.9); color: #fff; }
.modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(20,18,16,0.55); backdrop-filter: blur(4px);
  border: none; color: rgba(183,166,148,0.75);
  font-size: 32px; cursor: pointer; padding: 14px 10px; line-height: 1;
  transition: color 0.2s, background 0.2s; user-select: none;
  font-family: var(--sans);
}
.modal-prev { left: 0; border-radius: 0 4px 4px 0; }
.modal-next { right: 0; border-radius: 4px 0 0 4px; }
.modal-nav:hover { color: var(--khaki); background: rgba(20,18,16,0.8); }
.modal-nav[hidden] { display: none; }
.modal-thumbs {
  display: flex; gap: 6px; padding: 10px 12px;
  background: var(--carbon); overflow-x: auto; flex-shrink: 0;
}
.modal-thumbs:empty { display: none; }
.modal-thumb {
  width: 72px; height: 48px; object-fit: cover; border-radius: 2px;
  cursor: pointer; flex-shrink: 0; opacity: 0.45;
  border: 1px solid transparent; transition: opacity 0.2s;
}
.modal-thumb.active { opacity: 1; border-color: var(--khaki); }
.modal-thumb:hover { opacity: 0.75; }
.modal-info {
  padding: 40px 36px; overflow-y: auto;
  display: flex; flex-direction: column; background: var(--carbon);
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 28px; cursor: pointer; line-height: 1; padding: 4px 8px;
  transition: color 0.2s; font-family: var(--sans);
}
.modal-close:hover { color: #fff; }
.modal-category {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--khaki); font-weight: 600;
  background: rgba(183,166,148,0.12); padding: 4px 10px; border-radius: 20px;
  display: inline-block; align-self: flex-start; margin-bottom: 18px;
}
.modal-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.5vw, 32px); color: #fff;
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 18px;
}
.modal-rule { width: 32px; height: 1px; background: var(--khaki); margin-bottom: 18px; }
.modal-brief {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: rgba(233,230,225,0.5);
  line-height: 1.65; margin-bottom: 16px;
}
.modal-services { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.modal-service-tag {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--khaki);
  border: 1px solid rgba(183,166,148,0.35); border-radius: 20px; padding: 4px 12px;
}
.modal-description {
  font-size: 14px; color: rgba(233,230,225,0.55); line-height: 1.8;
  margin-bottom: 32px; flex: 1;
}
.modal-cta-wrap { margin-top: auto; }
.modal-cta-btn {
  display: inline-flex; align-items: center;
  padding: 12px 24px; border-radius: 30px;
  background: var(--khaki); color: var(--carbon);
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; transition: background 0.2s;
}
.modal-cta-btn:hover { background: #cbbfb1; }

/* ── ZOOM LAYER ───────────────────────────────────────── */
.zoom-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(10,10,10,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
}
.zoom-overlay.is-open { opacity: 1; pointer-events: auto; }
.zoom-overlay img {
  max-width: 96vw; max-height: 96vh;
  object-fit: contain; cursor: zoom-out; display: block;
}
.zoom-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: rgba(255,255,255,0.45);
  font-size: 36px; cursor: pointer; padding: 8px; line-height: 1;
  transition: color 0.2s; font-family: var(--sans);
}
.zoom-close:hover { color: #fff; }

/* ── LOGOS + MARQUEE ─────────────────────────────────── */
.logos-section {
  background: var(--alabaster);
  padding: 72px 0 80px; overflow: hidden;
  border-top: 1px solid rgba(33,33,33,0.08);
}
.logos-label {
  text-align: center; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(33,33,33,0.3); margin-bottom: 44px; font-weight: 600;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item { height: 34px; flex-shrink: 0; display: flex; align-items: center; }
.logo-item img {
  height: 100%; width: auto; object-fit: contain;
  opacity: 0.82; transition: opacity 0.25s;
}
.logo-item img:hover { opacity: 1; }

/* ── SERVICES / PROCESS (shared structure) ───────────── */
.process { background: var(--mocha); padding: 100px 48px; }
.process-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(183,166,148,0.45); margin-bottom: 16px; font-weight: 600;
}
.process-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.5vw, 46px); color: #fff;
  letter-spacing: -0.01em; margin-bottom: 64px;
}
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-icon { margin-bottom: 20px; }
.step-num {
  font-family: var(--serif); font-weight: 300;
  font-size: 72px; line-height: 1; color: var(--khaki);
  opacity: 0.35; letter-spacing: -0.04em;
  margin-bottom: 20px; display: block;
}
.step-title {
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff; margin-bottom: 12px;
}
.step-body { font-size: 14px; color: rgba(233,230,225,0.55); line-height: 1.75; }
.step-divider {
  width: 32px; height: 1px; background: rgba(183,166,148,0.35); margin-bottom: 20px;
}
.step-audience {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--khaki); opacity: 0.7; font-weight: 600; margin-bottom: 8px;
}
.step-link {
  display: inline-block; margin-top: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--khaki); text-decoration: none; transition: opacity 0.2s;
}
.step-link:hover { opacity: 0.7; }

/* ── CTA ──────────────────────────────────────────────── */
.cta {
  background: var(--graphite);
  padding: 120px 48px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(183,166,148,0.4); margin-bottom: 20px; font-weight: 600;
}
.cta-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 64px); color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
}
.cta-headline em { color: var(--khaki); font-style: italic; }
.cta-sub {
  margin-top: 16px; font-size: 15px; color: rgba(233,230,225,0.5); font-weight: 400;
}
.cta-actions {
  display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap;
}
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; border-radius: 50px;
  background: var(--khaki); color: var(--carbon);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.cta-btn-primary:hover { background: #cbbfb1; transform: translateY(-1px); }
.cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
}
.cta-btn-secondary:hover {
  border-color: rgba(183,166,148,0.5); color: var(--khaki); transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: var(--carbon); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top {
  padding: 60px 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 16px; font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block; font-size: 13px; color: rgba(255,255,255,0.35);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s; cursor: pointer;
}
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-col a.footer-lang-active { color: var(--khaki); }
.footer-wordmark { padding: 0 32px; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-wordmark-inner {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(80px, 14vw, 180px); line-height: 0.88;
  color: var(--khaki); letter-spacing: -0.03em;
  opacity: 0.55; padding-bottom: 16px;
}

/* ── SHARED MOBILE BREAKPOINTS ────────────────────────── */
@media (max-width: 768px) {
  /* nav */
  nav { padding: 14px 24px; }
  .nav-links a { display: none; }
  .nav-dropdown { display: none; }

  /* modal */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    grid-template-columns: 1fr;
    grid-template-rows: 52vw 1fr;
    height: 92vh; max-height: 92vh;
    border-radius: 12px 12px 0 0;
    transform: translateY(20px);
  }
  .modal-gallery { grid-row: 1; }
  .modal-thumbs { display: none; }
  .modal-zoom-btn { display: none; }
  .modal-info { grid-row: 2; }

  /* services/process */
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }

  /* cta */
  .cta { padding: 80px 24px; }
  .cta-headline { font-size: clamp(28px, 8vw, 48px); }

  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
  .footer-wordmark { padding: 0 16px; }
  .footer-wordmark-inner { font-size: clamp(60px, 18vw, 120px); }
}

/* ── SERVICE PAGE COMPONENTS ─────────────────────────── */

/* Hero with image (2-col) */
.svc-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.svc-hero-img { overflow: hidden; }
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero-text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
/* Hero text-only (education) */
.svc-hero--text-only {
  min-height: 50vh; background: var(--alabaster);
  padding: 100px 48px; text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.svc-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(183,166,148,0.65); font-weight: 600;
}
.svc-hero--text-only .svc-label { color: rgba(33,33,33,0.4); }
.svc-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1;
  color: #fff; letter-spacing: -0.02em;
}
.svc-hero--text-only .svc-headline { color: var(--carbon); }
.svc-sub { font-size: 16px; color: rgba(233,230,225,0.55); line-height: 1.6; max-width: 540px; }
.svc-hero--text-only .svc-sub { color: rgba(33,33,33,0.55); }

/* Problem strip */
.problem-strip {
  background: var(--alabaster); padding: 80px 48px; text-align: center;
}
.problem-quote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px); color: var(--carbon); line-height: 1.35;
  max-width: 780px; margin: 0 auto 24px;
}
.problem-body {
  font-size: 15px; color: rgba(33,33,33,0.6); line-height: 1.8;
  max-width: 640px; margin: 0 auto;
}

/* Deliverables */
.deliverables {
  background: var(--alabaster); padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  border-top: 1px solid rgba(33,33,33,0.08);
}
.deliverables-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 44px); color: var(--carbon); letter-spacing: -0.01em;
}
.deliverables-list { list-style: none; padding: 0; margin-top: 8px; }
.deliverables-list li {
  font-size: 15px; color: rgba(33,33,33,0.7);
  padding: 14px 0; border-bottom: 1px solid rgba(33,33,33,0.08);
  line-height: 1.5; display: flex; align-items: center; gap: 14px;
}
.deliverable-icon { flex-shrink: 0; opacity: 0.85; }

/* Reassurance strip */
.reassurance-strip {
  background: var(--khaki); color: var(--carbon); padding: 44px 48px; text-align: center;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(17px, 2vw, 24px); letter-spacing: -0.01em; line-height: 1.5;
}

/* Service portfolio tiles */
.svc-portfolio { background: var(--alabaster); padding: 80px 48px; border-top: 1px solid rgba(33,33,33,0.08); }
.svc-portfolio-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(33,33,33,0.35); margin-bottom: 12px; font-weight: 600;
}
.svc-portfolio-headline {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px); color: var(--carbon); margin-bottom: 40px;
}
.svc-tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.svc-tile-grid .wc { height: 340px; }
/* Consulting variant — big first tile */
.svc-tile-grid--consulting { grid-template-columns: 1fr 1fr; }
.svc-tile-grid--consulting .wc { height: 320px; }
.svc-tile-grid--consulting .wc:first-child { grid-column: 1 / 3; height: 460px; }

/* Stats strip */
.stats-strip {
  background: var(--carbon); padding: 80px 48px;
  display: flex; justify-content: center; gap: 96px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 7vw, 80px); color: var(--khaki); line-height: 1;
  letter-spacing: -0.03em; display: block;
}
.stat-label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 8px; font-weight: 600;
}

/* Testimonials */
.testimonials { background: var(--alabaster); padding: 80px 48px; border-top: 1px solid rgba(33,33,33,0.08); }
.testimonials-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(33,33,33,0.35); margin-bottom: 40px; font-weight: 600;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff; border-radius: 4px; padding: 32px 28px;
  border: 1px solid rgba(33,33,33,0.07);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-quote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 15px; color: var(--carbon); line-height: 1.75; flex: 1;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--carbon); }
.testimonial-role { font-size: 12px; color: rgba(33,33,33,0.45); margin-top: 2px; }

/* Education tracks */
.edu-tracks {
  background: var(--alabaster); display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(33,33,33,0.08);
}
.edu-track { padding: 80px 48px; border-right: 1px solid rgba(33,33,33,0.08); }
.edu-track:last-child { border-right: none; }
.edu-track-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--khaki); font-weight: 600; margin-bottom: 12px;
}
.edu-track-title {
  font-family: var(--serif); font-weight: 300;
  font-size: 28px; color: var(--carbon); margin-bottom: 16px; letter-spacing: -0.01em;
}
.edu-track-body { font-size: 14px; color: rgba(33,33,33,0.6); line-height: 1.75; }

/* Tools list */
.tools-section { background: var(--mocha); padding: 80px 48px; }
.tools-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.tool-tag {
  font-size: 13px; letter-spacing: 0.06em; font-weight: 500;
  color: rgba(233,230,225,0.75);
  border: 1px solid rgba(183,166,148,0.25); border-radius: 20px; padding: 10px 20px;
}

/* Services overview cards */
.svc-cards-section { background: var(--alabaster); padding: 0 48px 100px; }
.svc-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid rgba(33,33,33,0.08); border-radius: 4px;
  padding: 40px 32px; display: flex; flex-direction: column;
  transition: border-color 0.25s;
}
.svc-card:hover { border-color: var(--khaki); }
.svc-card-cat {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--khaki); margin-bottom: 12px;
}
.svc-card-name {
  font-family: var(--serif); font-weight: 300;
  font-size: 26px; color: var(--carbon); margin-bottom: 6px; letter-spacing: -0.01em;
}
.svc-card-audience {
  font-size: 12px; color: rgba(33,33,33,0.45); margin-bottom: 16px; font-style: italic;
}
.svc-card-body {
  font-size: 14px; color: rgba(33,33,33,0.6); line-height: 1.75; margin-bottom: 28px; flex: 1;
}
.svc-card-link {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--carbon); text-decoration: none;
  border-bottom: 1px solid rgba(33,33,33,0.2); padding-bottom: 2px;
  align-self: flex-start; transition: color 0.2s, border-color 0.2s;
}
.svc-card-link:hover { color: var(--khaki); border-color: var(--khaki); }

/* Service page mobile */
@media (max-width: 768px) {
  .svc-hero { grid-template-columns: 1fr; }
  .svc-hero-img { height: 60vw; }
  .svc-hero-text { padding: 48px 24px; }
  .svc-hero--text-only { padding: 64px 24px; min-height: auto; }
  .problem-strip { padding: 64px 24px; }
  .deliverables { grid-template-columns: 1fr; padding: 64px 24px; }
  .reassurance-strip { padding: 40px 24px; }
  .svc-portfolio { padding: 64px 24px; }
  .svc-tile-grid { grid-template-columns: 1fr 1fr; }
  .svc-tile-grid .wc { height: 50vw; }
  .svc-tile-grid--consulting .wc:first-child { grid-column: 1 / 3; height: 60vw; }
  .svc-tile-grid--consulting .wc { height: 50vw; }
  .stats-strip { flex-direction: column; gap: 48px; padding: 64px 24px; }
  .testimonials { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .edu-tracks { grid-template-columns: 1fr; }
  .edu-track { border-right: none; border-bottom: 1px solid rgba(33,33,33,0.08); padding: 48px 24px; }
  .edu-track:last-child { border-bottom: none; }
  .tools-section { padding: 64px 24px; }
  .svc-cards-section { padding: 0 24px 64px; }
  .svc-cards-grid { grid-template-columns: 1fr; }
}

/* ── IMAGE BANNER ─────────────────────────────────────── */
.image-banner { height: 45vh; overflow: hidden; }
.image-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── EDUCATION HERO WITH BACKGROUND ──────────────────── */
.svc-hero--with-bg {
  background-size: cover; background-position: center; position: relative;
}
.svc-hero--with-bg::before {
  content: ''; position: absolute; inset: 0; background: rgba(33,33,33,0.8);
}
.svc-hero--with-bg > * { position: relative; z-index: 1; }
.svc-hero--with-bg .svc-label   { color: rgba(183,166,148,0.7); }
.svc-hero--with-bg .svc-headline { color: #fff; }
.svc-hero--with-bg .svc-sub     { color: rgba(233,230,225,0.6); }

@media (max-width: 768px) {
  .image-banner { height: 55vw; }
}

/* ── ANIMATION SYSTEM ────────────────────────────────────── */

/* Initial hidden states — only active when JS has loaded */
@media (prefers-reduced-motion: no-preference) {
  .js-anim [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
  }

  .js-anim [data-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
  }

  .js-anim [data-image-reveal] {
    opacity: 0;
  }

  .js-anim [data-fade-load] {
    opacity: 0;
    transition: opacity 0.4s ease-in;
  }

  .js-anim [data-fade-load].loaded {
    opacity: 1;
  }
}

/* Hero text entrance — pure CSS, no JS required */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Landing page hero text */
  .hero-content {
    animation: heroReveal 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  /* Service page hero text (interior-styling, consulting) */
  .svc-hero-text {
    animation: heroReveal 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  /* Education page hero — text-only hero, animate direct children */
  .svc-hero--text-only > * {
    animation: heroReveal 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

}
