/* ============================================================
   TRUE VISION ENTERPRISES — Main Stylesheet
   Mobile-first, production-ready CSS
   ============================================================ */

/* ── Google Fonts are loaded via <link> in HTML ── */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-darkest:   #0D1B2A;
  --color-dark:      #1B263B;
  --color-steel:     #415A77;
  --color-light:     #778DA9;
  --color-white:     #FFFFFF;
  --color-offwhite:  #F5F7FA;
  --color-accent:    #E8A020;   /* gold accent for CTA highlights */

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing Scale */
  --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-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.20);
  --shadow-nav: 0 2px 20px rgba(13,27,42,0.25);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow:   500ms ease;

  /* Nav Height */
  --nav-height: 70px;

  /* Max Width */
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-steel);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-darkest);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-darkest);
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section--dark {
  background-color: var(--color-darkest);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--navy {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3 {
  color: var(--color-white);
}

.section--steel {
  background-color: var(--color-steel);
  color: var(--color-white);
}

.section--offwhite {
  background-color: var(--color-offwhite);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

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

/* Section Title */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: var(--space-sm);
}

.section--dark .section-label,
.section--navy .section-label {
  color: var(--color-light);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #555;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section-subtitle,
.section--navy .section-subtitle {
  color: var(--color-light);
}

.section-header {
  margin-bottom: var(--space-2xl);
}

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: var(--color-steel);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto var(--space-lg);
}

.divider--left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background-color var(--transition-normal),
              color var(--transition-normal),
              border-color var(--transition-normal),
              box-shadow var(--transition-normal),
              transform var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* Primary */
.btn--primary {
  background-color: var(--color-steel);
  color: var(--color-white);
  border-color: var(--color-steel);
}

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

/* Secondary (outline) */
.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-darkest);
}

/* Accent (gold) */
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-darkest);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background-color: #d08f10;
  border-color: #d08f10;
  color: var(--color-white);
}

/* Dark */
.btn--dark {
  background-color: var(--color-darkest);
  color: var(--color-white);
  border-color: var(--color-darkest);
}

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

/* Light (outline on dark bg) */
.btn--light {
  background-color: transparent;
  color: var(--color-steel);
  border-color: var(--color-steel);
}

.btn--light:hover {
  background-color: var(--color-steel);
  color: var(--color-white);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--color-darkest);
  transition: box-shadow var(--transition-normal),
              background-color var(--transition-normal);
}

.nav.scrolled {
  box-shadow: var(--shadow-nav);
  background-color: rgba(13, 27, 42, 0.98);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-normal),
              opacity var(--transition-normal);
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-darkest);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-xl);
}

.nav__menu.is-open {
  display: flex;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
  background-color: rgba(119,141,169,0.15);
}

.nav__link.active {
  color: var(--color-white);
}

.nav__cta {
  background-color: var(--color-steel);
  color: var(--color-white) !important;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem !important;
}

.nav__cta:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-darkest) !important;
}

/* Body padding for fixed nav */
body { padding-top: var(--nav-height); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-darkest);
}

.hero--short {
  min-height: 380px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero__bg,
.hero:focus-within .hero__bg {
  transform: scale(1.0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 27, 42, 0.82) 0%,
    rgba(27, 38, 59, 0.72) 60%,
    rgba(65, 90, 119, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-2xl) var(--space-lg);
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero__title span {
  color: var(--color-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background-color: var(--color-dark);
  padding: var(--space-xl) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl) var(--space-md);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
  display: block;
}

/* ============================================================
   ABOUT SNIPPET (Home page)
   ============================================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-snippet__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  order: -1;
}

.about-snippet__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-snippet__image:hover img {
  transform: scale(1.03);
}

.about-snippet__content .section-label {
  display: block;
  margin-bottom: var(--space-sm);
}

.about-snippet__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.about-snippet__stat {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.about-snippet__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-steel);
}

.about-snippet__stat span {
  font-size: 0.8rem;
  color: #777;
}

/* ============================================================
   CARDS — SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(119,141,169,0.15);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-steel), var(--color-light));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-offwhite);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.75rem;
  color: var(--color-steel);
  transition: background-color var(--transition-normal);
}

.service-card:hover .service-card__icon {
  background-color: var(--color-steel);
  color: var(--color-white);
}

.service-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-darkest);
}

.service-card__text {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
}

.team-card__info {
  padding: var(--space-xl);
}

.team-card__name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-darkest);
}

.team-card__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: var(--space-md);
}

.team-card__bio {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card__image {
  transform: scale(1.05);
}

.news-card__image-wrapper {
  overflow: hidden;
}

.news-card__body {
  padding: var(--space-lg);
}

.news-card__meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-steel);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.news-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-darkest);
}

.news-card__excerpt {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   VIDEO CARDS / EMBEDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-darkest);
}

.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__caption {
  padding: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-light);
  text-align: center;
}

.video-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-darkest);
  margin-bottom: var(--space-2xl);
}

.video-featured__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-featured__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-featured__caption {
  padding: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-light);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background-color: var(--color-offwhite);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--color-steel);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-size: 5rem;
  color: var(--color-offwhite);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-steel);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners {
  background-color: var(--color-dark);
  padding: var(--space-2xl) 0;
}

.partners__grid {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(119,141,169,0.4);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: border-color var(--transition-normal), background-color var(--transition-normal);
}

.partner-badge:hover {
  border-color: var(--color-light);
  background: rgba(255,255,255,0.14);
}

.partner-badge__icon {
  font-size: 1.5rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-steel) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-banner__subtitle {
  font-size: 1.0625rem;
  color: var(--color-light);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BBB BADGE / TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--color-offwhite);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(119,141,169,0.2);
  border-bottom: 1px solid rgba(119,141,169,0.2);
}

.trust-bar__inner {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item__icon {
  font-size: 1.5rem;
  color: var(--color-steel);
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* ============================================================
   CAREER PATHWAY
   ============================================================ */
.pathway {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--space-lg);
}

.pathway::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-steel), var(--color-light));
}

.pathway-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg) 0;
  position: relative;
}

.pathway-step__marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-steel);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-left: -1px;
  box-shadow: 0 0 0 4px var(--color-white), 0 0 0 6px var(--color-steel);
}

.pathway-step__content {
  padding-top: var(--space-xs);
}

.pathway-step__title {
  font-size: 1.125rem;
  color: var(--color-darkest);
  margin-bottom: var(--space-xs);
}

.pathway-step__detail {
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-label .required {
  color: #c0392b;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-darkest);
  background-color: var(--color-white);
  border: 2px solid #d0d7e0;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-steel);
  box-shadow: 0 0 0 3px rgba(65,90,119,0.15);
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.form-control::placeholder {
  color: #aab;
}

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

select.form-control {
  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 fill='%23415A77' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-steel);
  cursor: pointer;
}

.form-checkbox__label {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.5;
}

.form-hint {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  font-weight: 600;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Form Message */
.form-message {
  display: none;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-md);
}

.form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  border: 2px dashed #d0d7e0;
  border-radius: var(--radius-md);
  background: var(--color-offwhite);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.file-upload-wrapper input[type="file"]:focus {
  outline: none;
  border-color: var(--color-steel);
}

/* Honeypot */
.honeypot-field {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(119,141,169,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-normal);
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-darkest);
  gap: var(--space-md);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-offwhite);
  color: var(--color-steel);
}

.faq-item.is-open .faq-question {
  color: var(--color-steel);
  background-color: rgba(65,90,119,0.05);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  color: var(--color-steel);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-normal);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease, padding var(--transition-normal);
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-offwhite);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--color-steel);
}

.contact-info-item__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: 0.9375rem;
  color: var(--color-dark);
  margin: 0;
}

.contact-info-item__value a {
  color: var(--color-dark);
}

.contact-info-item__value a:hover {
  color: var(--color-steel);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.hours-table td {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(119,141,169,0.15);
}

.hours-table td:first-child {
  font-weight: 700;
  color: var(--color-dark);
  width: 50%;
}

.hours-table td:last-child {
  color: #555;
  white-space: nowrap;
}

/* ============================================================
   OPEN POSITIONS
   ============================================================ */
.positions-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.position-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid rgba(119,141,169,0.2);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.position-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.position-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.position-card__title {
  font-size: 1.125rem;
  color: var(--color-darkest);
}

.position-card__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(65,90,119,0.1);
  color: var(--color-steel);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.position-card__desc {
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
}

/* ============================================================
   WHY WORK WITH US — Bullet List
   ============================================================ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-steel);
}

.why-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--color-steel);
}

.why-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-darkest);
  margin-bottom: var(--space-xs);
}

.why-item__text {
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
}

/* ============================================================
   PRIVACY / TERMS — Legal Pages
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-darkest);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.legal-content p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul, .legal-content ol {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content li {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--color-steel);
  font-weight: 700;
  margin-bottom: var(--space-2xl);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-darkest);
  color: var(--color-light);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {}

.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(119,141,169,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 1.1rem;
  transition: background-color var(--transition-normal),
              border-color var(--transition-normal),
              color var(--transition-normal);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--color-steel);
  border-color: var(--color-steel);
  color: var(--color-white);
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9375rem;
  color: var(--color-light);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-light);
  margin-bottom: var(--space-sm);
}

.footer__contact-item a {
  color: var(--color-light);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__contact-icon {
  width: 18px;
  flex-shrink: 0;
  color: var(--color-steel);
}

.footer__bottom {
  border-top: 1px solid rgba(119,141,169,0.2);
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(119,141,169,0.7);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  font-size: 0.8rem;
  color: rgba(119,141,169,0.7);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-white);
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }
.fade-in--delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

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

.breadcrumb__sep {
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (min-width: 480px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    background: none;
    padding: 0;
    overflow: visible;
    height: auto;
    bottom: auto;
    top: auto;
    left: auto;
    right: auto;
  }

  .nav__link {
    font-size: 0.8rem;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-snippet {
    grid-template-columns: 1fr 1fr;
  }

  .about-snippet__image {
    order: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .positions-list .position-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pathway {
    flex-direction: row;
    padding-left: 0;
    padding-top: var(--space-lg);
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }

  .pathway::before {
    top: 22px;
    bottom: auto;
    left: 30px;
    right: 30px;
    width: auto;
    height: 2px;
  }

  .pathway-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 var(--space-md);
    max-width: 220px;
  }

  .pathway-step__marker {
    margin-left: 0;
    margin-bottom: var(--space-md);
  }

  .pathway-step__content {
    padding-top: 0;
  }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (min-width: 1200px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .hero--short {
    min-height: 440px;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .nav,
  .hero__actions,
  .cta-banner,
  .footer__social,
  .social-link,
  iframe,
  video {
    display: none !important;
  }

  body {
    padding-top: 0;
    font-size: 12pt;
    color: #000;
  }

  h1, h2, h3 { color: #000; page-break-after: avoid; }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background-image: none !important;
    color: #000;
  }

  .hero__title, .hero__subtitle, .hero__eyebrow {
    color: #000;
    text-shadow: none;
  }

  .hero__overlay { display: none; }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }

  .section, .section--dark, .section--navy, .section--offwhite {
    background: #fff !important;
    color: #000 !important;
    padding: 1rem 0;
  }

  .service-card, .team-card, .news-card, .testimonial-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .footer {
    background: #fff;
    color: #000;
    padding: 1rem 0;
  }

  .footer__link, .footer__copy, .footer__legal-link, .footer__contact-item {
    color: #000;
  }
}
