/*
Theme Name: Velocity Flow
Theme URI: https://velocityflow.org
Author: Velocity Flow, LLC
Author URI: https://velocityflow.org
Description: Official Velocity Flow corporate theme — governance-driven advisory firm.
Version: 1.0.0
License: Private
License URI: #
Text Domain: velocity-flow
Tags: business, corporate, federal
*/

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:       #0B2D5E;
  --navy-deep:  #061A38;
  --gold:       #C8A030;
  --white:      #ffffff;
  --background: #ffffff;
  --secondary:  #f6f6f8;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --max-w:      1280px;
  --px:         clamp(1.5rem, 5vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

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

.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

.bg-navy      { background: var(--navy); }
.bg-navy-deep { background: var(--navy-deep); }
.bg-secondary { background: var(--secondary); }
.bg-white     { background: var(--white); }

.divider-gold {
  height: 1px;
  background: var(--gold);
  margin-top: .75rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  padding: .75rem 1.75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: .75rem 1.75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  color: var(--white);
  padding: .75rem 1.75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1.75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .2s;
  cursor: pointer;
}
.btn-navy:hover { background: var(--navy-deep); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
#site-header.scrolled,
#site-header.opaque {
  background: rgba(6,26,56,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
#site-header.transparent { background: transparent; border-bottom: none; }

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.site-logo img { height: 40px; width: 40px; }
.site-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a.current-menu-item,
.main-nav a[aria-current="page"] { color: var(--gold); }

.header-cta {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .5rem 1.25rem;
  transition: background .2s, color .2s;
}
.header-cta:hover { background: var(--gold); color: var(--navy); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}
.nav-toggle svg { display: block; }

#mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  inset-inline: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem var(--px) 1.5rem;
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block;
  padding: .75rem 0;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#mobile-nav a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .main-nav, .header-cta-wrap { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO (HOMEPAGE)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .95;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
    rgba(6,26,56,.6) 0%,
    rgba(6,26,56,.3) 50%,
    rgba(6,26,56,.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 8rem var(--px) 6rem;
  text-align: center;
  width: 100%;
}

.hero-box {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(6,26,56,.3);
  backdrop-filter: blur(8px);
  padding: 2.5rem 4rem;
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-rule {
  width: 6rem;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
}

.hero-tagline {
  font-size: clamp(.8rem, 1.5vw, .95rem);
  font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.hero-tagline .precision { color: #B4F0FF; text-shadow: 0 0 12px rgba(180,240,255,.7); font-weight: 500; }
.hero-tagline .results   { color: var(--gold); }

.hero-desc {
  margin-top: 1.5rem;
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 42rem;
  margin-inline: auto;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .hero-box { padding: 2rem 1.5rem; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 10rem var(--px) 5rem;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 800px;
  margin-inline: auto;
}
.page-hero .intro {
  margin-top: 1.5rem;
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* Overview */
.section-overview {
  background: var(--background);
  padding: 6rem var(--px);
  text-align: center;
}
.section-overview h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy);
  margin-top: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}
.section-overview p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
  margin-inline: auto;
}
.section-overview blockquote {
  margin: 2.5rem auto 0;
  max-width: 600px;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--navy);
}

/* Capabilities Preview */
.section-caps-preview {
  background: var(--secondary);
  padding: 6rem var(--px);
}
.caps-preview-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.caps-preview-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  max-width: 600px;
  margin-top: .75rem;
}
.caps-preview-header a {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .2s;
}
.caps-preview-header a:hover { color: var(--gold); }

.caps-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.cap-card {
  background: var(--background);
  padding: 2rem;
  transition: background .2s, color .2s;
}
.cap-card:hover { background: var(--navy); }
.cap-card:hover .cap-title  { color: var(--white); }
.cap-card:hover .cap-body   { color: rgba(255,255,255,.8); }
.cap-icon { color: var(--gold); margin-bottom: 1.5rem; }
.cap-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  transition: color .2s;
}
.cap-body {
  margin-top: .75rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted);
  transition: color .2s;
}

/* Operating Standard */
.section-standard {
  background: var(--background);
  padding: 6rem var(--px);
  text-align: center;
}
.section-standard h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  max-width: 700px;
  margin-inline: auto;
}
.section-standard p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
  margin-inline: auto;
}

/* Training Band */
.section-training-band {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 6rem var(--px);
  overflow: hidden;
}
.section-training-band::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--gold);
}
.training-band-grid {
  display: grid;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .training-band-grid { grid-template-columns: 1fr 1fr; }
}
.training-band-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}
.training-band-grid p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
}
.training-band-right { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }

/* Trust Pillars */
.section-trust {
  background: var(--background);
  padding: 6rem var(--px);
}
.trust-grid {
  display: grid;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}
.trust-item p {
  margin-top: 1rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Why VF */
.section-why {
  background: var(--secondary);
  padding: 6rem var(--px);
  text-align: center;
}
.section-why p {
  max-width: 700px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}
.section-why p + p { margin-top: 1.25rem; color: var(--navy); }

/* CTA */
.section-cta {
  background: var(--navy-deep);
  color: var(--white);
  padding: 6rem var(--px);
  text-align: center;
}
.section-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 700px;
  margin-inline: auto;
}
.section-cta p {
  margin-top: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}
.section-cta .actions { margin-top: 2rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-blocks {
  background: var(--background);
  padding: 6rem var(--px);
}
.about-blocks-grid {
  display: grid;
  gap: 4rem;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 900px) { .about-blocks-grid { grid-template-columns: 1fr 1fr; } }
.about-block h2 {
  font-size: 1.8rem;
  color: var(--navy);
}
.about-block p {
  margin-top: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.about-callout {
  max-width: 900px;
  margin: 4rem auto 0;
  border-left: 2px solid var(--gold);
  background: var(--secondary);
  padding: 2rem;
}
.about-callout p { line-height: 1.8; color: var(--navy); }
.about-callout .vet-tag {
  margin-top: 1rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.credentials-section {
  background: var(--navy);
  color: var(--white);
  padding: 5rem var(--px);
}
.credentials-section .eyebrow { margin-bottom: .75rem; }
.creds-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .creds-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .creds-grid { grid-template-columns: repeat(3, 1fr); } }
.cred-card {
  border: 1px solid rgba(255,255,255,.15);
  padding: 1.25rem;
}
.cred-card .label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.cred-card .value { color: rgba(255,255,255,.9); }

/* ============================================================
   CAPABILITIES PAGE
   ============================================================ */
.capabilities-main {
  background: var(--background);
  padding: 6rem var(--px);
}
.services-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  background: var(--background);
  padding: 2.5rem;
}
.service-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
}
.service-card p { line-height: 1.8; color: var(--muted); font-size: .95rem; }

.cap-statement {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 2.5rem;
}
.cap-statement h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: .5rem;
}
.cap-statement p { color: var(--muted); margin-top: .5rem; }

.one-standard {
  background: var(--background);
  padding: 6rem var(--px);
  text-align: center;
}
.one-standard h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); }
.one-standard p {
  margin-top: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.leadership-main {
  background: var(--background);
  padding: 6rem var(--px);
}
.leaders-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 768px) { .leaders-grid { grid-template-columns: 1fr 1fr; } }
.leader-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-align: center;
}
.leader-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
}
.leader-card h3 { font-size: 1.5rem; color: var(--navy); }
.leader-role {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .25rem;
}
.leader-creds {
  font-size: .7rem;
  line-height: 1.7;
  color: rgba(11,45,94,.8);
  margin-top: .75rem;
}
.leader-bio {
  margin-top: 1rem;
  text-align: left;
  line-height: 1.8;
  color: var(--muted);
  font-size: .9rem;
}

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.safe-section {
  background: var(--secondary);
  padding: 6rem var(--px);
}
.safe-header { display: flex; align-items: center; gap: .75rem; color: var(--gold); margin-bottom: 1rem; }
.safe-header span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.safe-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); }
.safe-section > .container > p {
  margin-top: 1.5rem;
  max-width: 750px;
  line-height: 1.8;
  color: var(--muted);
}
.safe-courses {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
  list-style: none;
}
@media (min-width: 640px) { .safe-courses { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .safe-courses { grid-template-columns: repeat(3, 1fr); } }
.safe-courses li {
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
}
.safe-courses li::before { content: '▸'; color: var(--gold); margin-right: .75rem; }

.workforce-section {
  background: var(--background);
  padding: 6rem var(--px);
}
.workforce-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); }
.programs-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }
.program-card {
  border: 1px solid var(--border);
  padding: 2rem;
}
.program-card h3 { font-size: 1.4rem; color: var(--navy); margin-top: 1.5rem; }
.program-card p { margin-top: .75rem; line-height: 1.8; color: var(--muted); font-size: .9rem; }

.training-cta {
  background: var(--navy);
  color: var(--white);
  padding: 5rem var(--px);
  text-align: center;
}
.training-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.training-cta p {
  margin-top: 1rem;
  max-width: 560px;
  margin-inline: auto;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.training-cta .actions { margin-top: 1.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main {
  background: var(--background);
  padding: 6rem var(--px);
}
.contact-layout {
  display: grid;
  gap: 4rem;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 2fr 3fr; } }

.contact-info h2 { font-size: 1.6rem; color: var(--navy); }
.contact-info-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: .15rem; }
.contact-item .ci-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
}
.contact-item .ci-value { margin-top: .25rem; color: var(--muted); font-size: .9rem; }

.contact-form-wrap {
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 2.5rem;
}
.contact-form .form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .contact-form .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--background);
  padding: .75rem 1rem;
  font-size: .9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 4rem var(--px) 0;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 40px; width: 40px; }
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 380px; }
.footer-brand .tagline {
  margin-top: 1.5rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li { font-size: .875rem; }
.footer-col a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col .dim { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom span { letter-spacing: .15em; text-transform: uppercase; }

/* ============================================================
   RESPONSIVE PADDING
   ============================================================ */
@media (max-width: 640px) {
  .hero-box { max-width: 100%; }
  .cap-statement { flex-direction: column; align-items: flex-start; }
}
