/* ============================================================
   Visima Advisory — Static Site CSS
   Brand: Deep Navy #0B1F3A | Emerald #0F7B5F | Gold #C8A24A
          Ivory #F7F4EE | Charcoal #33363F
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy:          #1A3352;
  --navy-dark:     #0B1F3A;
  --navy-mid:      #243F5E;
  --navy-light:    #2E5070;
  --emerald:       #0F7B5F;
  --emerald-dark:  #0A5E48;
  --emerald-light: #1A9B77;
  --gold:          #C8A24A;
  --gold-light:    #D9B96A;
  --ivory:         #F7F4EE;
  --text-dark:     #0B1F3A;
  --text-body:     #33363F;
  --gray-muted:    #6B7280;
  --gray-border:   #E5E0D8;
  --border:        #E5E0D8;
  --white:         #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

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

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── Utilities ── */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 36px;
}

.gold-divider-center { margin: 16px auto 36px; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 32px rgba(11,31,58,0.22); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.nav-cta {
  margin-left: 8px;
  background: var(--emerald) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.875rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--emerald-light) !important; color: white !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--emerald);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--emerald-light); color: white; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: white; color: var(--navy); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-outline-dark:hover { background: var(--navy); color: white; }

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero .breadcrumb {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .breadcrumb::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  line-height: 1.8;
}

/* ── Hero (Home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 48px 0 64px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold); }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.22);
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ── Stats Band ── */
.stats-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.18); }
  .stat-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── Split Grid ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--ivory);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: left;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(11,31,58,0.12);
  transform: translateY(-4px);
}
.service-card .icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Step Cards ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 24px rgba(11,31,58,0.07);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--navy-dark);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Engagement Cards ── */
.eng-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.eng-card {
  background: var(--ivory);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: left;
  border-left: 4px solid var(--emerald);
  transition: box-shadow 0.25s, transform 0.25s;
}
.eng-card:hover {
  box-shadow: 0 12px 40px rgba(11,31,58,0.1);
  transform: translateY(-3px);
}
.eng-card .icon { font-size: 2rem; margin-bottom: 16px; }
.eng-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.eng-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 700px) { .eng-grid { grid-template-columns: 1fr; } }

/* ── Results Cards ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.result-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,31,58,0.07);
  display: flex;
  flex-direction: column;
}
.result-card-top { height: 4px; background: linear-gradient(90deg, var(--navy), var(--gold)); }
.result-card-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--border);
}
.result-card-header .icon { font-size: 2rem; margin-bottom: 12px; }
.result-metric {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}
.result-label { font-size: 0.9rem; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.result-context {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-muted);
}
.result-card-body {
  padding: 24px 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-card-body p { font-size: 0.875rem; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.result-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.result-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(11,31,58,0.06);
  color: var(--navy);
  border-radius: 4px;
  padding: 4px 10px;
}

@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .results-grid { grid-template-columns: 1fr; } }

/* ── Thought Leadership ── */
.tl-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 72px;
}
.tl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tl-card {
  background: var(--ivory);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(11,31,58,0.05);
  border-top: 4px solid var(--navy);
  transition: box-shadow 0.25s, transform 0.25s;
}
.tl-card:hover {
  box-shadow: 0 12px 40px rgba(11,31,58,0.13);
  transform: translateY(-4px);
}
.tl-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
  margin-bottom: 14px;
}
.tl-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}
.tl-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.8; margin-bottom: 24px; }
.tl-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}
.tl-read-time { font-size: 0.75rem; color: var(--gray-muted); font-weight: 500; }
.tl-cta { font-size: 0.8rem; font-weight: 700; color: var(--emerald); letter-spacing: 0.03em; }

@media (max-width: 900px) {
  .tl-header-grid { grid-template-columns: 1fr; gap: 40px; }
  .tl-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .tl-cards-grid { grid-template-columns: 1fr; } }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: white;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Overview visual card ── */
.overview-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 16px;
  padding: 56px 48px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.overview-visual .emoji-bg {
  position: absolute;
  right: 24px; bottom: 16px;
  font-size: 5rem;
  opacity: 0.08;
}
.overview-visual-inner { text-align: center; position: relative; }
.overview-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}
.overview-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  text-align: center;
}
.overview-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.overview-badge-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-dark);
  margin-top: 4px;
}

/* ── Mini feature items ── */
.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: white;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.mini-feature-icon { font-size: 1.1rem; flex-shrink: 0; }
.mini-feature strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.mini-feature span { font-size: 0.78rem; color: var(--gray-muted); }

/* ── Service Detail (Services page) ── */
.service-detail {
  padding: 96px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-detail h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-detail h2 span { color: var(--emerald); }
.service-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.service-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--ivory);
  border-radius: 10px;
  border-left: 3px solid var(--emerald);
}
.service-feature-check {
  width: 22px; height: 22px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}
.service-feature strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.service-feature p { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; margin: 0; }

.service-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 20px;
  padding: 56px 48px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-visual-icon { font-size: 3.5rem; margin-bottom: 24px; }
.service-visual-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.service-visual-lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid.reverse { direction: ltr; }
}

/* ── Industries Grid ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.industry-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid var(--navy);
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.industry-card:hover {
  box-shadow: 0 10px 36px rgba(11,31,58,0.12);
  transform: translateY(-4px);
}
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; }
.industry-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.industry-card p { font-size: 0.8rem; color: var(--gray-muted); line-height: 1.6; }

@media (max-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr 1fr; } }

/* ── Credentials Grid ── */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cred-card {
  background: var(--ivory);
  border-radius: 16px;
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
}
.cred-card .icon { font-size: 2rem; margin-bottom: 16px; }
.cred-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.cred-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 900px) { .creds-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .creds-grid { grid-template-columns: 1fr; } }

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,31,58,0.08);
}
.team-card-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 40px 40px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.team-avatar {
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.team-name { font-size: 1.2rem; color: white; margin-bottom: 4px; }
.team-title { font-size: 0.85rem; color: var(--gold); font-weight: 500; margin-bottom: 10px; }
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,162,74,0.15);
  border: 1px solid rgba(200,162,74,0.4);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 4px;
}
.linkedin-btn:hover { background: rgba(200,162,74,0.28); }
.team-card-body { padding: 32px 40px 36px; }
.team-bio { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }
.team-credentials h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
}
.team-credentials ul { display: flex; flex-direction: column; gap: 10px; }
.team-credentials li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}
.team-credentials li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border-left: 4px solid var(--emerald);
}
.value-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Approach Differentiators ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(15,123,95,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--emerald); }

.expect-list { margin-top: 32px; }
.expect-list h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.expect-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-body);
}
.expect-check {
  width: 20px; height: 20px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(11,31,58,0.08);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--ivory);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--emerald); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--emerald);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--emerald-light); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo img { height: 40px; width: auto; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
}
.footer-tagline {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

/* Newsletter */
.newsletter-section {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 48px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.newsletter-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}
.newsletter-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.newsletter-input {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--emerald); }
.newsletter-btn {
  padding: 12px 24px;
  background: var(--emerald);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--emerald-light); }
.newsletter-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
}
.newsletter-success {
  display: none;
  padding: 20px 24px;
  background: rgba(15,123,95,0.15);
  border: 1px solid rgba(15,123,95,0.35);
  border-radius: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom .gold { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form-row { grid-template-columns: 1fr 1fr; }
  .newsletter-form-row .newsletter-btn { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form-row { grid-template-columns: 1fr; }
}

/* ── Blockquote ── */
blockquote {
  border-left: 4px solid var(--emerald);
  padding-left: 28px;
  margin: 0;
}
blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 18px;
}
blockquote footer {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
}

/* ── Approach page specifics ── */
.approach-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(11,31,58,0.05);
}
.insight-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.insight-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 900px) { .approach-insight-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .approach-insight-grid { grid-template-columns: 1fr; } }

/* ── Engagement page ── */
.eng-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 700px) { .eng-detail-grid { grid-template-columns: 1fr; } }

/* ── Utility sections ── */
section { padding: 96px 0; }
section.bg-white { background: white; }
section.bg-ivory { background: var(--ivory); }
section.bg-navy { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }

.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── Case Studies ── */
.case-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(11,31,58,0.08);
  margin-bottom: 48px;
  border: 1px solid rgba(11,31,58,0.06);
}
.case-accent-bar { height: 4px; }
.case-body { padding: 48px 56px; }
.case-header { margin-bottom: 36px; }
.case-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.case-tag-primary {
  display: inline-block;
  background: rgba(15,123,95,0.1);
  color: var(--emerald);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-tag-secondary {
  display: inline-block;
  background: rgba(11,31,58,0.07);
  color: var(--navy-dark);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.case-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
  margin: 0;
}
.case-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.case-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}
.case-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
}
.case-results-panel {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 36px;
}
.results-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.results-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-item { text-align: center; padding: 0 8px; }
.result-metric {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.result-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.result-detail { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.case-quote {
  border-left-width: 3px;
  border-left-style: solid;
  padding-left: 24px;
  margin: 0;
}
.case-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.75;
  margin: 0 0 10px;
}
.case-quote cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .case-body { padding: 32px 24px; }
  .case-columns { grid-template-columns: 1fr; gap: 24px; }
  .results-grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .case-results-panel { padding: 28px 24px; }
}

/* ── Perspectives / Articles ── */
.featured-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.article-card--featured {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(11,31,58,0.08);
  border: 1px solid rgba(11,31,58,0.06);
  display: flex;
  flex-direction: column;
}
.article-accent { height: 4px; }
.article-body { padding: 36px 40px; flex: 1; display: flex; flex-direction: column; }
.article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.article-cat {
  display: inline-block;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-cat--emerald { background: rgba(15,123,95,0.1); color: var(--emerald); }
.article-cat--gold    { background: rgba(201,168,76,0.12); color: #a07c20; }
.article-cat--navy    { background: rgba(11,31,58,0.08); color: var(--navy-dark); }
.article-date { font-size: 0.75rem; color: var(--gray-muted, #888); }
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.article-excerpt { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; flex: 1; }
.article-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--emerald); text-decoration: none; letter-spacing: 0.04em; }

/* Small article cards */
.articles-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card-sm {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(11,31,58,0.06);
  border: 1px solid rgba(11,31,58,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card-sm:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,31,58,0.12); }
.article-accent-sm { height: 3px; }
.article-body-sm { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.article-meta-sm { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.article-title-sm { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy-dark); line-height: 1.35; margin-bottom: 12px; }
.article-excerpt-sm { font-size: 0.85rem; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.article-footer-sm { display: flex; align-items: center; justify-content: space-between; }
.article-link-sm { font-size: 0.75rem; font-weight: 700; color: var(--emerald); text-decoration: none; }

@media (max-width: 768px) {
  .featured-articles-grid { grid-template-columns: 1fr; }
  .articles-grid-3 { grid-template-columns: 1fr; }
  .article-body { padding: 28px 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .articles-grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ── Back to Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(15,123,95,0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
  pointer-events: none;
  z-index: 999;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: #0a6a50;
}
#back-to-top:active {
  transform: scale(0.94);
}
@media (max-width: 480px) {
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
