/* ============================================================
   TRENT BRIDGE ADVISORY — STYLESHEET v4
   Philosophy: Predominantly white/light. Gradient used sparingly for impact.
   Light, agile, premium. Gradient rules as section dividers.
   ============================================================ */

:root {
  --sage: #7B8A7F;
  --mid: #5A5362;
  --deep: #3C2642;
  --cable: #BAABB8;
  --apex: #988499;
  --off-white: #F5F3F7;
  --text-dark: #1a1020;
  --text-body: #2e1f3a;
  --text-mid: #3a2848;
  --text-muted: #5A5362;
  --gradient: linear-gradient(135deg, #7B8A7F 0%, #5A5362 50%, #3C2642 100%);
  --gradient-rule: linear-gradient(90deg, transparent 0%, #7B8A7F 15%, #5A5362 50%, #3C2642 85%, transparent 100%);
  --gradient-card-green: linear-gradient(135deg, #5e7065 0%, #4d6056 100%);
  --gradient-card-purple: linear-gradient(135deg, #473f56 0%, #3C2642 100%);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-condensed: 'Barlow Condensed', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-body); color: var(--text-dark); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 40px; }

/* ── GRADIENT RULE DIVIDER ── */
.grad-rule {
  height: 3px;
  background: var(--gradient-rule);
  border: none;
  margin: 0;
}

/* ── EYEBROW / HOOK LABELS ── */
.eyebrow {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--apex);
  margin-bottom: 16px;
  display: block;
}
.eyebrow-white { color: #fff; }
.hook {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.25;
}
.hook-white { color: #fff; }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 40px;
}

/* ── SCROLL REVEAL ── */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--delay, 0s);
}
.reveal { transform: translateY(0); }
.reveal-up { transform: translateY(56px); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.revealed { opacity: 1 !important; transform: translate(0,0) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity var(--transition);
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.btn-ghost:hover { color: #fff; border-color: #fff; }
.btn-text {
  display: inline-block;
  color: var(--apex);
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid var(--apex);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--text-dark); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z' fill='none' stroke='%233C2642' stroke-width='0.4' stroke-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  border-bottom: 1px solid rgba(60,38,66,0.1);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(60,38,66,0.12); }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 54px; width: auto; }
.nav-logo svg { height: 54px; width: auto; display: block; }
.nav-logo-text { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--deep); }
.nav-logo-text em { color: var(--mid); font-style: normal; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover { color: var(--mid); }
.nav-links a.active { color: var(--deep); border-bottom-color: var(--apex); }
.nav-cta {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: var(--gradient);
  border: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: opacity var(--transition);
}
.nav-cta:hover { opacity: 0.85; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--deep); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; padding: 28px 40px; flex-direction: column; gap: 22px; z-index: 999; border-bottom: 3px solid var(--deep); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-condensed); font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--deep); text-decoration: none; }
.mobile-cta { color: var(--mid) !important; border-top: 1px solid rgba(60,38,66,0.15); padding-top: 18px !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; background: var(--gradient); }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; mix-blend-mode: luminosity; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient); opacity: 0.62; }
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 80px; }
.hero-text { max-width: 700px; }
.hero-outcome {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 36px; max-width: 580px; font-weight: 400; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-hint span { display: block; width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, rgba(186,171,184,0.8)); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── PAIN POINTS ── */
.pain-points { background: #fff; padding: 88px 0 72px; }
.pain-points .hook { margin-bottom: 12px; }
.pain-points .section-headline { margin-bottom: 44px; }

/* 3+2 centred grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}
.cards-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 68%;
  margin: 0 auto 44px;
}
.card {
  background: #fff;
  border: 1px solid #ede8f4;
  border-left: 4px solid var(--apex);
  border-radius: 0 8px 8px 0;
  padding: 26px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(60,38,66,0.1); transform: translateY(-3px); }
.card-num { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--cable); margin-bottom: 10px; }
.card h3 { font-family: var(--font-display); font-size: 23px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; }
.card p { font-size: 15px; color: var(--text-body); line-height: 1.68; font-weight: 400; }
.pain-close {
  text-align: center;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--text-dark);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── METRICS ── */
.metrics { background: var(--gradient); padding: 72px 0; }
.metrics-grid { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 28px; }
.metric { text-align: center; flex: 1; padding: 0 36px; }
.metric-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; flex-shrink: 0; }
.metric-num { font-family: var(--font-display); font-size: clamp(56px, 7vw, 84px); font-weight: 400; color: #fff; line-height: 1; margin-bottom: 14px; display: block; }
.metric-label { font-family: var(--font-condensed); font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88); line-height: 1.5; }
.metrics-close { text-align: center; font-family: var(--font-display); font-size: 20px; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ── MD INTRO ── */
.md-intro { background: #fff; padding: 88px 0; }
.md-intro-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.md-photo-frame { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; background: #f0ecf8; }
.md-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.md-credential-strip { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.md-credential-strip span { font-family: var(--font-condensed); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: var(--text-muted); background: #f5f3f7; padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(186,171,184,0.4); }
.md-open {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 22px;
  line-height: 1.3;
}
.md-text p { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; font-weight: 400; }
.inline-quote { border-left: 3px solid var(--apex); padding: 14px 20px; margin: 28px 0; font-family: var(--font-display); font-size: 20px; font-weight: 400; font-style: italic; color: var(--text-mid); line-height: 1.55; }
.inline-quote cite { display: block; font-family: var(--font-condensed); font-size: 12px; font-style: normal; letter-spacing: 0.08em; color: var(--apex); margin-top: 8px; font-weight: 600; }

/* ── FRAMEWORK ── */
.framework { background: #f9f7fc; padding: 88px 0; }
.framework-intro { font-size: 18px; color: var(--text-body); max-width: 680px; margin: -16px 0 48px; line-height: 1.7; font-weight: 400; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.pillar { background: #fff; padding: 30px 26px; border-radius: 4px; border-top: 4px solid var(--cable); box-shadow: 0 2px 12px rgba(60,38,66,0.06); transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.pillar:hover { box-shadow: 0 10px 36px rgba(60,38,66,0.12); transform: translateY(-4px); border-color: var(--apex); }
.pillar-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.pillar-num { font-family: var(--font-display); font-size: 38px; font-weight: 300; color: var(--cable); line-height: 1; flex-shrink: 0; margin-top: -4px; }
.pillar-outcome {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 5px;
}
.pillar h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--text-dark); line-height: 1.2; }
.pillar p { font-size: 14px; color: var(--text-body); line-height: 1.68; font-weight: 400; margin-top: 10px; }
.framework-close { text-align: center; font-family: var(--font-display); font-size: 21px; font-weight: 400; font-style: italic; color: var(--text-mid); }

/* ── TEASERS ── */
.teasers { background: #fff; padding: 88px 0; }
.teasers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.teaser { text-decoration: none; background: #f9f7fc; border-radius: 8px; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: block; }
.teaser:hover { box-shadow: 0 12px 40px rgba(60,38,66,0.14); transform: translateY(-4px); }
.teaser-img { height: 210px; background-size: cover; background-position: center; background-color: var(--mid); position: relative; }
.teaser-img::after { content: ''; position: absolute; inset: 0; background: var(--gradient); opacity: 0.35; }
.teaser-body { padding: 24px; }
.teaser-tag { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--apex); margin-bottom: 8px; }
.teaser h3 { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.teaser p { font-size: 14px; color: var(--text-body); margin-bottom: 14px; font-weight: 400; }
.teaser-link { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--apex); }

/* ── INDUSTRIES — horizontal layout ── */
.industries { background: #f9f7fc; padding: 72px 0; }
.industries .section-headline { margin-bottom: 8px; }
.industries-sub { font-family: var(--font-condensed); font-size: 15px; color: var(--text-muted); margin-bottom: 40px; font-weight: 400; }
.industries-horiz {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid #ede8f4;
  border-left: 1px solid #ede8f4;
}
.industry-block {
  flex: 1;
  min-width: 180px;
  padding: 24px 20px;
  border-right: 1px solid #ede8f4;
  border-bottom: 1px solid #ede8f4;
  transition: background var(--transition);
}
.industry-block:hover { background: #fff; }
.industry-block-num { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--apex); margin-bottom: 8px; display: block; }
.industry-block-name { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--text-dark); line-height: 1.3; }
.industry-block-sub { font-family: var(--font-condensed); font-size: 12px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; font-weight: 400; }

/* ── FINAL CTA — lighter treatment ── */
.final-cta { background: #f9f7fc; padding: 88px 0; text-align: center; position: relative; }
.final-cta::before { content: ''; display: block; height: 3px; background: var(--gradient-rule); position: absolute; top: 0; left: 0; right: 0; }
.cta-headline { font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px); font-weight: 400; color: var(--text-dark); line-height: 1.4; margin-bottom: 14px; }
.cta-headline em { color: var(--deep); font-style: italic; }
.cta-outcome { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--apex); margin-bottom: 32px; display: block; }
.cta-quote { font-family: var(--font-display); font-size: 20px; font-weight: 400; font-style: italic; color: var(--text-mid); max-width: 560px; margin: 0 auto 18px; line-height: 1.6; }
.cta-quote cite { display: block; font-family: var(--font-condensed); font-size: 12px; font-style: normal; letter-spacing: 0.08em; color: var(--apex); margin-top: 8px; font-weight: 600; }
.cta-thanks { font-family: var(--font-condensed); font-size: 14px; color: var(--text-muted); margin-bottom: 32px; font-weight: 400; }
.cta-contact { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 16px; }
.cta-phone { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--deep); text-decoration: none; transition: color var(--transition); }
.cta-phone:hover { color: var(--mid); }

/* SMS box — prominent */
.sms-box {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  margin: 16px auto;
}
.sms-box strong { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cable); margin-bottom: 4px; font-weight: 700; }

.cta-reassure { font-family: var(--font-condensed); font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; font-weight: 400; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, rgba(123,138,127,0.98) 0%, rgba(90,83,98,0.98) 50%, rgba(60,38,66,0.98) 100%);
  padding: 0;
}
.footer::before { content: ''; display: block; height: 3px; background: var(--gradient-rule); }

/* Footer inner: logo left, contact centred */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 144px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(186,171,184,0.15);
  gap: 32px;
}
.footer-logo img { height: 46px; width: auto; filter: brightness(1.2); }
.footer-logo span { font-family: var(--font-display); font-size: 24px; color: #fff; }

/* Centred contact block */
.footer-contact-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}
.footer-contact-centre a, .footer-contact-centre span {
  font-family: var(--font-condensed);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: none;
}
.footer-contact-centre a:hover { color: #fff; }

.footer-bottom { display: flex; justify-content: space-between; padding: 14px 40px; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-family: var(--font-condensed); font-size: 15px; color: rgba(186,171,184,0.45); letter-spacing: 0.04em; }

/* ── PAGE HERO — compact, solid deep purple ── */
.page-hero {
  background: var(--deep);
  padding: 100px 0 48px;
  position: relative;
}
.page-hero::after { content: ''; display: block; height: 3px; background: var(--gradient-rule); position: absolute; bottom: 0; left: 0; right: 0; }
.page-hero-eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 400; color: #fff; line-height: 1.15; max-width: 680px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 600px; line-height: 1.7; margin-top: 16px; font-weight: 400; }

/* ── ABOUT ── */
.about-story { background: #fff; padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start; }
.about-photo-frame { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; background: #f0ecf8; }
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-size: 16px; color: var(--text-body); line-height: 1.78; margin-bottom: 18px; font-weight: 400; }
.about-text h2 { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--text-dark); margin-bottom: 20px; line-height: 1.25; }
.credential-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; justify-content: center; }
.credential-strip span { font-family: var(--font-condensed); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--text-muted); background: #f5f3f7; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(186,171,184,0.4); }

/* Result pills — about page, replaces sector pills */
.result-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; justify-content: flex-start; }
.result-pill {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--deep);
  background: #f5f3f7;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(60,38,66,0.2);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.result-pill:hover { background: var(--deep); color: #fff; border-color: var(--deep); }
.result-pill::after { content: '→'; font-size: 11px; opacity: 0.6; }

.name-story { background: #f9f7fc; padding: 80px 0; }
.name-story-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.name-story-text .opening { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; color: var(--text-dark); line-height: 1.4; margin-bottom: 20px; }
.name-story-text p { font-size: 16px; color: var(--text-body); line-height: 1.78; margin-bottom: 18px; font-weight: 400; }
.name-story-images { display: flex; flex-direction: column; gap: 12px; }
.name-story-img { border-radius: 6px; overflow: hidden; background: var(--gradient); }
.name-story-img img { width: 100%; display: block; object-fit: cover; }
.name-story-img.aerial { aspect-ratio: 4/3; }
.name-story-img.aerial img { opacity: 0.9; }
.name-story-img.cricket { aspect-ratio: 16/9; }
.name-story-img.cricket img { opacity: 0.92; }
/* Inline images — hidden on desktop, shown between paragraphs on mobile */
.name-story-inline { display: none; margin: 20px 0; }

.mission-vision { background: #fff; padding: 72px 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { background: #f9f7fc; padding: 32px 28px; border-radius: 4px; border-top: 4px solid var(--cable); }
.mv-label { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--apex); margin-bottom: 14px; }
.mv-card p { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--text-mid); line-height: 1.55; font-style: italic; }

.difference { background: #f9f7fc; padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 40px 0; }
.stat-card { text-align: center; padding: 32px 20px; background: #fff; border-radius: 4px; border-top: 4px solid var(--cable); }
.stat-num { font-family: var(--font-display); font-size: 64px; font-weight: 400; color: var(--apex); line-height: 1; display: block; margin-bottom: 12px; }
.stat-label { font-size: 15px; color: var(--text-body); line-height: 1.55; font-weight: 400; }
.difference-close { font-family: var(--font-display); font-size: 20px; font-weight: 400; font-style: italic; color: var(--text-mid); max-width: 700px; line-height: 1.6; }

/* HERE VALUES — white background */
.here-values { background: #fff; padding: 72px 0; }
.here-values .section-headline { color: var(--text-dark); }
.here-intro { font-size: 17px; color: var(--text-body); max-width: 580px; line-height: 1.7; font-weight: 400; margin-bottom: 36px; }
.here-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.here-card { padding: 32px 28px; border-radius: 8px; transition: transform var(--transition), box-shadow var(--transition); }
.here-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.here-card.green { background: var(--gradient-card-green); }
.here-card.purple { background: var(--gradient-card-purple); }
.here-letter { font-family: var(--font-display); font-size: 56px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1; margin-bottom: 6px; }
.here-title { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.here-card p { font-size: 15px; color: rgba(255,255,255,0.95); line-height: 1.68; font-weight: 400; }

.who-we-work { background: #f9f7fc; padding: 72px 0; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.who-col h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--text-dark); margin-bottom: 22px; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.who-list li { font-size: 15px; color: var(--text-body); line-height: 1.68; padding-left: 18px; position: relative; font-weight: 400; }
.who-list li::before { content: '—'; position: absolute; left: 0; color: var(--apex); }

/* SERVICES */
.services-hook { background: var(--deep); padding: 36px 0; text-align: center; }
.services-hook-framework { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 400; color: #fff; margin-bottom: 10px; }
.services-hook-sub { font-family: var(--font-condensed); font-size: 15px; color: rgba(255,255,255,0.72); font-weight: 400; max-width: 560px; margin: 0 auto; }
.services-intro { background: #fff; padding: 52px 0 36px; text-align: center; }
.services-intro p { font-size: 18px; color: var(--text-body); max-width: 660px; margin: 0 auto; line-height: 1.7; font-weight: 400; }
.service-pillar { padding: 72px 0; }
.service-pillar:nth-child(odd) { background: #f9f7fc; }
.service-pillar:nth-child(even) { background: #fff; }
.pillar-inner { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.pillar-inner.reverse { grid-template-columns: 340px 1fr; }
.pillar-inner.reverse .pillar-detail { order: 2; }
.pillar-inner.reverse .pillar-services-box { order: 1; }
.pillar-label { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--apex); margin-bottom: 8px; }
.pillar-detail h2 { font-family: var(--font-display); font-size: 38px; font-weight: 400; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }
.pillar-detail p { font-size: 16px; color: var(--text-body); line-height: 1.72; margin-bottom: 14px; font-weight: 400; }
.pillar-guarantee { background: #f9f7fc; border-left: 4px solid var(--apex); padding: 18px 20px; margin-top: 22px; border-radius: 0 4px 4px 0; font-size: 15px; color: var(--text-body); line-height: 1.68; font-style: italic; font-weight: 400; }
.pillar-services-box { background: var(--deep); padding: 30px 28px; border-radius: 6px; }
.pillar-services-box h4 { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cable); margin-bottom: 18px; }
.services-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.services-list li { font-size: 15px; color: rgba(255,255,255,0.92); padding-left: 18px; position: relative; line-height: 1.55; font-weight: 400; }
.services-list li::before { content: '—'; position: absolute; left: 0; color: var(--apex); }
.pillar-cta { margin-top: 24px; }

/* CASE STUDIES */
.case-study { padding: 72px 0; border-bottom: 1px solid #ede8f4; }
.case-study:nth-child(even) { background: #f9f7fc; }
.case-study:nth-child(odd) { background: #fff; }
.case-tag { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--apex); margin-bottom: 10px; }
.case-study h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; }
.case-result { font-family: var(--font-condensed); font-size: 17px; font-weight: 700; color: var(--sage); display: block; margin-bottom: 28px; }
.case-img-hero { width: 100%; height: 240px; border-radius: 6px; overflow: hidden; background: var(--gradient); margin-bottom: 28px; }
.case-img-hero img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.9; }
.case-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-card { padding: 26px 24px; border-radius: 8px; transition: transform var(--transition), box-shadow var(--transition); }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.case-card.green { background: var(--gradient-card-green); }
.case-card.purple { background: var(--gradient-card-purple); }
.case-card-label { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.case-card p { font-size: 15px; color: rgba(255,255,255,0.95); line-height: 1.65; font-weight: 400; }
.case-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.case-card ul li { font-size: 15px; color: rgba(255,255,255,0.95); line-height: 1.55; padding-left: 16px; position: relative; font-weight: 400; }
.case-card ul li::before { content: '—'; position: absolute; left: 0; color: rgba(186,171,184,0.8); font-size: 12px; }

/* CONTACT */
.contact-section { background: #fff; padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.contact-intro p { font-size: 17px; color: var(--text-body); line-height: 1.75; margin-bottom: 0; font-weight: 400; }
.contact-expect h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--text-dark); margin: 32px 0 18px; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.expect-list li { font-size: 16px; color: var(--text-body); padding-left: 22px; position: relative; line-height: 1.68; font-weight: 400; }
.expect-list li::before { content: '—'; position: absolute; left: 0; color: var(--apex); }
.contact-details { background: var(--gradient); padding: 38px 34px; border-radius: 8px; position: sticky; top: 80px; }
.contact-details h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 28px; }
.contact-item { margin-bottom: 22px; }
.contact-item-label { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--apex); margin-bottom: 6px; display: block; }
.contact-item a { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--cable); text-decoration: none; line-height: 1.3; transition: color var(--transition); display: block; }
.contact-item a:hover { color: #fff; }
.contact-item p { font-size: 15px; color: rgba(255,255,255,0.75); font-family: var(--font-body); line-height: 1.65; font-weight: 400; }
.contact-sms { font-family: var(--font-display); font-size: 18px; color: var(--cable); font-style: italic; margin-top: 8px; display: block; font-weight: 400; }
.contact-reassure { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(186,171,184,0.2); font-family: var(--font-condensed); font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.9; font-style: italic; font-weight: 400; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-row-2 { max-width: 100%; }
  .md-intro-grid, .about-grid { grid-template-columns: 1fr; }
  .pillars, .teasers-grid, .mv-grid, .here-grid, .who-grid, .stats-grid { grid-template-columns: 1fr; }
  .metrics-grid { flex-direction: column; gap: 36px; }
  .metric-divider { width: 100%; height: 1px; }
  .pillar-inner, .pillar-inner.reverse { grid-template-columns: 1fr; }
  .pillar-inner.reverse .pillar-detail { order: 1; }
  .pillar-inner.reverse .pillar-services-box { order: 2; }
  .case-cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { position: relative; top: 0; }
  .footer-inner { flex-direction: column; min-height: auto; padding: 28px 20px; text-align: center; }
  .footer-contact-centre { width: 100%; }
  .name-story-grid { grid-template-columns: 1fr; }
  .name-story-desktop { display: none; }
  .name-story-inline { display: block; }
  .industries-horiz { flex-direction: column; }
  .industry-block { min-width: 100%; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-row-2 { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 30px; }
  .cta-headline { font-size: 20px; }
}
