/* ================================================================
   EXECUTIVE ENERGY SERVICES — style.css
   Brand: Gold #B59B50 | Dark #2A2A2A | Light gold #F5F0E3
   Fonts: Source Serif 4 (headlines) + DM Sans (body)
   NO dark mode toggle — institutional white brand
================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --gold:        #B59B50;
  --gold-dark:   #8C7538;
  --gold-light:  #F5F0E3;
  --gold-xlight: #FAF7F0;
  --dark:        #2A2A2A;
  --mid-grey:    #666666;
  --light-grey:  #E8E5DE;
  --border:      #DDD8CE;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;

  /* Map Colors */
  --map-served:  #B59B50;
  --map-other:   #E8E5DE;
  --map-stroke:  #FFFFFF;

  /* Fonts */
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale — fluid clamp */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw,  0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw,  1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,     1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw,   2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,    3.5rem);
  --text-hero: clamp(2.5rem,   1.5rem + 3.5vw,    4.5rem);

  /* Spacing — 4px base */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --gutter: clamp(var(--s6), 5vw, var(--s16));

  /* Radius */
  --radius-sm: 0.25rem;
  --radius:    0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42,42,42,0.08);
  --shadow-md: 0 4px 16px rgba(42,42,42,0.10);
  --shadow-lg: 0 12px 40px rgba(42,42,42,0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 180ms var(--ease-out);
  --transition-slow: 400ms var(--ease-out);
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
  color: var(--dark);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

a {
  color: inherit;
  text-decoration: none;
}

button { cursor: pointer; background: none; border: none; }
table  { border-collapse: collapse; width: 100%; }

::selection {
  background: rgba(181, 155, 80, 0.18);
  color: var(--dark);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              opacity var(--transition);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .timeline-step { opacity: 1 !important; transform: none !important; }
}

/* ----------------------------------------------------------------
   SKIP LINK
---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s4);
  z-index: 9999;
  padding: var(--s3) var(--s6);
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--transition);
}
.skip-link:focus { top: var(--s4); }

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad {
  padding-block: clamp(var(--s16), 8vw, var(--s24));
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition),
              transform 150ms ease;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(181,155,80,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-inline: 0;
}
.btn-ghost:hover { color: var(--gold-dark); text-decoration: underline; }

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: var(--text-base);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   SECTION TYPOGRAPHY
---------------------------------------------------------------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--s6);
  max-width: 22ch;
}

.section-intro {
  font-size: var(--text-base);
  color: var(--mid-grey);
  max-width: 65ch;
  margin-bottom: var(--s12);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
---------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  height: 72px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s2);
  list-style: none;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s2) var(--s3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: var(--gold-xlight); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s3) 0;
  list-style: none;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: var(--s3) var(--s6);
  font-size: var(--text-sm);
  color: var(--dark);
  white-space: nowrap;
}
.dropdown-link:hover { background: var(--gold-xlight); color: var(--gold-dark); }

.nav-cta { margin-left: var(--s4); flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-bar {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

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

  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: var(--s6) var(--gutter) var(--s12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: var(--s4) 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; text-align: left; }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--gold-xlight);
    padding: var(--s2) var(--s4);
  }
  .dropdown-link { padding: var(--s3) var(--s4); }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: var(--s6);
  }
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  background: var(--white);
  padding-block: clamp(var(--s20), 10vw, 9rem);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(245,240,227,0.8) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s16);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  margin-bottom: var(--s4);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  max-width: 18ch;
  margin-bottom: var(--s6);
  letter-spacing: -0.01em;
}

.hero-subhead {
  font-size: var(--text-lg);
  color: var(--mid-grey);
  max-width: 58ch;
  margin-bottom: var(--s10);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Proof Band */
.proof-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s6) var(--s8);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s3) var(--s8);
  flex: 1;
  min-width: 120px;
}

.proof-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s1);
}

.proof-label {
  font-size: var(--text-xs);
  color: var(--mid-grey);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .proof-band { flex-direction: column; align-items: stretch; gap: var(--s2); }
  .proof-stat { flex-direction: row; justify-content: space-between; padding: var(--s3) var(--s4); border-bottom: 1px solid var(--border); }
  .proof-stat:last-child { border-bottom: none; }
  .proof-divider { display: none; }
  .proof-number { font-size: var(--text-xl); }
}

/* ----------------------------------------------------------------
   CHALLENGE SECTION
---------------------------------------------------------------- */
.challenge-section {
  background: var(--off-white);
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s8);
  align-items: center;
  margin-bottom: var(--s12);
}

.challenge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s10);
  height: 100%;
}

.challenge-card-icon { margin-bottom: var(--s5); }

.challenge-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--s4);
  color: var(--dark);
}

.challenge-card p {
  color: var(--mid-grey);
  font-size: var(--text-base);
  line-height: 1.65;
}

.challenge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}
.challenge-divider span {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  font-weight: 600;
  font-style: italic;
}

.challenge-root-cause {
  background: var(--gold-light);
  border: 1px solid rgba(181,155,80,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--s8) var(--s10);
}

.root-cause-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.root-cause-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  max-width: 80ch;
}

@media (max-width: 768px) {
  .challenge-grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }
  .challenge-divider {
    margin: 0 auto;
  }
}

/* ----------------------------------------------------------------
   ADVANTAGES GRID
---------------------------------------------------------------- */
.advantages-section {
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.advantage-card {
  padding: var(--s8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.advantage-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.advantage-check {
  margin-bottom: var(--s4);
}

.advantage-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--s3);
  color: var(--dark);
  max-width: 100%;
}

.advantage-desc {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.65;
  max-width: 100%;
}

.advantage-card--featured {
  grid-column: span 2;
  background: var(--dark);
  border-color: var(--dark);
}
.advantage-card--featured .advantage-title {
  color: var(--white);
  font-size: var(--text-lg);
}
.advantage-card--featured .advantage-desc {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-base);
}
.advantage-card--featured .advantage-check svg circle {
  stroke: var(--gold);
}
.advantage-card--featured .advantage-check svg path {
  stroke: var(--gold);
}
.advantage-card--featured:hover {
  box-shadow: var(--shadow-lg);
  background: #1f1f1f;
}

@media (max-width: 900px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .advantage-card--featured { grid-column: span 1; }
}

/* ----------------------------------------------------------------
   PROCESS TIMELINE
---------------------------------------------------------------- */
.process-section {
  background: var(--dark);
  color: var(--white);
}

.process-section .section-eyebrow { color: var(--gold); }
.process-section .section-title   { color: var(--white); }
.process-section .section-intro   { color: rgba(255,255,255,0.65); }

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--s12);
}

.timeline-connector {
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(181,155,80,0.2));
  z-index: 0;
}

.timeline-step {
  display: flex;
  gap: var(--s8);
  align-items: flex-start;
  padding: var(--s8) 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.timeline-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--dark);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.timeline-step.visible .timeline-step-number {
  background: var(--gold);
  color: var(--white);
}

.timeline-step-content { padding-top: var(--s4); }

.timeline-step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s3);
}

.timeline-step-content p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-base);
  line-height: 1.65;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s6);
  background: rgba(181,155,80,0.12);
  border: 1px solid rgba(181,155,80,0.3);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   WHO WE SERVE
---------------------------------------------------------------- */
.serve-section { background: var(--off-white); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.serve-card {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  color: var(--dark);
}
.serve-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.serve-icon {
  color: var(--gold);
  width: 32px;
  height: 32px;
}

.serve-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
  max-width: 100%;
}

.serve-card-desc {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.6;
  max-width: 100%;
}

.serve-card--featured {
  grid-column: span 2;
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.serve-card--featured .serve-icon { color: var(--gold); }
.serve-card--featured .serve-card-title { color: var(--white); }
.serve-card--featured .serve-card-desc { color: rgba(255,255,255,0.75); }
.serve-card--featured:hover {
  background: #1f1f1f;
  border-color: var(--gold);
  transform: translateY(-3px);
}

@media (max-width: 1024px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card--featured { grid-column: span 1; }
}

/* ----------------------------------------------------------------
   PARTNER PROGRAM
---------------------------------------------------------------- */
.partner-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--s12);
  align-items: start;
}

.partner-header {
  grid-column: 1;
  grid-row: 1;
}

.partner-header .section-title { max-width: 100%; }

.partner-features {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.partner-cta {
  grid-column: 1;
  grid-row: 2;
}

.partner-feature {
  display: flex;
  gap: var(--s6);
  padding: var(--s6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.partner-feature-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: var(--s1);
  flex-shrink: 0;
}

.partner-feature-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--s2);
  color: var(--dark);
}

.partner-feature-body p {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .partner-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--s8);
  }
  .partner-header { grid-column: 1; grid-row: 1; }
  .partner-features { grid-column: 1; grid-row: 2; }
  .partner-cta { grid-column: 1; grid-row: 3; }
}

/* ----------------------------------------------------------------
   US MAP
---------------------------------------------------------------- */
.map-section { background: var(--white); }

.map-wrapper {
  position: relative;
  background: var(--gold-xlight);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s8);
  overflow: hidden;
}

#us-map {
  width: 100%;
  height: auto;
  display: block;
}

#us-map .state {
  fill: var(--map-other);
  stroke: var(--map-stroke);
  stroke-width: 1px;
  cursor: pointer;
  transition: fill 150ms ease;
}

#us-map .state.served {
  fill: var(--map-served);
}

#us-map .state:hover {
  fill: var(--gold-dark);
}

#us-map .state.served:hover {
  fill: var(--gold-dark);
}

.map-tooltip {
  position: fixed;
  background: var(--dark);
  color: var(--white);
  padding: var(--s2) var(--s4);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  font-weight: 600;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 150ms ease;
  white-space: nowrap;
}
.map-tooltip.visible { opacity: 1; }

.map-legend {
  display: flex;
  align-items: center;
  gap: var(--s8);
  margin-top: var(--s6);
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--mid-grey);
}

.legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
}

.legend-served { background: var(--gold); }
.legend-other  { background: var(--map-other); }

/* ----------------------------------------------------------------
   CAPABILITIES
---------------------------------------------------------------- */
.capabilities-section { background: var(--gold-light); }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.capability-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s8);
  transition: box-shadow var(--transition), transform var(--transition);
}
.capability-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.capability-icon {
  margin-bottom: var(--s5);
  width: 28px;
  height: 28px;
}

.capability-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--s3);
  max-width: 100%;
}

.capability-desc {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.6;
  max-width: 100%;
}

@media (max-width: 1024px) { .capabilities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .capabilities-grid { grid-template-columns: 1fr; } }

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

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s12);
  flex-wrap: wrap;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding: var(--s8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.insight-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.insight-category {
  display: inline-block;
  padding: var(--s1) var(--s3);
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}

.insight-date {
  font-size: var(--text-xs);
  color: var(--mid-grey);
}

.insight-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  max-width: 100%;
}

.insight-card-summary {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.65;
  flex: 1;
  max-width: 100%;
}

.insight-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}
.insight-read-more:hover { color: var(--gold-dark); gap: var(--s3); }

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

/* ----------------------------------------------------------------
   LEADERSHIP
---------------------------------------------------------------- */
.leadership-section { background: var(--off-white); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.leader-card {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s10);
}

.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.leader-role-tag {
  display: inline-block;
  padding: var(--s1) var(--s3);
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: var(--s2);
}

.leader-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--s3);
}

.leader-bio {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.65;
  max-width: 100%;
}

.leader-linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--mid-grey);
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
}
.leader-linkedin:hover { color: #0A66C2; }

@media (max-width: 900px) { .leadership-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .leadership-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------
   TRUST BAR
---------------------------------------------------------------- */
.trust-bar {
  background: var(--gold-light);
  border-top: 1px solid rgba(181,155,80,0.2);
  border-bottom: 1px solid rgba(181,155,80,0.2);
  padding-block: var(--s6);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(181,155,80,0.4);
}

@media (max-width: 600px) {
  .trust-divider { display: none; }
  .trust-bar-inner { flex-direction: column; gap: var(--s4); }
}

/* ----------------------------------------------------------------
   CONTACT / FORMS
---------------------------------------------------------------- */
.contact-section { background: var(--dark); }

.contact-section .section-eyebrow { color: var(--gold); }
.contact-section .section-title   { color: var(--white); }

.contact-forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
}

.contact-form-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--s10);
}

.form-block-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s3);
}

.form-block-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: var(--s8);
  max-width: 100%;
}

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s5);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.contact-section .form-label { color: rgba(255,255,255,0.75); }

.form-control {
  width: 100%;
  padding: 0.75rem var(--s5);
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--transition), background var(--transition),
              box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(181,155,80,0.2);
}

.form-control::placeholder { color: rgba(255,255,255,0.3); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s4) center;
  padding-right: var(--s10);
  cursor: pointer;
}

select.form-control option {
  background: #2A2A2A;
  color: var(--white);
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
}

.form-error {
  font-size: var(--text-xs);
  color: #f87171;
  min-height: 1rem;
  display: block;
}

.form-control.invalid {
  border-color: #f87171;
}

.form-success {
  font-size: var(--text-sm);
  color: #86efac;
  margin-top: var(--s4);
  min-height: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.contact-section .btn-primary {
  background: var(--gold);
  color: var(--white);
}

@media (max-width: 768px) {
  .contact-forms-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   DOWNLOAD SECTION
---------------------------------------------------------------- */
.download-section {
  background: var(--gold);
}

.download-inner {
  display: flex;
  align-items: center;
  gap: var(--s12);
  padding-block: clamp(var(--s12), 6vw, var(--s20));
  flex-wrap: wrap;
}

.download-content { flex: 1; min-width: 260px; }

.download-eyebrow {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.download-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s4);
}

.download-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 55ch;
  line-height: 1.6;
}

.download-form { flex: 1; min-width: 280px; }

.download-form-row {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  flex-wrap: wrap;
}

.download-email-group { flex: 1; min-width: 200px; }

.download-form .form-control {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.download-form .form-control:focus {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.download-form .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.download-form .btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.download-form .form-success { color: rgba(255,255,255,0.9); }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--white);
  color: var(--dark);
  padding-top: clamp(var(--s16), 6vw, var(--s24));
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--s10);
  padding-bottom: var(--s16);
  border-bottom: 1px solid var(--border);
}

.footer-logo-link img { margin-bottom: var(--s5); }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.6;
  max-width: 30ch;
  margin-bottom: var(--s6);
}

.footer-social { display: flex; gap: var(--s3); }

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--mid-grey);
}
.footer-social-link:hover {
  background: var(--light-gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer-nav-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}

.footer-nav-list { display: flex; flex-direction: column; gap: var(--s3); }

.footer-nav-list a {
  font-size: var(--text-sm);
  color: var(--mid-grey);
}
.footer-nav-list a:hover { color: var(--dark); }

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-address p {
  font-size: var(--text-sm);
  color: var(--mid-grey);
  line-height: 1.5;
  max-width: 100%;
}

.footer-address a:hover { color: var(--dark); }

.footer-bottom {
  padding-block: var(--s6);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--mid-grey);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-size: var(--text-xs);
}
.footer-legal a { color: var(--mid-grey); }
.footer-legal a:hover { color: var(--dark); }
.footer-legal span { color: var(--border); }

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: var(--s10);
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }
  .footer-brand    { grid-column: 1 / -1; }
  .footer-contact-group { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   STATE PAGES (shared styles)
---------------------------------------------------------------- */
.state-page-hero {
  background: var(--gold-light);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(var(--s16), 8vw, var(--s24));
}

.state-page-hero .section-eyebrow { margin-bottom: var(--s3); }
.state-page-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--s6);
}
.state-page-body {
  max-width: 70ch;
  font-size: var(--text-base);
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: var(--s8);
}

/* ----------------------------------------------------------------
   UTILITY
---------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
