@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --cream: #FDFBF7;
  --cream-2: #F7F4ED;
  --white: #FFFFFF;
  --navy: #0F1E36;
  --navy-mid: #1B3258;
  --navy-light: #2A4A7A;
  --teal: #1A8F80;
  --teal-light: #E6F5F2;
  --teal-pale: #D0EDE8;
  --coral: #C4553A;
  --coral-light: #FCEEE9;
  --gold: #B8860B;
  --gold-light: #FBF5E6;
  --text: #1A1A2E;
  --text-mid: #4A4A5A;
  --text-light: #7A7A8A;
  --text-faint: #A0A0AC;
  --border: #E8E4DB;
  --border-light: #F0ECE3;
  --serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
  --mono: 'SF Mono', 'Fira Code', monospace;
  --max-w: 1120px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled .nav-inner { padding: 0.6rem 2rem; }
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo em { font-style: normal; color: var(--teal); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}
.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background: var(--navy);
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--navy); border-radius: 1px; }

/* ============ SECTION BASICS ============ */
section { padding: 5rem 2rem; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}
.rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}
.rule-accent {
  width: 48px;
  height: 2px;
  background: var(--teal);
  border: none;
  margin: 1.5rem 0;
}

/* ============ SCROLL REVEALS ============ */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.sr.vis { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }
.sr-d4 { transition-delay: 0.4s; }
.sr-d5 { transition-delay: 0.5s; }
.sr-d6 { transition-delay: 0.6s; }

/* ============ HERO ============ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: #167A6D; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,30,54,0.06);
}
.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* Tag pills */
.tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-coral { background: var(--coral-light); color: var(--coral); }
.tag-gold { background: var(--gold-light); color: var(--gold); }

/* ============ DOMAINS (Tabs) ============ */
.domains-bg { background: var(--white); }
.tab-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--teal); }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.tab-visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}
.tab-visual svg { width: 55%; max-width: 200px; }
.tab-info h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.tab-info p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.tab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}
.tab-link:hover { gap: 0.7rem; }

/* ============ METHODOLOGY ============ */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.method-visual {
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.method-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(26,143,128,0.15) 0%, transparent 60%);
}
.method-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.method-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.pillars { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pillar-tag {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid;
}
.pt-1 { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.pt-2 { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }
.pt-3 { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }
.pt-4 { border-color: var(--navy-light); color: var(--navy-light); background: #E8EDF4; }

/* ============ SERVICES ============ */
.services-bg { background: var(--cream-2); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.svc-list { display: flex; flex-direction: column; gap: 0.4rem; }
.svc-item {
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-left: 3px solid transparent;
}
.svc-item:hover { background: var(--white); }
.svc-item.active {
  background: var(--white);
  border-left-color: var(--teal);
  box-shadow: 0 4px 20px rgba(15,30,54,0.04);
}
.svc-item h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-item h4 .num {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--teal);
  opacity: 0.5;
}
.svc-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, margin 0.4s;
}
.svc-item.active p { max-height: 200px; margin-top: 0.6rem; }
.svc-panel {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-panel h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.svc-panel p { font-size: 0.95rem; line-height: 1.75; opacity: 0.8; }
.svc-icon { font-size: 2rem; margin-bottom: 1.2rem; }

/* ============ TRUST ============ */
.trust-bar {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.trust-bar .section-eyebrow { color: rgba(255,255,255,0.35); }
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ============ INSIGHTS PREVIEW ============ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card { text-decoration: none; }
.insight-thumb {
  height: 180px;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.insight-thumb .tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}
.insight-card .card-body h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.insight-card .card-body .date {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.6rem;
}

/* ============ CTA ============ */
.cta-section {
  background: var(--navy);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,143,128,0.1) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.cta-section .btn { position: relative; z-index: 2; }

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  padding: 3.5rem 2rem 1.5rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .nav-logo { color: var(--white); display: inline-block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer-col h5 {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  text-align: center;
}

/* ============ TEAM PAGE ============ */
.page-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
  background: var(--cream);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Founder feature */
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.founder-photo {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo svg { width: 50%; opacity: 0.15; }
.founder-info h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.founder-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.founder-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0.8rem;
}
.founder-personal {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Team members */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.member-photo {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.member-photo svg { width: 40%; opacity: 0.12; }
.member-info { padding: 1.5rem; }
.member-info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.member-info .role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.member-info .bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.member-info .personal {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.6rem;
  line-height: 1.5;
}

/* Collab cards */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.collab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.collab-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(15,30,54,0.05); }
.collab-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.collab-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.collab-card .collab-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.collab-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* Values */
.values-bar {
  background: var(--navy);
  padding: 4rem 2rem;
  color: var(--white);
  text-align: center;
}
.values-bar .section-eyebrow { color: rgba(255,255,255,0.35); }
.values-bar .section-title { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 2rem auto 0;
}
.value-item h4 {
  font-family: var(--serif);
  font-size: 1rem;
  margin: 0.75rem 0 0.3rem;
}
.value-item p {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.55;
}

/* ============ WORK PAGE ============ */
.work-filters {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.work-card { text-decoration: none; }
.work-thumb {
  height: 220px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work-thumb svg { width: 40%; max-width: 160px; opacity: 0.8; }
.work-thumb .tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
}
.work-card .card-body .client {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.work-card .card-body .meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.work-card .card-body .meta-item {
  font-size: 0.75rem;
  color: var(--text-light);
}
.work-card .card-body .meta-item strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mid);
  margin-bottom: 0.1rem;
}

/* Featured case */
.featured-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: box-shadow 0.4s var(--ease);
}
.featured-case:hover { box-shadow: 0 12px 40px rgba(15,30,54,0.06); }
.featured-vis {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-vis svg { width: 40%; max-width: 180px; }
.featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-badge {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--teal-light);
  color: var(--teal);
  margin-bottom: 1rem;
  width: fit-content;
}
.featured-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.featured-body .client { font-size: 0.85rem; font-weight: 600; color: var(--teal); margin-bottom: 1rem; }
.featured-body p { font-size: 0.95rem; line-height: 1.75; color: var(--text-mid); }
.featured-stats {
  display: flex; gap: 2rem; margin-top: 1.5rem;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* Process strip */
.process-bar {
  background: var(--navy);
  padding: 3.5rem 2rem;
  margin-top: 3rem;
  border-radius: 16px;
  color: var(--white);
  text-align: center;
}
.process-bar .section-eyebrow { color: rgba(255,255,255,0.35); }
.process-bar h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.process-bar > p { font-size: 0.95rem; opacity: 0.55; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  padding: 1.5rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.process-step .step-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.78rem; opacity: 0.45; line-height: 1.5; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-panel { position: static; order: -1; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .collab-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .featured-case { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  section { padding: 3.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
