/* ============================================================
   Parman & Carnes Consulting — site.css
   Shared stylesheet for all pages
   ============================================================ */

:root {
  --deep-blue: #16283d;
  --slate: #2a4459;
  --cedar: #243d2e;
  --fog: #7e98aa;
  --tide: #bdd2e0;
  --shore: #e2ecf2;
  --parchment: #f2efea;
  --warm-white: #f8f7f4;
  --text-primary: #16283d;
  --text-muted: #50646f;
  --cedar-light: #3e6b52;
  --accent-warm: #7d6040;
  --border: rgba(22,40,61,0.13);
  --serif: 'Noto Serif', Georgia, serif;
  --sans: 'Noto Sans', system-ui, sans-serif;
  --mist: rgba(125,158,178,0.12);
  --forest: #1e3326;
  --lichen: #6b8c70;
  --driftwood: #9b8570;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 300; line-height: 1.25; color: var(--deep-blue); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 400; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
p { color: var(--text-muted); line-height: 1.8; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgb(22, 40, 61);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo-lockup {
  display: flex; align-items: center; gap: 0; text-decoration: none;
}
.logo-mark {
  height: 56px; width: auto; display: block; flex-shrink: 0;
}
.logo-divider {
  width: 1px; height: 42px;
  background: rgba(255,255,255,0.25);
  margin: 0 1.3rem; flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column; gap: 0;
}
.logo-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 0.9rem;
  color: rgba(255,255,255,0.7); letter-spacing: 0.03em;
  line-height: 1.3; margin-bottom: 0.05rem;
}
.logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem; font-weight: 500;
  color: #ffffff; letter-spacing: 0.02em; line-height: 1.1;
}
.logo-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.75);
  text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a.active { color: #ffffff; font-weight: 500; }
.nav-cta {
  background: rgba(255,255,255,0.1) !important; color: white !important;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.25rem; border-radius: 2px; font-size: 0.8rem !important;
  letter-spacing: 0.08em !important; text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.18) !important; border-color: rgba(255,255,255,0.5) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); margin: 5px 0; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--parchment);
  background-image:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(36,61,46,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(22,40,61,0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 52%; pointer-events: none;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  opacity: 0.42;
  filter: grayscale(15%) contrast(0.92) saturate(0.85);
}
.hero-photo::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, var(--parchment) 0%, transparent 40%),
              linear-gradient(to top, var(--parchment) 0%, transparent 22%),
              linear-gradient(160deg, rgba(22,40,61,0.06) 0%, transparent 60%);
}
.hero-bg-topo {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 48px,
      rgba(22,40,61,0.035) 48px, rgba(22,40,61,0.035) 49px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 96px,
      rgba(22,40,61,0.018) 96px, rgba(22,40,61,0.018) 97px
    );
}
.hero-confluence {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 6rem 0;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cedar-light);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--cedar-light);
}
.hero h1 { margin-bottom: 1.75rem; }
.hero p { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 520px; }
.hero-ctas { display: flex; flex-direction: column; gap: 1rem; }
.cta-pair { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.75rem; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; text-decoration: none; border-radius: 2px;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--deep-blue); color: white;
}
.btn-primary:hover { background: var(--slate); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--deep-blue);
  border: 1px solid rgba(26,45,68,0.3);
}
.btn-secondary:hover { background: rgba(26,45,68,0.06); }
.btn-cedar { background: var(--cedar); color: white; }
.btn-cedar:hover { background: var(--cedar-light); }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 0.8rem 0; text-decoration: underline; text-underline-offset: 3px;
}
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.track-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  position: relative;
}
.track-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 3px 0 0 3px;
}
.track-card.west::before { background: var(--deep-blue); }
.track-card.intl::before { background: var(--cedar-light); }
.track-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.track-card.west .track-label { color: var(--deep-blue); }
.track-card.intl .track-label { color: var(--cedar-light); }
.track-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.track-card p { font-size: 0.875rem; margin-bottom: 1rem; }
.trust-bar {
  background: var(--deep-blue); color: rgba(255,255,255,0.7);
  padding: 0.75rem 0; font-size: 0.8rem; letter-spacing: 0.04em;
  text-align: center;
}
.trust-bar span { color: rgba(255,255,255,0.4); margin: 0 0.75rem; }

/* ── SECTIONS ── */
section { padding: 6rem 0; }
.section-eyebrow { margin-bottom: 0.75rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; margin-top: 1rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 1rem auto 0; }

/* ── WHAT WE DO ── */
.pillars { background: white; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden;
}
.pillar {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pillar:hover { background: var(--shore); }
.pillar:nth-child(2n) { border-right: none; }
.pillar:nth-child(3), .pillar:nth-child(4) { border-bottom: none; }
.pillar-icon {
  width: 36px; height: 36px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ── WHO WE SERVE ── */
.serve { background: var(--parchment); }
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.serve-track {
  padding: 2.5rem;
  background: white;
  border-radius: 3px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.serve-track::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
}
.serve-track.west::after { background: var(--deep-blue); }
.serve-track.intl::after { background: var(--cedar-light); }
.serve-track h3 { margin-bottom: 1.25rem; font-size: 1.15rem; }
.serve-list { list-style: none; }
.serve-list li {
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.925rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 10px;
}
.serve-list li:last-child { border-bottom: none; }
.serve-list li::before {
  content: '—'; color: var(--fog); flex-shrink: 0; margin-top: 1px;
}

/* ── SERVICES ── */
.services {
  background: var(--deep-blue);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 110%, rgba(30,51,38,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 95% 0%, rgba(22,40,61,0.6) 0%, transparent 60%);
}
.services h2, .services h4 { color: rgba(255,255,255,0.9); }
.services p { color: rgba(255,255,255,0.55); }
.services .section-header p { color: rgba(255,255,255,0.6); max-width: 560px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,0.07); }
.service-card {
  padding: 2rem;
  background: var(--deep-blue);
  transition: background 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.04); }
.service-num {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3); margin-bottom: 1rem;
}
.service-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.9); font-family: var(--sans); font-weight: 500; }
.service-tracks { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-track-tag {
  font-size: 0.75rem; display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.5);
}
.tag-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.tag-dot.west { background: var(--tide); }
.tag-dot.intl { background: var(--cedar-light); }

/* ── SNAPSHOT ── */
.snapshot { background: var(--shore); }
.snapshot-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.snapshot-domains { display: flex; flex-direction: column; gap: 0; }
.domain {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.domain:first-child { border-top: 1px solid var(--border); }
.domain-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.4rem; cursor: pointer;
}
.domain-title { font-weight: 500; font-size: 0.95rem; color: var(--deep-blue); }
.domain-arrow {
  color: var(--fog); font-size: 1.1rem; transition: transform 0.2s;
  user-select: none;
}
.domain-body {
  font-size: 0.875rem; color: var(--text-muted); overflow: hidden;
  max-height: 0; transition: max-height 0.3s ease, padding 0.2s;
}
.domain-body.open { max-height: 200px; }
.domain-body p { margin-bottom: 0.5rem; }
.domain-body .micro-action {
  font-size: 0.8rem; padding: 0.6rem 0.875rem;
  background: white; border-left: 2px solid var(--cedar-light);
  color: var(--cedar); margin-top: 0.5rem;
}
.snapshot-cta-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
  position: sticky; top: 90px;
}
.snapshot-cta-box h3 { margin-bottom: 0.75rem; }
.snapshot-cta-box p { font-size: 0.9rem; margin-bottom: 2rem; }
.download-option {
  padding: 1.25rem; border: 1px solid var(--border); border-radius: 2px;
  margin-bottom: 1rem; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: flex-start; gap: 12px;
}
.download-option:hover { border-color: var(--deep-blue); background: var(--shore); }
.download-option input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--deep-blue); }
.download-option label { cursor: pointer; }
.download-option label strong { display: block; font-size: 0.875rem; color: var(--deep-blue); margin-bottom: 0.2rem; }
.download-option label span { font-size: 0.8rem; color: var(--text-muted); }
.snapshot-form input[type="email"] {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: 2px;
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--text-primary); background: var(--warm-white);
  margin-bottom: 0.75rem; outline: none; transition: border-color 0.2s;
}
.snapshot-form input:focus { border-color: var(--deep-blue); }
.snapshot-form input::placeholder { color: var(--fog); }

/* ── APPROACH ── */
.approach { background: white; }
.approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; margin-bottom: 2rem;
}
.approach-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
}
.approach-step:last-child { border-right: none; }
.approach-num {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--fog); margin-bottom: 1rem;
}
.approach-step h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.approach-step p { font-size: 0.875rem; }
.approach-values-bar {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; margin-bottom: 0;
}
.avb-item { padding: 1.1rem 1.5rem; flex: 1; }
.avb-label { font-size: 0.8rem; color: var(--text-muted); font-style: italic; font-family: var(--serif); }
.avb-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── RESOURCES ── */
.resources { background: var(--parchment); }
.resources-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.lead-magnet {
  background: white; border: 1px solid var(--border);
  border-radius: 3px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.lead-magnet.featured { border: 2px solid var(--deep-blue); }
.lm-header { display: flex; justify-content: space-between; align-items: flex-start; }
.lm-badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.lm-badge.west { background: rgba(26,45,68,0.1); color: var(--deep-blue); }
.lm-badge.intl { background: rgba(45,74,56,0.1); color: var(--cedar); }
.lm-badge.core { background: var(--deep-blue); color: white; }
.lead-magnet h3 { font-size: 1.05rem; }
.lead-magnet p { font-size: 0.875rem; }
.regional-explainers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.regional-card {
  padding: 2rem; background: white;
  border-radius: 3px; border: 1px solid var(--border);
}
.regional-card h4 { margin-bottom: 0.75rem; }
.regional-card p { font-size: 0.9rem; }

/* ── ABOUT ── */
.about { background: white; }
.about-intro { max-width: 680px; margin-bottom: 3rem; }
.philosophy-block {
  padding: 2.5rem; background: var(--parchment);
  border-radius: 3px; margin-bottom: 2rem;
}
.philosophy-block blockquote {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 300;
  color: var(--deep-blue); line-height: 1.6; font-style: italic;
}
.philosophy-block cite {
  display: block; margin-top: 1rem;
  font-size: 0.8rem; font-style: normal;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 4rem; }
.bio-card {
  border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden;
}
.bio-header {
  padding: 2rem 2rem 1.5rem;
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
}
.bio-initial {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 300;
  margin-bottom: 1.25rem;
}
.bio-initial.alice { background: rgba(26,45,68,0.1); color: var(--deep-blue); }
.bio-initial.rachael { background: rgba(45,74,56,0.12); color: var(--cedar); }
.bio-header h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.bio-role { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fog); }
.bio-body { padding: 1.75rem 2rem; }
.bio-body p { font-size: 0.9rem; line-height: 1.8; }
.bio-pull {
  margin-top: 1.25rem; padding: 1rem 1.25rem;
  border-left: 2px solid var(--cedar-light);
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--deep-blue); line-height: 1.6;
  background: var(--shore);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 4rem; }
.value-cell { padding: 2rem 1.75rem; border-right: 1px solid var(--border); }
.value-cell:last-child { border-right: none; }
.value-num { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; color: var(--fog); margin-bottom: 0.75rem; }
.value-cell h4 { font-family: var(--sans); text-transform: none; letter-spacing: 0; color: var(--deep-blue); font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.value-cell p { font-size: 0.82rem; }

/* ── PROJECTS ── */
.projects-section { background: var(--parchment); }
.projects-intro { max-width: 620px; margin-bottom: 3rem; }
.geo-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.geo-region {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.geo-region:nth-child(3n) { border-right: none; }
.geo-region:nth-child(4), .geo-region:nth-child(5), .geo-region:nth-child(6) { border-bottom: none; }
.geo-header {
  padding: 0.7rem 1.25rem;
  background: var(--deep-blue);
}
.geo-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(200,216,228,0.75);
}
.geo-list { list-style: none; padding: 0.4rem 0; }
.geo-list li {
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.45rem 1.25rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}
.geo-list li:last-child { border-bottom: none; }
.geo-list li:hover { background: white; color: var(--deep-blue); }
.workshops-strip {
  background: white; border: 1px solid var(--border); border-radius: 3px;
  padding: 1.5rem 2rem;
  display: flex; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.workshops-strip h4 { font-family: var(--sans); text-transform: none; letter-spacing: 0; font-size: 0.875rem; font-weight: 500; color: var(--deep-blue); white-space: nowrap; }
.workshop-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.workshop-tag {
  font-size: 0.75rem; padding: 0.25rem 0.75rem;
  background: var(--shore); color: var(--text-muted);
  border-radius: 2px;
}

/* ── CONTACT ── */
.contact { background: var(--deep-blue); }
.contact h2 { color: white; }
.contact p { color: rgba(255,255,255,0.6); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px; padding: 0.75rem 1rem;
  font-family: var(--sans); font-size: 0.9rem;
  color: white; outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.4); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--deep-blue); }
.form-group textarea { height: 120px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; padding-top: 0.5rem; }
.contact-info-item h4 { color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.contact-info-item p { font-size: 0.925rem; color: rgba(255,255,255,0.7); }
.contact-info-item a { color: rgba(200,216,228,0.9); }
.debrief-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px; padding: 2rem;
  margin-top: 1rem;
}
.debrief-card h3 { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 0.75rem; }
.debrief-card p { font-size: 0.875rem; margin-bottom: 1.25rem; }

/* ── FOOTER ── */
footer {
  background: #0c1820;
  background-image: radial-gradient(ellipse 100% 200% at 0% 100%, rgba(20,38,28,0.55) 0%, transparent 55%);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer-logo {
  font-family: var(--serif); color: rgba(255,255,255,0.5);
  font-size: 0.9rem; text-decoration: none;
}

/* ── DIVIDERS ── */
.divider-line {
  width: 40px; height: 2px; background: var(--cedar-light);
  margin: 1.5rem 0;
}

/* ── BRAND STORY BAND ── */
.brand-story-band {
  background: var(--deep-blue);
  background-image: radial-gradient(ellipse 120% 100% at 50% 150%, rgba(36,61,46,0.5) 0%, transparent 65%);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.brand-story-inner {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 2.5rem; align-items: center;
}
.brand-story-motif { color: rgba(200,216,228,0.5); flex-shrink: 0; }
.brand-story-quote {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.65;
  margin-bottom: 0.6rem;
}
.brand-story-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0;
}
.brand-pillars-mini {
  display: flex; flex-direction: column; gap: 0.5rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 2.5rem; flex-shrink: 0;
}
.bp-item { display: flex; align-items: center; gap: 8px; }
.bp-item::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--cedar-light); flex-shrink: 0;
}
.bp-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.03em; }

/* ── H1 SEO PREFIX ── */
.h1-seo {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cedar-light);
  font-family: var(--sans); margin-bottom: 1.5rem;
}
.h1-seo::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--cedar-light); flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .h1-seo { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s ease 0.1s both; }
.hero p { animation: fadeUp 0.6s ease 0.2s both; }
.hero-ctas { animation: fadeUp 0.6s ease 0.3s both; }

/* ── UTILITY ── */
.text-cedar { color: var(--cedar-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   INSIGHTS INDEX PAGE
   ============================================================ */

.insights-hero {
  background: var(--parchment);
  background-image:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(36,61,46,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(22,40,61,0.05) 0%, transparent 50%);
  padding: 8rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.insights-hero h1 { margin-bottom: 1rem; }
.insights-hero p { font-size: 1.05rem; max-width: 560px; }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.insight-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.insight-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--deep-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.insight-card:hover { border-color: rgba(22,40,61,0.3); box-shadow: 0 4px 16px rgba(22,40,61,0.06); }
.insight-card:hover::after { transform: scaleX(1); }
.insight-card-meta {
  display: flex; align-items: center; gap: 0.75rem;
}
.insight-card-date {
  font-size: 0.75rem; color: var(--fog); letter-spacing: 0.04em;
}
.insight-card h3 {
  font-size: 1.15rem; color: var(--deep-blue);
  line-height: 1.35;
}
.insight-card p {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.7;
}
.insight-card-cta {
  font-size: 0.8rem; color: var(--cedar-light);
  font-weight: 500; letter-spacing: 0.04em;
  margin-top: auto; padding-top: 0.5rem;
}

/* ============================================================
   ESSAY PAGE
   ============================================================ */

.essay-hero {
  background: var(--parchment);
  background-image:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(36,61,46,0.07) 0%, transparent 60%);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.essay-breadcrumb {
  font-size: 0.78rem; color: var(--fog); letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.essay-breadcrumb a { color: var(--fog); text-decoration: none; }
.essay-breadcrumb a:hover { color: var(--text-primary); }
.essay-breadcrumb span { color: var(--border); }
.essay-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 820px;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.essay-meta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.essay-meta-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.essay-meta-initial {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(26,45,68,0.1); color: var(--deep-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.9rem; font-weight: 300;
  flex-shrink: 0;
}
.essay-meta-name {
  font-size: 0.875rem; color: var(--text-primary); font-weight: 500;
}
.essay-meta-role {
  font-size: 0.75rem; color: var(--fog);
}
.essay-meta-divider {
  width: 1px; height: 28px; background: var(--border);
}
.essay-meta-item {
  font-size: 0.78rem; color: var(--fog); letter-spacing: 0.03em;
}

.essay-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0;
}
.essay-body {
  min-width: 0;
}
.essay-body p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.essay-body h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--deep-blue);
}
.essay-body h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--deep-blue);
}
.essay-body ul, .essay-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.essay-body li {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.essay-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--cedar-light);
  background: var(--parchment);
  font-style: italic;
  color: var(--deep-blue);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
}
.essay-placeholder {
  padding: 4rem 2rem;
  background: var(--shore);
  border: 1px dashed var(--border);
  border-radius: 3px;
  text-align: center;
  color: var(--fog);
  font-size: 0.9rem;
}

.essay-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.essay-sidebar-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
}
.essay-sidebar-box h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fog);
  margin-bottom: 1rem;
}
.essay-sidebar-box p {
  font-size: 0.875rem; margin-bottom: 1rem;
}

.essay-cta {
  background: var(--deep-blue);
  background-image: radial-gradient(ellipse 80% 60% at 10% 110%, rgba(30,51,38,0.45) 0%, transparent 70%);
  padding: 5rem 0;
}
.essay-cta h2 { color: white; margin-bottom: 0.75rem; }
.essay-cta p { color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 2rem; }

/* ── ESSAY BODY COMPONENTS ── */

.essay-body figure.article-img {
  margin: 2.5rem 0;
}
.essay-body figure.article-img img {
  width: 100%; border-radius: 2px; display: block;
}
.essay-body figure.article-img figcaption {
  font-size: 0.8rem; color: var(--fog);
  margin-top: 0.75rem; line-height: 1.6; font-style: italic;
  font-family: var(--sans);
}

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2.5rem 0;
}
.stat-box {
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--deep-blue);
  border-radius: 3px; padding: 2rem 1.5rem; text-align: center;
}
.stat-box .num {
  font-family: var(--serif); font-size: 2.75rem; font-weight: 300;
  color: var(--deep-blue); line-height: 1.1; margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.stat-box .label {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.6;
}

.compare-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.875rem;
}
.compare-table th {
  background: var(--deep-blue); color: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem; text-align: left;
  font-family: var(--sans); font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.04em;
}
.compare-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: top; line-height: 1.6;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--shore); }
.compare-table td:first-child { font-weight: 500; color: var(--deep-blue); }

.essay-body hr {
  border: none; border-top: 1px solid var(--border); margin: 3rem 0;
}

.sources {
  font-size: 0.78rem; color: var(--fog); line-height: 1.7;
  padding: 1.25rem; background: var(--shore);
  border-radius: 2px; border-left: 2px solid var(--border);
}
.sources strong {
  display: block; margin-bottom: 0.4rem; color: var(--text-muted);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  section { padding: 4rem 0; }
  .hero-grid { grid-template-columns: 1fr; padding: 3rem 0; }
  .hero-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .pillar:nth-child(3) { border-bottom: 1px solid var(--border); }
  .serve-grid, .resources-lead-grid, .regional-explainers,
  .about-grid, .contact-grid, .snapshot-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0; background: rgb(22, 40, 61);
    padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; }
  .snapshot-cta-box { position: static; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .approach-step:nth-child(2) { border-right: none; }
  .approach-step:nth-child(1), .approach-step:nth-child(2) { border-bottom: 1px solid var(--border); }
  .approach-values-bar { flex-direction: column; }
  .avb-divider { width: 100%; height: 1px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-cell:nth-child(2) { border-right: none; }
  .value-cell:nth-child(1), .value-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .geo-projects { grid-template-columns: 1fr 1fr; }
  .geo-region:nth-child(3n) { border-right: 1px solid var(--border); }
  .geo-region:nth-child(2n) { border-right: none; }
  .geo-region:nth-child(4), .geo-region:nth-child(5), .geo-region:nth-child(6) { border-bottom: 1px solid var(--border); }
  .geo-region:last-child { border-bottom: none; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .brand-story-motif { display: none; }
  .brand-pillars-mini { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .essay-layout { grid-template-columns: 1fr; }
  .essay-sidebar { position: static; }
  .stat-row { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.75rem; }
}
