/* ═══════════════════════════════════════════════════════
   MLB SOURCING — STYLES
   Shared across all pages
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. VARIABLES & RESET
────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream: #FAF7F2;
  --cream-2: #F2EDE4;
  --cream-3: #E8DFD0;
  --maroon: #5C1B14;
  --maroon-dark: #3D1009;
  --ink: #1A1714;
  --muted: #6F6258;
  --rule: #D9D1C4;
  --white: #FFFFFF;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --gutter: 64px;
  --max: 1440px;
  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

/* Scroll snap only on homepage. Body gets a class .home to enable */
body.home {
  scroll-snap-type: y proximity;
  height: 100vh;
  overflow-y: scroll;
  scroll-padding-top: var(--header-h);
}
body.home .snap-section {
  scroll-snap-align: start;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─────────────────────────────────────────────
   2. UTILITIES
────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--maroon);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 0.5px;
  background: var(--maroon);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 800px;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--maroon); font-weight: 500; }

.section-lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 640px;
  font-style: italic;
  margin-bottom: 48px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--maroon);
  color: var(--cream);
  padding: 16px 30px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cta-primary:hover { background: var(--maroon-dark); transform: translateX(2px); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cta-secondary:hover { color: var(--maroon); border-bottom-color: var(--maroon); }

.link-arrow {
  display: inline-block;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { color: var(--maroon); border-bottom-color: var(--maroon); }
.link-arrow::after {
  content: ' →';
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after { transform: translateX(4px); }
/* Hide any legacy inline arrow icons inside .link-arrow */
.link-arrow > i.ti { display: none; }

/* ─────────────────────────────────────────────
   3. IMAGE PLACEHOLDERS
────────────────────────────────────────────── */
.img-placeholder {
  background: var(--maroon);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 0.5px solid rgba(250, 247, 242, 0.25);
  pointer-events: none;
}
.img-placeholder .ti { font-size: 28px; opacity: 0.6; }
.img-placeholder .label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}
.img-placeholder .descriptor {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
  max-width: 75%;
  text-align: center;
  line-height: 1.4;
}
.img-placeholder.wide { aspect-ratio: 16 / 9; }
.img-placeholder.tall { aspect-ratio: 3 / 4; }
.img-placeholder.square { aspect-ratio: 1 / 1; }
.img-placeholder.banner { aspect-ratio: 21 / 9; }

/* ─────────────────────────────────────────────
   IMG-REAL — wraps real <img> with same dimensions as img-placeholder
────────────────────────────────────────────── */
.img-real {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
}
.img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Strong unification: lower saturation + warm sepia cast + slight contrast lift */
  filter: saturate(0.72) contrast(1.02) brightness(0.97) sepia(0.06);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
/* Warm tint overlay — bonds disparate images to the cream/maroon palette */
.img-real::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(26, 23, 20, 0.15) 100%),
    linear-gradient(135deg, rgba(92, 27, 20, 0.07) 0%, rgba(250, 247, 242, 0) 50%, rgba(92, 27, 20, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.img-real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.03);
  pointer-events: none;
  z-index: 1;
}
.img-real:hover img {
  filter: saturate(0.92) contrast(1) brightness(1) sepia(0);
}
/* Portraits stay slightly warmer and less heavy-handed */
.img-real.portrait img {
  filter: saturate(0.82) contrast(1) brightness(0.99) sepia(0.04);
}
.img-real.portrait::before {
  background: linear-gradient(135deg, rgba(92, 27, 20, 0.03) 0%, rgba(250, 247, 242, 0) 60%);
}
/* India map sits on cream — keep it crisp, minimal overlay */
.img-real.crisp img {
  filter: saturate(0.92) contrast(1);
}
.img-real.crisp::before {
  background: none;
}

/* Editorial text overlay for images that should carry a message */
.img-with-text {
  position: relative;
}
.img-with-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.55) 0%, rgba(26, 23, 20, 0.1) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.img-with-text .img-text {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  color: var(--cream);
  z-index: 3;
  pointer-events: none;
}
.img-with-text .img-text-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 500;
}
.img-with-text .img-text-label::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--cream);
  opacity: 0.6;
}
.img-with-text .img-text-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 480px;
  margin: 0;
}
.img-with-text .img-text-quote em {
  font-style: italic;
  opacity: 0.85;
}
.img-real.wide { aspect-ratio: 16 / 9; }
.img-real.tall { aspect-ratio: 3/4; }
.img-real.square { aspect-ratio: 1 / 1; }
.img-real.banner { aspect-ratio: 21 / 9; }


/* Background image placeholder — sits behind content */
.section-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  pointer-events: none;
  overflow: hidden;
}
.section-bg-img::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 0.5px dashed rgba(92, 27, 20, 0.18);
  pointer-events: none;
}
.section-bg-img .bg-label {
  position: relative;
  background: rgba(92, 27, 20, 0.85);
  color: var(--cream);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─────────────────────────────────────────────
   4. HEADER (shared)
────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--rule); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wordmark-lockup { display: flex; flex-direction: column; gap: 4px; line-height: 1; flex-shrink: 0; }
.wordmark {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--maroon);
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark-tag {
  font-size: 8px;
  letter-spacing: 0.155em;
  color: var(--muted);
  border-top: 0.5px solid var(--maroon);
  padding-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--maroon); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.hamburger { display: none; font-size: 24px; color: var(--ink); }

/* ─────────────────────────────────────────────
   5. HOMEPAGE — SNAP SECTIONS
────────────────────────────────────────────── */
.snap-section {
  min-height: 100vh;
  padding: var(--header-h) var(--gutter) 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.snap-section.tight { padding-top: calc(var(--header-h) + 40px); }
.snap-section > .container { width: 100%; }

/* ─── Hero ─── */
.hero {
  padding-top: calc(var(--header-h) + 80px);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--maroon);
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.018em;
  max-width: 1000px;
  margin-bottom: 36px;
  color: var(--ink);
  animation: fadeUp 1s var(--ease) 0.25s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
  font-style: italic;
  animation: fadeUp 1s var(--ease) 0.4s both;
}
.hero-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 1s var(--ease) 0.55s both;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 32px;
  border-top: 0.5px solid var(--rule);
  animation: fadeUp 1s var(--ease) 0.8s both;
}
.hero-meta .stats { display: flex; gap: 48px; }
.scroll-cue { display: flex; align-items: center; gap: 10px; }
.scroll-cue .line { width: 36px; height: 0.5px; background: var(--muted); }

/* Big MLB watermark — bleeds off the bottom of hero */
.hero-mlb-stamp {
  position: absolute;
  bottom: -28%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: clamp(500px, 60vw, 900px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--maroon);
  opacity: 0.04;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Manifesto strip ─── */
.manifesto { background: var(--cream-2); text-align: center; }
.manifesto .container { max-width: 980px; }
.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.manifesto h2 em { font-style: italic; color: var(--maroon); font-weight: 500; }
.manifesto p {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Why buyers (3 col + bg image) ─── */
.why-buyers .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 0.5px solid var(--rule);
}
.why-card {
  padding: 56px 40px 0 0;
  border-right: 0.5px solid var(--rule);
  position: relative;
}
.why-card:last-child { border-right: none; padding-right: 0; }
.why-card:nth-child(2) { padding-left: 40px; }
.why-card:nth-child(3) { padding-left: 40px; }
.why-num {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--maroon);
  margin-bottom: 32px;
  display: block;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── About teaser (2 col) ─── */
.about-teaser .container { width: 100%; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 480px;
}
.about-text .link-arrow { margin-top: 24px; }
.about-image .img-placeholder { aspect-ratio: 4 / 5; max-height: 70vh; }

/* ─── Capabilities teaser (3 featured tiles) ─── */
.cap-teaser { background: var(--cream-2); }
.cap-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.cap-tile { cursor: pointer; transition: transform 0.4s var(--ease); }
.cap-tile:hover { transform: translateY(-6px); }
.cap-tile .img-placeholder { aspect-ratio: 4 / 5; max-height: 50vh; }
.cap-tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--rule);
}
.cap-tile h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cap-tile-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
}
.cap-tile p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── Programs teaser (1 featured) ─── */
.programs-teaser .container { width: 100%; }
.programs-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 24px;
}
.programs-feature .img-placeholder { aspect-ratio: 4 / 5; max-height: 65vh; }
.programs-feature .feat-category {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.programs-feature .feat-category .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--maroon);
  letter-spacing: 0;
  text-transform: none;
}
.programs-feature h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.programs-feature p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.feat-meta {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 0.5px solid var(--rule);
}
.feat-meta div { display: flex; flex-direction: column; gap: 4px; }
.feat-meta .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}
.feat-meta .l {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── India teaser ─── */
.india-teaser { background: var(--maroon); color: var(--cream); }
.india-teaser .section-eyebrow { color: var(--cream); opacity: 0.8; }
.india-teaser .section-eyebrow::before { background: var(--cream); opacity: 0.5; }
.india-teaser .section-title { color: var(--cream); }
.india-teaser .section-title em { color: var(--cream); opacity: 0.85; }
.india-teaser .section-lede { color: var(--cream); opacity: 0.75; }
.india-teaser .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.india-teaser p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.india-teaser .link-arrow {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.india-teaser .link-arrow:hover { color: rgba(250, 247, 242, 0.6); border-bottom-color: rgba(250, 247, 242, 0.6); }
.india-teaser .img-placeholder {
  background: var(--maroon-dark);
  aspect-ratio: 4 / 5;
  max-height: 65vh;
}
.india-teaser .img-placeholder .label,
.india-teaser .img-placeholder .descriptor { color: var(--cream); }

/* ─── Contact CTA ─── */
.contact-cta { background: var(--cream); text-align: center; }
.contact-cta .container { max-width: 900px; }
.contact-cta h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin-bottom: 32px;
}
.contact-cta h2 em { font-style: italic; color: var(--maroon); font-weight: 500; }
.contact-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 56px;
}
.contact-cta .ctas { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   6. INNER PAGES — shared treatments
────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 80px) var(--gutter) 100px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.018em;
  max-width: 1000px;
  margin-bottom: 36px;
}
.page-hero h1 em { font-style: italic; color: var(--maroon); font-weight: 500; }
.page-hero .lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 720px;
  font-style: italic;
}

.page-section {
  padding: 100px var(--gutter);
  position: relative;
}
.page-section.alt { background: var(--cream-2); }
.page-section.dark { background: var(--maroon); color: var(--cream); }
.page-section.dark .section-eyebrow { color: var(--cream); opacity: 0.8; }
.page-section.dark .section-eyebrow::before { background: var(--cream); opacity: 0.5; }
.page-section.dark .section-title { color: var(--cream); }
.page-section.dark .section-title em { color: var(--cream); opacity: 0.85; }

.page-section .container { max-width: var(--max); margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.two-col.text-img { grid-template-columns: 1fr 1.1fr; align-items: center; }
.two-col.text-img-wide { grid-template-columns: 1fr 1.3fr; }
.two-col p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
}
.dark .two-col p { color: var(--cream); opacity: 0.85; }

/* About page leadership cards */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.leadership-grid .img-real.square {
  max-width: 240px;
  margin: 0;
}
.leader-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.leader-card .img-placeholder { aspect-ratio: 1 / 1; max-width: 280px; }
.leader-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.leader-card .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  margin-top: -16px;
}
.leader-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Process steps */
.process-list {
  list-style: none;
  border-top: 0.5px solid var(--rule);
  margin-top: 48px;
}
.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: baseline;
}
.process-list .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--maroon);
}
.process-list .step-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.process-list .step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Capabilities full grid */
.cap-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 32px;
}

/* Programs list (full page) */
.program-list {
  border-top: 0.5px solid var(--rule);
  margin-top: 32px;
}
.program-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr 180px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
  cursor: pointer;
}
.program-row:hover { padding-left: 16px; padding-right: 16px; background: var(--cream-2); }
.program-row:hover .title { font-weight: 600; color: var(--maroon); }
.program-row:hover .desc { color: var(--ink); }
.program-row:hover .meta .scale { font-weight: 600; }
.program-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--maroon);
}
.program-row .category {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 8px;
  line-height: 1.6;
}
.program-row .title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.program-row .desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
}
.program-row .meta { text-align: right; padding-top: 12px; }
.program-row .meta .scale {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.program-row .meta .scale-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* India page bullets */
.india-points {
  list-style: none;
  margin-top: 36px;
  border-top: 0.5px solid rgba(250, 247, 242, 0.25);
}
.dark .india-points { border-top-color: rgba(250, 247, 242, 0.25); }
.india-points li {
  padding: 22px 0;
  border-bottom: 0.5px solid rgba(250, 247, 242, 0.18);
  display: flex;
  gap: 24px;
  align-items: baseline;
  font-size: 16px;
  color: var(--cream);
  opacity: 0.9;
}
.india-points .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  opacity: 0.6;
  font-size: 18px;
  min-width: 32px;
}

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  margin-top: 32px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}
.testimonial blockquote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -12px;
  font-size: 60px;
  color: var(--maroon);
  line-height: 1;
  font-family: var(--serif);
}
.testimonial cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: block;
  padding-left: 20px;
}
.testimonial cite strong { color: var(--ink); font-weight: 500; }

/* Mills logo grid */
.mills-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--rule);
  border-left: 0.5px solid var(--rule);
  margin-top: 32px;
}
.mill-cell {
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.mill-cell span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info { border-top: 0.5px solid var(--rule); padding-top: 32px; margin-top: 32px; }
.contact-info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 14px 0;
  font-size: 14px;
}
.contact-info-row .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-info-row .value { color: var(--ink); line-height: 1.6; }

.contact-form {
  background: var(--cream-2);
  padding: 48px;
  border: 0.5px solid var(--rule);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 0.5px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maroon);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.form-row .form-group { margin-bottom: 0; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.form-submit {
  background: var(--maroon);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s var(--ease);
}
.form-submit:hover { background: var(--maroon-dark); }
.form-divider {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.form-whatsapp:hover { color: #25D366; border-bottom-color: #25D366; }

/* ─────────────────────────────────────────────
   7. FOOTER (editorial centered)
────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px var(--gutter) 32px;
  text-align: center;
}
.foot-inner {
  max-width: 800px;
  margin: 0 auto;
}
.foot-brand {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.foot-brand .wordmark { color: var(--cream); }
.foot-brand .wordmark-tag {
  color: rgba(250, 247, 242, 0.55);
  border-top-color: var(--cream);
}
.foot-blurb {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(250, 247, 242, 0.7);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 36px;
  padding: 28px 0;
  border-top: 0.5px solid rgba(250, 247, 242, 0.15);
  border-bottom: 0.5px solid rgba(250, 247, 242, 0.15);
  margin-bottom: 24px;
  text-align: left;
}
.foot-grid h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  font-weight: 500;
  margin: 0 0 10px 0;
}
.foot-grid .val {
  font-size: 13px;
  color: var(--cream);
  line-height: 1.6;
}
.foot-grid .val a {
  color: var(--cream);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.foot-grid .val a:hover { border-bottom-color: rgba(250, 247, 242, 0.5); }
.foot-base {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.45);
  text-align: center;
}
.foot-base .social a {
  color: rgba(250, 247, 242, 0.6);
  font-size: 18px;
  display: inline-flex;
  transition: color 0.25s var(--ease);
}
.foot-base .social a:hover { color: var(--cream); }

/* ─────────────────────────────────────────────
   8. WHATSAPP FLOAT
────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.go-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 200;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 18px rgba(92, 27, 20, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s var(--ease), visibility 0s linear 0.35s;
}
.go-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s var(--ease);
}
.go-top:hover { background: var(--maroon-dark); }
@media (max-width: 640px) {
  .go-top { bottom: 20px; left: 20px; width: 40px; height: 40px; font-size: 18px; }
}

/* ─────────────────────────────────────────────
   9. RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 36px; }
  .why-grid,
  .cap-teaser-grid,
  .cap-full-grid { grid-template-columns: 1fr 1fr; }
  .why-card { border-right: none; border-bottom: 0.5px solid var(--rule); padding: 36px 0 !important; }
  .why-card:nth-child(odd) { padding-right: 20px !important; border-right: 0.5px solid var(--rule); }
  .about-grid,
  .programs-feature,
  .india-teaser .container,
  .two-col,
  .contact-grid,
  .leadership-grid { grid-template-columns: 1fr; gap: 48px; }
  .program-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .program-row .category, .program-row .meta { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .mills-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list li { grid-template-columns: 60px 1fr; gap: 24px; }
  .process-list .step-desc { grid-column: 2; }
}

@media (max-width: 768px) {
  body.home { scroll-snap-type: none; height: auto; overflow-y: visible; }
  .snap-section { min-height: auto; padding: 100px var(--gutter) 80px; }
  .hero { padding-top: 140px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-meta .stats { flex-wrap: wrap; gap: 24px; }
  .main-nav { display: none; }
  .hamburger { display: block; }
  .why-grid,
  .cap-teaser-grid,
  .cap-full-grid,
  .mills-grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 0 !important; border-right: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .wordmark { font-size: 15px; }
  .wordmark-tag { font-size: 8px; }
  .hero-mlb-stamp { font-size: 90vw; }
}


/* Balanced line wrapping for headings — prevents lone words on last line */
.title, .section-title, .hero h1, .page-hero h1, .cta-block h2,
.manifesto h2, .contact-cta h2, .contact-left h2 {
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.foot-addr {
  font-size: 12px;
  line-height: 1.55;
  color: var(--cream);
}
.foot-addr .addr-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.foot-addr .addr-phone {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
}
.foot-addr .addr-phone a {
  color: rgba(250, 247, 242, 0.85);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s;
}
.foot-addr .addr-phone a:hover { border-bottom-color: rgba(250,247,242,0.5); }

/* ─────────────────────────────────────────────
   CAP-TILE-FRAME — editorial text-led card replacing redundant images
────────────────────────────────────────────── */
.cap-tile-frame {
  background: var(--cream);
  border: 0.5px solid var(--rule);
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.cap-tile-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 0.5px solid var(--rule);
  pointer-events: none;
  transition: border-color 0.4s var(--ease);
}
.cap-tile-frame:hover {
  background: var(--cream-2);
  border-color: var(--maroon);
}
.cap-tile-frame:hover::before {
  border-color: rgba(92, 27, 20, 0.25);
}
.cap-tile-frame .frame-numeral {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  color: var(--maroon);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cap-tile-frame .frame-icon {
  font-size: 32px;
  color: var(--maroon);
  opacity: 0.5;
  margin-bottom: 24px;
}
.cap-tile-frame .frame-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 80%;
}
.cap-tile-frame.tall { aspect-ratio: 3 / 4; }
.cap-tile-frame.programs-frame {
  aspect-ratio: 4 / 5;
  justify-content: space-between;
  text-align: left;
  align-items: flex-start;
  padding: 40px;
  background: var(--maroon);
  border-color: var(--maroon-dark);
  color: var(--cream);
}
.cap-tile-frame.programs-frame::before {
  border-color: rgba(250, 247, 242, 0.15);
}
.cap-tile-frame.programs-frame .frame-numeral {
  color: var(--cream);
  opacity: 0.7;
  font-size: 36px;
  margin-bottom: 0;
  align-self: flex-end;
}
.cap-tile-frame.programs-frame .frame-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: auto;
}
.cap-tile-frame.programs-frame .frame-title-large {
  font-family: var(--serif);
  font-size: clamp(80px, 9vw, 130px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 20px 0 10px;
}
.cap-tile-frame.programs-frame .frame-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  opacity: 0.85;
  max-width: 100%;
  text-align: left;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   CLIENTS MARQUEE (was missing in current build)
────────────────────────────────────────────── */
.clients-section {
  background: var(--cream);
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 50px;
}
.clients-section .container {
  text-align: center;
}
.clients-section .section-title { font-size: clamp(32px, 4vw, 48px); margin: 16px auto 14px; max-width: 700px; }
.clients-section .section-lede { font-size: 17px; max-width: 540px; margin: 0 auto 50px; }
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  margin-top: 12px;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 45s linear infinite;
  width: max-content;
}
.logo-cell {
  flex: 0 0 auto;
  width: 180px;
  height: 90px;
  background: var(--cream-2);
  border: 0.5px dashed rgba(92, 27, 20, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.logo-cell .num { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--maroon); opacity: 0.65; }
.logo-cell .lbl { font-size: 10px; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; font-weight: 500; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * (180px + 48px) * 10)); }
}

/* ─────────────────────────────────────────────
   IMAGE SIZE — gentle constraints, restore previous proportions
────────────────────────────────────────────── */
.snap-section.cap-teaser .cap-tile .img-real,
.snap-section.cap-teaser .cap-tile .cap-tile-frame { max-height: 56vh; }
.snap-section.cap-teaser .cap-tile p { font-size: 13.5px; }


/* ─────────────────────────────────────────────
   INNER PAGE SNAP — same snap behavior as homepage for inner pages
────────────────────────────────────────────── */
body:not(.home) {
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--header-h);
}
body:not(.home) .page-hero,
body:not(.home) .page-section {
  scroll-snap-align: start;
}
body:not(.home) .page-hero { padding-top: calc(var(--header-h) + 60px); }
body:not(.home) footer { scroll-snap-align: start; }

/* On inner pages, constrain image heights so content + image fit one viewport */
body:not(.home) .page-section .img-real,
body:not(.home) .page-section .img-real.tall,
body:not(.home) .page-section .img-real.square,
body:not(.home) .page-section .img-real.banner,
body:not(.home) .page-section .cap-tile-frame {
  max-height: 65vh;
}

body:not(.home) .cap-full-grid .img-real,
body:not(.home) .cap-full-grid .cap-tile-frame { max-height: 38vh; }

/* Mobile — disable snap (CSS) */
@media (max-width: 768px) {
  body:not(.home),
  body.home { scroll-snap-type: none; height: auto; overflow-y: visible; }
  body:not(.home) .page-hero,
  body:not(.home) .page-section { min-height: auto; }
}


/* ─────────────────────────────────────────────
   MOBILE NAV DRAWER — hamburger opens this
────────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 28px var(--gutter) 32px;
    gap: 4px;
    border-bottom: 0.5px solid var(--rule);
    box-shadow: 0 8px 24px rgba(26, 23, 20, 0.08);
    z-index: 90;
    align-items: flex-start;
    animation: navSlideDown 0.25s var(--ease);
  }
  .main-nav.open a {
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 0.5px solid rgba(217, 209, 196, 0.5);
  }
  .main-nav.open a:last-child { border-bottom: none; }
  .hamburger {
    background: none;
    border: none;
    padding: 8px;
    margin: -8px;
    cursor: pointer;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger.active svg line:nth-child(1) { transform: translateY(5px) rotate(45deg); transform-origin: center; }
  .hamburger.active svg line:nth-child(2) { opacity: 0; }
  .hamburger.active svg line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); transform-origin: center; }
  .hamburger svg line { transition: transform 0.3s var(--ease), opacity 0.2s; }
}
@keyframes navSlideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* ─────────────────────────────────────────────
   BRIEF-CONTENT COMPONENTS — added for expanded pages
────────────────────────────────────────────── */

/* Hero — additional sub / meta */
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 560px;
  margin: 24px 0 40px;
  font-weight: 400;
}
.hero-meta { margin-top: 56px; }
.hero-meta .stats { display: flex; gap: 56px; }
.hero-meta .stats > div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .stats .v {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  color: var(--maroon);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-meta .stats .l {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}
.manifesto-sub {
  font-size: 16px;
  color: rgba(250, 247, 242, 0.75);
  max-width: 620px;
  margin: 32px auto 0;
  line-height: 1.65;
  font-weight: 400;
}

/* Testimonial section (on homepage & partner) */
.testimonials-section { background: var(--cream-2); }
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.test-grid.five {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.testimonial {
  background: var(--cream);
  border: 0.5px solid var(--rule);
  padding: 32px 28px;
  position: relative;
}
.testimonial .testimonial-mark {
  color: var(--maroon);
  font-size: 32px;
  opacity: 0.35;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.testimonial cite {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.testimonial cite strong {
  color: var(--maroon);
  font-weight: 600;
  letter-spacing: 0;
}

/* Leadership grid on About page */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  justify-items: start;
}
.leader-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 380px;
  width: 100%;
}
.leadership-grid .img-real.square {
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.leader-info {
  padding-left: 2px;
  max-width: 100%;
}
.leader-role {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  margin-bottom: 12px;
}
.leader-info h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.leader-info p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}

/* Fabric tags (Capabilities menswear section) */
.fabric-tags { margin-top: 20px; }
.tag-heading {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  margin: 22px 0 6px;
}
.tag-desc {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.tag-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  border-bottom: 0.5px dashed rgba(217, 209, 196, 0.6);
  font-family: var(--sans);
  font-weight: 400;
}
.tag-list li:last-child { border-bottom: none; }
.tag-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 6px;
  color: var(--maroon);
  font-size: 14px;
  line-height: 1;
}

/* Cluster list (India page) */
.cluster-list { margin-top: 20px; }
.cluster-item {
  padding: 12px 0;
  border-bottom: 0.5px solid var(--rule);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.cluster-item:last-child { border-bottom: none; }
.cluster-item strong {
  color: var(--maroon);
  font-weight: 600;
  margin-right: 6px;
  letter-spacing: 0.01em;
}

/* Outcome list (Capabilities close) */
.outcomes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream-2);
  border-left: 2px solid var(--maroon);
}
.outcome-item .outcome-icon {
  color: var(--maroon);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-item p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}

/* Contact form + hours */
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 0.5px solid var(--rule);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--maroon);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { margin-top: 8px; }
.hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0.5px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.hours strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 6px;
}

/* Office block on contact page */
.office-block {
  padding: 28px;
  background: var(--cream-2);
  border-left: 2px solid var(--maroon);
}
.office-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 14px;
}
.office-address {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}
.office-phone {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-phone a {
  color: var(--maroon);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s;
}
.office-phone a:hover { border-bottom-color: var(--maroon); }

/* Contact block layout */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  margin: 12px 0 32px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.contact-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--rule);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.contact-info-row .value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
}
.contact-info-row .value a {
  color: var(--maroon);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s;
}
.contact-info-row .value a:hover { border-bottom-color: var(--maroon); }

/* Responsive */
@media (max-width: 900px) {
  .test-grid, .test-grid.five { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-list { grid-template-columns: 1fr; }
  .contact-block { grid-template-columns: 1fr; gap: 48px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-meta .stats { flex-wrap: wrap; gap: 32px; }
}


/* ─────────────────────────────────────────────
   COMPREHENSIVE MOBILE — all multi-column layouts stack to single column
────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Container padding tighter on phones */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* HERO — reduce type scale, single-column stats */
  .hero h1 { font-size: clamp(36px, 9vw, 48px); line-height: 1.05; }
  .hero-sub { font-size: 18px; margin: 20px 0 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .cta-primary, .hero-cta .cta-secondary { justify-content: center; }
  .hero-meta .stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 36px;
  }
  .hero-meta .stats > div { flex-direction: row; align-items: baseline; gap: 12px; }
  .hero-meta .stats .v { font-size: 32px; }
  .hero-meta .stats .l { margin-top: 0; }

  /* All grid layouts collapse to 1 column — !important to override earlier tablet 2-col rules */
  .why-grid,
  .test-grid,
  .test-grid.five,
  .leadership-grid,
  .outcomes-list,
  .contact-block,
  .cap-teaser-grid,
  .cap-full-grid,
  .contact-form .form-row,
  .form-row,
  .two-col,
  .two-col.text-img,
  .two-col.text-img-wide,
  .contact-grid,
  .about-grid,
  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Two-column text-image layouts: text first, image below (flex ensures stacking) */
  .two-col.text-img,
  .two-col.text-img.reverse,
  .two-col.text-img-wide {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Footer grid stacks */
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .foot-inner { text-align: left; }

  /* Section paddings — tighter on mobile */
  .snap-section, .page-hero, .page-section {
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: auto;
  }

  /* Section headings — reduce size on mobile */
  .section-title,
  .page-hero h1 { font-size: clamp(28px, 7vw, 40px); line-height: 1.1; }
  .lede, .section-lede { font-size: 15.5px; }
  .manifesto h2 { font-size: clamp(28px, 6vw, 36px); }

  /* CLIENTS MARQUEE — disable horizontal scroll, show as static 2-column grid */
  .clients-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .marquee {
    overflow: visible;
    padding: 20px;
    border: none;
    margin-top: 20px;
  }
  .marquee::before, .marquee::after { display: none; }
  .marquee-track {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    animation: none !important;
    width: 100% !important;
    transform: none !important;
  }
  .logo-cell {
    width: 100% !important;
    height: 64px !important;
  }
  /* Hide the duplicate half (used only for infinite scroll on desktop) */
  .marquee-track > .logo-cell:nth-child(n+11) { display: none !important; }

  /* Mills grid on Partner page — single column stacked on mobile */
  .mills-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .mill-cell {
    height: 64px !important;
    font-size: 14px !important;
  }

  /* Leadership portraits — smaller on mobile */
  .leader-card { gap: 20px; }
  /* removed — leader-card now controls sizing */

  /* Testimonials — tighter padding */
  .testimonial { padding: 24px 22px; }
  .testimonial blockquote { font-size: 16px; }

  /* Fabric tags — tighter on mobile */
  .tag-list li { font-size: 14px; padding: 6px 0 6px 16px; }
  .cluster-item { font-size: 13.5px; }

  /* Process list — mobile-friendly */
  .process-list li {
    grid-template-columns: 60px 1fr;
    padding: 20px 0;
    gap: 4px 16px;
  }
  .process-list .step-num { font-size: 20px; }
  .process-list .step-title { font-size: 16px; grid-column: 2; }
  .process-list .step-desc { grid-column: 2; font-size: 14px; }

  /* Header on mobile */
  .site-header { padding: 12px 0; }
  .wordmark { font-size: 14px; }
  .wordmark-tag { font-size: 6px; }

  /* CTAs full-width on mobile */
  .cta-primary, .cta-secondary { padding: 14px 22px; font-size: 13px; }

  /* Manifesto sub */
  .manifesto-sub { font-size: 14.5px; margin-top: 24px; }

  /* Image editorial overlay text — smaller on mobile */
  .img-with-text .img-text { left: 20px; right: 20px; bottom: 20px; }
  .img-with-text .img-text-quote { font-size: 18px; }
}

/* Tablet breakpoint removed — everything ≤900px goes single-column per user request */


/* ─────────────────────────────────────────────
   EXPORT-POSITIONED COMPONENTS
────────────────────────────────────────────── */

/* End-to-end ecosystem flow (fabric to garment) */
.ecosystem-section { background: var(--cream-2); }
.ecosystem-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 0.5px solid var(--rule);
  border-left: 0.5px solid var(--rule);
}
.ecosystem-step {
  padding: 32px 28px;
  background: var(--cream);
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  position: relative;
  transition: background 0.3s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-items: baseline;
}
.ecosystem-step:hover { background: var(--cream-2); }
.ecosystem-step .ec-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--maroon);
  line-height: 1;
  opacity: 0.85;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.ecosystem-step h4 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
  align-self: baseline;
}
.ecosystem-step p {
  grid-column: 1 / -1;
  margin: 4px 0 0 !important;
}
.ecosystem-step .ec-icon { display: none; }
.ecosystem-step .ec-icon {
  font-size: 28px;
  color: var(--maroon);
  display: block;
  margin-bottom: 16px;
}
.ecosystem-step h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.ecosystem-step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.ec-close {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--maroon);
  text-align: center;
  line-height: 1.5;
}

/* Certifications strip */
.certifications-section { background: var(--cream); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.cert-grid.compact { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 32px; }
.cert-card {
  padding: 26px 20px;
  background: var(--cream-2);
  border: 0.5px solid var(--rule);
  text-align: center;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.cert-card:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.cert-card .cert-abbr {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--maroon);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cert-card .cert-abbr span {
  font-size: 12px;
  font-weight: 400;
  vertical-align: super;
  margin-left: 1px;
}
.cert-card .cert-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.35;
}
.cert-card .cert-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
  font-style: italic;
}
.cert-grid.compact .cert-card { padding: 20px 14px; }
.cert-grid.compact .cert-card .cert-abbr { font-size: 18px; }
.cert-grid.compact .cert-card .cert-name { font-size: 10.5px; }
.cert-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Global reach panel */
.reach-panel {
  padding: 40px 36px;
  background: var(--maroon);
  color: var(--cream);
  border-left: 3px solid var(--maroon-dark);
}
.reach-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 500;
  margin-bottom: 24px;
}
.reach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reach-list li {
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(250, 247, 242, 0.18);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.35;
}
.reach-list li:last-child { border-bottom: none; }
.reach-list li span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250, 247, 242, 0.75);
  letter-spacing: 0.06em;
  font-style: normal;
  margin-top: 4px;
  font-weight: 400;
}

/* Category blocks (menswear / womenswear / kidswear) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.category-block {
  padding: 36px 32px;
  background: var(--cream-2);
  border: 0.5px solid var(--rule);
  transition: background 0.3s;
}
.category-block:hover { background: var(--cream); }
.category-block .cat-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 0.5px solid var(--rule);
}
.category-block h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.category-block .product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-block .product-list li {
  padding: 12px 0 12px 20px;
  position: relative;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 0.5px solid rgba(217, 209, 196, 0.5);
}
.category-block .product-list li:last-child { border-bottom: none; }
.category-block .product-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--maroon);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

/* Construction note strip */
.construction-note {
  margin-top: 48px;
  padding: 32px;
  background: var(--maroon);
  color: var(--cream);
  text-align: center;
}
.construction-note .cn-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 500;
  margin-bottom: 20px;
}
.construction-note .cn-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}
.construction-note .cn-tags span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  padding: 2px 4px;
}

/* Mill types grid (replaces logos on partner page) */
.mill-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.mill-type-cell {
  padding: 28px 22px;
  background: var(--cream-2);
  border: 0.5px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}
.mill-type-cell:hover { background: var(--cream); }
.mill-type-cell .ti-frame {
  font-size: 24px;
  color: var(--maroon);
  flex-shrink: 0;
}
.mill-type-cell .mt-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 400;
}

/* Frame description on tiles (used in cap-teaser-grid) */
.cap-tile-frame .frame-desc {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 20px;
  text-align: center;
}

/* Responsive — single column for new components */
@media (max-width: 900px) {
  .ecosystem-flow,
  .cert-grid,
  .cert-grid.compact,
  .category-grid,
  .mill-types-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .ecosystem-step { padding: 28px 24px; }
  .cert-card { padding: 20px 16px; }
  .category-block { padding: 28px 24px; }
  .mill-type-cell { padding: 22px 18px; }
  .construction-note { padding: 24px 20px; }
  .construction-note .cn-tags { justify-content: center !important; gap: 10px 14px; }
  .construction-note .cn-tags span { font-size: 15px; }
  .reach-panel { padding: 32px 24px; }
  .reach-list li { font-size: 16px; padding: 12px 0; }
}


/* ─────────────────────────────────────────────
   NEW COMPONENTS — Rev 3
────────────────────────────────────────────── */

/* Why-card numeral (replaces Tabler icons) */
/* Why-card numeral + heading — on same line, description below */
.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  align-items: baseline;
}
.why-card .why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--maroon);
  line-height: 1;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: -0.02em;
  grid-column: 1;
  grid-row: 1;
}
.why-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: baseline;
  margin: 0;
}
.why-card p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}
.why-card .why-icon {
  grid-column: 1;
  grid-row: 1;
}

/* Balance section — maroon centered, like manifesto */
.balance-section {
  background: var(--maroon);
  color: var(--cream);
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance-section .container { max-width: 900px; padding: 100px var(--gutter); }
.balance-section h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  color: var(--cream);
  margin: 20px 0 32px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.balance-section h2 em {
  color: rgba(250, 247, 242, 0.85);
  font-style: italic;
}
.balance-section .manifesto-sub {
  color: rgba(250, 247, 242, 0.82);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Contact CTA — light theme, maroon accents (matches rest of site) */
.contact-cta h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.1;
  margin: 20px 0 24px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.contact-cta h2 em {
  color: var(--maroon);
  font-style: italic;
  font-weight: 500;
}
.contact-cta .cta-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* Cap tile frame — description text below numeral & subtitle */
.cap-tile-frame .frame-desc {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 20px 8px;
  text-align: center;
}

/* Responsive tweaks for new components */
@media (max-width: 900px) {
  .balance-section .container { padding: 80px 20px; }
  .balance-section h2 { font-size: clamp(30px, 8vw, 42px); }
  .balance-section .manifesto-sub { font-size: 15px; }
  .contact-cta h2 { font-size: clamp(48px, 14vw, 72px); }
  .why-card .why-num { font-size: 36px; margin-bottom: 16px; }
}


/* Contact CTA now uses default eyebrow color (dark on cream bg) */


/* ─────────────────────────────────────────────
   INDIA PAGE — new components (Rev 5)
────────────────────────────────────────────── */

/* Full-bleed banner (edge to edge, no container) */
.full-bleed-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 560px;
  overflow: hidden;
  background: var(--maroon-dark);
}
.full-bleed-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.72) contrast(1.02) brightness(0.85);
}
.full-bleed-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92, 27, 20, 0.65) 0%, rgba(92, 27, 20, 0.15) 60%, rgba(92, 27, 20, 0.35) 100%);
  pointer-events: none;
}
.full-bleed-banner .banner-text {
  position: absolute;
  left: 6vw;
  bottom: 8vh;
  max-width: 620px;
  z-index: 2;
  color: var(--cream);
}
.full-bleed-banner .banner-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 500;
  margin-bottom: 16px;
}
.full-bleed-banner .banner-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.full-bleed-banner .banner-quote em {
  color: rgba(250, 247, 242, 0.85);
  font-style: italic;
}

/* India stats grid — big numbers */
.india-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 0.5px solid var(--rule);
  border-left: 0.5px solid var(--rule);
}
.india-stat-card {
  padding: 40px 32px;
  background: var(--cream);
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  transition: background 0.3s;
}
.india-stat-card:hover { background: var(--cream-2); }
.india-stat-card .is-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  color: var(--maroon);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.india-stat-card .is-value sup {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.india-stat-card .is-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 400;
}
.stats-source {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  text-align: right;
  letter-spacing: 0.02em;
}

/* PM MITRA parks grid */
.mitra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.mitra-cell {
  padding: 28px 22px;
  background: var(--cream-2);
  border: 0.5px solid var(--rule);
  transition: background 0.3s;
  position: relative;
}
.mitra-cell:hover { background: var(--cream); }
.mitra-cell .mc-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.75;
}
.mitra-cell .mc-state {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.mitra-cell .mc-site {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Tailwinds row below mitra grid */
.tailwinds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--maroon);
  color: var(--cream);
}
.tailwinds .tw-item { text-align: center; }
.tailwinds .tw-label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.2;
}
.tailwinds .tw-detail {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 500;
}

/* Where MLB fits in — clean centered section */
.where-mlb-fits { text-align: center; }
.where-mlb-fits .container { max-width: 780px; }
.where-mlb-fits .section-eyebrow {
  justify-content: center;
  display: inline-flex;
}
.where-mlb-fits .section-title { margin: 20px auto 24px; }
.where-mlb-fits .section-lede {
  color: var(--muted);
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.where-cta { margin-top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .full-bleed-banner { height: 50vh; min-height: 320px; }
  .full-bleed-banner .banner-text { left: 20px; right: 20px; bottom: 32px; }
  .full-bleed-banner .banner-quote { font-size: clamp(22px, 6vw, 30px); }
  .india-stats-grid { grid-template-columns: 1fr !important; }
  .india-stat-card { padding: 28px 24px; }
  .mitra-grid { grid-template-columns: 1fr 1fr !important; }
  .mitra-cell { padding: 22px 18px; }
  .mitra-cell .mc-state { font-size: 17px; }
  .tailwinds { grid-template-columns: 1fr !important; gap: 20px; padding: 24px 20px; }
  .tailwinds .tw-label { font-size: 18px; }
}


/* ─── Cap-tile image support (homepage What We Source) ─── */
.cap-tile .img-real {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cap-tile .cap-tile-meta .num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}


/* ─── Cap-tile overlay (title on image) ─── */
.cap-tile { display: block; text-decoration: none; color: inherit; }
.cap-tile .img-real {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.cap-tile .img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.cap-tile:hover .img-real img { transform: scale(1.04); }
.cap-tile .tile-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  background: linear-gradient(to top, rgba(26, 23, 20, 0.75) 0%, rgba(26, 23, 20, 0.35) 40%, rgba(26, 23, 20, 0) 70%);
  z-index: 2;
}
.cap-tile .tile-overlay .tile-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.75);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-weight: 500;
}
.cap-tile .tile-overlay h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 6px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cap-tile .tile-overlay p {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.85);
  line-height: 1.4;
  margin: 0;
  font-family: var(--sans);
}


/* ─── Mobile responsive fixes — Rev 7 ─── */
@media (max-width: 900px) {
  /* Contact CTA h2 size on mobile */
  .contact-cta h2 { font-size: clamp(32px, 8vw, 42px) !important; }
  .contact-cta .cta-sub { font-size: 15px; padding: 0 8px; }

  /* Cap-tile overlay — reduce padding + font on mobile */
  .cap-teaser-grid {
    gap: 12px !important;
    max-width: 480px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cap-tile .img-real {
    aspect-ratio: 16 / 9 !important;
  }
  .cap-tile .tile-overlay { padding: 18px 20px; }
  .cap-tile .tile-overlay h3 { font-size: 22px; }
  .cap-tile .tile-overlay p { font-size: 12px; }
  .cap-tile .tile-overlay .tile-num { font-size: 12px; }

  /* Footer — CENTER aligned on mobile per user request */
  .foot-inner {
    padding: 48px 20px 32px !important;
    text-align: center !important;
  }
  .foot-brand {
    display: inline-flex !important;
    flex-direction: column;
    margin-bottom: 20px;
    align-items: center !important;
  }
  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .foot-addr {
    text-align: center !important;
    padding: 24px 0 !important;
    border-top: 0.5px solid rgba(250, 247, 242, 0.15);
  }
  .foot-addr:first-child {
    border-top: 0.5px solid rgba(250, 247, 242, 0.15);
    padding-top: 32px !important;
    margin-top: 8px;
  }
  .foot-blurb {
    text-align: center !important;
    margin: 0 auto 32px !important;
    font-size: 14px;
    padding-bottom: 8px;
  }
  .foot-addr .addr-label {
    display: block !important;
    margin-bottom: 6px !important;
  }
  .foot-base {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    padding-top: 32px !important;
    margin-top: 32px !important;
    border-top: 0.5px solid rgba(250, 247, 242, 0.15);
    text-align: center !important;
  }

  /* Container padding consistency — 20px sides on mobile */
  .container { padding-left: 20px !important; padding-right: 20px !important; }
  .snap-section .container,
  .page-hero .container,
  .page-section .container { padding-left: 20px !important; padding-right: 20px !important; }

  /* Prevent horizontal overflow */
  body, html { overflow-x: hidden; max-width: 100vw; }
  .snap-section, .page-section, .page-hero { overflow-x: hidden; }

  /* Fix ANY grid still 3-col */
  .cap-teaser-grid,
  .why-grid,
  .test-grid,
  .test-grid.five,
  .ecosystem-flow,
  .cert-grid,
  .cert-grid.compact,
  .category-grid,
  .mill-types-grid,
  .india-stats-grid,
  .mitra-grid,
  .tailwinds,
  .leadership-grid,
  .outcomes-list,
  .contact-block,
  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Section paddings tighter */
  .snap-section, .page-section, .page-hero {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Testimonial cards - tighter */
  .testimonial { padding: 22px 20px !important; }
  .testimonial blockquote { font-size: 15px !important; line-height: 1.5 !important; }

  /* Hero on mobile - single-column stats, tighter */
  .hero-meta .stats > div { min-width: 0 !important; }
}


/* ─── Rev 8 — leadership image centered on mobile ─── */
@media (max-width: 900px) {
  .leadership-grid .img-real.square {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .leader-card {
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  .leader-card {
    text-align: center;
  }
  .leader-info {
    padding-left: 0 !important;
  }
  .leader-info h3,
  .leader-info p,
  .leader-info .leader-role {
    text-align: center;
  }
}


/* ─── Rev 9 — Ready-stock image sizing fix ─── */
.two-col.text-img .img-real.tall {
  aspect-ratio: 4 / 5;
  max-height: 620px;
}
@media (max-width: 900px) {
  .two-col.text-img .img-real.tall {
    aspect-ratio: 4 / 3 !important;
    max-height: 340px !important;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ─── Rev 10 — Partner page: loom image balance ─── */
.page-section.alt .two-col.text-img .img-real.tall {
  aspect-ratio: 3 / 4;
  max-height: 620px;
  min-height: 420px;
}
@media (max-width: 900px) {
  .page-section.alt .two-col.text-img .img-real.tall {
    aspect-ratio: 4 / 3 !important;
    max-height: 340px !important;
    max-width: 480px;
    margin: 0 auto;
  }
}


/* ─── Rev 11 — Homepage About teaser: image with left-fade tint (India-banner treatment) ─── */
.about-teaser-bg {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--maroon-dark);
  display: flex;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.about-teaser-bg .about-teaser-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
  filter: saturate(0.9);
}
.about-teaser-bg .about-teaser-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 90% at 22% 55%,
    rgba(26, 23, 20, 0.92) 0%,
    rgba(26, 23, 20, 0.75) 30%,
    rgba(26, 23, 20, 0.35) 60%,
    rgba(26, 23, 20, 0.08) 85%,
    transparent 100%
  );
  pointer-events: none;
}
.about-teaser-bg .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.about-teaser-bg .about-text {
  max-width: 520px;
  padding: 80px 0;
  color: var(--cream);
}
.about-teaser-bg .about-text .section-eyebrow {
  color: rgba(250, 247, 242, 0.8);
  border-color: rgba(250, 247, 242, 0.35);
}
.about-teaser-bg .about-text .section-eyebrow::before {
  background: rgba(250, 247, 242, 0.55);
}
.about-teaser-bg .about-text h2 {
  color: var(--cream);
}
.about-teaser-bg .about-text h2 em {
  color: rgba(250, 247, 242, 0.88);
  font-style: italic;
}
.about-teaser-bg .about-text p {
  color: rgba(250, 247, 242, 0.9);
}
.about-teaser-bg .about-text p em {
  color: var(--cream);
  font-style: italic;
}
.about-teaser-bg .about-teaser-btn {
  margin-top: 28px;
  background: var(--cream);
  color: var(--maroon);
}
.about-teaser-bg .about-teaser-btn:hover {
  background: rgba(250, 247, 242, 0.9);
}

/* Mobile: image becomes subtle full-bg with dark overlay, text stays cream */
@media (max-width: 900px) {
  .about-teaser-bg {
    min-height: auto;
    display: block;
  }
  .about-teaser-bg .about-teaser-image {
    background-position: center right;
  }
  .about-teaser-bg .about-teaser-image::after {
    background: linear-gradient(
      to bottom,
      rgba(26, 23, 20, 0.5) 0%,
      rgba(26, 23, 20, 0.65) 60%,
      rgba(26, 23, 20, 0.75) 100%
    );
  }
  .about-teaser-bg .about-text {
    padding: 72px 0 !important;
    max-width: 100%;
  }
}


/* ─── Rev 12 — Generic image-bg + text-overlay section pattern ─── */
.image-bg-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--maroon-dark);
  display: flex;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.image-bg-section .section-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
  filter: saturate(0.9);
}
.image-bg-section .section-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 90% at 22% 55%,
    rgba(26, 23, 20, 0.92) 0%,
    rgba(26, 23, 20, 0.75) 30%,
    rgba(26, 23, 20, 0.35) 60%,
    rgba(26, 23, 20, 0.08) 85%,
    transparent 100%
  );
  pointer-events: none;
}
.image-bg-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.image-bg-section .section-text {
  max-width: 560px;
  padding: 80px 0;
  color: var(--cream);
}
.image-bg-section .section-eyebrow {
  color: rgba(250, 247, 242, 0.8);
  border-color: rgba(250, 247, 242, 0.35);
}
.image-bg-section .section-eyebrow::before {
  background: rgba(250, 247, 242, 0.55);
}
.image-bg-section h2,
.image-bg-section .section-title { color: var(--cream); }
.image-bg-section h2 em {
  color: rgba(250, 247, 242, 0.9);
  font-style: italic;
}
.image-bg-section p { color: rgba(250, 247, 242, 0.9); }
.image-bg-section p em { color: var(--cream); font-style: italic; }
.image-bg-section .section-lede { color: rgba(250, 247, 242, 0.9); }
.image-bg-section .tag-list li {
  color: rgba(250, 247, 242, 0.88);
  border-bottom-color: rgba(250, 247, 242, 0.15);
}
.image-bg-section .tag-list li::before {
  color: rgba(250, 247, 242, 0.7);
}
.image-bg-section .cta-primary {
  background: var(--cream);
  color: var(--maroon);
  margin-top: 28px;
}
.image-bg-section .cta-primary:hover {
  background: rgba(250, 247, 242, 0.9);
}

@media (max-width: 900px) {
  .image-bg-section {
    min-height: auto;
    display: block;
  }
  .image-bg-section .section-bg-image::after {
    background: linear-gradient(
      to bottom,
      rgba(26, 23, 20, 0.5) 0%,
      rgba(26, 23, 20, 0.65) 60%,
      rgba(26, 23, 20, 0.75) 100%
    );
  }
  .image-bg-section .section-text {
    padding: 72px 0 !important;
    max-width: 100%;
  }
}

/* India stats + MITRA parks: 2-column on mobile (override the 1fr rule) */
@media (max-width: 900px) {
  .india-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .india-stats-grid .india-stat-card { padding: 22px 16px; }
  .india-stats-grid .india-stat-card .is-value { font-size: clamp(30px, 7vw, 40px); }
  .india-stats-grid .india-stat-card .is-label { font-size: 12px; }

  .mitra-grid { grid-template-columns: 1fr 1fr !important; }
  .mitra-cell { padding: 18px 14px; }
  .mitra-cell .mc-state { font-size: 15px; }
  .mitra-cell .mc-num { font-size: 20px; }
}

/* Remove extra horizontal lines in footer:
   - Above Bhuleshwar (first foot-addr)
   - Between "Write to us" (last address) and copyright (foot-base) */
.foot-addr:first-child {
  border-top: none !important;
}
.foot-base {
  border-top: none !important;
}
@media (max-width: 900px) {
  .foot-addr:first-child {
    border-top: none !important;
    padding-top: 8px !important;
    margin-top: 0 !important;
  }
  .foot-base {
    border-top: none !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
  }
}


/* ─── Rev 13 — Contact page Visit us grid + WhatsApp float SVG ─── */
.visit-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.visit-us-grid .office-block {
  padding: 28px 24px;
  background: var(--cream);
  border: 0.5px solid var(--rule);
  transition: background 0.3s;
}
.visit-us-grid .office-block:hover { background: var(--cream-2); }
.visit-us-grid .office-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.visit-us-grid .office-address {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}

/* WhatsApp float button — SVG icon */
.wa-float svg {
  width: 28px;
  height: 28px;
}
.wa-float i.ti { display: none; } /* Hide fallback Tabler icon if any */

@media (max-width: 1100px) and (min-width: 901px) {
  .visit-us-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 900px) {
  .visit-us-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .visit-us-grid .office-block { padding: 22px 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   .img-artwork — for designed artworks (not photos)
   Overrides the photo-unification filters and aspect-ratio forcing.
   The India patchwork map uses this so it stays whole and unfiltered.
   ═══════════════════════════════════════════════════════════════ */

/* Container — preserve natural aspect, no crop, cream background so any
   letterboxing blends into the artwork's own cream backdrop */
.img-real.img-artwork,
.two-col.text-img .img-real.tall.img-artwork,
.page-section.alt .two-col.text-img .img-real.tall.img-artwork {
  background: transparent !important;
  aspect-ratio: 3 / 4 !important;
  max-height: 720px !important;
  overflow: visible;
}

/* Image inside — show whole thing, no filters, no crop */
.img-real.img-artwork img {
  object-fit: contain !important;
  filter: none !important;
  width: 100%;
  height: 100%;
}

/* Remove the sepia/warm overlay tint on artwork */
.img-real.img-artwork::before,
.img-real.img-artwork::after {
  display: none !important;
}

/* ─── Mobile: keep aspect, constrain size so map doesn't dominate ─── */
@media (max-width: 900px) {
  .img-real.img-artwork,
  .two-col.text-img .img-real.tall.img-artwork,
  .page-section.alt .two-col.text-img .img-real.tall.img-artwork {
    aspect-ratio: 3 / 4 !important;
    max-width: 300px !important;
    max-height: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Extra-small screens: slightly smaller still */
@media (max-width: 500px) {
  .img-real.img-artwork {
    max-width: 260px !important;
  }
}
