/* ============================================================
   TTS EXECUTIVE COACHING — DESIGN TOKENS
   Tapas · Tattva · Siddhi — through focused effort, essence is revealed
   ============================================================ */

:root {
  /* Color */
  --navy: #0B2545;
  --navy-deep: #071A33;
  --navy-light: #163A66;
  --teal: #1F7A70;
  --teal-deep: #145048;
  --teal-mist: #E7F2F0;
  --gold: #C9A227;
  --gold-soft: #E8D9A8;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --ink: #1C232B;
  --slate: #5B6472;
  --slate-light: #8B93A0;
  --line: #E4E1D8;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 3px;
}

/* Fill classes for inline brand-mark SVGs (safer across browsers than var() in presentation attrs) */
.fc-teal-85 { fill: var(--teal); fill-opacity: .85; }
.fc-gold-85 { fill: var(--gold); fill-opacity: .85; }
.fc-navy-85 { fill: var(--navy); fill-opacity: .85; }
.fc-white-90 { fill: var(--white); fill-opacity: .9; }
.fc-teal-75 { fill: var(--teal); fill-opacity: .75; }
.fc-gold-75 { fill: var(--gold); fill-opacity: .75; }
.fc-white-18 { fill: #ffffff; fill-opacity: .18; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
p { color: var(--slate); }
.lede { font-size: 1.2rem; color: var(--navy-light); font-weight: 400; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand svg { width: 38px; height: 38px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}
.brand-text span {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-light);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.02em;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--teal-deep); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.1rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 0.98rem;
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 14.5px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--navy); color: var(--white); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    linear-gradient(155deg, rgba(7,26,51,0.93) 0%, rgba(11,37,69,0.88) 55%, rgba(22,58,102,0.82) 100%),
    url('hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: var(--white); margin: 18px 0 22px; }
.hero p.lede { color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tagline {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  max-width: 460px;
}

/* Circles visual — the signature motif */
.circles-visual { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; }
.circle-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: scale(0.85);
  animation: circle-in 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.circle-node span { display: block; font-family: var(--font-body); }
.circle-1 { width: 62%; height: 62%; top: 0; left: 8%; background: rgba(31,122,112,0.28); border: 1px solid rgba(31,122,112,0.6); color: #B7E4DB; animation-delay: 0.1s; }
.circle-2 { width: 62%; height: 62%; top: 0; right: 0; background: rgba(201,162,39,0.22); border: 1px solid rgba(201,162,39,0.55); color: var(--gold-soft); animation-delay: 0.35s; }
.circle-3 { width: 62%; height: 62%; bottom: 0; left: 26%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.35); color: var(--white); animation-delay: 0.6s; }
@keyframes circle-in { to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .circle-node { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Three-pillar cards (echoes the circles) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(11,37,69,0.25); }
.pillar-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.pillar-card:nth-child(1) .pillar-mark { background: var(--teal-mist); }
.pillar-card:nth-child(2) .pillar-mark { background: var(--gold-soft); }
.pillar-card:nth-child(3) .pillar-mark { background: var(--navy); }
.pillar-mark .dot { width: 14px; height: 14px; border-radius: 50%; }
.pillar-card:nth-child(1) .dot { background: var(--teal); }
.pillar-card:nth-child(2) .dot { background: var(--gold); }
.pillar-card:nth-child(3) .dot { background: var(--white); }
.pillar-card p { font-size: 14.5px; margin-bottom: 16px; }
.pillar-card a { font-size: 13.5px; font-weight: 600; color: var(--teal); }

/* Framework strip */
.framework-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.framework-item {
  background: var(--white);
  padding: 30px 26px;
}
.framework-item .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); font-style: italic; }
.framework-item h4 { font-family: var(--font-body); font-size: 15px; color: var(--navy); margin: 10px 0 8px; font-weight: 700; }
.framework-item p { font-size: 13.5px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Split rows */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-row.reverse .split-visual { order: 2; }
.split-visual {
  background: var(--navy);
  border-radius: var(--radius);
  aspect-ratio: 4/3.2;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-visual .mark-big { width: 55%; opacity: 0.9; }

/* Client / who-we-serve chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy-light);
  background: var(--white);
}

/* CTA banner */
.cta-banner {
  background: var(--navy-deep);
  color: var(--white);
  padding: 78px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 34px; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 70px 0 60px;
}
.page-hero h1 { color: var(--white); margin-top: 14px; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin-top: 14px; }

/* ============================================================
   SERVICES LIST (services.html)
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:first-of-type { padding-top: 0; }
.service-tag {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
}
.service-index { font-size: 13px; color: var(--slate-light); letter-spacing: 0.08em; margin-bottom: 8px; display:block; }
.service-detail ul { margin-top: 16px; padding-left: 20px; }
.service-detail li { color: var(--slate); font-size: 14.5px; margin-bottom: 8px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-lede { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.credentials { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.credential-item { display: flex; gap: 16px; }
.credential-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.philosophy-block {
  background: var(--teal-mist);
  border-left: 3px solid var(--teal);
  padding: 34px 40px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
.philosophy-block p { color: var(--teal-deep); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; line-height: 1.55; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-info-item { margin-bottom: 30px; }
.contact-info-item .eyebrow { margin-bottom: 8px; }
.contact-info-item p, .contact-info-item a { font-size: 16px; color: var(--navy); font-weight: 500; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--slate-light); margin-top: 14px; }
.form-status { margin-top: 16px; font-size: 14.5px; font-weight: 600; display: none; }
.form-status.success { color: var(--teal-deep); display: block; }
.form-status.error { color: #B3401E; display: block; }

/* ============================================================
   BRAND LOGO IMAGE (replaces placeholder circle SVG)
   ============================================================ */
.brand img.brand-mark { height: 34px; width: auto; display: block; }
.brand img.brand-full { height: 46px; width: auto; display: block; }

/* ============================================================
   SME PAGE (pain/benefit lists from flyer)
   ============================================================ */
.sme-headline em { color: #B3401E; font-style: normal; }
.pain-list, .benefit-list { list-style: none; margin-top: 22px; }
.pain-list li, .benefit-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px dotted var(--line);
  font-size: 15px; color: var(--ink);
}
.pain-list .x-mark, .benefit-list .check-mark {
  width: 22px; height: 22px; border-radius: 50%;
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--white);
}
.pain-list .x-mark { background: #B3401E; }
.benefit-list .check-mark { background: var(--teal); }
.cost-panel {
  background: #B3401E; color: var(--white);
  border-radius: var(--radius); padding: 40px 38px;
}
.cost-panel h3 { color: var(--white); margin-bottom: 20px; }
.cost-panel ul { list-style: none; }
.cost-panel li {
  padding: 10px 0; border-bottom: 1px dotted rgba(255,255,255,0.3);
  font-size: 14.5px; color: rgba(255,255,255,0.92);
}
.benefit-panel {
  background: var(--teal-mist); border-radius: var(--radius); padding: 40px 38px;
}
.benefit-panel h3 { color: var(--teal-deep); margin-bottom: 8px; }
.sme-banner {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy-deep); border-radius: var(--radius);
  padding: 26px 34px; text-align: center;
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
}
.sme-banner strong { color: #B3401E; font-style: normal; }

/* ============================================================
   EMBEDDED CONTACT SECTION (bottom of every page)
   ============================================================ */
.contact-section { background: var(--cream); border-top: 1px solid var(--line); }
.footer-brand img.brand-mark { height: 30px; width: auto; }
.footer-logo-full { height: 54px; width: auto; margin-bottom: 18px; }

/* ============================================================
   STATS MARQUEE (rolling banner)
   ============================================================ */
.stats-marquee {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.marquee-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
  font-style: italic;
}
.marquee-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-photo { aspect-ratio: 4/3.4; overflow: hidden; background: var(--cream); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-body { padding: 30px 32px 34px; }
.team-body .role { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; display: block; }
.team-body h3 { font-size: 1.4rem; margin-bottom: 14px; }
.team-body p { font-size: 14.5px; margin-bottom: 16px; }
.credential-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.credential-chips span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-light);
  background: var(--teal-mist);
  padding: 6px 12px;
  border-radius: 30px;
}
.extended-team {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.extended-team h4 { font-size: 15px; color: var(--navy); margin-bottom: 16px; }
.extended-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.extended-person { font-size: 14px; color: var(--slate); }
.extended-person strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; }

/* ============================================================
   TAB BOARDS SECTION
   ============================================================ */
.tab-block {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 52px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.tab-block h2 { color: var(--white); }
.tab-block p { color: rgba(255,255,255,0.75); }
.tab-stat-list { display: flex; flex-direction: column; gap: 18px; }
.tab-stat { display: flex; gap: 16px; align-items: flex-start; }
.tab-stat .mark { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.tab-stat p { color: rgba(255,255,255,0.85); font-size: 14.5px; margin: 0; }

/* ============================================================
   CLIENT LOGOS SECTION
   ============================================================ */
.clients-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.clients-panels img { width: 100%; height: auto; }
.clients-note { text-align: center; font-size: 13.5px; color: var(--slate-light); margin-top: 18px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 56px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.testimonial-placeholder svg { width: 34px; height: 34px; margin: 0 auto 18px; opacity: 0.5; }
.testimonial-placeholder h3 { font-size: 1.1rem; margin-bottom: 10px; }
.testimonial-placeholder p { font-size: 14.5px; max-width: 440px; margin: 0 auto 22px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(7,26,51,0.85), transparent);
  color: var(--white);
  padding: 24px 22px 16px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gallery-more {
  margin-top: 40px;
  background: var(--teal-mist);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
}
.gallery-more h3 { font-size: 1.1rem; color: var(--teal-deep); margin-bottom: 8px; }
.gallery-more p { font-size: 14px; color: var(--teal-deep); max-width: 480px; margin: 0 auto; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-post {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.blog-post:first-of-type { padding-top: 0; }
.blog-post .eyebrow { margin-bottom: 14px; }
.blog-post h2 { font-size: 1.5rem; margin-bottom: 14px; }
.blog-post p { font-size: 15px; margin-bottom: 12px; }
.blog-meta { font-size: 12.5px; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 10px; }

/* Pull quote (Henry Ford style banner) */
.pull-quote {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px 60px;
  position: relative;
}
.pull-quote .mark-quote { font-family: var(--font-display); font-size: 3rem; color: var(--teal); font-style: italic; line-height: 1; margin-bottom: 10px; }
.pull-quote p { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--white); max-width: 640px; line-height: 1.45; }
.pull-quote cite { display: block; margin-top: 20px; font-family: var(--font-body); font-style: normal; font-size: 13.5px; color: var(--gold-soft); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px 32px; gap: 20px; border-bottom: 1px solid var(--line); display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .circles-visual { max-width: 300px; margin-top: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .framework-strip { grid-template-columns: 1fr 1fr; }
  .split-row, .split-row.reverse { grid-template-columns: 1fr; }
  .split-row.reverse .split-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-block { grid-template-columns: 1fr; gap: 14px; }
  .about-lede { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .extended-team-grid { grid-template-columns: 1fr; }
  .tab-block { grid-template-columns: 1fr; padding: 36px 28px; }
  .clients-panels { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 40px 28px; }
  section { padding: 64px 0; }
}
@media (max-width: 520px) {
  .framework-strip { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
}
