/* ==========================================================================
   Stack & Studio - design system
   Dark, high-contrast, lime-accented. Structure borrowed from a
   conversion-led agency funnel; visual identity stays our own.

   SHAPE RULE (documented, applied everywhere):
     interactive (buttons, tags, filters) = full round
     surfaces (cards, media, inputs)      = 6px
   COLOR RULE: one accent (--accent, lime) across the whole page. No second hue.
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --bg-raise: #171717;
  --fg: #f5f5f3;
  --muted: #8f8f8f;
  --muted-strong: #b4b4b0;
  --line: #262626;
  --line-soft: #1c1c1c;
  --accent: #d4ff3f;
  --accent-dim: #a9cc32;
  --accent-ink: #0a0a0a;

  --radius: 6px;
  --radius-pill: 999px;
  --container: 1200px;

  --font-display: 'Clash Display', 'Space Grotesk', sans-serif;
  --font-body: 'General Sans', 'Inter', system-ui, sans-serif;

  --step-1: 12px;
  --step-2: 20px;
  --step-3: 32px;
  --step-4: 48px;
  --step-5: 72px;
  --step-6: 112px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--step-6) 0; }
.section-tight { padding: var(--step-5) 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--step-2);
}

.section-head { max-width: 62ch; margin-bottom: var(--step-4); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.0625rem; margin: 0; max-width: 58ch; }

/* ---------- reveal ---------- */
.reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.reveal.is-visible { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- buttons (full-round, per shape rule) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 14px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.12s ease;
}
.btn:hover { border-color: var(--fg); background: var(--bg-raise); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* accent CTA: near-black ink on lime is roughly 14:1 contrast, well past WCAG AA */
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { background: var(--accent-dim); border-color: var(--accent-dim); color: var(--accent-ink); }

.btn-ghost { border-color: var(--line); color: var(--muted-strong); }
.btn-ghost:hover { color: var(--fg); }

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.link-underline {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  padding-bottom: 2px;
}
.link-underline::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(10, 10, 10, 0.92); }
.site-header .container {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.03em; }
.logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-size: 14px; font-weight: 500; color: var(--muted-strong); transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 13px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 32px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* ---------- hero: asymmetric split ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--step-5);
  align-items: center;
  padding-top: 80px;
  padding-bottom: var(--step-5);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  margin-bottom: 22px;
  text-wrap: balance;
}
/* emphasis stays in the same family: accent colour + weight, no synthetic italic
   (Clash Display has no true italic cut, and faux-oblique looks broken at display size) */
.hero h1 em { font-style: normal; font-weight: 700; color: var(--accent); }
.hero-sub {
  color: var(--muted-strong);
  font-size: 1.125rem;
  max-width: 46ch;
  margin: 0 0 var(--step-3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  /* keep the hero inside the first viewport on short laptops so the CTA never drops below the fold */
  max-height: min(56vh, 560px);
  background: var(--bg-alt);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); }

/* page hero (inner pages) */
.page-hero { padding: 88px 0 var(--step-5); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 58ch; font-size: 1.0625rem; }

/* ---------- marquee (one per page) ---------- */
.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.marquee { display: flex; overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; align-items: center; gap: 36px; padding-right: 36px; flex-shrink: 0; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.marquee span.plus { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- about teaser ---------- */
.about-teaser { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--step-5); align-items: center; }
.about-teaser p { color: var(--muted); margin: 0 0 var(--step-2); max-width: 54ch; }
.about-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }

.stat-row { display: flex; flex-wrap: wrap; gap: var(--step-4); margin-top: var(--step-4); }
.stat h3 { font-size: 2.2rem; color: var(--accent); margin-bottom: 2px; }
.stat span { font-size: 13px; color: var(--muted); }

/* ---------- work: bento, mixed cell sizes ----------
   DORMANT. The fabricated portfolio was removed, so nothing uses these right
   now. Kept deliberately: drop real projects into a .work-grid and the layout
   is already built. Do not repopulate with placeholder companies. */
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.work-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--step-3); isolation: isolate;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.work-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.work-card.is-wide { grid-column: span 4; min-height: 380px; }
.work-card.is-narrow { grid-column: span 2; }
.work-card.is-half { grid-column: span 3; min-height: 300px; }

.work-card .bg { position: absolute; inset: 0; z-index: -2; }
.work-card .bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform 0.7s var(--ease), filter 0.5s var(--ease); }
.work-card:hover .bg img { transform: scale(1.05); filter: grayscale(0.35); }
.work-card .overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,10,10,0.94) 12%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.2) 100%);
}
.work-card .tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: auto;
}
.work-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.work-card .desc { color: var(--muted-strong); font-size: 14px; margin: 0; }

/* legacy gradient helpers retained so inner pages keep rendering */
.grad-1 { background: linear-gradient(135deg, #1f2a1a, #0a0a0a); }
.grad-2 { background: linear-gradient(135deg, #1a1f2a, #0a0a0a); }
.grad-3 { background: linear-gradient(135deg, #2a1a1f, #0a0a0a); }
.grad-4 { background: linear-gradient(135deg, #1a2a26, #0a0a0a); }
.grad-5 { background: linear-gradient(135deg, #26261a, #0a0a0a); }
.grad-6 { background: linear-gradient(135deg, #221a2a, #0a0a0a); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--step-4); }
.filter-btn {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: transparent; color: var(--muted-strong);
  font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.filter-btn:hover { color: var(--fg); border-color: var(--fg); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.work-card.hidden { display: none; }

/* ---------- services: asymmetric rows, not equal cards ---------- */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 84px 1.1fr 1fr; gap: var(--step-3);
  align-items: start;
  padding: var(--step-4) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.service-row:hover { background: var(--bg-alt); }
.service-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; padding-top: 6px; }
.service-row h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 10px; }
.service-row .service-copy { color: var(--muted); margin: 0; max-width: 46ch; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.service-tags li {
  font-size: 12.5px; color: var(--muted-strong);
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 14px;
}

/* legacy service card (inner pages) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--line); }
.service-card { background: var(--bg); padding: var(--step-4) var(--step-3); transition: background 0.3s var(--ease); }
.service-card:hover { background: var(--bg-alt); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin: 0 0 var(--step-2); }
.service-card ul li { color: var(--muted-strong); font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--line-soft); }

/* ---------- process: numbered track ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-step { background: var(--bg); padding: var(--step-3); }
.process-step .n { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.12em; }
.process-step h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.process-step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- offer band (the conversion move) ---------- */
.offer-band {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-alt);
  padding: var(--step-5) var(--step-4);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--step-4); align-items: center;
}
.offer-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.offer-band p { color: var(--muted); margin: 0 0 var(--step-3); max-width: 46ch; }
.offer-points { display: grid; gap: 16px; }
.offer-point { display: flex; gap: 12px; align-items: flex-start; }
.offer-point i { color: var(--accent); font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.offer-point strong { display: block; font-size: 15px; margin-bottom: 2px; }
.offer-point span { color: var(--muted); font-size: 14px; }

/* ---------- proof ----------
   DORMANT for the same reason. .quote-block is ready for a real attributed
   testimonial (name, role, company, with permission); .clients-strip is ready
   for real client marks. Both were removed for being invented. */
/* kept for a future REAL testimonial: name, role, company, with permission.
   Do not reinstate an invented quote here. */
.quote-block { max-width: 62ch; }
.quote-block blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 var(--step-3); }
.quote-attrib .who { font-size: 14px; font-weight: 600; }
.quote-attrib .role { font-size: 13px; color: var(--muted); }

.clients-strip { display: flex; flex-wrap: wrap; align-items: center; gap: var(--step-4); }
.client-mark { display: flex; align-items: center; gap: 10px; opacity: 0.6; transition: opacity 0.3s var(--ease); }
.client-mark:hover { opacity: 1; }
.client-mark svg { width: 26px; height: 26px; flex-shrink: 0; }
.client-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--muted-strong); }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--step-2) 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 20px; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.faq p { color: var(--muted); margin: 0 0 var(--step-2); max-width: 62ch; }

/* ---------- cta band ---------- */
.cta-band {
  text-align: center;
  padding: var(--step-6) var(--step-3);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: var(--step-3); }
.cta-band p { color: var(--muted); max-width: 48ch; margin: 0 auto var(--step-3); }

/* ---------- footer ---------- */
.site-footer { padding-top: var(--step-5); padding-bottom: var(--step-3); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--step-4); padding-bottom: var(--step-4); }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 34ch; margin: 14px 0 0; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--muted-strong); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: var(--step-2); border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: var(--step-4); }
  .hero-media { aspect-ratio: 16/10; max-height: 380px; }
  .about-teaser { grid-template-columns: 1fr; }
  .offer-band { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .work-card.is-wide, .work-card.is-half { grid-column: span 3; }
  .work-card.is-narrow { grid-column: span 3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: var(--step-5) 0; }
  .service-row { grid-template-columns: 1fr; gap: var(--step-2); }
  .service-num { padding-top: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .mobile-menu { padding-left: 20px; padding-right: 20px; }
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .work-card.is-wide, .work-card.is-half, .work-card.is-narrow { grid-column: span 1; min-height: 260px; }
  .process { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--step-3); }
  .stat-row { gap: var(--step-3); }
  .hero { padding-top: 56px; }
}

/* ==========================================================================
   Inner-page components (about / work / services / contact / privacy)
   Restored and brought onto the new token + shape system.
   ========================================================================== */

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.6rem; margin: var(--step-4) 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); margin-bottom: 14px; }
.prose li { margin-left: 20px; list-style: disc; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--step-5); }
.contact-info h3 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 10px; }
.contact-info .block { margin-bottom: var(--step-4); }
.contact-info a, .contact-info p { color: var(--muted); }
.contact-info a:hover { color: var(--accent); }

.form-group { margin-bottom: var(--step-2); }
.form-group label {
  display: block; margin-bottom: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-strong);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #7d7d7d; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 255, 63, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { margin-top: var(--step-2); color: var(--muted); font-size: 14px; display: none; }
.form-note.show { display: block; color: var(--accent); }

/* services detail */
.service-detail {
  display: grid; grid-template-columns: 0.9fr 1.4fr; gap: var(--step-5);
  padding: var(--step-5) 0; border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .index { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: var(--step-2); }
.service-detail h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: var(--step-2); }
.service-detail p { color: var(--muted); margin-bottom: 16px; max-width: 60ch; }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: var(--step-3); }
.deliverable { display: flex; gap: 10px; align-items: baseline; font-size: 15px; color: var(--fg); }
.deliverable::before { content: '+'; color: var(--accent); font-weight: 700; }

/* about */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--step-4); }
.value-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--accent); }
.value-card p { color: var(--muted); margin: 0; }

/* DORMANT: the invented team members were removed. Ready for real people with
   real photos and real roles. Do not repopulate with placeholder names. */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--step-3); }
.team-card { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--step-2); }
.team-card h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.team-card span { color: var(--muted); font-size: 14px; }
.team-photo { aspect-ratio: 1; border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .contact-grid, .service-detail { grid-template-columns: 1fr; gap: var(--step-4); }
}
@media (max-width: 640px) {
  .deliverables { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
