/* =======================================================
   OPERATION RELENTLESS — DESIGN SYSTEM v2
   Palette: Blue #1B3296 | Surface #1B3296 | Orange #E8610A
            Yellow #FFBE0B | Green #3D8B1F | Red #C5291A
            Cream #F0EBE0
   Inspired by: the OR Humvee custom wrap — orange base, royal blue accents
   ======================================================= */

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

/* ---- VARIABLES ---- */
:root {
  --navy:       #E05200;   /* PRIMARY — vivid orange base color */
  /* Charcoal surface for cards/modals — dark warm, not blue */
  --charcoal:     #1E1C1A;
  --charcoal-2:   #252220;
  --navy-surf:  #1B3296;   /* logo blue surface — section-surface sections */
  --orange:     #E8610A;
  --orange-hot: #FF7420;
  --yellow:     #FFBE0B;
  --yellow-dim: #D4980A;
  --green:      #3D8B1F;
  --green-hot:  #50B027;
  --blue:       #1A3FA8;
  --blue-hot:   #2655D4;
  --red:        #C5291A;
  --red-dark:   #A01F12;
  --cream:      #F0EBE0;

  /* legacy aliases so existing code doesn't break */
  --olive:      #3D8B1F;
  --tan:        #E8610A;

  --tan-05:   rgba(232,97,10,0.05);
  --tan-10:   rgba(232,97,10,0.10);
  --tan-20:   rgba(232,97,10,0.22);
  --tan-40:   rgba(232,97,10,0.40);
  --red-20:   rgba(197,41,26,0.20);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-hero:    'Black Ops One', 'Oswald', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --tr:      0.22s ease;
  --tr-slow: 0.4s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  /* Subtle noise texture for depth */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: #fff; text-decoration: none; transition: color var(--tr); }
a:hover { color: rgba(255,255,255,0.75); }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- ACCESSIBILITY ---- */
:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; border-radius: 2px; }
.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;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important; transform: none !important;
  }
}

/* ---- TOPOGRAPHIC TEXTURE (shared inline SVG) ---- */
/* Reusable topo SVG background — dark lines on light, light lines on dark */
:root {
  --topo-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='1.4'%3E%3Cpath d='M-100%2C55 C60%2C35 220%2C75 420%2C50 S680%2C30 950%2C55'/%3E%3Cpath d='M-100%2C135 C60%2C115 220%2C155 420%2C130 S680%2C110 950%2C135'/%3E%3Cpath d='M-100%2C215 C60%2C195 220%2C235 420%2C210 S680%2C190 950%2C215'/%3E%3Cpath d='M-100%2C295 C60%2C275 220%2C315 420%2C290 S680%2C270 950%2C295'/%3E%3Cpath d='M-100%2C375 C60%2C355 220%2C395 420%2C370 S680%2C350 950%2C375'/%3E%3Cpath d='M-100%2C455 C60%2C435 220%2C475 420%2C450 S680%2C430 950%2C455'/%3E%3Cpath d='M-100%2C535 C60%2C515 220%2C555 420%2C530 S680%2C510 950%2C535'/%3E%3C/g%3E%3C/svg%3E");
}
  position: relative;
  /* Orange gradient — never flat */
  background: linear-gradient(145deg,
    #E05200 0%,
    #C44600 35%,
    #E05200 65%,
    #B83D00 100%);
}
.topo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.4'%3E%3Cpath d='M-100%2C55 C60%2C35 220%2C75 420%2C50 S680%2C30 950%2C55'/%3E%3Cpath d='M-100%2C95 C60%2C75 220%2C115 420%2C90 S680%2C70 950%2C95'/%3E%3Cpath d='M-100%2C135 C60%2C115 220%2C155 420%2C130 S680%2C110 950%2C135'/%3E%3Cpath d='M-100%2C175 C60%2C155 220%2C195 420%2C170 S680%2C150 950%2C175'/%3E%3Cpath d='M-100%2C215 C60%2C195 220%2C235 420%2C210 S680%2C190 950%2C215'/%3E%3Cpath d='M-100%2C255 C60%2C235 220%2C275 420%2C250 S680%2C230 950%2C255'/%3E%3Cpath d='M-100%2C295 C60%2C275 220%2C315 420%2C290 S680%2C270 950%2C295'/%3E%3Cpath d='M-100%2C335 C60%2C315 220%2C355 420%2C330 S680%2C310 950%2C335'/%3E%3Cpath d='M-100%2C375 C60%2C355 220%2C395 420%2C370 S680%2C350 950%2C375'/%3E%3Cpath d='M-100%2C415 C60%2C395 220%2C435 420%2C410 S680%2C390 950%2C415'/%3E%3Cpath d='M-100%2C455 C60%2C435 220%2C475 420%2C450 S680%2C430 950%2C455'/%3E%3Cpath d='M-100%2C495 C60%2C475 220%2C515 420%2C490 S680%2C470 950%2C495'/%3E%3Cpath d='M-100%2C535 C60%2C515 220%2C555 420%2C530 S680%2C510 950%2C535'/%3E%3Cpath d='M-100%2C575 C60%2C555 220%2C595 420%2C570 S680%2C550 950%2C575'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 600px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.topo-bg > * { position: relative; z-index: 1; }

/* =======================================================
   TYPOGRAPHY
   ======================================================= */
h1, h2 {
  font-family: var(--font-hero);
  font-weight: 400; /* Black Ops One is display weight */
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
p  { font-size: 1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.1em;
  background: #fff;
  flex-shrink: 0;
  box-shadow: none;
}

.text-tan   { color: var(--orange); }
.text-red   { color: var(--red); }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }
.text-green  { color: var(--green-hot); }
.text-blue   { color: var(--green-hot); }
.text-cream { color: var(--cream); }
.text-dim   { color: rgba(240,235,224,0.55); }

/* =======================================================
   CRISIS BAR
   ======================================================= */
.crisis-bar {
  background: linear-gradient(90deg, var(--red) 0%, #A01F12 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  padding: 0.45rem 1rem;
  z-index: 200;
  position: relative;
}
.crisis-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.crisis-bar a:hover { color: rgba(255,255,255,0.82); }

/* =======================================================
   NAVIGATION
   ======================================================= */
.site-header {
  background-color: rgba(11,20,100,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 90;
  overflow: visible;
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(232,97,10,0.25), 0 2px 0 var(--orange); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  overflow: visible;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.logo-img {
  height: 128px;
  width: auto;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(24px);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.9));
  position: relative;
  z-index: 2;
  transition: transform var(--tr);
}
.site-logo:hover .logo-img { transform: translateY(24px) scale(1.05); }

/* Desktop Nav */
.site-nav {
  display: flex; align-items: center; gap: 0.15rem;
}
.site-nav .nav-link {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(239,235,225,0.72);
  padding: 0.45rem 0.6rem;
  border-radius: 3px;
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--orange);
  background: rgba(232,97,10,0.1);
}
/* Keep member-btn and donate-btn looking like buttons even when active */
.site-nav .member-btn.active,
.site-nav .member-btn:hover {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(232,97,10,0.85), 0 0 0 3px rgba(255,116,32,0.5);
  transform: translateY(-1px);
}
.site-nav .donate-btn.active {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
  color: #fff !important;
}
.site-nav .donate-btn {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  margin-left: 0.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 16px rgba(232,97,10,0.6), 0 0 0 2px rgba(255,116,32,0.35);
  border: 2px solid var(--orange-hot);
}
.site-nav .donate-btn:hover {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
  box-shadow: 0 4px 24px rgba(232,97,10,0.85), 0 0 0 3px rgba(255,116,32,0.5);
  transform: translateY(-1px);
}
/* Membership CTA button — matches donate style */
.site-nav .member-btn {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  margin-right: 0.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 16px rgba(232,97,10,0.6), 0 0 0 2px rgba(255,116,32,0.35);
  border: 2px solid var(--orange-hot);
}
.site-nav .member-btn:hover {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
  box-shadow: 0 4px 24px rgba(232,97,10,0.85), 0 0 0 3px rgba(255,116,32,0.5);
  transform: translateY(-1px);
}
/* Left / right split nav groups */
.site-nav-left {
  display: flex; align-items: center;
  justify-content: flex-end; gap: 0.15rem;
}
.site-nav-right {
  display: flex; align-items: center;
  justify-content: flex-start; gap: 0.15rem;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 4px;
  transition: background var(--tr);
}
.hamburger:hover { background: var(--tan-10); }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: linear-gradient(145deg, #1E1C1A 0%, #252220 100%);
  border-top: 1px solid rgba(232,97,10,0.3);
  padding: 1rem 1.5rem 1.5rem; gap: 0.15rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(239,235,225,0.78);
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--tan-10);
  display: block; transition: color var(--tr);
}
.mobile-nav .nav-link:hover { color: var(--cream); }
.mobile-nav .donate-btn {
  display: block; margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: #fff !important;
  text-align: center; padding: 0.85rem;
  border-radius: 4px; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-nav .donate-btn:hover {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
}
.mobile-nav .member-btn {
  display: block; margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: #fff !important;
  text-align: center; padding: 0.85rem;
  border-radius: 4px; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: none;
}
.mobile-nav .member-btn:hover {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
  color: #fff;
}

/* =======================================================
   BUTTONS
   ======================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.75rem; border-radius: 4px;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--tr); text-decoration: none;
  line-height: 1; white-space: nowrap;
}
/* Primary: vivid orange — the Humvee's dominant color */
.btn-red {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: #fff; border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,97,10,0.35);
}
.btn-red:hover {
  background: linear-gradient(135deg, var(--orange-hot) 0%, var(--orange) 100%);
  color: #fff; border-color: var(--orange-hot);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,97,10,0.55);
}
/* Secondary: electric yellow */
.btn-yellow {
  background: var(--yellow); color: #0D0600; border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255,190,11,0.35);
}
.btn-yellow:hover {
  background: #FFD040; color: #0D0600;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,190,11,0.55);
}
.btn-outline {
  background: transparent; color: var(--cream); border-color: rgba(240,235,224,0.5);
}
.btn-outline:hover {
  background: rgba(232,97,10,0.1); color: var(--orange);
  border-color: var(--orange);
}
/* Tan alias → orange */
.btn-tan {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: var(--navy); border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255,190,11,0.3);
}
.btn-tan:hover {
  background: linear-gradient(135deg, #FFD040 0%, var(--orange-hot) 100%);
  color: var(--navy); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,190,11,0.5);
}
/* Olive alias → vivid green */
.btn-olive {
  background: linear-gradient(135deg, var(--green-hot) 0%, var(--green) 100%);
  color: #fff; border-color: var(--green);
  box-shadow: 0 4px 16px rgba(61,139,31,0.35);
}
.btn-olive:hover {
  background: linear-gradient(135deg, #60C830 0%, var(--green-hot) 100%);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,139,31,0.55);
}
/* Lime green button */
.btn-lime {
  background: linear-gradient(135deg, #7FFF00 0%, #39D353 100%);
  color: #0A2200; border-color: #5FE010;
  box-shadow: 0 4px 16px rgba(127,255,0,0.4);
  font-weight: 900;
}
.btn-lime:hover {
  background: linear-gradient(135deg, #9FFF30 0%, #7FFF00 100%);
  color: #0A2200; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(127,255,0,0.6);
}
/* Blue button — vivid royal blue */
.btn-blue {
  background: linear-gradient(135deg, #2655D4, var(--navy-surf));
  color: #fff; border-color: #2655D4;
  box-shadow: 0 4px 16px rgba(38,85,212,0.4);
}
.btn-blue:hover {
  background: linear-gradient(135deg, #3A6AFF, #2655D4);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38,85,212,0.6);
}
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* =======================================================
   LAYOUT
   ======================================================= */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 640px;  margin: 0 auto; padding: 0 1.5rem; }

.section    { padding: 5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }

.section-dark    { background: linear-gradient(145deg, var(--navy) 0%, #B83D00 100%); }
.section-surface {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.05)' stroke-width='1.4'%3E%3Cpath d='M-100%2C55 C60%2C35 220%2C75 420%2C50 S680%2C30 950%2C55'/%3E%3Cpath d='M-100%2C175 C60%2C155 220%2C195 420%2C170 S680%2C150 950%2C175'/%3E%3Cpath d='M-100%2C295 C60%2C275 220%2C315 420%2C290 S680%2C270 950%2C295'/%3E%3Cpath d='M-100%2C415 C60%2C395 220%2C435 420%2C410 S680%2C390 950%2C415'/%3E%3Cpath d='M-100%2C535 C60%2C515 220%2C555 420%2C530 S680%2C510 950%2C535'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #0E205C 0%, #1B3296 40%, #0C1A6E 70%, #091660 100%);
  background-size: 900px 600px, cover;
  position: relative;
  color: var(--cream);
}
/* Subtle orange edge glow on surface sections */
.section-surface::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,97,10,0.3), transparent);
  pointer-events: none;
}
.section-olive   { background-color: var(--green); }
.section-orange  { background-color: var(--orange); }
.section-light   { background-color: var(--cream); color: var(--navy); }
.section-light h2, .section-light h3, .section-light h4 { color: var(--navy); }
.section-light .section-label { color: var(--orange); }
.section-light .section-label::before { background: var(--orange); }
.section-light p { color: rgba(8,13,20,0.82); }

/* =======================================================
   ORANGE BASE — TEXT COLOR SYSTEM
   --navy is now #E05200 (vivid orange). Body bg = orange.
   Dark containers override text back to cream.
   !important beats inline style="color:..." attributes.
   ======================================================= */

/* Default headings: white on orange background */
h1, h2, h3, h4, h5, h6 { color: #fff; }

/* HERO (video bg, dark overlay at bottom): cream text */
.hero h1 { color: var(--cream) !important; }
.hero .hero-sub { color: var(--yellow) !important; }
.hero .section-label { color: rgba(255,245,232,0.7) !important; }
.hero .section-label::before { background: var(--yellow) !important; box-shadow: 0 0 6px rgba(255,190,11,0.6) !important; }
.hero a { color: var(--orange); }

/* PAGE HERO (dark gradient lower half): cream text */
.page-hero { color: var(--cream); }
.page-hero h1 { color: var(--cream) !important; }
.page-hero p, .page-hero .hero-sub { color: var(--yellow) !important; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,245,232,0.55) !important; }
.page-hero .section-label { color: rgba(255,245,232,0.8) !important; }
.page-hero .section-label::before { background: var(--yellow) !important; }

/* SECTION-SURFACE (dark gradient sections): cream text */
.section-surface { color: var(--cream); }
.section-surface h2, .section-surface h3, .section-surface h4 { color: var(--cream) !important; }
.section-surface p { color: rgba(240,235,224,0.7) !important; }
.section-surface a:not(.btn) { color: var(--orange); }
.section-surface .section-label { color: var(--orange) !important; }
.section-surface .section-label::before { background: var(--yellow) !important; }

/* MISSION BAND (red-orange gradient): cream text */
.mission-band { color: var(--cream); }
.mission-band h2, .mission-band h3 { color: #fff !important; }
.mission-band p { color: rgba(255,245,232,0.85) !important; }
.mission-band .section-label { color: var(--yellow) !important; }
.mission-band .section-label::before { background: var(--yellow) !important; }

/* CARDS (dark bg, always): cream text */
.card, .action-card, .event-card, .program-card, .tier-card { color: var(--cream); }
.card h2, .card h3, .card h4,
.action-card h2, .action-card h3, .action-card h4,
.event-card h3, .program-card h2, .program-card h3,
.tier-card h3, .tier-card h4 { color: var(--cream) !important; }
.card a:not(.btn) { color: var(--orange); }
.action-card a:not(.btn), .event-card a:not(.btn) { color: var(--orange); }

/* TOPO-BG sections (orange bg): white text */
.topo-bg h2, .topo-bg h3, .topo-bg h4 { color: #fff !important; }
.topo-bg p { color: rgba(255,255,255,0.88) !important; }
.topo-bg .section-label { color: #fff !important; }
.topo-bg .section-label::before { background: #fff !important; }
/* Restore cream for CARD children within topo-bg */
.topo-bg .card h3, .topo-bg .card h4,
.topo-bg .action-card h3, .topo-bg .action-card h4,
.topo-bg .program-card h3, .topo-bg .program-card h2,
.topo-bg .event-card h3 { color: var(--cream) !important; }
.topo-bg .card p, .topo-bg .action-card p,
.topo-bg .event-card p, .topo-bg .program-card p { color: rgba(240,235,224,0.68) !important; }

/* Outline button: white on orange sections */
.topo-bg .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
}
.topo-bg .btn-outline:hover {
  color: #fff;
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.9);
}

/* NAV LINKS (header = dark) */
.site-nav .nav-link { color: rgba(239,235,225,0.78) !important; }
.mobile-nav .nav-link { color: rgba(239,235,225,0.85) !important; }
.logo-text .name { color: var(--cream) !important; }

/* NOTICES on orange bg */
.topo-bg .notice {
  background: rgba(0,0,0,0.25) !important;
  border-left-color: var(--yellow) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* FOOTER: dark bg, cream text */
.site-footer { color: var(--cream); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* =======================================================
   HERO
   ======================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,10,7,0.08) 0%,
    rgba(13,10,7,0.25) 40%,
    rgba(13,10,7,0.85) 70%,
    rgba(13,10,7,0.95) 88%,
    #1B3296 100%);
  z-index: 1;
}
.hero-bg-placeholder {
  position: absolute; inset: 0;
  /* Bold vivid gradient matching Humvee wrap: warm charcoal + orange/green streaks */
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(232,97,10,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(255,190,11,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(61,139,31,0.15) 0%, transparent 70%),
    linear-gradient(160deg, #091660 0%, #1B3296 45%, #152880 65%, #091660 100%);
  z-index: 0;
}
.hero-bg-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600'%3E%3Cg fill='none' stroke='rgba(203%2C185%2C148%2C0.07)' stroke-width='1.5'%3E%3Cpath d='M-100%2C80 C80%2C55 260%2C105 480%2C75 S740%2C50 1000%2C80'/%3E%3Cpath d='M-100%2C130 C80%2C105 260%2C155 480%2C125 S740%2C100 1000%2C130'/%3E%3Cpath d='M-100%2C180 C80%2C155 260%2C205 480%2C175 S740%2C150 1000%2C180'/%3E%3Cpath d='M-100%2C230 C80%2C205 260%2C255 480%2C225 S740%2C200 1000%2C230'/%3E%3Cpath d='M-100%2C280 C80%2C255 260%2C305 480%2C275 S740%2C250 1000%2C280'/%3E%3Cpath d='M-100%2C330 C80%2C305 260%2C355 480%2C325 S740%2C300 1000%2C330'/%3E%3Cpath d='M-100%2C380 C80%2C355 260%2C405 480%2C375 S740%2C350 1000%2C380'/%3E%3Cpath d='M-100%2C430 C80%2C405 260%2C455 480%2C425 S740%2C400 1000%2C430'/%3E%3Cpath d='M-100%2C480 C80%2C455 260%2C505 480%2C475 S740%2C450 1000%2C480'/%3E%3Cpath d='M-100%2C530 C80%2C505 260%2C555 480%2C525 S740%2C500 1000%2C530'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 600px;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; opacity: 0.72;
}
/* Video hero gets a color-grade overlay to boost vibrancy */
.hero video.hero-img {
  opacity: 0.78;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}
.hero h1 {
  color: var(--cream); max-width: 18ch;
  margin-bottom: 1.1rem;
  text-shadow: 0 3px 20px rgba(0,0,0,0.75), 0 0 60px rgba(232,97,10,0.15);
}
/* Orange underline accent on hero h1 */
.hero h1 span.accent { color: var(--orange); }
.hero .hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 2.5rem;
  text-shadow: 0 0 20px rgba(255,190,11,0.4);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
/* Donate Now in hero: solid bright orange, white text, heavy shadow for contrast */
.hero .btn-red {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: #fff !important;
  border-color: var(--orange-hot);
  box-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 2px 0 rgba(255,255,255,0.12) inset;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hero .btn-red:hover {
  background: linear-gradient(135deg, #FF8C30, var(--orange-hot));
  color: #fff !important;
  border-color: #FF8C30;
  box-shadow: 0 8px 32px rgba(0,0,0,0.65), 0 2px 0 rgba(255,255,255,0.15) inset;
  transform: translateY(-2px);
}
/* Become a Member in hero: royal blue, white text */
.hero .btn-outline {
  background: linear-gradient(135deg, #2655D4, var(--navy-surf));
  color: #fff !important;
  border-color: #2655D4;
  box-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.hero .btn-outline:hover {
  background: linear-gradient(135deg, #3466E0, #2655D4);
  color: #fff !important;
  border-color: #3466E0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.65);
  transform: translateY(-2px);
}

/* Image container for hero (future-proofed) */
.hero-img-placeholder {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #091660 0%, #1B3296 40%, #152880 65%, #0C1858 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-placeholder-label {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tan-40); border: 1px dashed var(--tan-20);
  padding: 0.75rem 1.5rem; border-radius: 4px;
}

/* Page-level hero (sub-pages) */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #6B2A00 30%, var(--navy-surf) 65%, #1B3296 100%);
  padding: 4rem 1.5rem 3.5rem;
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
  /* Orange glow at bottom edge */
  box-shadow: 0 4px 32px rgba(232,97,10,0.12);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='280'%3E%3Cg fill='none' stroke='rgba(13%2C6%2C0%2C0.1)' stroke-width='1.4'%3E%3Cpath d='M-100%2C50 C80%2C32 260%2C68 480%2C44 S740%2C24 1000%2C50'/%3E%3Cpath d='M-100%2C90 C80%2C72 260%2C108 480%2C84 S740%2C64 1000%2C90'/%3E%3Cpath d='M-100%2C130 C80%2C112 260%2C148 480%2C124 S740%2C104 1000%2C130'/%3E%3Cpath d='M-100%2C170 C80%2C152 260%2C188 480%2C164 S740%2C144 1000%2C170'/%3E%3Cpath d='M-100%2C210 C80%2C192 260%2C228 480%2C204 S740%2C184 1000%2C210'/%3E%3Cpath d='M-100%2C250 C80%2C232 260%2C268 480%2C244 S740%2C224 1000%2C250'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 280px;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero .hero-sub {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--tan); text-transform: uppercase;
}
.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tan-40); margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--tan-40); }
.breadcrumb a:hover { color: var(--tan); }

/* =======================================================
   CARDS
   ======================================================= */
.card {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'%3E%3Cpath d='M-50%2C30 C40%2C18 120%2C42 220%2C28 S340%2C15 450%2C30'/%3E%3Cpath d='M-50%2C80 C40%2C68 120%2C92 220%2C78 S340%2C65 450%2C80'/%3E%3Cpath d='M-50%2C130 C40%2C118 120%2C142 220%2C128 S340%2C115 450%2C130'/%3E%3Cpath d='M-50%2C180 C40%2C168 120%2C192 220%2C178 S340%2C165 450%2C180'/%3E%3Cpath d='M-50%2C230 C40%2C218 120%2C242 220%2C228 S340%2C215 450%2C230'/%3E%3Cpath d='M-50%2C280 C40%2C268 120%2C292 220%2C278 S340%2C265 450%2C280'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #252220 0%, #1E1C1A 50%, #2A2724 100%);
  background-size: 400px 300px, cover;
  border: 1px solid rgba(232,97,10,0.22);
  border-radius: 6px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr-slow);
}
.card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 36px rgba(232,97,10,0.22), 0 2px 0 var(--orange);
  transform: translateY(-3px);
}
.card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,97,10,0.4);
}
.card-icon.olive {
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  box-shadow: 0 4px 12px rgba(61,139,31,0.4);
}
.card-icon.tan {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 4px 12px rgba(255,190,11,0.4);
}
.card-icon.blue {
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  box-shadow: 0 4px 12px rgba(61,139,31,0.4);
}

/* Image placeholder inside cards */
.img-placeholder {
  aspect-ratio: 16/9;
  background: rgba(203,185,148,0.05);
  border: 2px dashed rgba(203,185,148,0.18);
  border-radius: 4px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: var(--tan-40);
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.img-placeholder-sq {
  aspect-ratio: 1;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(203,185,148,0.08);
  border: 2px dashed rgba(203,185,148,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-family: var(--font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tan-40); margin: 0 auto 1rem; text-align: center;
}

/* =======================================================
   PROGRAM CARDS
   ======================================================= */
.program-card {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'%3E%3Cpath d='M-50%2C50 C40%2C35 120%2C65 220%2C48 S340%2C32 450%2C50'/%3E%3Cpath d='M-50%2C140 C40%2C125 120%2C155 220%2C138 S340%2C122 450%2C140'/%3E%3Cpath d='M-50%2C230 C40%2C215 120%2C245 220%2C228 S340%2C212 450%2C230'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #252220 0%, #1E1C1A 55%, #2A2724 100%);
  background-size: 400px 300px, cover;
  border: 1px solid rgba(232,97,10,0.15);
  border-radius: 8px; overflow: hidden;
  transition: all var(--tr);
}
.program-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(232,97,10,0.2);
  transform: translateY(-4px);
}
/* Multi-color top bars — each program has its own color */
.program-card-bar { height: 5px; background: linear-gradient(90deg, var(--green), var(--green-hot)); }
.program-card.red-bar .program-card-bar { background: linear-gradient(90deg, var(--red), var(--orange)); }
.program-card.tan-bar .program-card-bar { background: linear-gradient(90deg, var(--yellow), var(--orange-hot)); }
.program-card.blue-bar .program-card-bar { background: linear-gradient(90deg, var(--yellow-dim), var(--yellow)); }
.program-card-body { padding: 1.75rem; }

/* =======================================================
   ACTION CARDS (Home 3-up)
   ======================================================= */
.action-card {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'%3E%3Cpath d='M-50%2C40 C40%2C25 120%2C55 220%2C38 S340%2C22 450%2C40'/%3E%3Cpath d='M-50%2C110 C40%2C95 120%2C125 220%2C108 S340%2C92 450%2C110'/%3E%3Cpath d='M-50%2C180 C40%2C165 120%2C195 220%2C178 S340%2C162 450%2C180'/%3E%3Cpath d='M-50%2C250 C40%2C235 120%2C265 220%2C248 S340%2C232 450%2C250'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #252220 0%, #1E1C1A 60%, #2A2724 100%);
  background-size: 400px 300px, cover;
  border: 1px solid rgba(232,97,10,0.18);
  border-radius: 8px; padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--tr-slow);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  position: relative; overflow: hidden;
}
.action-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,97,10,0.08) 0%, transparent 65%);
  transition: opacity var(--tr-slow);
  opacity: 0;
}
.action-card:hover::before { opacity: 1; }
.action-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(232,97,10,0.25);
  transform: translateY(-5px);
}
.action-card-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin-bottom: 0.5rem;
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}
.action-card:hover .action-card-icon { transform: scale(1.08); }
.action-card-icon.red {
  background: rgba(232,97,10,0.15);
  border: 2px solid rgba(232,97,10,0.5);
  box-shadow: 0 0 20px rgba(232,97,10,0.2);
}
.action-card-icon.olive {
  background: rgba(61,139,31,0.15);
  border: 2px solid rgba(61,139,31,0.5);
  box-shadow: 0 0 20px rgba(61,139,31,0.2);
}
.action-card-icon.tan {
  background: rgba(255,190,11,0.12);
  border: 2px solid rgba(255,190,11,0.45);
  box-shadow: 0 0 20px rgba(255,190,11,0.18);
}

/* =======================================================
   EVENT CARDS
   ======================================================= */
.event-card {
  display: flex; gap: 1.5rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'%3E%3Cpath d='M-50%2C40 C40%2C28 120%2C52 220%2C38 S340%2C24 450%2C40'/%3E%3Cpath d='M-50%2C100 C40%2C88 120%2C112 220%2C98 S340%2C84 450%2C100'/%3E%3Cpath d='M-50%2C160 C40%2C148 120%2C172 220%2C158 S340%2C144 450%2C160'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #252220 0%, #1E1C1A 55%, #2A2724 100%);
  background-size: 400px 200px, cover;
  border: 1px solid rgba(232,97,10,0.18);
  border-radius: 8px; padding: 1.75rem;
  transition: all var(--tr);
}
.event-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(232,97,10,0.2);
  transform: translateY(-3px);
}
.event-date {
  flex-shrink: 0; width: 70px; text-align: center;
  background: linear-gradient(160deg, var(--orange), var(--red));
  border-radius: 6px; padding: 0.7rem 0.4rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,97,10,0.4);
}
.event-date .month {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.72); line-height: 1;
}
.event-date .day {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 700;
  color: #fff; line-height: 1; margin-top: 0.2rem;
}
.event-info { flex: 1; min-width: 0; }
.event-info h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.event-meta {
  font-size: 0.82rem; color: var(--tan);
  font-family: var(--font-display); letter-spacing: 0.06em;
  margin-bottom: 0.6rem; display: flex; flex-wrap: wrap; gap: 1rem;
}

/* =======================================================
   MEMBERSHIP TIER CARDS
   ======================================================= */
.tier-card {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'%3E%3Cpath d='M-50%2C50 C40%2C35 120%2C65 220%2C48 S340%2C32 450%2C50'/%3E%3Cpath d='M-50%2C140 C40%2C125 120%2C155 220%2C138 S340%2C122 450%2C140'/%3E%3Cpath d='M-50%2C230 C40%2C215 120%2C245 220%2C228 S340%2C212 450%2C230'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #252220 0%, #1E1C1A 55%, #2A2724 100%);
  background-size: 400px 300px, cover;
  border: 2px solid rgba(232,97,10,0.22);
  border-radius: 10px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: all var(--tr-slow); position: relative;
  min-width: 0; /* allow grid item to shrink */
  overflow: hidden;
}
.tier-card:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 44px rgba(232,97,10,0.22);
  transform: translateY(-3px);
}
.tier-card.featured {
  border-color: var(--orange);
  box-shadow: 0 10px 36px rgba(232,97,10,0.3);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1'%3E%3Cpath d='M-50%2C50 C40%2C35 120%2C65 220%2C48 S340%2C32 450%2C50'/%3E%3Cpath d='M-50%2C140 C40%2C125 120%2C155 220%2C138 S340%2C122 450%2C140'/%3E%3Cpath d='M-50%2C230 C40%2C215 120%2C245 220%2C228 S340%2C212 450%2C230'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #1E2E70 0%, #1B3296 55%, #142680 100%);
  background-size: 400px 300px, cover;
}
.tier-card.featured:hover { box-shadow: 0 18px 52px rgba(232,97,10,0.45); }
/* Allow buttons inside tier cards to wrap and fill full width */
.tier-card .btn {
  white-space: normal;
  word-break: break-word;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: #fff !important;
}
.tier-card .btn small { color: rgba(255,255,255,0.75) !important; }
.tier-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  color: var(--navy);
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 0 0 4px 4px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan);
}
.tier-price .amount {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.tier-price .period { font-size: 0.85rem; color: rgba(239,235,225,0.55); margin-left: 0.2rem; }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.tier-perks li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: rgba(239,235,225,0.82);
}
.tier-perks li::before {
  content: '✓'; color: var(--orange); font-weight: 700;
  flex-shrink: 0; margin-top: 0.05em;
}

/* =======================================================
   GALLERY GRID
   ======================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  background:
    linear-gradient(145deg, #252220 0%, #1E1C1A 55%, #2A2724 100%);
  border: 2px dashed rgba(232,97,10,0.3);
  border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
  overflow: hidden; position: relative;
  transition: all var(--tr);
}
.gallery-item:hover {
  border-color: var(--orange);
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(232,97,10,0.3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
}
.gallery-label {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(232,97,10,0.5);
}
.gallery-icon { font-size: 2.5rem; color: rgba(232,97,10,0.25); }

/* =======================================================
   DONATE
   ======================================================= */
.donate-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  border-radius: 5px; padding: 3px; gap: 3px;
}
.toggle-btn {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; border-radius: 3px; border: none;
  cursor: pointer; background: transparent; color: rgba(255,255,255,0.6);
  transition: all var(--tr);
}
.toggle-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 2px 10px rgba(232,97,10,0.4);
}

.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.amount-btn {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  padding: 0.875rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 5px;
  background: rgba(255,255,255,0.12); color: #fff;
  cursor: pointer; text-align: center; transition: all var(--tr);
}
.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--yellow);
  background: rgba(255,190,11,0.25);
  color: var(--yellow);
  box-shadow: 0 4px 14px rgba(255,190,11,0.35);
}

.custom-amount-wrap { margin-top: 0.75rem; position: relative; }
.custom-amount-wrap .currency-prefix {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 700; color: var(--tan);
}
.custom-amount-wrap input { padding-left: 2rem; }

/* Progress bar */
.progress-wrap { background: rgba(232,97,10,0.1); border-radius: 100px; height: 10px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 100px;
  transition: width 1s ease;
  box-shadow: 0 0 8px rgba(232,97,10,0.5);
}

/* =======================================================
   FORMS
   ======================================================= */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 5px; color: #fff;
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.75rem 1rem; width: 100%;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(255,190,11,0.25);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-select option { background: var(--navy-surf); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 120px; }

/* =======================================================
   MISSION BAND
   ======================================================= */
.mission-band {
  background: linear-gradient(135deg,
    var(--orange) 0%,
    #C04A07 40%,
    var(--red) 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Topo lines over the orange band */
.mission-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='300'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='1.5'%3E%3Cpath d='M-100%2C60 C80%2C40 260%2C80 480%2C55 S740%2C35 1000%2C60'/%3E%3Cpath d='M-100%2C110 C80%2C90 260%2C130 480%2C105 S740%2C85 1000%2C110'/%3E%3Cpath d='M-100%2C160 C80%2C140 260%2C180 480%2C155 S740%2C135 1000%2C160'/%3E%3Cpath d='M-100%2C210 C80%2C190 260%2C230 480%2C205 S740%2C185 1000%2C210'/%3E%3Cpath d='M-100%2C260 C80%2C240 260%2C280 480%2C255 S740%2C235 1000%2C260'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 300px;
  pointer-events: none;
}
.mission-band-inner { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.mission-band p {
  font-size: clamp(1rem, 1.8vw, 1.18rem); color: rgba(255,255,255,0.95); line-height: 1.85;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* =======================================================
   MISC / UTILS
   ======================================================= */
.divider { border: none; height: 1px; background: rgba(232,97,10,0.2); margin: 3rem 0; }

/* =======================================================
   STICKY FLOATING CTAs
   ======================================================= */
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 4px 24px rgba(232,97,10,0.7), 0 0 0 0 rgba(232,97,10,0.6); }
  50%        { box-shadow: 0 4px 32px rgba(232,97,10,0.9), 0 0 0 10px rgba(232,97,10,0); }
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 4px 24px rgba(27,50,150,0.8), 0 0 0 0 rgba(27,50,150,0.6); }
  50%        { box-shadow: 0 4px 32px rgba(27,50,150,1), 0 0 0 10px rgba(27,50,150,0); }
}
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  border: none;
  cursor: pointer;
  transition: transform var(--tr), filter var(--tr);
  white-space: nowrap;
}
.sticky-cta:hover { transform: translateY(-3px) scale(1.04); filter: brightness(1.12); }
.sticky-cta-donate {
  right: 1.5rem;
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  animation: pulse-orange 1.8s ease-in-out infinite;
}
.sticky-cta-member {
  left: 1.5rem;
  background: linear-gradient(135deg, #2655D4, var(--navy-surf));
  animation: pulse-blue 2.2s ease-in-out infinite;
}
.sticky-cta .sticky-icon { font-size: 1.1rem; line-height: 1; }
.tag {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 3px;
  background: rgba(13,6,0,0.18); color: #1A0800; border: 1px solid rgba(13,6,0,0.3);
}
/* Tags in dark sections stay vivid */
.section-surface .tag, .card .tag, .tier-card .tag {
  background: rgba(232,97,10,0.12); color: var(--orange); border-color: rgba(232,97,10,0.3);
}
.tag.red { background: rgba(197,41,26,0.18); color: #C5291A; border-color: rgba(197,41,26,0.35); }
.tag.olive {
  background: rgba(61,139,31,0.18); color: var(--green-hot);
  border-color: rgba(61,139,31,0.4);
}
.tag.yellow {
  background: rgba(255,190,11,0.18); color: #9A6E00;
  border-color: rgba(255,190,11,0.4);
}
.tag.blue {
  background: rgba(61,139,31,0.12); color: var(--green-hot);
  border-color: rgba(61,139,31,0.35);
}

.notice {
  background: rgba(13,6,0,0.14);
  border: 1px solid rgba(13,6,0,0.2);
  border-left: 4px solid #1A0800;
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem; color: rgba(13,6,0,0.82);
}
/* In dark sections, notices restore cream tones */
.section-surface .notice, .card .notice, .page-hero .notice {
  background: rgba(232,97,10,0.07);
  border-left-color: var(--orange);
  color: rgba(240,235,224,0.78);
}
.notice.red { border-left-color: var(--red); background: rgba(197,41,26,0.18); color: rgba(13,6,0,0.85); }
.notice.olive { border-left-color: var(--green); background: rgba(61,139,31,0.15); color: rgba(13,6,0,0.85); }
.notice.yellow { border-left-color: var(--yellow); background: rgba(255,190,11,0.15); color: rgba(13,6,0,0.85); }

/* =======================================================
   FOOTER
   ======================================================= */
.site-footer {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='400'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1.2'%3E%3Cpath d='M-100%2C60 C80%2C44 260%2C76 480%2C54 S740%2C36 1000%2C60'/%3E%3Cpath d='M-100%2C140 C80%2C124 260%2C156 480%2C134 S740%2C116 1000%2C140'/%3E%3Cpath d='M-100%2C220 C80%2C204 260%2C236 480%2C214 S740%2C196 1000%2C220'/%3E%3Cpath d='M-100%2C300 C80%2C284 260%2C316 480%2C294 S740%2C276 1000%2C300'/%3E%3Cpath d='M-100%2C380 C80%2C364 260%2C396 480%2C374 S740%2C356 1000%2C380'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, #070D30 0%, #06103A 50%, #04092A 100%);
  background-size: 900px 400px, cover;
  border-top: 3px solid var(--orange);
  padding: 4rem 1.5rem 2rem;
  position: relative;
}
/* Orange glow at top of footer */
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(232,97,10,0.08) 0%, transparent 80%);
  pointer-events: none;
}
/* =======================================================
   SITE MAP SECTION
   ======================================================= */
.site-map-section {
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid var(--navy-surf);
  overflow: hidden;
  height: 320px;
  position: relative;
  display: block;
}
.site-map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-crisis {
  background: rgba(232,97,10,0.1);
  border: 1px solid rgba(232,97,10,0.3);
  border-radius: 6px; padding: 1rem 1.5rem;
  margin-bottom: 3rem; text-align: center;
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.05em; color: var(--cream);
}
.footer-crisis a { color: var(--yellow); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(239,235,225,0.55); font-size: 0.88rem;
  line-height: 1.7; margin-top: 1rem; max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem; padding-left: 0.65rem;
  border-left: 2px solid var(--orange);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(239,235,225,0.55); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--tan-20); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(239,235,225,0.35); }
.social-links { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(232,97,10,0.25); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,235,224,0.5); font-size: 0.75rem;
  font-family: var(--font-display); font-weight: 700;
  transition: all var(--tr);
}
.social-link:hover {
  background: rgba(232,97,10,0.15);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 12px rgba(232,97,10,0.3);
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
   ======================================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

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

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ── Body ── */
  body { overflow-x: hidden; }

  /* ── Header ── */
  .site-nav, .site-nav-left, .site-nav-right { display: none; }
  .hamburger { display: flex; }
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 64px;
  }
  .hamburger {
    position: absolute;
    right: 1rem;
  }
  .logo-img {
    height: 68px;
    margin-top: 0;
    margin-bottom: 0;
    transform: none;
  }

  /* ── Grids / Layout ── */
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Cards ── */
  .event-card { flex-direction: column; }
  .event-date { width: 100%; flex-direction: row; gap: 0.75rem; padding: 0.5rem 1rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Hero ── */
  .hero { min-height: 72vh; }
  .hero-content { padding: 4.5rem 1.25rem 3.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; justify-content: center; }

  /* ── Sections ── */
  .section { padding: 3rem 1.25rem; }
  .section-sm { padding: 2rem 1.25rem; }

  /* ── Donate ── */
  .amount-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Forms — prevent iOS zoom (16px min) ── */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* ── Map ── */
  .site-map-section { height: 220px; }

  /* ── Sticky CTAs ── */
  .sticky-cta { padding: 0.55rem 0.9rem; font-size: 0.75rem; bottom: 1rem; }
  .sticky-cta-donate { right: 0.85rem; }
  .sticky-cta-member { left: 0.85rem; }

  /* ── Misc ── */
  .logo-text .tagline { display: none; }
}

@media (max-width: 480px) {
  /* ── Typography ── */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  /* ── Buttons ── */
  .btn { padding: 0.72rem 1.2rem; font-size: 0.8rem; }
  .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.88rem; }

  /* ── Sections ── */
  .section { padding: 2.5rem 1rem; }
  .section-sm { padding: 1.75rem 1rem; }
  .hero-content { padding: 3rem 1rem 2.5rem; }

  /* ── Donate ── */
  .amount-grid { grid-template-columns: 1fr; }

  /* ── Sticky CTAs — icon only ── */
  .sticky-cta { font-size: 0; padding: 0; width: 48px; height: 48px;
    border-radius: 50%; justify-content: center; bottom: 0.75rem; }
  .sticky-cta .sticky-icon { font-size: 1.3rem; }
  .sticky-cta-donate { right: 0.75rem; }
  .sticky-cta-member { left: 0.75rem; }
}
