/* ============================================================
   MARTELL VENTURES — styles.css
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --navy-light:  #334155;
  --violet:      #6D28D9;
  --violet-lt:   #7C3AED;
  --violet-pale: #EDE9FE;
  --amber:       #D97706;
  --amber-lt:    #F59E0B;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-lt:     #F1F5F9;
  --text:        #1E293B;
  --text-muted:  #64748B;
  --text-light:  #E2E8F0;
  --text-xlight: #94A3B8;
  --border:      #E2E8F0;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --max-w:    1200px;
  --nav-h:    68px;
  --radius:   8px;
  --radius-lg:12px;
  --shadow:   0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg:0 4px 6px rgba(0,0,0,0.07), 0 12px 32px rgba(0,0,0,0.12);

  --section-y:    96px;
  --section-y-sm: 64px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: inherit;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem);  font-weight: 600; }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-sans); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
}
.section-label--light { color: rgba(237,233,254,0.75); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section     { padding: var(--section-y) 0; }
.section--sm { padding: var(--section-y-sm) 0; }

.section--dark {
  background: var(--navy);
  color: var(--text-light);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .lead { color: var(--text-xlight); }

.section--gray   { background: var(--gray-lt); }
.section--white  { background: var(--white); }

.section--violet {
  background: var(--violet);
  color: var(--white);
}
.section--violet h2 { color: var(--white); }

.text-center { text-align: center; }

.section-header        { margin-bottom: 3rem; }
.section-header h2     { margin-top: 0.25rem; }
.section-header .lead  { margin-top: 1rem; max-width: 600px; }

.divider {
  width: 48px; height: 3px;
  background: var(--violet);
  border-radius: 2px;
  margin: 1.25rem 0;
}
.divider--amber { background: var(--amber); }
.divider--center { margin: 1.25rem auto; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* CSS-only hamburger toggle */
.nav-toggle-cb { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-xlight);
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.btn-nav {
  background: var(--violet) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.18s !important;
}
.btn-nav:hover { background: var(--violet-lt) !important; color: var(--white) !important; }

/* Mobile nav */
@media (max-width: 767px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    height: calc(100vh - var(--nav-h));
    background: #0F172A;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    overflow-y: auto;
    padding: 2rem 0;
  }
  .nav-links a { font-size: 1.25rem; color: var(--text-light); }
  .btn-nav { font-size: 1rem !important; padding: 0.75rem 2rem !important; }

  .nav-toggle-cb:checked ~ .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-cb:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle-cb:checked ~ .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.875rem 1.875rem;
  cursor: pointer;
  transition: all 0.18s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary  { background: var(--violet); color: var(--white); }
.btn-primary:hover { background: var(--violet-lt); }

.btn-outline  {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.btn-white    { background: var(--white); color: var(--violet); }
.btn-white:hover { background: var(--off-white); }

.btn-amber    { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: var(--amber-lt); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero--inner {
  min-height: 0;
  padding: 72px 0 72px;
  align-items: flex-start;
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Ambient violet glow */
.hero::after {
  content: '';
  position: absolute;
  top: -15%; left: -8%;
  width: 55%; height: 85%;
  background: radial-gradient(ellipse, rgba(109,40,217,0.18) 0%, transparent 68%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,233,254,0.7);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.875rem;
  border: 1px solid rgba(109,40,217,0.5);
  border-radius: 100px;
  background: rgba(109,40,217,0.12);
}

.hero h1 { color: var(--white); margin-bottom: 1.5rem; }

.hero .lead {
  color: var(--text-xlight);
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Inner page hero */
.hero--inner h1 { font-size: clamp(1.875rem, 4vw, 3rem); }
.hero--inner .lead { margin-bottom: 0; }

/* Logo / client bar */
.logo-bar {
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.logo-bar-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-xlight);
  margin-bottom: 1.25rem;
}
.logo-bar-clients {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.logo-bar-clients span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.logo-bar-clients span:hover { color: rgba(255,255,255,0.55); }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Service Cards (home + services pages) ───────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px; height: 44px;
  color: var(--violet);
  margin-bottom: 1.25rem;
}

.service-card h3 { color: var(--navy); margin-bottom: 0.625rem; font-size: 1.25rem; }
.service-card p  { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 0; }

/* ── Project Cards (home) ────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.875rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.project-card:hover { box-shadow: var(--shadow-lg); }

.project-card .badge { margin-bottom: 0.875rem; }
.project-card h3 {
  color: var(--navy);
  font-size: 1.1875rem;
  margin-bottom: 0.625rem;
}
.project-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 0;
}

/* ── Work Cards (work page) ──────────────────────────────────── */
.work-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 3rem;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--violet);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.work-card:hover { box-shadow: var(--shadow-lg); }

.work-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.work-card h3 { color: var(--navy); font-size: 1.5rem; }

.work-headline {
  font-weight: 600;
  color: var(--amber);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.work-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── Badges & Tags ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--violet-pale);
  color: var(--violet);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.tag {
  background: var(--gray-lt);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
}

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  text-align: center;
}
.cta-band h2     { margin-bottom: 1rem; }
.cta-band p {
  font-size: 1.0625rem;
  opacity: 0.87;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Team Cards ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid var(--violet-pale);
}
.team-avatar span {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--violet-pale);
}

.team-card h3    { color: var(--navy); font-size: 1.375rem; }
.team-card .team-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.3rem 0 1rem;
  font-family: var(--font-sans);
}
.team-card p     { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.75; }
.team-areas      { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }

/* ── Philosophy ──────────────────────────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.philosophy-icon {
  width: 40px; height: 40px;
  color: var(--violet-pale);
  opacity: 0.65;
  margin-bottom: 1.125rem;
}
.philosophy-item h3  { color: var(--white); font-size: 1.25rem; margin-bottom: 0.625rem; }
.philosophy-item p   { color: var(--text-xlight); font-size: 0.9375rem; }

/* ── Expertise Grid ──────────────────────────────────────────── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.expertise-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.expertise-icon { width: 32px; height: 32px; color: var(--violet); flex-shrink: 0; }
.expertise-item span { font-weight: 500; font-size: 0.9375rem; color: var(--navy); }

/* ── Process Steps ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}
.process-step { counter-increment: step; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--violet);
  opacity: 0.35;
  display: block;
  margin-bottom: 0.625rem;
  line-height: 1;
}
.process-step h4 { color: var(--navy); margin-bottom: 0.375rem; }
.process-step p  { color: var(--text-muted); font-size: 0.9375rem; margin: 0; }

/* ── Service Detail Sections (services page) ─────────────────── */
.service-detail { padding: var(--section-y) 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 4rem;
  align-items: start;
}

.service-detail h2    { margin-bottom: 1.25rem; }
.service-detail p     { color: var(--text-muted); font-size: 1rem; line-height: 1.85; }

.service-includes h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.service-includes ul { }
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-includes li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  background: var(--violet);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.1);
}
.form-group textarea { resize: vertical; min-height: 144px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-xlight); }

.contact-details { padding-top: 0.5rem; }
.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.875rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--violet-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--violet);
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text .clabel {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-detail-text .cvalue { font-size: 0.9375rem; color: var(--text); font-weight: 500; }
.contact-detail-text a { color: var(--violet); }
.contact-detail-text a:hover { text-decoration: underline; }
.contact-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  line-height: 1.6;
}

.social-links { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px;
  background: var(--gray-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.18s, color 0.18s;
}
.social-link:hover { background: var(--navy); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

/* Social links hidden — wire up accounts before re-enabling */
.footer-social,
.social-links { display: none; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.375rem;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-xlight);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-xlight);
  transition: background 0.18s, color 0.18s;
}
.footer-social a:hover { background: rgba(255,255,255,0.13); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  font-size: 0.9375rem;
  color: var(--text-xlight);
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.9375rem;
  color: var(--text-xlight);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-col a { color: var(--text-xlight); transition: color 0.18s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-xlight);
  margin: 0;
}

/* ── "Who We Are" home strip ─────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.who-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.who-text p  { color: var(--text-xlight); margin-bottom: 1.25rem; }
.who-text a  { color: var(--violet-pale); font-weight: 600; }
.who-text a:hover { text-decoration: underline; }

.who-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.who-stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.who-stat-label {
  font-size: 0.875rem;
  color: var(--text-xlight);
  margin-top: 0.25rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .projects-grid    { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .expertise-grid   { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .who-grid         { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 767px) {
  :root {
    --section-y:    64px;
    --section-y-sm: 48px;
  }

  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .projects-grid    { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .expertise-grid   { grid-template-columns: 1fr 1fr; }
  .process-grid     { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .hero-btns        { flex-direction: column; align-items: flex-start; }
  .logo-bar-clients { gap: 1.5rem; }
  .work-card        { padding: 1.75rem; }
  .work-card-header { flex-direction: column; }
  .who-stats        { grid-template-columns: 1fr 1fr; }
}
