/* =============================================================
   OFF-GRID DIFF’RNT PROJECTS — cinematic launch site stylesheet
   Brand v2 — image-led, full-bleed, charcoal + burnt orange.
   ============================================================= */

:root {
  /* CORE BRAND PALETTE (locked) */
  --charcoal:   #111111;
  --charcoal-2: #1a1a1a;
  --charcoal-3: #222222;
  --offwhite:   #F4F1EA;
  --dust:       #6F6A63;
  --dust-2:     #45413c;

  /* PRIMARY ACTION = Burnt Orange */
  --primary:        #E97B18;
  --primary-hover:  #ff8d2a;
  --primary-deep:   #b85d0e;

  /* SUPPORTING (storytelling/highlight only) */
  --rust:    #C06A58;   /* marketing imagery overlays only — NOT buttons */
  --solar:   #FCC020;   /* restrained energy highlight only */

  /* RHYTHM */
  --maxw:       1280px;
  --gutter:     clamp(24px, 4vw, 64px);
  --section-y:  clamp(72px, 9vw, 128px);

  /* TYPOGRAPHY */
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --t-hero:    clamp(48px, 7.5vw, 112px);
  --t-h1:      clamp(36px, 4.6vw, 64px);
  --t-h2:      clamp(28px, 3.4vw, 44px);
  --t-h3:      clamp(20px, 1.9vw, 26px);
  --t-eyebrow: clamp(12px, 0.95vw, 14px);
  --t-body:    clamp(15px, 1.1vw, 17px);
  --t-small:   clamp(13px, 0.9vw, 14px);
}

/* ----------------------------- RESET ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--offwhite);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

/* ----------------------------- LAYOUT ----------------------------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ----------------------------- HEADER ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Text wordmark — replaces rejected lockup image */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand-lockup .brand-mark {
  display: block;
  width: 3px;
  height: 30px;
  background: var(--primary);
  border-radius: 1px;
  flex: 0 0 auto;
}
.brand-lockup .brand-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-lockup .brand-line-1 { color: var(--ink); }
.brand-lockup .brand-line-2 { color: var(--primary); }
.brand-lockup .brand-line-3 {
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(244, 241, 234, 0.55);
  font-size: 10.5px;
  flex-basis: 100%;
}
@media (min-width: 900px) {
  .brand-lockup { gap: 14px; }
  .brand-lockup .brand-mark { height: 36px; width: 3px; }
  .brand-lockup .brand-text { font-size: 15px; }
  .brand-lockup .brand-line-3 { font-size: 11.5px; }
}
.brand-lockup:hover { text-decoration: none; }
.brand-lockup:hover .brand-line-1 { color: var(--primary); }
.primary-nav {
  display: none;
}
@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    gap: 26px;
    align-items: center;
  }
}
.primary-nav a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--offwhite);
  padding: 6px 0;
  position: relative;
  transition: color 0.15s;
}
.primary-nav a:hover { color: var(--primary); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: var(--primary);
  border-radius: 1px;
}
.primary-nav a.active { color: var(--primary); }

/* mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 4px;
  color: var(--offwhite);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: currentColor; position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }

/* mobile menu open state */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(244, 241, 234, 0.06);
  background: var(--charcoal);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 8px var(--gutter) 16px; }
.mobile-menu li a {
  display: block; padding: 14px 0;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
}
.mobile-menu li a.active { color: var(--primary); }

/* ----------------------------- BUTTONS ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--charcoal);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(244, 241, 234, 0.55);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn .arrow { font-weight: 900; }

/* ----------------------------- HERO ----------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: #0d0d0d;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/backgrounds/home-hero.jpg") center center / cover no-repeat;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.85) 28%, rgba(17,17,17,0.35) 55%, rgba(17,17,17,0.15) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.0) 60%, rgba(17,17,17,0.6) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--gutter) clamp(64px, 10vh, 120px);
  width: 100%;
}
.hero-eyebrow {
  font-size: var(--t-eyebrow);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--primary);
}
.hero-headline {
  font-weight: 900;
  font-size: var(--t-hero);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 14ch;
}
.hero-headline .accent { color: var(--primary); }
.hero-sub {
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 400;
  color: rgba(244, 241, 234, 0.86);
  max-width: 42ch;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ----------------------------- CAPABILITY STRIP ----------------------------- */
.capability-strip {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(244, 241, 234, 0.05);
  border-bottom: 1px solid rgba(244, 241, 234, 0.05);
  padding: 32px var(--gutter);
}
.cap-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
@media (min-width: 720px) { .cap-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cap-row { grid-template-columns: repeat(5, 1fr); } }
.cap-item {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--offwhite);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}
.cap-item::before {
  content: "";
  flex: 0 0 8px;
  width: 8px; height: 8px;
  background: var(--primary);
  display: inline-block;
}

/* ----------------------------- SECTION HEAD ----------------------------- */
.section-head {
  margin-bottom: 56px;
}
.eyebrow {
  font-size: var(--t-eyebrow);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--primary);
}
h2.section-title {
  font-weight: 900;
  font-size: var(--t-h1);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 22ch;
}
.section-title .accent { color: var(--primary); }
.section-intro {
  margin-top: 16px;
  font-size: var(--t-body);
  color: rgba(244, 241, 234, 0.78);
  max-width: 60ch;
}

/* ----------------------------- DIVISION CARDS ----------------------------- */
.divisions {
  padding: var(--section-y) 0;
}
.div-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .div-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.div-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 32px;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  color: var(--offwhite);
  border: 1px solid rgba(244, 241, 234, 0.06);
  transition: transform 0.25s, border-color 0.25s;
}
.div-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 123, 24, 0.5);
}
.div-card::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.div-card:hover::before { transform: scale(1.05); }
.div-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.15) 0%, rgba(17,17,17,0.45) 50%, rgba(17,17,17,0.92) 100%);
  z-index: 1;
}
.div-card > * { position: relative; z-index: 2; }

.div-card.bult::before  { background-image: url("assets/backgrounds/bult-card.jpg"); }
.div-card.drve::before  { background-image: url("assets/backgrounds/drve-card.jpg"); }
.div-card.vbra::before  { background-image: url("assets/backgrounds/vbra-card.jpg"); }

.div-badge {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  z-index: 3;
}
.div-badge.label {
  background: var(--primary); color: var(--charcoal);
}
.div-badge.future {
  background: transparent; color: var(--offwhite);
  border: 1.5px solid rgba(244, 241, 234, 0.7);
}
.div-card h3 {
  font-weight: 900;
  font-size: var(--t-h2);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.div-card h3 .accent { color: var(--primary); }
.div-card .div-sub {
  font-size: 15px;
  color: rgba(244, 241, 234, 0.85);
  margin-bottom: 22px;
  max-width: 28ch;
}
.div-card .div-cta {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.div-card .div-cta::after { content: "→"; }

/* ----------------------------- WA IMPACT BAND ----------------------------- */
.wa-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #0d0d0d;
  overflow: hidden;
  isolation: isolate;
}
.wa-band::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/backgrounds/home-wa-band.jpg") center center / cover no-repeat;
  z-index: 0;
}
.wa-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.65) 35%, rgba(17,17,17,0.15) 65%, rgba(17,17,17,0.05) 100%);
  z-index: 1;
}
.wa-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--gutter);
  width: 100%;
}
.wa-inner h2 {
  font-weight: 900;
  font-size: var(--t-h1);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 18ch;
}
.wa-inner h2 .accent { color: var(--primary); }
.wa-inner p {
  max-width: 48ch;
  font-size: var(--t-body);
  color: rgba(244, 241, 234, 0.86);
  margin-bottom: 28px;
}
.wa-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  margin-top: 36px;
  max-width: 540px;
}
@media (min-width: 720px) { .wa-stats { grid-template-columns: repeat(3, 1fr); } }
.wa-stat .num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.wa-stat .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.85);
}

/* ----------------------------- VALIDATION CTA PANEL ----------------------------- */
.validation-cta {
  position: relative;
  background: var(--charcoal-2);
  overflow: hidden;
  isolation: isolate;
}
.validation-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/backgrounds/home-validation-band.jpg") center center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.validation-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.65) 0%, rgba(17,17,17,0.85) 100%);
  z-index: 1;
}
.val-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .val-inner { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.val-inner h2 {
  font-weight: 900;
  font-size: var(--t-h1);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 18px;
}
.val-inner h2 .accent { color: var(--primary); }
.val-inner p {
  font-size: var(--t-body);
  color: rgba(244, 241, 234, 0.86);
  max-width: 52ch;
  margin-bottom: 0;
}
.val-cta-col {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
@media (min-width: 900px) {
  .val-cta-col { align-items: center; }
}

/* ----------------------------- FOUNDER ANCHOR ----------------------------- */
.founder {
  padding: var(--section-y) 0;
  background: var(--charcoal);
}
.founder-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .founder-inner { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.founder-body p {
  font-size: var(--t-body);
  color: rgba(244, 241, 234, 0.84);
  margin-bottom: 16px;
  max-width: 60ch;
}
.founder-meta {
  background: var(--charcoal-2);
  border: 1px solid rgba(244, 241, 234, 0.06);
  padding: 28px;
  border-radius: 4px;
}
.founder-meta .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.founder-meta .name {
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.founder-meta .role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 18px;
}
.founder-meta .meta-row {
  font-size: 14px;
  color: rgba(244, 241, 234, 0.8);
  display: block;
  margin: 4px 0;
}

/* ----------------------------- LINKEDIN STRIP ----------------------------- */
.linkedin-strip {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(244, 241, 234, 0.05);
  border-bottom: 1px solid rgba(244, 241, 234, 0.05);
}
.li-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.li-msg {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.li-icon {
  display: inline-block;
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--charcoal);
  font-weight: 900;
  text-align: center;
  line-height: 28px;
  font-size: 13px;
  border-radius: 3px;
  letter-spacing: 0;
}
.li-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}
.li-link::after { content: " →"; }

/* ----------------------------- INTERIOR HERO ----------------------------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background: #0d0d0d;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 0;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.1) 100%),
              linear-gradient(180deg, rgba(17,17,17,0) 50%, rgba(17,17,17,0.7) 100%);
  z-index: 1;
}
.page-hero.bult::before  { background-image: url("assets/backgrounds/bult-hero.jpg"); }
.page-hero.drve::before  { background-image: url("assets/backgrounds/drve-hero.jpg"); }
.page-hero.vbra::before  { background-image: url("assets/backgrounds/vbra-hero.jpg"); background-position: center top; }
.page-hero.about::before { background-image: url("assets/backgrounds/about-hero.jpg"); }
.page-hero.contact::before { background-image: url("assets/backgrounds/contact-hero.jpg"); }
.page-hero.projects::before { background-image: url("assets/backgrounds/projects-hero.jpg"); }
.page-hero.validation::before { background-image: url("assets/backgrounds/validation-hero.jpg"); }

.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(120px, 14vh, 180px) var(--gutter) clamp(56px, 7vh, 96px);
  width: 100%;
}
.page-hero-inner h1 {
  font-weight: 900;
  font-size: var(--t-h1);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 18ch;
}
.page-hero-inner h1 .accent { color: var(--primary); }
.page-hero-inner p {
  max-width: 50ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(244, 241, 234, 0.88);
}

/* ----------------------------- FEATURE ROWS (interior) ----------------------------- */
.feature-rows {
  padding: var(--section-y) 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-tile {
  background: var(--charcoal-2);
  border: 1px solid rgba(244, 241, 234, 0.06);
  border-left: 3px solid var(--primary);
  padding: 28px 24px;
  border-radius: 4px;
  min-height: 200px;
}
.feature-tile h3 {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--offwhite);
}
.feature-tile p {
  font-size: 14.5px;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.55;
}

/* ----------------------------- FORM (contact) ----------------------------- */
.form-section {
  padding: var(--section-y) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; }
}
.contact-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(244, 241, 234, 0.06);
  padding: 28px;
  border-radius: 4px;
}
.contact-card h3 {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact-card a {
  color: var(--offwhite);
  border-bottom: 1px solid rgba(233, 123, 24, 0.4);
  padding-bottom: 2px;
}
.contact-card a:hover { color: var(--primary); }

/* ----------------------------- FOOTER ----------------------------- */
.site-footer {
  background: #0a0a0a;
  color: rgba(244, 241, 234, 0.7);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(244, 241, 234, 0.06);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.footer-wordmark .fw-line-1 {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.footer-wordmark .fw-line-2 {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--primary);
}
.footer-wordmark .fw-line-3 {
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  color: rgba(244, 241, 234, 0.5);
  margin-top: 4px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.65);
  max-width: 40ch;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: rgba(244, 241, 234, 0.75);
}
.footer-col a:hover { color: var(--primary); }

.footer-signature {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(244, 241, 234, 0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(244, 241, 234, 0.55);
  letter-spacing: 0.04em;
}
.footer-signature .corp-line {
  font-weight: 600;
  color: rgba(244, 241, 234, 0.72);
}
.footer-signature .copyright {
  font-size: 12px;
}

/* ----------------------------- UTILITIES ----------------------------- */
.section {
  padding: var(--section-y) 0;
}
.section-dark {
  background: var(--charcoal);
}
.section-darker {
  background: #0a0a0a;
}

/* visually-hidden */
.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;
}

/* --------- BRAND APOSTROPHE (burnt-orange U+2019 inside brand names) --------- */
.brand-apos {
  color: #E97B18;
  font-weight: inherit;
  font-style: normal;
  /* Collapse letter-spacing on the apostrophe so eyebrow tracking */
  /* doesn't visually separate the brand mark into B U ' L T. */
  letter-spacing: 0;
  margin: 0 -0.04em;
}

/* --------- PROJECT STREAM TAGS --------- */
.stream-tag {
  display: inline-block;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  margin: 8px 0 0;
  line-height: 1;
}
.stream-active {
  background: rgba(233, 123, 24, 0.14);
  color: #FCC020;
  border: 1px solid rgba(233, 123, 24, 0.45);
}
.stream-future {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* --------- WA BAND LEAD LINE --------- */
.wa-band-lead {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 600;
  color: #FFFFFF;
  max-width: 760px;
  margin: 0 auto 18px;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .wa-band-lead { font-size: 1.3rem; }
}

/* --------- WA BAND MISSION LINE (supporting mission) --------- */
.wa-band-mission {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: -6px auto 22px;
  letter-spacing: 0.02em;
  text-transform: none;
}
@media (min-width: 768px) {
  .wa-band-mission { font-size: 1.05rem; }
}

/* --------- PAGE-HERO ALT SUBHEAD (division pages) --------- */
.page-hero-alt {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(244,241,234,0.92);
  max-width: 680px;
  margin: 14px 0 0;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .page-hero-alt { font-size: 1.2rem; }
}

/* --------- PAGE-HERO POSITIONING (About) --------- */
.page-hero-positioning {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(244,241,234,0.95);
  max-width: 680px;
  margin: 14px 0 6px;
  letter-spacing: 0.01em;
  font-style: normal;
}
@media (min-width: 768px) {
  .page-hero-positioning { font-size: 1.2rem; }
}
