/* ============================================================
   STRAITFWD DESIGN SYSTEM  v1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (TOKENS)
   ============================================================ */
:root {
  /* Blues */
  --navy-deep:  #0E2841;
  --navy:       #1A3A68;
  --cobalt:     #214784;
  --blue-mid:   #156082;
  --steel-blue: #367693;
  --blue-light: #4C84B4;
  --blue-pale:  #4DA0B0;

  /* Oranges */
  --orange:       #E97132;
  --orange-hover: #C85E22;
  --amber:        #F59D12;
  --amber-tint:   #FBECD0;

  /* Creams */
  --white:        #FFFFFF;
  --cream:        #F5F1EB;
  --cream-dark:   #EDE8E1;
  --cream-border: #DDD7CE;

  /* Slates */
  --slate-100: #E8E8E8;
  --slate-200: #D1CFC9;
  --slate-400: #989690;
  --slate-600: #706586;
  --slate-700: #4A4654;
  --slate-800: #2C2838;

  /* Semantic */
  --color-fg-primary:   var(--navy-deep);
  --color-fg-secondary: var(--slate-600);
  --color-fg-muted:     var(--slate-400);
  --color-fg-on-dark:   var(--cream);
  --color-bg-default:   var(--cream);
  --color-bg-surface:   var(--white);
  --color-bg-dark:      var(--navy-deep);
  --color-accent:       var(--orange);

  /* Spacing (8px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-pill: 999px;

  /* Shadows (navy-tinted) */
  --shadow-sm: 0 1px 3px rgba(14,40,65,.08), 0 1px 2px rgba(14,40,65,.06);
  --shadow-md: 0 4px 12px rgba(14,40,65,.10), 0 2px 6px rgba(14,40,65,.07);
  --shadow-lg: 0 16px 40px rgba(14,40,65,.12), 0 4px 12px rgba(14,40,65,.08);

  /* Transitions */
  --transition-fast:   120ms ease;
  --transition-base:   200ms ease;
  --transition-slow:   350ms ease;
  --transition-spring: 400ms cubic-bezier(.34, 1.56, .64, 1);

  /* Layout */
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, 'Arial', 'Helvetica Neue', sans-serif;
  background: var(--color-bg-default);
  color: var(--color-fg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.display-lg {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.display-md {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1, .h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h2, .h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
h3, .h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.body-lg {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.65;
}
.body-md { font-size: 16px; font-weight: 400; line-height: 1.6; }
.body-sm { font-size: 14px; font-weight: 400; line-height: 1.55; }
.label   { font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 768px)  { .container { padding: 0 var(--space-6); } }
@media (min-width: 1024px) { .container { padding: 0 var(--space-7); } }

.section         { padding: var(--space-9) 0; }
.section--cream  { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section--navy   { background: var(--navy-deep); }
.section--cobalt { background: var(--cobalt); }
@media (max-width: 767px) { .section { padding: var(--space-8) 0; } }

.grid   { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center  { text-align: center; }

.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(54,118,147,.4);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 4px 16px rgba(233,113,50,.35);
}

.btn-secondary {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}
.btn-secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(33,71,132,.35);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,241,235,.4);
}
.btn-ghost-dark:hover {
  background: rgba(245,241,235,.1);
  border-color: var(--cream);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-ghost-light:hover {
  background: rgba(33,71,132,.08);
  box-shadow: 0 4px 16px rgba(33,71,132,.15);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-slow);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245,241,235,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
@media (min-width: 768px) { .nav-container { padding: 0 var(--space-6); } }

.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; transition: opacity var(--transition-base); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(245,241,235,.9);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition-base);
}
.nav--scrolled .nav-link { color: var(--navy-deep); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--orange); }
.nav--scrolled .nav-link:hover { color: var(--cobalt); }

.nav-cta { margin-left: var(--space-4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav--scrolled .hamburger span { background: var(--navy-deep); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 68px; right: 0; bottom: 0;
  width: 280px;
  background: var(--white);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu .nav-link {
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 600;
}
.mobile-menu .nav-link:hover { color: var(--cobalt); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,40,65,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  z-index: 98;
}
.mobile-overlay.is-open { opacity: 1; pointer-events: all; }

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   7. SECTION LABELS / EYEBROWS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-label--light { color: rgba(245,241,235,.55); }

/* ============================================================
   8. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding: calc(68px + var(--space-10)) 0 var(--space-10);
}
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: calc(68px + var(--space-8)) 0 var(--space-8);
  }
}

.hero-compact {
  min-height: 360px;
  padding: calc(68px + var(--space-7)) 0 var(--space-7);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-compact--cream {
  background: var(--cream-dark);
}
@media (max-width: 767px) {
  .hero-compact {
    min-height: 260px;
    padding: calc(68px + var(--space-6)) 0 var(--space-6);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(77,160,176,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(233,113,50,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(77,160,176,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-compact--cream::before {
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(14,40,65,.04) 0%, transparent 60%);
}

.hero-geo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  pointer-events: none;
  opacity: 0.07;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-headline     { color: var(--cream); margin-bottom: var(--space-6); }
.hero-headline em  { font-style: normal; color: var(--blue-pale); }
.hero-compact .hero-headline { color: var(--cream); margin-bottom: var(--space-4); }
.hero-compact--cream .hero-headline { color: var(--navy-deep); }
.hero-compact--cream .hero-eyebrow { color: var(--orange); }
.hero-compact--cream .hero-body    { color: var(--slate-700); }

.hero-body {
  color: rgba(245,241,235,.72);
  max-width: 600px;
  margin-bottom: var(--space-7);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(245,241,235,.1);
}
.proof-bar-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,241,235,.45);
  letter-spacing: 0.02em;
  padding: var(--space-2) 0;
}
.proof-bar-item + .proof-bar-item::before {
  content: '·';
  margin: 0 var(--space-4);
  color: rgba(245,241,235,.2);
}

/* ============================================================
   9. CARDS
   ============================================================ */

/* Service card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
}
.service-card-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.service-card h3  { color: var(--navy-deep); font-size: 18px; }
.service-card p   { color: var(--slate-700); font-size: 15px; line-height: 1.6; flex: 1; }
.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-base), color var(--transition-base);
  margin-top: auto;
}
.service-card-link:hover { gap: var(--space-3); color: var(--navy-deep); }

/* Stat card */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-card-sublabel {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-2);
}
.stat-card-label { font-size: 14px; font-weight: 500; color: var(--slate-600); }

/* Article card */
.article-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white, #ffffff);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.article-card:hover { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14); }

.article-card-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.article-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

div.article-card-img {
  width: 100%;
  height: 100%;
}

.article-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(10, 20, 40, 0.85) 0%,
    rgba(10, 20, 40, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-category-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange, #e05c2a);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 3px 8px;
  width: fit-content;
}

.article-card-overlay-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
}

.article-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.article-card-meta {
  font-size: 13px;
  color: var(--mid-grey, #718096);
  margin: 0;
}

.article-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text, #4a5568);
  margin: 0;
  flex: 1;
}

.article-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy, #1a2236);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.article-read-more:hover { color: var(--orange, #e05c2a); }

/* ============================================================
   10. PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-connector {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--cream-border);
  z-index: 0;
}
@media (max-width: 1023px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
}
@media (max-width: 767px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step { display: flex; flex-direction: column; gap: var(--space-4); position: relative; }
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step h3  { color: var(--navy-deep); font-size: 20px; }
.process-step p   { color: var(--slate-700); font-size: 15px; line-height: 1.65; }

/* ============================================================
   11. TESTIMONIAL
   ============================================================ */
.testimonial-quote {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.55;
  font-style: italic;
  border-left: 4px solid var(--orange);
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.testimonial-attribution {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,241,235,.45);
  padding-left: calc(var(--space-6) + 4px);
}

/* ============================================================
   12. CTA BANNER
   ============================================================ */
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 767px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: var(--space-6); }
}
.cta-banner-inner h2 { color: var(--cream); margin-bottom: var(--space-3); }
.cta-banner-inner p  { color: rgba(245,241,235,.72); font-size: 17px; }
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  flex-shrink: 0;
}
@media (min-width: 768px) { .cta-banner-actions { align-items: flex-end; } }

/* ============================================================
   13. FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-label { font-size: 14px; font-weight: 600; color: var(--navy-deep); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--navy-deep);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--slate-400); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(54,118,147,.15);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23706586' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-helper   { font-size: 13px; color: var(--slate-400); margin-top: var(--space-2); }

.form-grid   { display: grid; gap: var(--space-5); }
.form-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 767px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-border);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-deep);
  transition: color var(--transition-base);
  line-height: 1.4;
}
.faq-trigger:hover,
.faq-trigger[aria-expanded="true"] { color: var(--cobalt); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--transition-base);
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-content.is-open { max-height: 600px; }
.faq-body {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.7;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); padding: var(--space-9) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-8);
}
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
@media (max-width: 767px)  { .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); } }

.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-brand img { height: 48px; width: auto; }
.footer-location { font-size: 14px; color: rgba(245,241,235,.45); margin-top: var(--space-2); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245,241,235,.35);
  margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link {
  font-size: 14px;
  color: rgba(245,241,235,.6);
  transition: color var(--transition-base);
}
.footer-link:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,241,235,.08);
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p   { font-size: 13px; color: rgba(245,241,235,.3); }
.footer-bottom a   { color: rgba(245,241,235,.3); transition: color var(--transition-base); }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   16. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1      { transition-delay: 80ms; }
.reveal-delay-2      { transition-delay: 160ms; }
.reveal-delay-3      { transition-delay: 240ms; }
.reveal-delay-4      { transition-delay: 320ms; }

/* ============================================================
   17. SERVICE DETAIL (services.html)
   ============================================================ */
.service-detail { padding: var(--space-9) 0; }
.service-detail:nth-child(odd)  { background: var(--cream); }
.service-detail:nth-child(even) { background: var(--cream-dark); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 1023px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--amber-tint);
  color: var(--orange-hover);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}

.service-bullet-list { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-5) 0; }
.service-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
}
.service-bullet-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-outcome {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-5) 0;
}
.service-outcome p {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--cream-border);
}
@media (max-width: 767px) { .service-meta { grid-template-columns: 1fr; } }
.service-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: var(--space-1);
}
.service-meta-value { font-size: 14px; font-weight: 500; color: var(--navy-deep); }

/* Engagement models */
.engagement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--cobalt);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.engagement-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.engagement-card h3   { color: var(--navy-deep); margin-bottom: var(--space-3); }
.engagement-card p    { color: var(--slate-700); font-size: 15px; line-height: 1.6; }
.engagement-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--cream-dark);
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  margin-top: var(--space-4);
}

/* ============================================================
   18. ABOUT PAGE
   ============================================================ */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 1023px) { .about-two-col { grid-template-columns: 1fr; gap: var(--space-6); } }

.about-photo {
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.about-photo-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    var(--navy) 0px, var(--navy) 1px,
    transparent 1px, transparent 24px
  );
  opacity: 0.12;
}
.about-photo-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: flex;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--cream-border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.timeline-body { padding-top: 8px; }
.timeline-body h4 { font-size: 17px; font-weight: 600; color: var(--navy-deep); margin-bottom: var(--space-2); }
.timeline-body p  { font-size: 15px; color: var(--slate-700); line-height: 1.6; }

.strength-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.strength-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
}
.strength-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.values-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.values-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.values-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--amber-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--orange);
}
.values-card h3 { color: var(--navy-deep); margin-bottom: var(--space-3); font-size: 20px; }
.values-card p  { color: var(--slate-700); font-size: 15px; line-height: 1.65; }

.partner-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-7);
  border-left: 4px solid var(--cobalt);
  font-size: 16px;
  color: var(--slate-700);
  line-height: 1.7;
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--cream-border);
}
.contact-detail-item:first-child { padding-top: 0; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--amber-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: var(--space-1);
}
.contact-detail-value { font-size: 16px; font-weight: 500; color: var(--navy-deep); }
.contact-detail-value a { color: var(--cobalt); transition: color var(--transition-base); }
.contact-detail-value a:hover { color: var(--navy-deep); }

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(77,160,176,.1);
  border: 1px solid rgba(77,160,176,.25);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-mid);
  margin-top: var(--space-5);
}
.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-pale);
  flex-shrink: 0;
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================================
   20. RESOURCES PAGE
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-7); }
.filter-btn {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}
.filter-btn:hover  { border-color: var(--cobalt); color: var(--cobalt); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.featured-article {
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-8);
}
@media (max-width: 767px) {
  .featured-article { grid-template-columns: 1fr; padding: var(--space-6); gap: var(--space-5); }
}
.featured-article-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(233,113,50,.2);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.featured-article h2 { color: var(--cream); margin-bottom: var(--space-4); font-size: clamp(22px,3vw,32px); }
.featured-article p  { color: rgba(245,241,235,.7); font-size: 16px; line-height: 1.65; margin-bottom: var(--space-5); }
.featured-article-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel-blue) 100%);
  border-radius: var(--radius-lg);
  opacity: 0.55;
}
img.featured-article-image {
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

.newsletter-form { display: flex; gap: var(--space-3); max-width: 520px; }
.newsletter-form .form-input { flex: 1; }
@media (max-width: 575px) { .newsletter-form { flex-direction: column; } }

/* ============================================================
   21. MISC / UTILITIES
   ============================================================ */
.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--cobalt);
  transition: gap var(--transition-base), color var(--transition-base);
}
.section-more-link:hover { gap: var(--space-3); color: var(--navy-deep); }

.divider { height: 1px; background: var(--cream-border); margin: var(--space-7) 0; }

.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;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(54,118,147,.4);
  border-radius: var(--radius-sm);
}

.split-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 1023px) { .split-layout { grid-template-columns: 1fr; gap: var(--space-6); } }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}
@media (max-width: 767px) { .stats-row { grid-template-columns: 1fr; } }
