/* ========================================
   Groundwork — Full Design System
   Red (#C41E2A) + White
   Lora (serif) + Inter (sans-serif)
   ======================================== */

:root {
  --red: #C41E2A;
  --red-dark: #9B1722;
  --red-light: #FDF2F3;
  --red-muted: #F5E0E2;
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --warm-gray: #F5F4F1;
  --gray-100: #F3F4F6;
  --gray-200: #E5E5E0;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --max-w: 1120px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Focus styles (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.3);
}
.nav__links a:focus-visible { color: var(--gray-900); }
.nav__toggle:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; }

/* ── Selection ── */
::selection { background: var(--red-muted); color: var(--red-dark); }

/* ── Animations — pure CSS, no JS dependency ── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: riseIn 0.6s ease both;
}
.fade-up--delay { animation-delay: 0.15s; }

/* Stagger children inside grids */
.grid .fade-up:nth-child(2) { animation-delay: 0.1s; }
.grid .fade-up:nth-child(3) { animation-delay: 0.2s; }
.grid .fade-up:nth-child(4) { animation-delay: 0.3s; }

/* ── Button micro-interactions ── */
.btn { transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.btn:active { transform: scale(0.97); }

/* ── 3D card tilt on hover ── */
.card-v2,
.lens-card,
.service-select-card,
.silo-why-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* ── Warm gradient accents ── */
.hero__badge,
.silo-hero__badge,
.service-select-card__num {
  background: linear-gradient(135deg, var(--red) 0%, #D4553A 100%);
  color: var(--white);
}
.stat__bar {
  background: linear-gradient(90deg, var(--red) 0%, #D4553A 100%);
}

/* ── Texture overlay for muted sections ── */
.section--muted {
  position: relative;
}
.section--muted::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c41e2a' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.section--muted > * { position: relative; z-index: 1; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700; font-size: 1.25rem;
  color: var(--gray-900); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo-icon { flex-shrink: 0; }
.nav__links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav__links a {
  text-decoration: none; color: var(--gray-500);
  font-size: 0.88rem; font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gray-900); }
.nav__links a.active::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 1px;
}
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-900); transition: var(--transition);
  border-radius: 1px;
}
.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); }

/* ── Country Selector ── */
.nav__country-wrap { position: relative; }
.nav__country-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--warm-gray);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s ease;
}
.nav__country-btn:hover {
  border-color: var(--red); color: var(--red);
}
.nav__country-chevron {
  transition: transform 0.25s ease;
}
.nav__country-btn[aria-expanded="true"] .nav__country-chevron {
  transform: rotate(180deg);
}
.nav__country-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 200;
}
.nav__country-dropdown.open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.nav__country-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav__country-option:hover {
  background: var(--red-light); color: var(--red);
}
.nav__country-option--active {
  background: var(--red-light); color: var(--red); font-weight: 600;
}
.nav__country-flag { font-size: 1.1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  line-height: 1;
}
.btn--sm { padding: 8px 18px; font-size: 0.82rem; border-radius: 6px; }
.btn--lg { padding: 15px 32px; font-size: 0.92rem; }
.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(196, 30, 42, 0.25); }
.btn--outline { background: transparent; color: var(--gray-700); border-color: var(--gray-200); }
.btn--outline:hover { border-color: var(--gray-900); color: var(--gray-900); }
.btn--white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,255,255,0.25); }
.btn--full { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
  min-height: 90vh;
  display: flex; align-items: center;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--red-light); color: var(--red);
  border-radius: 24px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.15;
  color: var(--gray-900); margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--red); }
.hero__sub {
  font-size: 1.05rem; color: var(--gray-500);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero trust */
.hero__trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px; border-top: 1px solid var(--gray-200);
}
.hero__trust-avatars { display: flex; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--white);
  border: 2.5px solid var(--white);
}
.avatar--1 { background: var(--red); z-index: 2; }
.avatar--2 { background: var(--gray-800); margin-left: -10px; z-index: 1; }
.avatar--large { width: 64px; height: 64px; font-size: 0.9rem; border: 3px solid var(--white); }
.hero__trust p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.45; }
.hero__trust strong { color: var(--gray-700); }

/* Hero visual mosaic */
.hero__mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mosaic-tile {
  background: var(--warm-gray);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  transition: all var(--transition);
  color: var(--gray-500);
}
.mosaic-tile span {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.mosaic-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-muted);
  color: var(--red);
}
.mosaic-tile--accent {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}
.mosaic-tile--accent:hover {
  background: var(--red-dark);
  color: var(--white);
  border-color: var(--red-dark);
}

/* Hero animated canvas BG */
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero__grid { position: relative; z-index: 1; }

/* ── Layers of Understanding ── */
.layers-section { background: var(--gray-900); overflow: hidden; }
.layers-section .section__eyebrow { color: var(--red-muted); }
.layers-section .section__title { color: var(--white); margin-bottom: 40px; }
.layers {
  display: flex; flex-direction: column; gap: 0;
  max-width: 700px;
}
.layer {
  display: flex; align-items: stretch;
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}
.layer:hover { transform: translateX(8px); }
.layer__content {
  padding: 22px 28px;
  flex: 1;
  border-left: 4px solid;
}
.layer__label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  display: block; margin-bottom: 4px;
}
.layer h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 4px;
}
.layer p {
  font-size: 0.88rem; line-height: 1.55;
}
/* Layer depth colors */
.layer--1 .layer__content {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.layer--1 .layer__label { color: var(--gray-400); }
.layer--1 h3 { color: var(--gray-300); }
.layer--1 p  { color: var(--gray-500); }

.layer--2 .layer__content {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,30,42,0.3);
  margin-left: 24px;
}
.layer--2 .layer__label { color: var(--gray-400); }
.layer--2 h3 { color: var(--gray-200); }
.layer--2 p  { color: var(--gray-400); }

.layer--3 .layer__content {
  background: rgba(196,30,42,0.08);
  border-color: rgba(196,30,42,0.5);
  margin-left: 48px;
}
.layer--3 .layer__label { color: var(--red); }
.layer--3 h3 { color: var(--white); }
.layer--3 p  { color: var(--gray-300); }

.layer--4 .layer__content {
  background: linear-gradient(90deg, rgba(196,30,42,0.15) 0%, rgba(212,85,58,0.1) 100%);
  border-color: var(--red);
  margin-left: 72px;
}
.layer--4 .layer__label { color: var(--red); font-size: 0.72rem; }
.layer--4 h3 { color: var(--white); font-size: 1.15rem; }
.layer--4 p  { color: var(--gray-200); }

/* ── Page Header ── */
.page-header {
  position: relative; overflow: hidden;
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--warm-gray) 0%, var(--white) 100%);
}
.page-header__eyebrow {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red); margin-bottom: 12px;
}
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}
.page-header__sub {
  font-size: 1.05rem; color: var(--gray-500);
  margin-top: 16px; max-width: 540px; line-height: 1.7;
}
.page-header__decor {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.page-header__circle {
  position: absolute; top: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-light) 0%, transparent 70%);
  border-radius: 50%; opacity: 0.4;
}

/* ── Sections ── */
.section { padding: 88px 0; }
.section--muted { background: var(--warm-gray); }
.section--dark { background: var(--gray-900); color: var(--white); }
.section--dark .section__eyebrow { color: var(--red-muted); }
.section--dark .section__title { color: var(--white); }
.section--dark .section__sub { color: var(--gray-400); }
.section--accent {
  background: var(--red); color: var(--white);
  position: relative; overflow: hidden;
}
.section--accent::before {
  content: ''; position: absolute;
  top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.section-header { margin-bottom: 48px; }

.section__eyebrow {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red); margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700; margin-bottom: 16px;
}
.section__sub {
  font-size: 1rem; color: var(--gray-500); max-width: 540px;
}
.section__body {
  font-size: 1.02rem; color: var(--gray-700);
  line-height: 1.75; margin-bottom: 20px;
}
.section__body:last-child { margin-bottom: 0; }

.body-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem; line-height: 1.75;
  color: var(--gray-700);
}
.body-lead strong { color: var(--gray-900); }

/* ── Grid ── */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ── Card V2 (Home services) ── */
.card-v2 {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card-v2::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); opacity: 0;
  transition: opacity var(--transition);
}
.card-v2:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.card-v2:hover::before { opacity: 1; }
.card-v2__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196, 30, 42, 0.12); color: var(--red);
  border-radius: 12px; margin-bottom: 20px;
}
.card-v2__num {
  font-family: var(--font-serif);
  font-size: 0.85rem; font-weight: 600;
  color: var(--gray-400); display: block; margin-bottom: 8px;
}
.card-v2__title {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px;
}
.card-v2__text {
  font-size: 0.9rem; color: var(--gray-400); line-height: 1.65;
  margin-bottom: 20px;
}
.card-v2__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--red);
  text-decoration: none; transition: all var(--transition);
}
.card-v2__link:hover { gap: 10px; color: var(--red-muted); }

/* ── Lens Cards (about) ── */
.lens-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.lens-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lens-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lens-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 14px; margin-bottom: 20px;
}
.lens-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px;
}
.lens-card__text {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.65;
}

/* ── Diff Grid (about) ── */
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.diff-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.diff-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.diff-item__icon {
  width: 44px; height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196, 30, 42, 0.15); color: var(--red);
  border-radius: 10px;
}
.diff-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem; margin-bottom: 6px;
}
.diff-item p {
  font-size: 0.88rem; color: var(--gray-400); line-height: 1.6;
}

/* ── Affiliations ── */
.affiliations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.affiliation {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
}
.affiliation:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.affiliation__icon {
  width: 44px; height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 10px;
}
.affiliation h3 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 4px; color: var(--gray-900);
}
.affiliation p {
  font-size: 0.88rem; color: var(--gray-500); line-height: 1.6;
}

/* ── Service Blocks ── */
.service-block { padding: 72px 0; }
.service-block__layout {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
}
.service-block__sidebar { text-align: center; }
.service-block__icon-wrap {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 16px; margin: 0 auto 12px;
}
.service-block__num {
  font-family: var(--font-serif);
  font-size: 0.85rem; font-weight: 600;
  color: var(--gray-400);
}
.service-block__title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 12px;
}
.service-block__intro {
  font-size: 1.05rem; color: var(--gray-500);
  margin-bottom: 32px; line-height: 1.7;
}
.service-block__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.service-col h3 {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); margin-bottom: 16px;
}
.service-list { list-style: none; padding: 0; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--gray-700);
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.service-list li:last-child { border-bottom: none; }
.service-list__dot {
  width: 6px; height: 6px; min-width: 6px;
  background: var(--red); border-radius: 50%;
}
.service-list--italic li { font-style: italic; color: var(--gray-500); }
.service-block__callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 24px;
  background: var(--warm-gray);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray-500);
}
.service-block__callout p {
  font-family: var(--font-serif);
  font-size: 1rem; font-style: italic;
  line-height: 1.65;
}

.divider-wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.divider { border: none; border-top: 1px solid var(--gray-200); }

/* ── Experience ── */
.experience-list { display: flex; flex-direction: column; gap: 0; }
.experience-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.experience-item:first-child { padding-top: 0; }
.experience-item:last-child { border-bottom: none; }
.experience-item__icon-wrap {
  width: 48px; height: 48px; min-width: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 12px;
  transition: all var(--transition);
}
.experience-item:hover .experience-item__icon-wrap {
  background: var(--red); color: var(--white);
}
.experience-item__content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 8px;
}
.experience-item__content p {
  font-size: 0.95rem; color: var(--gray-500); line-height: 1.65;
  margin-bottom: 12px;
}
.experience-item__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--warm-gray);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ── Founder Quote ── */
.founder-quote {
  position: relative;
  padding: 8px 0 8px 0;
  text-align: center;
}
.founder-quote__mark {
  display: block; margin: 0 auto 12px;
  color: var(--red);
}

/* ── About Hero ── */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--warm-gray) 0%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.about-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--gray-900); margin-bottom: 20px;
}
.about-hero__title em { font-style: italic; color: var(--red); }
.about-hero__sub {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 28px;
}
.about-hero__creds {
  display: flex; flex-direction: column; gap: 10px;
}
.about-hero__cred {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--gray-700);
}
.about-hero__cred svg { color: var(--red); flex-shrink: 0; }
.about-hero__img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Founders Spotlight ── */
.founders-spotlight {
  border-bottom: 1px solid var(--gray-200);
}
.founders-spotlight__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 40px;
}
.founder-profile {
  background: var(--warm-gray);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s ease;
}
.founder-profile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-muted);
}
.founder-profile__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.avatar--xl {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--white);
}
.avatar--1 { background: var(--red); }
.avatar--2 { background: var(--gray-800); }
.founder-profile__name {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 2px; line-height: 1.3;
}
.founder-profile__cred {
  font-size: 0.8rem; color: var(--red); font-weight: 600;
}
.founder-profile__role {
  font-size: 0.72rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 2px;
}
.founder-profile__bio {
  font-size: 0.9rem; color: var(--gray-500);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.founders-spotlight__text {
  max-width: 760px;
}

/* ── Pull Quote ── */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.3;
  text-align: center;
}

/* ── Tagline Band ── */
.tagline-band {
  display: flex; align-items: center; gap: 32px;
  justify-content: center;
}
.tagline-band__line {
  flex: 1; max-width: 80px; height: 2px;
  background: rgba(255,255,255,0.3); border-radius: 1px;
}

/* ── Stats Section ── */
.stats-section {
  padding: 72px 0;
  background: var(--gray-900);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: 'G';
  position: absolute; right: -40px; top: -60px;
  font-family: var(--font-serif); font-size: 320px; font-weight: 700;
  color: rgba(255,255,255,0.02); pointer-events: none;
  line-height: 1;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute; right: 0; top: 10%; height: 80%;
  width: 1px; background: rgba(255,255,255,0.08);
}
.stat-item:last-child::after { display: none; }
.stat__number {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--white); display: block; line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.85rem; color: var(--gray-400);
  display: block; line-height: 1.4;
}
.stat__bar {
  width: 32px; height: 3px;
  background: var(--red); border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Angled Divider ── */
.angle-divider {
  position: relative; height: 60px; margin-top: -60px;
  z-index: 2; pointer-events: none;
}
.angle-divider svg { display: block; width: 100%; height: 100%; }

/* ── Network Dots Motif ── */
.network-dots {
  position: absolute; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1.5' fill='%23C41E2A' opacity='0.08'/%3E%3Ccircle cx='10' cy='10' r='1' fill='%23C41E2A' opacity='0.06'/%3E%3Ccircle cx='90' cy='20' r='1' fill='%23C41E2A' opacity='0.06'/%3E%3Cline x1='10' y1='10' x2='50' y2='50' stroke='%23C41E2A' stroke-opacity='0.03' stroke-width='0.5'/%3E%3Cline x1='90' y1='20' x2='50' y2='50' stroke='%23C41E2A' stroke-opacity='0.03' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 1;
}

/* ── Accent Section Watermark ── */
.section--accent {
  position: relative; overflow: hidden;
}
.section--accent::before {
  content: 'G';
  position: absolute; right: -30px; bottom: -50px;
  font-family: var(--font-serif); font-size: 280px; font-weight: 700;
  color: rgba(255,255,255,0.06); pointer-events: none;
  line-height: 1;
}
.section--accent::after {
  content: '';
  position: absolute; top: -50%; left: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* ── Left-border accent cards ── */
.accent-border-card {
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin-bottom: 24px;
}
.accent-border-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 6px;
}
.accent-border-card p {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.65;
}

/* ── Methodology Timeline ── */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline-step {
  position: relative;
  padding-bottom: 36px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step__dot {
  position: absolute; left: -33px; top: 4px;
  width: 18px; height: 18px;
  background: var(--white); border: 3px solid var(--red);
  border-radius: 50%; z-index: 1;
}
.timeline-step__dot::after {
  content: '';
  position: absolute; inset: 3px;
  background: var(--red); border-radius: 50%;
  opacity: 0; transition: opacity var(--transition);
}
.timeline-step:hover .timeline-step__dot::after { opacity: 1; }
.timeline-step h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 6px;
}
.timeline-step p {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.65;
}

/* ── Contact ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-features { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--gray-700);
}
.contact-feature svg { color: var(--red); flex-shrink: 0; }
.contact-form-wrap {
  background: var(--warm-gray);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.92rem;
  transition: all var(--transition);
  background: var(--white);
  color: var(--gray-900);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.08);
}
.form-group textarea { resize: vertical; }

/* ── Footer ── */
.footer {
  background: var(--gray-900); color: var(--gray-400);
  padding: 56px 0 0;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .nav__logo { font-size: 1.1rem; color: var(--white); }
.footer__tagline {
  font-size: 0.85rem; color: var(--gray-500);
  margin-top: 10px; font-style: italic;
  font-family: var(--font-serif);
}
.footer__nav { display: flex; gap: 56px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-500); margin-bottom: 4px;
}
.footer__col a {
  color: var(--gray-400); text-decoration: none; font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding: 24px 0;
  font-size: 0.8rem; color: var(--gray-500);
}

/* ── Positioning (home) ── */
.positioning {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.positioning__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 14px; margin: 0 auto 20px;
}
.positioning .section__title { text-align: center; }
.positioning .section__body { text-align: center; color: var(--gray-500); font-size: 1.05rem; }

/* ── Hero Image Stack ── */
.hero__image-stack {
  position: relative;
}
.hero__img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero__img--main {
  width: 100%; height: 400px;
  border: 4px solid var(--white);
}
.hero__img--float {
  position: absolute; bottom: -24px; left: -32px;
  width: 200px; height: 140px;
  border: 4px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ── Photo Page Header ── */
.page-header--photo {
  position: relative; overflow: hidden;
  padding: 0; min-height: 320px;
  display: flex; align-items: flex-end;
  background: var(--gray-900);
}
.page-header--photo .container {
  position: relative; z-index: 2;
  padding-top: 140px; padding-bottom: 48px;
}
.page-header--photo .page-header__eyebrow { color: var(--red-muted); }
.page-header--photo .page-header__title { color: var(--white); }
.page-header--photo .page-header__sub { color: var(--gray-300); }
.page-header__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.35;
}
.page-header__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(17,24,39,0.3) 0%, rgba(17,24,39,0.85) 100%);
}

/* ── Founders Band (home) ── */
.founders-band {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 48px; align-items: center;
}
.founders-band__img {
  width: 100%; height: 280px;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.founders-band__text { position: relative; }

/* ── Positioning Split (home) ── */
.positioning-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.positioning-split__text .positioning__icon { margin: 0 0 20px; }
.positioning-split__text .section__title { text-align: left; }
.positioning-split__text .section__body { text-align: left; }
.positioning-split__img {
  width: 100%; height: 320px;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ── Photo Band ── */
.photo-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.photo-band img {
  width: 100%; height: 220px;
  object-fit: cover;
  vertical-align: middle;
  transition: all 0.4s ease;
}
.photo-band img:hover {
  opacity: 0.85;
}

/* ── Card V2 with Image ── */
.card-v2__img {
  width: 100%; height: 160px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -32px -32px 0;
  width: calc(100% + 64px);
}
.card-v2__body { padding-top: 24px; }

/* ── Lens Card with Image ── */
.lens-card__img {
  width: calc(100% + 64px); height: 180px;
  object-fit: cover;
  margin: -32px -32px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lens-card__body { padding-top: 20px; }

/* ── Service Block Photo ── */
.service-block__photo {
  width: 100%; height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

/* ── Experience Item Photo ── */
.experience-item__img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

/* ── Contact Info Image ── */
.contact-info__img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 20px 0 12px;
  box-shadow: var(--shadow-sm);
}

/* ── Silo Hero Image ── */
.silo-hero__img {
  width: 100%; height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}

/* ── Full-Width Carousel ── */
.carousel-section {
  padding: 80px 0 100px;
  overflow: hidden;
}
.carousel-header {
  margin-bottom: 40px;
}
.carousel-header .container {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.carousel-header__text { flex: 1; }
.carousel-header .section__title { margin-bottom: 0; }
.carousel-nav {
  display: flex; align-items: center; gap: 12px;
}
.carousel-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: 50%; cursor: pointer;
  transition: all 0.25s ease;
}
.carousel-btn:hover {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}
.carousel-btn:active { transform: scale(0.92); }
.carousel-counter {
  font-family: var(--font-serif);
  font-size: 0.9rem; color: var(--gray-400);
  min-width: 40px; text-align: center;
}
.carousel-counter span { color: var(--gray-900); font-weight: 600; }

/* Track — bleeds right */
.carousel-track-wrap {
  position: relative;
  /* Left-align with container, bleed right */
  padding-left: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
}
.carousel-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 48px;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.grabbing { cursor: grabbing; scroll-snap-type: none; }

/* Cards */
.carousel-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: var(--gray-900);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  border-color: var(--red);
}
.carousel-card__img-wrap {
  position: relative; overflow: hidden;
  height: 220px;
}
.carousel-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel-card:hover .carousel-card__img-wrap img {
  transform: scale(1.06);
}
.carousel-card__num {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--red) 0%, #D4553A 100%);
  color: var(--white);
  font-family: var(--font-serif); font-size: 0.82rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
}
.carousel-card__body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}
.carousel-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 10px; margin-bottom: 14px;
}
.carousel-card h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.carousel-card p {
  font-size: 0.88rem; color: var(--gray-500);
  line-height: 1.6; flex: 1; margin-bottom: 18px;
}
.carousel-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--red);
  transition: gap 0.3s ease;
}
.carousel-card:hover .carousel-card__cta { gap: 12px; }

@media (max-width: 640px) {
  .carousel-card { flex: 0 0 300px; }
  .carousel-card__img-wrap { height: 180px; }
  .carousel-header .container { flex-direction: column; align-items: flex-start; }
}

/* ── Service Selection Hub (fallback grid) ── */
.services-hub {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-select-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: var(--gray-900);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-select-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-color: var(--red);
}
.service-select-card__img-wrap {
  position: relative; overflow: hidden;
  height: 200px;
}
.service-select-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-select-card:hover .service-select-card__img-wrap img {
  transform: scale(1.05);
}
.service-select-card__num {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: var(--white);
  font-family: var(--font-serif); font-size: 0.82rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.service-select-card__body {
  padding: 28px;
  display: flex; flex-direction: column; flex: 1;
}
.service-select-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 10px; margin-bottom: 16px;
}
.service-select-card h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3;
}
.service-select-card p {
  font-size: 0.9rem; color: var(--gray-500);
  line-height: 1.65; flex: 1; margin-bottom: 20px;
}
.service-select-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--red);
  transition: gap 0.3s ease;
}
.service-select-card:hover .service-select-card__cta { gap: 12px; }

/* ── Individual Service Page ── */
.silo-breadcrumbs--inline {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; margin-bottom: 16px;
  position: relative; z-index: 2;
}
.silo-breadcrumbs--inline a {
  color: var(--gray-400); text-decoration: none;
  transition: color var(--transition);
}
.silo-breadcrumbs--inline a:hover { color: var(--white); }
.silo-breadcrumbs--inline span { color: var(--white); font-weight: 500; }
.silo-breadcrumbs--inline svg { color: var(--gray-500); }

.service-detail-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 56px; align-items: start;
}
.service-detail-layout__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red);
  border-radius: 14px; margin-bottom: 20px;
}
.svc-detail-checklist {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px;
}
.svc-detail-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--gray-700);
  padding: 14px 18px;
  background: var(--warm-gray);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.svc-detail-check svg { color: var(--red); flex-shrink: 0; }
.svc-uncover-list { margin-top: 16px; }

.service-detail-layout__img {
  width: 100%; height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.service-detail-cta-card {
  background: var(--gray-900); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.service-detail-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 8px;
}
.service-detail-cta-card p {
  font-size: 0.88rem; color: var(--gray-400);
  line-height: 1.6; margin-bottom: 20px;
}

.other-services-grid {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}
.other-service-link {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none; color: var(--gray-900);
  transition: all var(--transition);
}
.other-service-link:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.other-service-link__num {
  font-family: var(--font-serif);
  font-size: 0.85rem; font-weight: 700;
  color: var(--red);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light);
  border-radius: 8px; flex-shrink: 0;
}
.other-service-link__name {
  font-family: var(--font-serif);
  font-weight: 600; font-size: 1rem;
  flex: 1;
}
.other-service-link svg {
  color: var(--gray-300);
  transition: all var(--transition);
}
.other-service-link:hover svg { color: var(--red); transform: translateX(3px); }

.cta-center { text-align: center; }
.cta-center .pull-quote { margin-bottom: 32px; }

/* ── Trusted Logos ── */
.trusted-section { padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.trusted-section__label {
  text-align: center; font-size: 0.78rem; font-weight: 500;
  color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 28px;
}
.trusted-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trusted-logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-400);
  font-family: var(--font-serif);
  font-size: 0.92rem; font-weight: 600;
  transition: color 0.3s ease;
}
.trusted-logo:hover { color: var(--gray-700); }
.trusted-logo svg { opacity: 0.5; }

/* ── ASEAN Coverage ── */
.asean-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.asean-countries {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-content: start;
}
.asean-pill {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.25s ease;
}
.asean-pill:hover {
  border-color: var(--red); color: var(--red);
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,30,42,0.1);
}
.asean-pill--active {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}
.asean-pill--active:hover {
  background: var(--red-dark); color: var(--white);
  border-color: var(--red-dark);
}

/* ── Testimonial ── */
.testimonial {
  text-align: center;
  padding: 20px 0;
}
.testimonial__mark {
  display: block; margin: 0 auto 16px;
  color: var(--red); opacity: 0.15;
}
.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic; font-weight: 400;
  color: var(--gray-700); line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.testimonial__author strong {
  display: block; font-size: 0.9rem; color: var(--gray-900);
}
.testimonial__author span {
  font-size: 0.82rem; color: var(--gray-400);
}

/* ── Methodology Layout ── */
.methodology-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.methodology-img {
  width: 100%; height: 240px;
  object-fit: cover; border-radius: var(--radius-lg);
  margin-top: 24px; box-shadow: var(--shadow-md);
}

/* ── FAQ ── */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0;
  cursor: pointer; list-style: none;
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0; color: var(--gray-400);
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}
.faq-answer {
  padding: 0 0 24px;
}
.faq-answer p {
  font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.75; max-width: 600px;
}

/* ── Services Hero ── */
.services-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 64px;
  background: linear-gradient(180deg, var(--warm-gray) 0%, var(--white) 100%);
}
.services-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.services-hero__content { max-width: 640px; }
.services-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--gray-900); margin-bottom: 20px;
}
.services-hero__title em { font-style: italic; color: var(--red); }
.services-hero__sub {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 540px;
}
.services-hero__meta {
  display: flex; flex-direction: column; gap: 12px;
}
.services-hero__stat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--gray-700);
}
.services-hero__stat svg { color: var(--red); flex-shrink: 0; }
.services-hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
}
.services-hero__img {
  width: 100%; height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.section--services-grid { padding-top: 48px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .founders-band { grid-template-columns: 1fr; gap: 32px; }
  .founders-band__img { height: 240px; }
  .positioning-split { grid-template-columns: 1fr; gap: 32px; }
  .positioning-split__img { height: 260px; }
  .methodology-layout { grid-template-columns: 1fr; gap: 32px; }
  .asean-layout { grid-template-columns: 1fr; gap: 24px; }
  .trusted-logos { gap: 24px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__mosaic { grid-template-columns: repeat(3, 1fr); }
  .services-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .services-hero__img { height: 300px; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero__img { height: 300px; }
  .about-hero { padding: 110px 0 60px; }
  .founders-spotlight__grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .grid--3 { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .affiliations { grid-template-columns: 1fr; }
  .service-block__layout { grid-template-columns: 1fr; gap: 16px; }
  .service-block__sidebar {
    display: flex; align-items: center; gap: 12px;
    flex-direction: row;
  }
  .service-block__icon-wrap { margin: 0; }
  .service-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .services-hub { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links {
    position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
    background: var(--white); flex-direction: column;
    padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }

  .services-hero { padding: 110px 0 48px; }
  .services-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .services-hero__img { height: 280px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero__img--float { display: none; }
  .hero__img--main { height: 280px; }
  .photo-band { grid-template-columns: repeat(2, 1fr); }
  .photo-band img { height: 180px; }
  .page-header { padding: 110px 0 40px; }
  .page-header--photo { min-height: 240px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(2)::after { display: none; }
  .timeline { padding-left: 36px; }

  .section { padding: 64px 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .service-block__cols { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__nav { gap: 40px; }

  .founder-cards { flex-direction: column; }
  .layer--2 .layer__content { margin-left: 12px; }
  .layer--3 .layer__content { margin-left: 24px; }
  .layer--4 .layer__content { margin-left: 36px; }
  .layer__content { padding: 16px 20px; }
  .services-hub { grid-template-columns: 1fr; }
}
