/* ============================================
   Happy Camper Consulting — Styles
   Design: Deep Navy + Warm Gold + Forest Green
   Font: Lora (headings) + Source Sans 3 (body)
   ============================================ */

:root {
  /* Brand Colors */
  --color-navy: #1a2744;
  --color-navy-deep: #0f1a30;
  --color-navy-light: #2a3d5e;
  --color-gold: #c4922a;
  --color-gold-light: #e8b94a;
  --color-gold-muted: rgba(196, 146, 42, 0.12);
  --color-green: #3d6b4f;
  --color-green-light: #4d8562;
  --color-cream: #faf8f4;
  --color-warm-white: #fefcf8;
  --color-surface: #ffffff;
  --color-text: #2c3e50;
  --color-text-muted: #6b7a8d;
  --color-text-light: #94a3b4;
  --color-border: #e8e4de;

  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --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.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.1rem + 2vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.2rem + 3.4vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.2rem + 5.3vw, 3.75rem);
  --text-hero: clamp(2.75rem, 1.5rem + 4.5vw, 4.25rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: clamp(5rem, 3rem + 5vw, 8rem);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,39,68,0.04), 0 1px 3px rgba(26,39,68,0.06);
  --shadow-md: 0 2px 4px rgba(26,39,68,0.03), 0 4px 12px rgba(26,39,68,0.06), 0 8px 24px rgba(26,39,68,0.04);
  --shadow-lg: 0 4px 6px rgba(26,39,68,0.02), 0 8px 24px rgba(26,39,68,0.06), 0 16px 48px rgba(26,39,68,0.06);
  --shadow-xl: 0 8px 16px rgba(26,39,68,0.04), 0 24px 48px rgba(26,39,68,0.08), 0 48px 96px rgba(26,39,68,0.06);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Z-Index */
  --z-base: 0;
  --z-sticky: 20;
  --z-navbar: 30;
  --z-overlay: 40;
  --z-modal: 50;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-warm-white);
}

::selection {
  background: var(--color-gold-muted);
  color: var(--color-navy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out-quart);
}

a:hover {
  color: var(--color-gold-light);
}

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

p, li, blockquote { max-width: 68ch; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  text-wrap: balance;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: 800px;
}

.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: block;
}

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

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
  background: var(--color-gold);
  color: var(--color-navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.skip-to-content:focus {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  overflow: visible;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 146, 42, 0.3);
  color: var(--color-navy-deep);
}

.btn--nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy-deep) !important;
}

.btn--nav svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn--nav:hover svg {
  transform: translateX(3px);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out-expo);
}

.navbar--menu-open {
  z-index: calc(var(--z-overlay) + 2);
}

.navbar--transparent {
  background: transparent;
}

.navbar--scrolled {
  background: rgba(15, 26, 48, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 clamp(2rem, 4vw, 4rem);
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 50px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar__links a {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.3s;
  cursor: pointer;
}

.navbar__links a:hover {
  color: var(--color-gold-light);
}

.navbar__cta {
  margin-left: 0.5rem;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hamburger-btn svg {
  display: block;
}

.hamburger-btn .icon-close {
  display: none;
}

.hamburger-btn.active {
  position: relative;
}

.hamburger-btn.active .icon-menu {
  display: none;
}

.hamburger-btn.active .icon-close {
  display: block;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-navy-deep);
  z-index: var(--z-overlay);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s var(--ease-out-expo);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  right: 0;
}


.mobile-nav .btn--primary {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-navy-deep);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--color-gold-light);
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 48, 0.92) 0%,
    rgba(15, 26, 48, 0.75) 40%,
    rgba(15, 26, 48, 0.6) 100%
  );
}

.hero--centered .hero__bg::after {
  background: rgba(15, 26, 48, 0.7);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(8rem, 14vw, 12rem) clamp(2rem, 4vw, 4rem) clamp(5rem, 10vw, 8rem);
  text-align: left;
}

.hero__text {
  color: #fff;
}

.hero__overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__overline::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

.hero__heading {
  font-size: clamp(2.75rem, 2rem + 4vw, 5.5rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.76px;
  color: #fff;
  margin-bottom: var(--space-xl);
}

.hero__heading em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 72ch;
  margin-bottom: var(--space-2xl);
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-lg);
  font-style: italic;
}

.hero__portrait {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__portrait-frame {
  position: relative;
  width: clamp(280px, 22vw, 380px);
}

.hero__portrait-frame img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}

.hero__portrait-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  opacity: 0.4;
  z-index: 1;
}

.hero__portrait-frame::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 60%;
  height: 40%;
  background: var(--color-gold);
  opacity: 0.15;
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* Trust bar below hero */
.trust-bar {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: -3rem auto 0;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}

.trust-bar__item {
  text-align: center;
  flex: 1;
}

.trust-bar__number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-bar__label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ---- Why Section ---- */
.section-why {
  padding: calc(var(--space-section) + 2rem) 0 var(--space-section);
  background: var(--color-warm-white);
}

.section-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.section-why__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.section-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.section-why__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,39,68,0.15), transparent);
}

.section-why__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.section-why__content p {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.section-why__content p:last-of-type {
  margin-bottom: var(--space-xl);
}

/* Challenge list */
.challenge-list {
  list-style: none;
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.challenge-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-text);
}

.challenge-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-top: 0.5rem;
}

/* ---- Framework Section ---- */
.section-framework {
  padding: var(--space-section) 0;
  background: var(--color-navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-framework::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(196, 146, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-framework .overline {
  color: var(--color-gold);
}

.section-framework h2 {
  color: #fff;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  max-width: 20ch;
}

.section-framework__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.section-framework__diagram img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .section-framework__header {
    grid-template-columns: 1fr;
  }
  .section-framework__diagram {
    display: none;
  }
}

.section-framework__intro {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  max-width: 55ch;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: var(--space-3xl);
}

.framework-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.framework-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196, 146, 42, 0.3);
  transform: translateY(-4px);
}

.framework-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: rgba(196, 146, 42, 0.15);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.framework-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.framework-card h3 {
  color: #fff;
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.framework-card p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ---- Culture Section (What Healthy Culture Produces) ---- */
.section-culture {
  padding: var(--space-section) 0;
  background: var(--color-cream);
  position: relative;
}

.section-culture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.section-culture h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-culture__sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 55ch;
  margin: 0 auto var(--space-3xl);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.outcome-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}

.outcome-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
}

.outcome-card__icon svg {
  width: 24px;
  height: 24px;
}

.outcome-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.outcome-card--quote {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.outcome-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.outcome-card--quote p.outcome-card__quote-text {
  font-family: Lora, var(--font-heading);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: #1A2744;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: center;
}

/* ---- About / Jeff Section ---- */
.section-about {
  padding: var(--space-section) 0;
  background: #fff;
  position: relative;
}

.section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.section-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.section-about__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.section-about__image {
  position: relative;
}

.section-about__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.section-about__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.section-about__content p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-xl);
}

.about-credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  background: var(--color-gold-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.about-credential svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

/* ---- Who We Serve Section ---- */
.section-serve {
  padding: var(--space-section) 0;
  background: var(--color-surface);
  position: relative;
}

.section-serve::before,
.section-serve::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.section-serve::before {
  top: 0;
}

.section-serve::after {
  bottom: 0;
}

.section-serve__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.section-serve__content {
  background: var(--color-navy);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-serve__content .overline {
  color: var(--color-gold);
}

.section-serve__content h2 {
  color: #fff;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.serve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-lg);
}

.serve-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  line-height: 1.5;
}

.serve-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  margin-top: 2px;
}

.section-serve__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ---- VDMS Section ---- */
.section-vdms {
  padding: var(--space-section) 0;
  background: var(--color-cream);
}

.section-vdms h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-vdms__sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 55ch;
  margin: 0 auto var(--space-3xl);
}

.vdms-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.vdms-pillar {
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1rem, 1.5vw, 1.5rem);
  border-right: 1px solid var(--color-border);
  position: relative;
  transition: all 0.35s var(--ease-out-expo);
}

.vdms-pillar:last-child {
  border-right: none;
}

.vdms-pillar:hover {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.vdms-pillar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.vdms-pillar h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.vdms-pillar p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ---- CTA Section ---- */
.section-cta {
  padding: var(--space-section) 0;
  background: var(--color-navy-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1504703635429-e206c7b286a6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.section-cta .container {
  position: relative;
  z-index: 2;
}

.section-cta .overline {
  color: var(--color-gold);
}

.section-cta h2 {
  color: #fff;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.section-cta p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  max-width: 50ch;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.section-cta .btn {
  font-size: var(--text-base);
}

.section-cta p.cta-trust {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin: var(--space-lg) auto 0;
  font-style: italic;
  max-width: none;
}

.cta-note-unused {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  width: 100%;
  padding: 0 clamp(2rem, 4vw, 4rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: var(--space-3xl);
}

.footer__brand img {
  height: 36px;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 35ch;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer__social a:hover {
  color: var(--color-gold-light);
}

.footer__col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--color-gold-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom p {
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
}

.footer__bottom a:hover {
  color: var(--color-gold-light);
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vdms-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .vdms-pillar:nth-child(3) {
    border-right: none;
  }

  .vdms-pillar:nth-child(4),
  .vdms-pillar:nth-child(5) {
    border-top: 1px solid var(--color-border);
  }
}

/* ---- Tablet: collapse nav links, keep CTA + hamburger ---- */
@media (max-width: 1024px) {
  .navbar__links > li:not(.navbar__cta) {
    display: none;
  }

  .hamburger-btn {
    display: inline-flex;
  }

  .navbar__links {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .navbar__cta {
    display: none;
  }

  [class*="-hero"][id="main-content"],
  .article-hero {
    padding-top: calc(var(--space-section) + 2rem);
  }

  .hero__content {
    width: 100%;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero__overline {
    justify-content: center;
  }

  .hero__overline::before {
    display: none;
  }

  .hero__heading {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__portrait {
    order: -1;
  }

  .hero__portrait-frame {
    width: 200px;
  }

  .hero__portrait-frame::before,
  .hero__portrait-frame::after {
    display: none;
  }

  .trust-bar {
    flex-direction: column;
    gap: 1.5rem;
    margin: -2rem 1rem 0;
  }

  .trust-bar__divider {
    width: 80%;
    height: 1px;
  }

  .navbar__logo img {
    height: 37px;
  }

  .section-why__grid {
    grid-template-columns: 1fr;
  }

  .section-why__image {
    order: -1;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .section-about__grid {
    grid-template-columns: 1fr;
  }

  .section-about__image {
    max-width: 300px;
    margin: 0 auto;
  }

  .section-serve__split {
    grid-template-columns: 1fr;
  }

  .section-serve__image {
    order: -1;
  }

  .section-serve__image img {
    min-height: 250px;
  }

  .vdms-pillars {
    grid-template-columns: 1fr;
  }

  .vdms-pillar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .vdms-pillar:last-child {
    border-bottom: none;
  }

  .vdms-pillar:nth-child(4),
  .vdms-pillar:nth-child(5) {
    border-top: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ---- Answer Capsule (AI optimization) ---- */
.answer-capsule {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* ---- Navbar Dropdown ---- */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar__dropdown-toggle svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.navbar__dropdown:hover .navbar__dropdown-toggle svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(15, 26, 48, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 10;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  white-space: nowrap;
  transition: all 0.2s;
}

.navbar__dropdown-menu li a:hover {
  color: var(--color-gold-light);
  background: rgba(255,255,255,0.05);
}

/* ---- Mobile Nav Sub-items ---- */
.mobile-nav__subitems {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-top: -0.25rem;
}

.mobile-nav .mobile-nav__subitems a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  padding: 0.35rem 0;
  border-bottom: none;
  font-weight: 400;
}

.mobile-nav .mobile-nav__subitems a:hover {
  color: var(--color-gold-light);
}

/* ---- Experience Callout ---- */
.experience-callout {
  margin-top: 0;
}

.experience-callout__inner {
  background: var(--color-gold-muted);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.experience-callout__inner h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.experience-callout__inner p {
  color: var(--color-text);
  line-height: 1.6;
  font-size: var(--text-sm);
}

/* ---- Culture Forming Section ---- */
.section-culture-forming {
  padding: var(--space-section) 0;
  background: var(--color-cream);
  position: relative;
}

.section-culture-forming::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.section-culture-forming__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.section-culture-forming__right {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.section-culture-forming__left h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
}

.section-culture-forming__closing {
  color: var(--color-text);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-top: var(--space-xl);
}

.section-culture-forming__intro {
  color: var(--color-text);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.section-culture-forming__right .challenge-list {
  text-align: left;
}

@media (max-width: 768px) {
  .section-culture-forming__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Framework Closing Quote ---- */
.section-framework__closing {
  text-align: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 500;
  margin-top: var(--space-2xl);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Culture Section Quote ---- */
.section-culture__quote {
  text-align: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 500;
  margin-top: var(--space-3xl);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---- National Section ---- */
.section-national {
  padding: var(--space-section) 0;
  background: var(--color-warm-white);
  position: relative;
}

.section-national::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/us-map-outline.jpg') center center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.section-national__content {
  text-align: center;
}

.section-national__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.section-national__content p {
  color: var(--color-text);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Reduced Motion ---- */
@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 {
    opacity: 1 !important;
    transform: none !important;
  }
}
