/*
Theme Name: S4 Global
Theme URI: https://s4global.co
Author: S4 Global
Author URI: https://s4global.co
Description: Strategic Intelligence & Development Consulting theme
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: s4global
Domain Path: /languages
*/

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

:root {
  --navy:     #0B1526;
  --navy-mid: #162035;
  --navy-lt:  #1E2E4A;
  --gold:     #C4985A;
  --gold-lt:  #D9B26E;
  --white:    #FFFFFF;
  --off-white:#F5F4F0;
  --gray:     #8A95A3;
  --text:     #1A1A2E;
  --border:   rgba(255,255,255,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}

/* WordPress admin bar offset */
body.admin-bar nav {
  top: 32px;
}
body.admin-bar .hero {
  padding-top: 104px; /* 72px nav + 32px admin bar */
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; height: 44px; }
.nav-logo svg { height: 56px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-lt) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,152,90,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,152,90,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero-accent {
  position: absolute;
  top: 15%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,152,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ghost {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-right {}

.hero-stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(196,152,90,0.2);
  border-radius: 6px;
  padding: 32px;
  margin-bottom: 16px;
}
.hero-stat-card:last-child { margin-bottom: 0; }

.stat-number {
  font-family: 'EB Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

.hero-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── CREDENTIALS BAR ─────────────────────────────────── */
.credentials {
  background: var(--navy-lt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
}

.credentials-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.cred-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); white-space: nowrap; }
.cred-item { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.cred-item::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.cred-divider { width: 1px; height: 20px; background: var(--border); }

/* ─── SECTION SHARED ──────────────────────────────────── */
section { padding: 96px 32px; }
.section-inner { max-width: 1240px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-body { font-size: 17px; color: #4A5568; line-height: 1.75; max-width: 640px; }
.section-body-light { color: rgba(255,255,255,0.65); }

/* ─── ABOUT ───────────────────────────────────────────── */
.about { background: var(--off-white); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.about-quote {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}

.about-pillars { display: flex; flex-direction: column; gap: 20px; }

.pillar { display: flex; gap: 16px; align-items: flex-start; }

.pillar-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}

.pillar-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: 0.02em; }
.pillar-text { font-size: 14px; color: #5A6474; line-height: 1.6; }

/* ─── CAPABILITIES ─────────────────────────────────────── */
.capabilities { background: var(--navy); }

.cap-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  overflow: hidden;
}

.cap-card { background: var(--navy-mid); padding: 40px 36px; transition: background 0.25s; cursor: default; }
.cap-card:hover { background: var(--navy-lt); }

.cap-number { font-family: 'EB Garamond', serif; font-size: 13px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 20px; display: block; }
.cap-title { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.cap-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.cap-divider { width: 32px; height: 1px; background: var(--gold); margin: 16px 0; opacity: 0.5; }

/* ─── WHO WE SERVE ─────────────────────────────────────── */
.serve { background: var(--white); }
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.serve-cards { display: flex; flex-direction: column; gap: 16px; }

.serve-card {
  background: var(--off-white);
  border-left: 3px solid transparent;
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  transition: border-color 0.2s, background 0.2s;
}
.serve-card:hover { border-color: var(--gold); background: #F0EDE4; }
.serve-card-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: 0.02em; }
.serve-card-text { font-size: 13px; color: #5A6474; line-height: 1.6; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-check {
  width: 22px; height: 22px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2.5; fill: none; }
.why-text { font-size: 15px; color: #3A4455; line-height: 1.6; }
.why-text strong { color: var(--navy); font-weight: 700; }

/* ─── REGIONS ──────────────────────────────────────────── */
.regions { background: var(--navy-mid); padding: 64px 32px; }

.regions-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.regions-left .section-title { color: var(--white); font-size: clamp(24px, 2.5vw, 34px); }
.regions-left .section-body { color: rgba(255,255,255,0.55); font-size: 15px; }

.regions-tags { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.region-tag {
  border: 1px solid rgba(196,152,90,0.35);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.region-tag:hover { border-color: var(--gold); color: var(--white); }

/* ─── INSIGHTS ─────────────────────────────────────────── */
.insights { background: var(--off-white); }

.insights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.insight-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #E8E4DC;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,21,38,0.1); }

.insight-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--navy-lt);
  display: flex; align-items: center; justify-content: center;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-img img {
  transform: scale(1.05);
}

.insight-img-icon { display: none; }
.insight-img-1 { background: linear-gradient(135deg, #0B1526 0%, #1E3A5F 100%); }
.insight-img-2 { background: linear-gradient(135deg, #1A1A0E 0%, #2D3B1A 100%); }
.insight-img-3 { background: linear-gradient(135deg, #1A0B1A 0%, #3B1A3A 100%); }

.insight-img-icon { font-size: 40px; opacity: 0.35; }

.insight-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

.insight-body { padding: 24px; }
.insight-meta { font-size: 12px; color: var(--gray); margin-bottom: 10px; letter-spacing: 0.04em; }
.insight-title { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.insight-excerpt { font-size: 13px; color: #5A6474; line-height: 1.65; margin-bottom: 16px; }

.insight-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.insight-link::after { content: '→'; }

/* ─── CTA ──────────────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 96px 32px; }

.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-inner .section-eyebrow { justify-content: center; }
.cta-inner .section-eyebrow::before { display: none; }
.cta-inner .section-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.cta-inner .section-title { color: var(--white); font-size: clamp(32px, 4vw, 52px); margin-bottom: 24px; }
.cta-inner .section-body { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 40px; font-size: 16px; }

.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ─── FOOTER ───────────────────────────────────────────── */
footer { background: #070D18; padding: 60px 32px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1240px; margin: 0 auto; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-logo { height: 36px; width: auto; margin-bottom: 20px; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 260px; }


.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .cap-header { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; gap: 48px; }
  .regions-inner { grid-template-columns: 1fr; gap: 40px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
  body.admin-bar nav { top: 46px; }
  body.admin-bar .hero { padding-top: 118px; /* 72px nav + 46px admin bar on mobile */ }
}

@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { padding: 48px 20px; }
  .cap-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .credentials-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cred-divider { display: none; }
}


/* ─── SINGLE INSIGHT POST ──────────────────────────────── */
.single-insight {
  background: var(--white);
  padding: 80px 32px;
  min-height: calc(100vh - 72px);
}
.insight-wrapper { max-width: 800px; margin: 0 auto; }

/* CLASSIFICATION BANNER */
.classification-banner { width: 100%; text-align: center; padding: 6px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.classification-banner.cl-unclassified { background: #2D6A2E; color: #FFFFFF; }
.classification-banner.cl-fouo { background: #2D6A2E; color: #FFFFFF; }
.classification-banner.cl-confidential { background: #1565C0; color: #FFFFFF; }
.classification-banner.cl-secret { background: #C62828; color: #FFFFFF; }
.single-insight .classification-banner { margin: 0 -32px 32px; width: calc(100% + 64px); }
.classification-banner-bottom { margin: 40px -32px 0; width: calc(100% + 64px); }
.insight-tags-container { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; margin-top: 40px; }
.insight-tag-pill { display: inline-block; padding: 6px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 3px; white-space: nowrap; }
.insight-tag-pill.tag-default, .insight-tag-pill.tag-category { background: var(--navy-lt); color: var(--white); }
.insight-tag-pill.tag-flash { background: #C0392B; color: var(--white); }
.insight-tag-pill.tag-region { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.insight-tag-pill.tag-topic, .insight-tag-pill.tag-analysis { background: var(--navy-lt); color: var(--white); }
.insight-meta-header { display: flex; gap: 24px; align-items: center; margin-bottom: 24px; font-size: 13px; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }
.insight-date { color: var(--gray); }
.insight-type { color: var(--navy); font-weight: 600; }
.single-insight .insight-title { font-family: 'EB Garamond', serif; font-size: 48px; font-weight: 400; line-height: 1.2; color: var(--navy); margin-bottom: 20px; margin-top: 0; }
.insight-subtitle { font-size: 18px; color: var(--gray); line-height: 1.7; font-weight: 400; margin: 0 0 32px 0; }
.insight-divider { height: 2px; background: var(--gold); width: 60px; margin: 40px 0; }
.insight-body { margin: 48px 0; font-size: 16px; color: var(--text); line-height: 1.8; }
.insight-body h2 { font-family: 'EB Garamond', serif; font-size: 24px; font-weight: 400; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; margin: 48px 0 24px 0; padding-bottom: 16px; border-bottom: 1px solid rgba(201,162,39,0.2); }
.insight-body h2:first-child { margin-top: 0; }
.insight-body p { text-align: justify; margin-bottom: 16px; }
.insight-body strong { color: var(--navy); font-weight: 600; }
.insight-body ul, .insight-body ol { margin-bottom: 24px; margin-left: 24px; }
.insight-body li { margin-bottom: 12px; line-height: 1.8; }

/* KEY JUDGMENTS BOX */
.key-box, .insight-body blockquote { background: var(--navy); color: var(--white); padding: 32px; border-left: 4px solid var(--gold); margin: 40px 0; border-radius: 0; }
.key-box h3 { font-family: 'EB Garamond', serif; font-size: 18px; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; font-weight: 400; letter-spacing: 0.04em; }
.key-box ul { list-style: none; margin-left: 0; }
.key-box li { margin-bottom: 12px; padding-left: 20px; position: relative; }
.key-box li::before { content: '\25CF'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }
.insight-body blockquote { border-left: 4px solid var(--gold); font-style: italic; font-size: 18px; line-height: 1.8; }

/* IMPLICATIONS GRID */
.impl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.impl-card { background: var(--white); border: 1px solid #E8E4DC; border-top: 3px solid var(--navy); padding: 28px; border-radius: 4px; }
.impl-card h4 { font-size: 14px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; margin-top: 0; }
.impl-card p { font-size: 14px; color: #5A6474; line-height: 1.7; text-align: left; margin: 0; }

/* SOURCE BOX */
.source-box { background: #F5F4F0; padding: 28px; margin: 48px 0; border-radius: 4px; border: 1px solid #E8E4DC; }
.source-title { font-size: 14px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; margin-top: 0; }
.source-text { font-size: 13px; color: #5A6474; line-height: 1.7; margin: 0; }

/* CTA STRIP */
.cta-strip { background: var(--navy); color: var(--white); padding: 40px; border-radius: 4px; margin: 64px 0; }
.cta-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.cta-text { font-size: 16px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.6; }
.cta-strip-button { background: var(--gold); color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 32px; border-radius: 3px; transition: background 0.2s, transform 0.15s; white-space: nowrap; display: inline-block; }
.cta-strip-button:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ─── ARCHIVE LISTING ──────────────────────────────────── */
.insight-archive { background: var(--off-white); padding: 0; }
.archive-header { background: var(--white); padding: 64px 32px; border-bottom: 1px solid #E8E4DC; }
.archive-header .section-inner { max-width: 1240px; margin: 0 auto; }
.archive-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.archive-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.archive-title { font-family: 'EB Garamond', serif; font-size: 48px; font-weight: 400; color: var(--navy); margin: 0 0 20px 0; line-height: 1.2; }
.archive-description { font-size: 16px; color: #5A6474; line-height: 1.7; max-width: 640px; margin: 0; }
.archive-filters { background: var(--white); padding: 32px; border-bottom: 1px solid #E8E4DC; }
.archive-filters .section-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.filter-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid #E8E4DC; color: var(--navy); font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 3px; text-decoration: none; transition: all 0.2s; letter-spacing: 0.02em; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.archive-content { padding: 64px 32px; }
.insights-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1240px; margin: 0 auto; }
.insight-card-archive { background: var(--navy-mid); border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.insight-card-archive:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(11,21,38,0.15); }
.archive-card-header { padding: 16px 20px; display: flex; justify-content: flex-start; gap: 8px; }
.archive-card-image { height: 180px; background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(201,162,39,0.05) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.archive-card-image img { width: 100%; height: 100%; object-fit: cover; }
.archive-card-placeholder { font-size: 48px; opacity: 0.4; }
.archive-card-meta { padding: 16px 20px 0; display: flex; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.archive-date { color: rgba(255,255,255,0.55); }
.archive-type { color: var(--gold); font-weight: 600; }
.archive-card-title { font-size: 18px; font-weight: 600; color: var(--white); margin: 12px 20px 0; line-height: 1.35; flex-grow: 1; }
.archive-card-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.archive-card-title a:hover { color: var(--gold); }
.archive-card-excerpt { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; padding: 12px 20px; flex-grow: 1; }
.archive-card-link { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); text-decoration: none; padding: 0 20px 20px; display: inline-block; transition: color 0.2s; }
.archive-card-link:hover { color: var(--gold-lt); }
.archive-pagination { margin-top: 64px; display: flex; justify-content: center; gap: 12px; }
.archive-pagination .page-numbers { font-size: 13px; font-weight: 500; padding: 10px 16px; border: 1px solid #E8E4DC; border-radius: 3px; background: var(--white); color: var(--navy); text-decoration: none; transition: all 0.2s; }
.archive-pagination .page-numbers:hover, .archive-pagination .page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.no-posts { text-align: center; font-size: 16px; color: #5A6474; padding: 80px 0; }

/* ─── INSIGHTS RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .single-insight { padding: 48px 20px; }
  .single-insight .insight-title { font-size: 32px; }
  .insight-wrapper { max-width: 100%; }
  .archive-header { padding: 48px 20px; }
  .archive-title { font-size: 36px; }
  .archive-filters .section-inner { flex-direction: column; align-items: flex-start; }
  .archive-content { padding: 48px 20px; }
  .insights-archive-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-button { width: 100%; text-align: center; }
  .impl-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   CONTACT PAGE
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

.page-header {
  padding: 140px 40px 60px;
  text-align: center;
  background: var(--navy);
}

.page-header .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.page-header h1 {
  font-family: 'EB Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-body {
  background: var(--off-white);
  padding: 80px 40px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'EB Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-block {
  margin-bottom: 28px;
}

.info-block .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-block .value {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
}

.info-block a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
}

.info-block a:hover { color: var(--gold); }

.contact-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 36px 0;
  opacity: 0.4;
}

.trust-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
}

.contact-form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 44px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D4D4D4;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B0B0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,152,90,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A95A3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-footer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.form-success .check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196,152,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--gold);
}

.form-success h3 {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

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

@media (max-width: 600px) {
  .page-header h1 { font-size: 32px; }
  .contact-body { padding: 48px 20px; }
  .contact-form-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}


/* CAREERS PAGE */
.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
  background: var(--navy);
  min-height: 60vh;
}
.coming-soon-inner { max-width: 520px; }
.coming-soon .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.coming-soon h1 {
  font-family: 'EB Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.coming-soon p {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-bottom: 36px;
}
.coming-soon .divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 36px;
  opacity: 0.4;
}
@media (max-width: 600px) {
  .coming-soon h1 { font-size: 32px; }
  .coming-soon { padding: 140px 20px 60px; }
}