/* ============================================================
   CLAVIS STRATEGIC — Main Stylesheet
   clavisstrategic.com
   ============================================================ */

/* --- Font fallback (reduces CLS from web font swap) ----------- */
@font-face {
  font-family: 'Cormorant Garamond Fallback';
  src: local('Georgia'), local('Times New Roman');
  size-adjust: 96%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}

/* --- Variables ------------------------------------------------------- */
:root {
  --navy-900: #080f1e;
  --navy-800: #0b1829;
  --navy-700: #0f2238;
  --navy-600: #152d4a;
  --navy-500: #1e3f66;

  --gold-600: #9a7320;
  --gold-500: #c4952a;
  --gold-400: #d4af4e;
  --gold-300: #e8c96d;
  --gold-bg:  rgba(196,149,42,0.08);

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50:  #f9f9f7;
  --white:    #ffffff;

  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;

  --max-w:   1200px;
  --nav-h:   80px;
  --ease:    cubic-bezier(.4,0,.2,1);
  --trans:   .28s var(--ease);
}

/* --- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--font-sans); border: none; cursor: pointer; background: none; }

/* --- Container ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Eyebrow label --------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
/* Eyebrow on light/white backgrounds needs darker gold for WCAG AA contrast */
.section-white .eyebrow,
.section-light .eyebrow { color: #9a7520; }

/* --- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 2px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn-primary:hover { background: var(--gold-300); border-color: var(--gold-300); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold-500); border-color: var(--gold-500); }
.btn-outline-gold:hover { background: var(--gold-500); color: var(--navy-900); }
.btn-dark { background: var(--navy-800); color: var(--white); border-color: var(--navy-600); }
.btn-dark:hover { background: var(--navy-600); }

/* --- Navigation ------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,15,30,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: row; align-items: center; line-height: 1; gap: 10px; }
.nav-logo .logo-icon { color: var(--gold-400); flex-shrink: 0; }
.nav-logo .logo-text { display: flex; flex-direction: column; gap: 3px; }
.nav-logo .logo-name {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo .logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 13px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-bottom: 2px solid transparent;
  transition: color var(--trans), border-color var(--trans);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold-500);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,15,30,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
  z-index: 999;
  padding: 20px 28px 32px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 15px 0;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--gold-400); }
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* --- Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 68% 50%, rgba(21,45,74,.7) 0%, transparent 70%),
    radial-gradient(ellipse 35% 50% at 10% 70%, rgba(196,149,42,.04) 0%, transparent 60%),
    var(--navy-900);
}
.hero-globe {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-52%);
  width: 54%;
  max-width: 680px;
  opacity: .28;
  pointer-events: none;
  color: var(--white);
  filter: drop-shadow(0 0 40px rgba(196,149,42,.18));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold-400);
}
.hero-content p {
  font-size: 1.075rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-bottom {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  display: flex;
  justify-content: center;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.25);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(196,149,42,.4), transparent);
}

/* --- Page hero (inner pages) ---------------------------------------- */
.page-hero {
  background: var(--navy-900);
  padding: calc(var(--nav-h) + 80px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 80% 50%, rgba(21,45,74,.5) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.75;
}
.page-hero-rule {
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  margin-top: 36px;
}

/* --- Sections -------------------------------------------------------- */
section { padding: 72px 0; }
.section-dark  { background: var(--navy-900); color: var(--white); }
.section-navy  { background: var(--navy-700); color: var(--white); }
.section-light { background: var(--gray-50);  color: var(--gray-900); }
.section-white { background: var(--white);    color: var(--gray-900); }

.section-hd { margin-bottom: 48px; }
.section-hd.centered { text-align: center; }
.section-hd h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 12px;
}
.section-hd.dark h2  { color: var(--white); }
.section-hd p { color: var(--gray-500); font-size: 1.02rem; max-width: 540px; line-height: 1.75; }
.section-hd.dark p   { color: rgba(255,255,255,.5); }
.section-hd.centered p { margin: 0 auto; }
.section-hd .view-all {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  transition: gap var(--trans);
}
.section-hd .view-all:hover { gap: 12px; }
.section-white .section-hd .view-all,
.section-light .section-hd .view-all { color: #9a7520; }

/* --- Value props grid ----------------------------------------------- */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.06);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.value-prop {
  padding: 48px 40px;
  background: var(--navy-800);
  transition: background var(--trans);
}
.value-prop:hover { background: var(--navy-600); }
.value-prop-icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: var(--gold-500);
}
.value-prop h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.value-prop p  { color: rgba(255,255,255,.5); font-size: .93rem; line-height: 1.75; }

/* --- Services grid -------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-300);
}
.service-card {
  background: var(--white);
  padding: 44px 40px;
  border-left: 3px solid transparent;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.service-card:hover { border-left-color: var(--gold-500); box-shadow: 4px 0 20px rgba(0,0,0,.06); }
.service-card.full-w { grid-column: 1 / -1; background: var(--navy-900); }
.pillar-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  border: 1px solid rgba(196,149,42,.3);
  padding: 3px 10px;
  margin-bottom: 18px;
}
.service-card h3 { color: var(--gray-900); font-size: 1.2rem; margin-bottom: 10px; }
.service-card.full-w h3 { color: var(--white); }
.service-card p  { color: var(--gray-500); font-size: .93rem; line-height: 1.72; margin-bottom: 22px; }
.service-card.full-w p { color: rgba(255,255,255,.5); }
.arrow-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--trans);
}
.arrow-link:hover { gap: 14px; }

/* --- Sectors strip -------------------------------------------------- */
.sectors-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,.06);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.sector-tile {
  padding: 40px 24px 36px;
  background: var(--navy-800);
  text-align: center;
  transition: background var(--trans);
}
.sector-tile:hover { background: var(--navy-500); }
.sector-tile .s-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.sector-tile h4 {
  color: var(--white);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.sector-tile p { color: rgba(255,255,255,.60); font-size: .78rem; line-height: 1.5; }

/* --- Insight cards -------------------------------------------------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.insight-thumb {
  height: 190px;
  background: var(--navy-600);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.insight-thumb.t1 { background: linear-gradient(135deg, #0f2238, #1e3f66); }
.insight-thumb.t2 { background: linear-gradient(135deg, #0f2238, #152d4a); }
.insight-thumb.t3 { background: linear-gradient(135deg, #1a1020, #0f2238); }
.insight-cat {
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.insight-body { padding: 26px 24px; }
.insight-body h3 { font-size: 1rem; color: var(--gray-900); line-height: 1.42; margin-bottom: 10px; }
.insight-body p  { font-size: .875rem; color: var(--gray-500); margin-bottom: 18px; line-height: 1.68; }
.insight-foot {
  font-size: .78rem;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insight-dl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- CTA banner ----------------------------------------------------- */
.cta-banner {
  background: linear-gradient(150deg, var(--navy-700) 0%, var(--navy-900) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,149,42,.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative; z-index: 1;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* --- Footer --------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo-wrap { display: flex; flex-direction: row; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-wrap .logo-icon { color: var(--gold-400); flex-shrink: 0; }
.footer-logo-wrap .logo-text { display: flex; flex-direction: column; gap: 3px; }
.footer-brand .logo-name {
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 3px 0 18px;
  display: block;
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.60); line-height: 1.75; max-width: 280px; }
.footer-brand .conf-badge {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 11px;
}
.footer-brand .conf-badge::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}
.footer-col h3, .footer-col h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  padding: 5px 0;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: .875rem; color: rgba(255,255,255,.62); line-height: 1.8; }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-col .contact-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-500);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.50);
}
.footer-bottom a { color: rgba(255,255,255,.50); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; }

/* --- Services detail page ------------------------------------------ */
.pillar-block { padding: 72px 0; border-bottom: 1px solid var(--gray-100); }
.pillar-block:last-child { border-bottom: none; }
.pillar-intro {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(196,149,42,.15);
  flex-shrink: 0;
}
.pillar-intro-text h2 { margin-bottom: 6px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.pillar-intro-text p  { color: var(--gray-500); font-size: .97rem; max-width: 540px; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  border: 1px solid var(--gray-300);
  padding: 40px 36px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.svc-card:hover { border-color: var(--gold-500); box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.svc-card h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--gray-900); }
.svc-card > p { color: var(--gray-500); font-size: .93rem; line-height: 1.72; margin-bottom: 24px; }
.svc-card ul li {
  font-size: .875rem;
  color: var(--gray-700);
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  line-height: 1.5;
}
.svc-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}
.svc-card ul li:last-child { border-bottom: none; }

/* Watch tiers */
.watch-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.watch-tier {
  border: 1px solid var(--gray-300);
  border-top: 3px solid var(--gray-300);
  padding: 18px 16px;
  background: var(--gray-50);
}
.watch-tier--premium {
  border-top-color: var(--gold-500);
  background: rgba(196,149,42,.04);
}
.watch-tier-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.watch-tier--premium .watch-tier-label { color: var(--gold-600); }
.watch-tier-text {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* Retainer card */
.retainer-wrap {
  background: var(--navy-900);
  padding: 72px 64px;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.retainer-wrap h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 16px; }
.retainer-wrap > div > p { color: rgba(255,255,255,.5); font-size: .97rem; line-height: 1.8; }
.retainer-features { margin-top: 0; }
.retainer-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .93rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.retainer-features li:last-child { border-bottom: none; }
.rf-check { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }

/* --- Sectors detail page ------------------------------------------- */
.sector-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sector-card-full { grid-column: 1 / -1; }
.sector-card-detail {
  background: var(--white);
  border: 1px solid var(--gray-200, #e5e7eb);
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.sector-card-detail:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.sc-head {
  background: var(--navy-700);
  padding: 36px 40px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sc-head-icon { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.sc-head h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.sc-head p  { color: rgba(255,255,255,.45); font-size: .85rem; }
.sc-body { padding: 32px 40px; }
.sc-body > p { color: var(--gray-700); font-size: .93rem; line-height: 1.75; margin-bottom: 24px; }
.sc-body h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy-700);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  padding: 4px 12px;
}

/* --- About page ----------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 20px; }
.about-intro-text p  { color: var(--gray-500); font-size: .97rem; line-height: 1.8; margin-bottom: 16px; }
.name-meaning {
  background: var(--navy-900);
  padding: 48px;
  border-left: 3px solid var(--gold-500);
}
.name-meaning h3 { color: var(--white); font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 6px; }
.name-meaning .name-lat { color: var(--gold-400); font-size: .8rem; letter-spacing: .12em; margin-bottom: 20px; display: block; text-transform: uppercase; }
.name-meaning p { color: rgba(255,255,255,.5); font-size: .93rem; line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-block {
  padding: 40px 32px;
  background: var(--navy-800);
  border-top: 3px solid var(--gold-500);
}
.value-block h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.value-block p { color: rgba(255,255,255,.5); font-size: .93rem; line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {}
.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--navy-700);
  margin-bottom: 20px;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.12);
}
.team-card h3 { font-size: 1.1rem; color: var(--gray-900); margin-bottom: 4px; }
.team-role {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-600);
  margin-bottom: 10px;
  display: block;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-600);
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s;
}
.team-linkedin:hover { opacity: 1; }
.team-linkedin svg { width: 13px; height: 13px; }
.team-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.68; }

/* --- Insights page -------------------------------------------------- */

.insights-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card-lg { background: var(--white); border: 1px solid var(--gray-300); overflow: hidden; transition: transform var(--trans), box-shadow var(--trans); }
.insight-card-lg:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.ic-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.ic-thumb.t1 { background: linear-gradient(140deg, #0b1c33, #1e3f66); }
.ic-thumb.t2 { background: linear-gradient(140deg, #0b1c33, #152d4a); }
.ic-thumb.t3 { background: linear-gradient(140deg, #15091e, #0f2238); }
.ic-thumb.t4 { background: linear-gradient(140deg, #0b1c33, #0f2238); }
.ic-cat {
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.ic-body { padding: 28px 26px; }
.ic-body h3 { font-size: 1rem; color: var(--gray-900); line-height: 1.42; margin-bottom: 10px; }
.ic-body p  { font-size: .875rem; color: var(--gray-500); line-height: 1.68; margin-bottom: 18px; }
.ic-foot {
  font-size: .78rem;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ic-dl {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans);
}
.ic-dl:hover { gap: 10px; }

/* --- Contact page --------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-side h3 { color: var(--white); margin-bottom: 8px; font-size: 1.25rem; }
.contact-side > p { color: rgba(255,255,255,.5); font-size: .93rem; line-height: 1.75; margin-bottom: 44px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(196,149,42,.08);
  border: 1px solid rgba(196,149,42,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 17px; height: 17px; color: var(--gold-500); }
.ci-text h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.ci-text p, .ci-text a { font-size: .93rem; color: var(--white); }

.contact-form-box { background: var(--white); padding: 48px 44px; }
.contact-form-box h3 { font-size: 1.3rem; margin-bottom: 32px; color: var(--gray-900); }
.fg { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: .93rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
}
textarea { resize: vertical; min-height: 110px; }
select   { appearance: none; cursor: pointer; }
.form-note { font-size: .8rem; color: var(--gray-500); margin-top: 6px; }

/* --- Horizontal rule with gold ----------------------------------------- */
.gold-rule { height: 1px; background: linear-gradient(90deg, var(--gold-500), transparent); width: 120px; margin: 32px 0; }

/* --- Responsive ------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .retainer-wrap { padding: 56px 48px; }
  .about-intro { gap: 48px; }
}

@media (max-width: 900px) {
  .sectors-strip { grid-template-columns: repeat(3, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .retainer-wrap { grid-template-columns: 1fr; padding: 48px 36px; }
  .sector-card-full { grid-column: auto; }
}

@media (max-width: 768px) {
  .context-stats { grid-template-columns: 1fr !important; }
  :root { --nav-h: 64px; }
  section { padding: 64px 0; }

  .nav-links, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-globe { display: none; }
  .hero-content h1 { font-size: 2.4rem; }

  .value-props { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.full-w { grid-column: auto; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
  .sector-cards { grid-template-columns: 1fr; }
  .sectors-strip { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .contact-form-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .retainer-wrap { margin-top: 40px; }
  .pillar-intro { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pillar-num { font-size: 3rem; }
}

@media (max-width: 480px) {
  .sectors-strip { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* --- Legal pages (Privacy, Terms) ------------------------------ */
.legal-hero {
  padding: 140px 0 64px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.legal-meta {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}
.legal-body {
  background: var(--navy-900);
  padding: 72px 0 100px;
}
.legal-content {
  max-width: 760px;
}
.legal-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.85;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 14px;
}
.legal-content p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-content ul {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.85;
  margin: 0 0 16px 20px;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--gold-500); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: rgba(255,255,255,.8); }

/* --- Thank You page -------------------------------------------- */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--navy-900);
}
.thankyou-box { max-width: 560px; text-align: center; }
.thankyou-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold-500);
}
.thankyou-eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-500); display: block; margin-bottom: 16px;
}
.thankyou-box h1 {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 600; color: var(--white);
  margin-bottom: 20px; line-height: 1.2;
}
.thankyou-box p {
  color: rgba(255,255,255,.5); font-size: .97rem;
  line-height: 1.8; margin-bottom: 40px;
}
.thankyou-rule {
  width: 48px; height: 1px;
  background: var(--gold-500); margin: 0 auto 40px;
}

/* --- Language switcher ----------------------------------------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 16px;
  border: 2px solid var(--gold-400);
  border-radius: 6px;
  overflow: hidden;
}
.lang-switch-sep {
  display: none;
}
.lang-btn {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: transparent;
  border: none;
  padding: 7px 14px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  line-height: 1;
}
.lang-btn:hover {
  color: var(--navy-900);
  background: var(--gold-400);
}
.lang-btn.active {
  color: var(--navy-900);
  background: var(--gold-400);
  font-weight: 800;
}
/* divider between EN and ES */
.lang-btn + .lang-btn {
  border-left: 2px solid var(--gold-400);
}
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-lang-switch .lang-sep { color: rgba(255,255,255,.2); font-size: .8rem; }

/* ── SENT SUCCESS BANNER ──────────────────────────────────────────────────── */
#sent-banner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 14px 24px;
  font-size: .93rem;
  font-weight: 500;
  text-align: center;
}
#sent-banner-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy-900);
  padding: 0 4px;
  line-height: 1;
  opacity: .6;
  flex-shrink: 0;
}
#sent-banner-close:hover { opacity: 1; }

/* ── INSIGHT ARTICLE PAGES ────────────────────────────────────────────────── */
.article-hero {
  background: var(--navy-900);
  padding: 120px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.article-hero .eyebrow { color: var(--gold-400); margin-bottom: 20px; display: block; }
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 600;
  max-width: 780px;
  line-height: 1.22;
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.article-meta .meta-cat {
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.article-meta .meta-date   { color: rgba(255,255,255,.45); font-size: .82rem; }
.article-meta .meta-author { color: rgba(255,255,255,.35); font-size: .78rem; font-style: italic; }
.article-meta .meta-issue  {
  color: rgba(255,255,255,.30);
  font-size: .72rem;
  font-family: var(--font-sans);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 2px 8px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-400);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 32px;
}
.article-back:hover { color: var(--gold-300); }

.article-body { padding: 72px 0; }
.article-content { max-width: 740px; }
.article-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 56px;
  border-left: 3px solid var(--gold-500);
  padding-left: 24px;
}

.article-takeaways {
  background: var(--gray-50);
  border-radius: 4px;
  padding: 40px 44px;
  margin-bottom: 56px;
}
.article-takeaways .section-eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 24px;
  display: block;
}
.article-takeaways ul { list-style: none; padding: 0; margin: 0; }
.article-takeaways ul li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--gray-700);
}
.article-takeaways ul li:last-child { border-bottom: none; }
.article-takeaways ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.article-pdf-what {
  margin-bottom: 56px;
}
.article-pdf-what h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 20px;
}
.article-pdf-what ul { list-style: none; padding: 0; margin: 0; }
.article-pdf-what ul li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: .92rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.article-pdf-what ul li:last-child { border-bottom: none; }
.article-pdf-what ul li::before {
  content: '→';
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
}

.article-gate {
  background: var(--navy-900);
  border-radius: 6px;
  padding: 48px;
  margin-bottom: 32px;
}
.article-gate .gate-eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 12px;
  display: block;
}
.article-gate h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.article-gate p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.article-gate form { display: flex; gap: 10px; flex-wrap: wrap; }
.pdf-download-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.article-gate form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 12px 16px;
  font-size: .9rem;
  border-radius: 3px;
}
.article-gate form input[type="email"]::placeholder { color: rgba(255,255,255,.3); }
.article-gate form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold-400);
}

/* ── Gate success state ──────────────────────────────── */
.gate-success {
  text-align: center;
  padding: 16px 0 8px;
}
.gate-success-check {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-400);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}
.gate-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.gate-success p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: none;
}
.gate-success .btn { display: inline-flex; }

@media (max-width: 768px) {
  .article-hero { padding: 100px 0 48px; }
  .article-takeaways { padding: 28px 24px; }
  .article-gate { padding: 32px 24px; }
  .article-gate form { flex-direction: column; }
  .article-gate form input[type="email"] { min-width: 0; }
}
.mobile-lang-switch .lang-btn { font-size: .8rem; padding: 6px 10px; }

/* --- Trust Strip ─────────────────────────────────────────────── */
.trust-strip {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 72px;
}

.trust-group-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.trust-logos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
}

.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--trans);
  opacity: .6;
}

.trust-logo:hover { opacity: 1; }

.trust-logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--trans);
}

.trust-logo:hover img { filter: grayscale(30%); }

/* Text-only fallback (used when no logo image is available) */
.trust-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy-600);
  line-height: 1;
}

.trust-logo-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  max-width: 150px;
  line-height: 1.5;
}

.trust-sep {
  width: 1px;
  height: 72px;
  background: var(--gray-300);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-group { padding: 0 40px; }
  .trust-logos { gap: 40px; }
}

@media (max-width: 768px) {
  .trust-strip { padding: 56px 0; }
  .trust-inner {
    flex-direction: column;
    gap: 40px;
  }
  .trust-sep {
    width: 56px;
    height: 1px;
  }
  .trust-group { padding: 0 24px; }
  .trust-logos { gap: 36px; }
}

@media (max-width: 480px) {
  .trust-logos { flex-direction: column; gap: 28px; align-items: center; }
}
