/* ═══════════════════════════════════════════════════════════
   DRIVE OLD DRUM — SHARED STYLES
   Brand: Bebas Neue + Barlow Condensed + IBM Plex Mono
   Colors: paper #f0ece4, black #0e0c0b, crimson #8c1a1a, gold sheen
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --black:       #0e0c0b;
  --charcoal:    #1a1817;
  --grey:        #3a3a3a;
  --mid-grey:    #6b6b6b;
  --lt-grey:     #b0a89e;
  --paper:       #f0ece4;
  --paper-warm:  #ebe5d8;
  --crimson:     #8c1a1a;
  --crimson-dk:  #6b1414;
  --crimson-lt:  #a82020;
  --gold-1:      #c9a84c;
  --gold-2:      #e8d080;
  --gold-3:      #b8922e;
  --gold-sheen:  linear-gradient(135deg, #c9a84c 0%, #e8d080 45%, #b8922e 100%);
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══ STICKY NAV ═══ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid #2a2725;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0.85rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-logo .od-mark {
  color: var(--crimson-lt);
  font-size: 0.62rem; letter-spacing: 0.28em;
  font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(240, 236, 228, 0.18);
}
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lt-grey);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a.active { color: var(--gold-1); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px; background: var(--gold-1);
}
.nav-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--paper);
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--crimson);
  background: rgba(140, 26, 26, 0.15);
  transition: background 0.2s ease;
}
.nav-phone:hover { background: var(--crimson); }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0.7rem 1rem; }
  .nav-logo { font-size: 1.3rem; }
  .nav-phone { font-size: 0.7rem; padding: 0.45rem 0.7rem; }
}

/* ═══ EYEBROW ═══ */
.eyebrow {
  background: var(--gold-sheen);
  padding: 0.5rem 1.6rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black);
}
.eyebrow .dot { color: var(--crimson-dk); }
@media (max-width: 600px) {
  .eyebrow { font-size: 0.55rem; padding: 0.45rem 1rem; gap: 0.5rem; }
  .eyebrow span:last-child { display: none; }
}

/* ═══ HERO (cinematic, full-bleed image bg) ═══ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 1.6rem 5rem;
  border-bottom: 4px solid var(--crimson);
  min-height: 540px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.05);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(14, 12, 11, 0.85) 0%,
    rgba(14, 12, 11, 0.55) 40%,
    rgba(140, 26, 26, 0.35) 100%);
}
.hero-stripe {
  position: absolute; top: 0; right: 0;
  width: 340px; height: 340px;
  background: repeating-linear-gradient(-45deg,
    rgba(201, 168, 76, 0.15) 0px,
    rgba(201, 168, 76, 0.15) 10px,
    transparent 10px, transparent 26px);
  pointer-events: none; z-index: 1;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: center;
}
.hero-flag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--lt-grey);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.6rem;
  animation: slideIn 0.7s ease both;
}
.hero-flag::before { content: ''; width: 32px; height: 2px; background: var(--crimson); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  line-height: 0.88; letter-spacing: 0.015em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  animation: slideIn 0.9s 0.1s ease both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--crimson-lt); font-style: italic; display: inline-block; }
.hero h1 .gold {
  background: var(--gold-sheen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-lede {
  font-size: 1.18rem; color: #d4cdbf; line-height: 1.55;
  max-width: 520px; margin-bottom: 2rem;
  animation: slideIn 1s 0.2s ease both;
}
.hero-lede strong { color: var(--paper); font-weight: 600; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: slideIn 1.1s 0.3s ease both; }
.btn-primary {
  background: var(--crimson); color: var(--paper);
  padding: 1rem 1.8rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--crimson);
  transition: background 0.2s ease, transform 0.15s ease;
  display: inline-block;
}
.btn-primary:hover { background: var(--crimson-lt); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(14, 12, 11, 0.4); color: var(--paper);
  padding: 1rem 1.8rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid rgba(240, 236, 228, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  display: inline-block;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--gold-1); color: var(--gold-2); background: rgba(14, 12, 11, 0.6); }

/* Hero chips (home page) */
.hero-chips {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  animation: slideIn 1.2s 0.35s ease both;
}
.chip {
  background: rgba(14, 12, 11, 0.55);
  border: 1px solid rgba(240, 236, 228, 0.18);
  padding: 1.4rem 1.3rem;
  backdrop-filter: blur(6px);
}
.chip-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold-1);
  margin-bottom: 0.4rem;
}
.chip-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.95rem; line-height: 1;
  color: var(--paper); letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.chip-sub { font-size: 0.92rem; color: var(--lt-grey); }

@media (max-width: 880px) {
  .hero { padding: 3.5rem 1.2rem 3.5rem; min-height: 460px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-lede { font-size: 1.05rem; }
  .hero-chips { gap: 0.7rem; }
  .chip { padding: 1rem 0.9rem; }
  .chip-label { font-size: 1.55rem; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ SECTION SHELL ═══ */
section { padding: 5rem 1.6rem; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.section-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-num::before { content: ''; width: 28px; height: 2px; background: var(--crimson); }
.section-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 0.95; letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 1rem;
}
.section-h .accent { color: var(--crimson); font-style: italic; }
.section-h .gold {
  background: var(--gold-sheen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.section-lede {
  font-size: 1.18rem; color: var(--grey);
  max-width: 680px; margin-bottom: 3rem;
  line-height: 1.55;
}
@media (max-width: 880px) {
  section { padding: 3.5rem 1.2rem; }
  .section-lede { font-size: 1.05rem; margin-bottom: 2.2rem; }
}

/* Section on dark bg */
.section-dark { background: var(--black); color: var(--paper); position: relative; overflow: hidden; }
.section-dark::before {
  content: ''; position: absolute; top: 0; right: -100px;
  width: 380px; height: 380px;
  background: repeating-linear-gradient(45deg,
    rgba(201, 168, 76, 0.08) 0px,
    rgba(201, 168, 76, 0.08) 8px,
    transparent 8px, transparent 22px);
  pointer-events: none;
}
.section-dark .section-num { color: var(--gold-1); }
.section-dark .section-num::before { background: var(--gold-1); }
.section-dark .section-h { color: var(--paper); }
.section-dark .section-lede { color: var(--lt-grey); }

/* ═══ IMAGE MARQUEE ═══ */
.marquee {
  background: var(--black);
  padding: 0;
  border-top: 1px solid #2a2725;
  border-bottom: 1px solid #2a2725;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.marquee-track {
  display: flex; gap: 0;
  animation: scroll 45s linear infinite;
  width: max-content;
}
.marquee-item {
  width: 320px; height: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border-right: 1px solid #2a2725;
  position: relative;
}
.marquee-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14, 12, 11, 0.15), rgba(140, 26, 26, 0.15));
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .marquee-item { width: 220px; height: 140px; }
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--black); color: var(--lt-grey);
  padding: 3.5rem 1.6rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.2rem; margin-bottom: 2.5rem;
}
.footer-brand .mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.14em;
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.footer-brand-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 0.9rem;
}
.footer-brand p { font-size: 1.02rem; color: var(--lt-grey); max-width: 380px; line-height: 1.5; }
.footer-col h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  font-size: 1rem; color: var(--lt-grey);
  display: block; margin-bottom: 0.4rem; line-height: 1.4;
}
.footer-col a:hover { color: var(--paper); }

/* Veteran orgs community block */
.footer-vets {
  max-width: 1280px; margin: 0 auto 1rem;
  background: rgba(140, 26, 26, 0.08);
  border: 1px solid rgba(140, 26, 26, 0.3);
  padding: 1.5rem 1.6rem;
}
.footer-vets-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.1rem;
}
.footer-vets-head .star {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(140, 26, 26, 0.18);
  color: var(--crimson-lt);
  border: 1px solid rgba(140, 26, 26, 0.4);
  font-size: 1.1rem;
}
.footer-vets-head .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--crimson-lt);
}
.footer-vets-head .lbl span { color: var(--lt-grey); }
.footer-vets-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}
.footer-vet-card {
  background: rgba(14, 12, 11, 0.5);
  border: 1px solid rgba(240, 236, 228, 0.1);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 96px;
}
.footer-vet-card:hover {
  border-color: var(--crimson-lt);
  background: rgba(140, 26, 26, 0.18);
}
.footer-vet-card .name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.12rem; line-height: 1.05;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.footer-vet-card .desc {
  font-size: 0.8rem; color: var(--lt-grey);
  line-height: 1.35;
  margin-bottom: 0.55rem;
  flex: 1;
}
.footer-vet-card .go {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-1);
}
.footer-vet-card:hover .go { color: var(--gold-2); }
@media (max-width: 1100px) {
  .footer-vets-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .footer-vets-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .footer-vets-grid { grid-template-columns: 1fr; }
}

/* Shelter community block */
.footer-shelter {
  max-width: 1280px; margin: 0 auto 2rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 1.5rem 1.6rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem;
  align-items: center;
}
.footer-shelter .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-1);
  font-size: 1.4rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.footer-shelter .text {
  color: var(--lt-grey);
  font-size: 1rem; line-height: 1.45;
}
.footer-shelter .text strong { color: var(--paper); font-weight: 600; }
.footer-shelter .text a { color: var(--gold-2); border-bottom: 1px dashed rgba(232, 208, 128, 0.4); }
.footer-shelter .text a:hover { color: var(--paper); border-bottom-color: var(--paper); }
.footer-shelter .donate-btn {
  display: inline-block; white-space: nowrap;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.75rem 1.2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.2s ease;
}
.footer-shelter .donate-btn:hover {
  background: var(--gold-1);
  color: var(--black);
  border-color: var(--gold-1);
}

.footer-base {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid #2a2725;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: var(--mid-grey); text-transform: uppercase;
  flex-wrap: wrap; gap: 0.8rem;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .footer-shelter { grid-template-columns: 1fr; gap: 0.9rem; text-align: left; }
  .footer-shelter .donate-btn { justify-self: start; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ═══ CTA BAND ═══ */
.cta-band {
  background: var(--crimson); color: var(--paper);
  padding: 3.4rem 1.6rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0.06) 0px,
    rgba(0,0,0,0.06) 10px,
    transparent 10px, transparent 30px);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.cta-band h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.95; letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}
.cta-band h3 .gold {
  background: var(--gold-sheen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.cta-band p {
  font-size: 1.15rem; color: rgba(240, 236, 228, 0.9);
  margin-bottom: 1.8rem;
}
.cta-band-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-band a.tel {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; color: var(--paper); letter-spacing: 0.06em;
  padding: 0.7rem 1.6rem;
  border: 2px solid var(--paper);
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-band a.tel:hover { background: var(--paper); color: var(--crimson); }
.cta-band a.apply {
  display: inline-block;
  background: var(--paper); color: var(--crimson);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 1.8rem;
  border: 2px solid var(--paper);
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-band a.apply:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--black); }
.cta-band .or {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em;
  color: rgba(240, 236, 228, 0.7);
  margin-top: 1rem; text-transform: uppercase;
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
