:root {
  --navy: #0A1628;
  --navy-mid: #0F2038;
  --navy-light: #162D4A;
  --navy-surface: #1A3354;
  --steel: #3B6B8A;
  --steel-light: #5B8DAE;
  --cyan-muted: #4A90A4;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --gray-50: #F1F3F7;
  --gray-100: #E4E7ED;
  --gray-200: #CDD2DC;
  --gray-300: #A8B0BF;
  --gray-400: #7D869A;
  --gray-500: #5E6778;
  --gray-600: #434C5E;
  --gray-700: #2E3544;
  --gold: #C4993D;
  --gold-light: #D4AD58;
  --gold-dim: rgba(196,153,61,0.15);
  --success-green: #2EC486;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-w: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--gray-600); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul { list-style: none; }

/* Lang */
[data-lang="en"] .es { display: none !important; }
[data-lang="es"] .en { display: none !important; }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.1rem; color: var(--gray-500); line-height: 1.8; }
.overline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}
.section-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.75;
}
.gold { color: var(--gold); }
.italic { font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,153,61,0.3); }
.btn-dark {
  background: var(--navy); color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.25); }
.btn-outline-light {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.btn-sm { padding: 11px 24px; font-size: 0.82rem; }
.arrow-r { transition: transform 0.3s var(--ease); }
.btn:hover .arrow-r { transform: translateX(4px); }

/* Scroll Reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 1000;
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy);
}
.logo-text {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  color: rgba(255,255,255,0.6); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.015em; padding: 6px 0; position: relative;
  transition: color 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  padding: 9px 22px; border-radius: 5px; font-size: 0.82rem; font-weight: 600;
  background: var(--gold); color: var(--navy); margin-left: 4px;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); }
.lang-switch {
  display: flex; gap: 0; margin-left: 8px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; overflow: hidden;
}
.lang-btn {
  padding: 5px 10px; font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.08em;
  transition: all 0.3s var(--ease);
}
.lang-btn.active { background: rgba(255,255,255,0.12); color: var(--white); }
.lang-btn:hover { color: var(--white); }

/* Mobile */
.menu-toggle { display: none; color: var(--white); font-size: 1.5rem; }
.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; padding: 48px 28px;
  flex-direction: column; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.15rem; font-weight: 500; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,32,56,0.85) 50%, rgba(22,45,74,0.8) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80') center/cover no-repeat;
  opacity: 0.35;
}
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
/* Animated gradient orb */
.hero-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,153,61,0.08) 0%, transparent 60%);
  top: 20%; right: -5%; z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}
.hero-content {
  position: relative; z-index: 2; max-width: 760px; padding: 80px 0 40px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,0.6); line-height: 1.85;
  margin-bottom: 44px; max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-metrics {
  display: flex; gap: 56px; margin-top: 80px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.metric { text-align: left; }
.metric-value {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1.1;
}
.metric-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 6px;
  display: block; font-weight: 500;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--off-white); padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-tag {
  font-size: 0.73rem; font-weight: 700; color: var(--gray-300);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-300);
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dim);
  border: 1px solid var(--gold);
}

/* =============================================
   WHY WOLF
   ============================================= */
.why-wolf { background: var(--white); }
.why-intro { max-width: 680px; margin-bottom: 64px; }
.why-intro h2 { margin-bottom: 18px; }
.why-intro p { color: var(--gray-500); font-size: 1.02rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  padding: 40px 36px; border-radius: 14px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.why-card:hover { border-color: rgba(196,153,61,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,22,40,0.06); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.2rem;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { margin-bottom: 12px; }
.why-card p { color: var(--gray-400); font-size: 0.92rem; margin: 0; line-height: 1.7; }

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.services-home {
  background: var(--navy); position: relative; overflow: hidden;
}
.services-home::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1800&q=80') center/cover no-repeat;
  opacity: 0.06;
}
.services-home .overline { color: var(--gold); }
.services-home h2 { color: var(--white); }
.services-home .section-sub { color: rgba(255,255,255,0.45); }
.srv-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 56px; position: relative; z-index: 1;
}
.srv-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 44px 40px;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.srv-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(196,153,61,0.2); transform: translateY(-3px); }
.srv-card:hover::after { opacity: 1; }
.srv-num {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700;
  color: rgba(255,255,255,0.04); position: absolute; top: 16px; right: 28px;
  line-height: 1;
}
.srv-card h3 { color: var(--white); margin-bottom: 14px; font-size: 1.2rem; }
.srv-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 22px; line-height: 1.7; }
.srv-link {
  font-size: 0.84rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s var(--ease);
}
.srv-link:hover { gap: 10px; }

/* =============================================
   IMPACT / PROOF
   ============================================= */
.impact-section { background: var(--off-white); }
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 56px;
}
.impact-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px;
  padding: 36px 28px; text-align: center;
  transition: all 0.4s var(--ease);
}
.impact-card:hover { border-color: var(--gold); box-shadow: 0 12px 36px rgba(10,22,40,0.06); transform: translateY(-3px); }
.impact-num {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700;
  color: var(--navy); line-height: 1.1; margin-bottom: 8px;
}
.impact-num .gold { color: var(--gold); }
.impact-title {
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.impact-desc {
  font-size: 0.82rem; color: var(--gray-400); line-height: 1.65; margin: 0;
}

/* =============================================
   LEADERSHIP PREVIEW (HOME)
   ============================================= */
.leaders-home { background: var(--white); }
.leaders-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px;
}
.leader-card {
  border: 1px solid var(--gray-100); border-radius: 14px; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.leader-card:hover { border-color: rgba(196,153,61,0.3); box-shadow: 0 16px 48px rgba(10,22,40,0.06); transform: translateY(-3px); }
.leader-visual {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.leader-visual img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35; mix-blend-mode: luminosity;
}
.leader-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
}
.leader-overlay .leader-name {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 2px;
}
.leader-overlay .leader-role {
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.04em;
}
.leader-body { padding: 24px 28px; }
.leader-expertise {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.leader-tag {
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 3px;
  background: var(--gray-50); color: var(--gray-500); letter-spacing: 0.02em;
}
.leader-bio {
  font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; margin: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-band {
  background: var(--navy); position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1800&q=80') center/cover no-repeat;
  opacity: 0.08;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.5); font-size: 1.02rem; margin-bottom: 36px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (About / Services)
   ============================================= */
.page-hero {
  background: var(--navy); padding: 170px 0 100px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
}
.page-hero-img {
  position: absolute; inset: 0; opacity: 0.15;
  background-size: cover; background-position: center;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.08rem; line-height: 1.8; }

/* =============================================
   ABOUT — NARRATIVE
   ============================================= */
.about-narrative { background: var(--white); }
.narr-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: start; }
.narr-content h2 { margin-bottom: 22px; }
.narr-content p { color: var(--gray-500); font-size: 0.95rem; }
.narr-content blockquote {
  border-left: 3px solid var(--gold); padding: 12px 0 12px 24px;
  margin: 28px 0; font-family: var(--font-serif); font-style: italic;
  font-size: 1.15rem; color: var(--navy); line-height: 1.6;
}
.narr-sidebar {
  background: var(--navy); border-radius: 16px; padding: 40px; color: var(--white);
}
.narr-stat { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.narr-stat:last-child { border-bottom: none; }
.narr-stat-val { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.narr-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* =============================================
   ABOUT — EXPERTISE
   ============================================= */
.expertise { background: var(--off-white); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.exp-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 32px; transition: all 0.35s var(--ease);
}
.exp-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,22,40,0.05); }
.exp-icon-bar {
  width: 40px; height: 3px; background: var(--gold); border-radius: 2px;
  margin-bottom: 18px;
}
.exp-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.exp-card p { font-size: 0.86rem; color: var(--gray-400); margin: 0; line-height: 1.65; }

/* =============================================
   ABOUT — FOUNDERS (Editorial)
   ============================================= */
.founders-full { background: var(--white); }
.founder-feature {
  display: grid; grid-template-columns: 0.45fr 0.55fr; gap: 60px;
  align-items: center; padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}
.founder-feature:last-child { border-bottom: none; }
.founder-feature:nth-child(even) { direction: rtl; }
.founder-feature:nth-child(even) > * { direction: ltr; }
.founder-portrait {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.founder-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s var(--ease);
}
.founder-feature:hover .founder-portrait img {
  filter: grayscale(0%);
}
.founder-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 32px;
}
.founder-portrait-overlay .fp-name {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--white);
}
.founder-details .overline { margin-bottom: 8px; }
.founder-details h3 { font-size: 1.6rem; margin-bottom: 4px; }
.founder-details .f-title {
  font-size: 0.85rem; font-weight: 600; color: var(--steel); margin-bottom: 20px; display: block;
}
.founder-details p { color: var(--gray-500); font-size: 0.94rem; }
.founder-details .f-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px;
}
.f-tag {
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 4px;
  background: var(--gray-50); color: var(--gray-500); letter-spacing: 0.02em;
  border: 1px solid var(--gray-100);
}

/* =============================================
   ABOUT — WHY WOLF (DEEP)
   ============================================= */
.why-deep { background: var(--off-white); }
.wd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wd-list { list-style: none; }
.wd-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--gray-100);
}
.wd-list li:last-child { border-bottom: none; }
.wd-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-dim); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 0.75rem;
  margin-top: 2px; border: 1px solid rgba(196,153,61,0.3);
}
.wd-list li span { font-size: 0.93rem; color: var(--gray-600); font-weight: 500; }

/* =============================================
   SERVICES — DETAIL BLOCKS
   ============================================= */
.srv-detail { border-bottom: 1px solid var(--gray-100); }
.srv-detail:nth-child(even) { background: var(--off-white); }
.srv-detail-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start;
}
.srv-detail:nth-child(even) .srv-detail-grid { direction: rtl; }
.srv-detail:nth-child(even) .srv-detail-grid > * { direction: ltr; }
.srv-detail-body .overline { color: var(--gold); }
.srv-detail-body h2 { margin-bottom: 18px; font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.srv-detail-body > p { color: var(--gray-500); font-size: 0.94rem; }
.deliverables {
  margin-top: 28px; background: var(--gray-50); border-radius: 12px; padding: 28px;
  border: 1px solid var(--gray-100);
}
.srv-detail:nth-child(even) .deliverables { background: var(--white); }
.deliverables h4 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.deliverables li {
  font-size: 0.88rem; color: var(--gray-500); padding: 5px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.deliverables li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.srv-sidebar {}
.srv-highlight {
  background: var(--navy); border-radius: 14px; padding: 36px; margin-bottom: 20px;
}
.srv-highlight h4 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.srv-highlight .big-stat {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.srv-highlight p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.srv-ideal {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px; padding: 28px;
}
.srv-detail:nth-child(even) .srv-ideal { background: var(--off-white); }
.srv-ideal h4 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.srv-ideal li {
  font-size: 0.86rem; color: var(--gray-500); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.srv-ideal li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--steel); flex-shrink: 0;
}

/* How we engage strip */
.engage-strip {
  background: var(--navy); padding: 64px 0;
}
.engage-inner { text-align: center; }
.engage-inner .overline { color: var(--gold); }
.engage-inner h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 36px; }
.engage-flow {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.engage-step {
  padding: 0 36px; position: relative; text-align: center;
}
.engage-step::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 1px; background: rgba(255,255,255,0.12);
}
.engage-step:last-child::after { display: none; }
.engage-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(196,153,61,0.15); border: 1px solid rgba(196,153,61,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700;
  color: var(--gold); margin: 0 auto 10px;
}
.engage-step-label {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--gray-400); margin-bottom: 32px; font-size: 0.95rem; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.contact-item span { font-size: 0.9rem; color: var(--gray-500); }
.contact-form {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 44px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray-600);
  margin-bottom: 5px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200);
  border-radius: 8px; font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--gray-700); transition: all 0.3s var(--ease); background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,153,61,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 6px; }

/* =============================================
   BLOG
   ============================================= */
.blog-hero {
  background: var(--navy); padding: 160px 0 80px; position: relative; overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(15,32,56,0.88) 100%);
  z-index: 1;
}
.blog-hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?w=1800&q=80') center/cover no-repeat;
  opacity: 0.2;
}
.blog-hero-content { position: relative; z-index: 2; }
.blog-hero h1 { color: var(--white); margin-bottom: 16px; }
.blog-hero p { color: rgba(255,255,255,0.55); max-width: 580px; font-size: 1.08rem; line-height: 1.8; }
.blog-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px;
}
.blog-filter-btn {
  padding: 8px 20px; border-radius: 30px; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.12);
  background: transparent; transition: all 0.3s var(--ease); letter-spacing: 0.01em;
}
.blog-filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.blog-filter-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px;
  overflow: hidden; transition: all 0.35s var(--ease); cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,22,40,0.1); border-color: transparent; }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover; background: var(--gray-100);
  display: block;
}
.blog-card-img-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
}
.blog-card-body { padding: 28px; }
.blog-card-cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: inline-block;
}
.blog-card-title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); line-height: 1.35; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt {
  font-size: 0.88rem; color: var(--gray-400); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 18px;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 16px; font-size: 0.76rem; color: var(--gray-300);
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
@keyframes blogCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.blog-card { animation: blogCardIn 0.6s var(--ease-out) both; }
.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.15s; }
.blog-card:nth-child(3) { animation-delay: 0.25s; }
.blog-card:nth-child(4) { animation-delay: 0.35s; }
.blog-card:nth-child(5) { animation-delay: 0.45s; }
.blog-card:nth-child(6) { animation-delay: 0.55s; }

.blog-empty {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
}
.blog-empty-icon {
  font-size: 3rem; color: var(--gray-200); margin-bottom: 16px;
}
.blog-empty h3 { font-family: var(--font-sans); color: var(--gray-400); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.blog-empty p { color: var(--gray-300); font-size: 0.9rem; }

/* Blog Article Detail */
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600; color: var(--gold);
  cursor: pointer; margin-bottom: 40px; transition: gap 0.3s var(--ease);
}
.article-back:hover { gap: 12px; }
.article-header { max-width: 780px; margin-bottom: 48px; }
.article-cat-badge {
  display: inline-block; padding: 5px 14px; border-radius: 30px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); background: var(--gold-dim);
  margin-bottom: 18px;
}
.article-header h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.article-meta-bar {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.84rem; color: var(--gray-400); flex-wrap: wrap;
}
.article-meta-bar span { display: flex; align-items: center; gap: 6px; }
.article-hero-img {
  width: 100%; max-height: 480px; object-fit: cover; border-radius: 14px;
  margin-bottom: 48px;
}
.article-body {
  max-width: 720px; font-size: 1.05rem; line-height: 1.9; color: var(--gray-600);
}
.article-body h2 {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy);
  margin: 40px 0 16px; font-weight: 600;
}
.article-body h3 {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy);
  margin: 32px 0 12px; font-weight: 600;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 16px 24px; margin: 28px 0;
  font-style: italic; color: var(--gray-500); background: var(--gray-50); border-radius: 0 8px 8px 0;
}
.article-cta-band {
  margin-top: 64px; padding: 48px; border-radius: 16px;
  background: var(--navy); text-align: center;
}
.article-cta-band h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.article-cta-band p { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-bottom: 24px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: rgba(255,255,255,0.4); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.4); padding: 4px 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; font-size: 0.75rem; }

/* SPA pages */
.page { display: none; }
.page.active { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid, .leaders-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .narr-grid, .srv-detail-grid, .wd-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .srv-detail:nth-child(even) .srv-detail-grid { direction: ltr; }
  .founder-feature { grid-template-columns: 1fr; gap: 32px; }
  .founder-feature:nth-child(even) { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .why-grid, .leaders-grid, .exp-grid, .srv-grid, .impact-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 28px; flex-wrap: wrap; }
  .hero-content { padding: 30px 0; }
  .section-pad { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .engage-flow { flex-direction: column; gap: 16px; }
  .engage-step::after { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-filters { justify-content: center; }
}
