/* ============================================================
   ONE SHOT LEADERSHIP — Main Stylesheet
   ============================================================ */

:root {
  --primary:   #8B1A1A;   /* deep red — strength, heritage */
  --primary-dark: #6b1313;
  --accent:    #C4830A;   /* golden amber — resilience */
  --dark:      #1a1a1a;
  --gray:      #4a4a4a;
  --light-gray:#f5f4f0;
  --white:     #ffffff;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

/* ── UTILITIES ─────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 1.5rem; }
.bg-light { background: var(--light-gray); }
.bg-dark  { background: var(--dark); color: var(--white); }
.light    { color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .6rem; }
h4 { font-size: 1rem; margin-bottom: .4rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
}
.btn-secondary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: #a36e08; border-color: #a36e08; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); text-decoration: none; }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); text-decoration: none; color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* ── TOP BAR ───────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  text-align: center;
  padding: .45rem 1rem;
}
.top-bar a { color: var(--accent); }

/* ── HEADER / NAV ──────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { text-decoration: none; line-height: 1; }
.logo-main {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .06em;
}
.logo-sub {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .18em;
  color: var(--gray);
  text-transform: uppercase;
}
.main-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: 3px;
}
.btn-nav:hover { background: var(--primary-dark) !important; }
.btn-nav.active { background: var(--primary-dark) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(0,0,0,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── MISSION STRIP ─────────────────────────────────────── */
.mission-strip { padding: 4rem 1.5rem; background: var(--light-gray); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.mission-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 4px solid var(--primary);
}
.mission-icon { font-size: 2.2rem; margin-bottom: .75rem; }

/* ── TWO-COL LAYOUT ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.col-text h2 { margin-bottom: 1rem; }
.col-text p  { color: var(--gray); }

/* ── REAL PHOTOS ───────────────────────────────────────── */
.photo-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.photo-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.photo-wrap:hover img { transform: scale(1.03); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  font-family: var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2rem 1rem .75rem;
  border-bottom: 3px solid var(--accent);
}
/* program card image strip */
.program-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  display: block;
  margin: -1.75rem -1.75rem 1rem;
  width: calc(100% + 3.5rem);
}
/* page hero bg */
.page-hero {
  background-size: cover !important;
  background-position: center !important;
}

/* ── IMPACT / STATS ────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── PROGRAMS ──────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.program-card {
  background: var(--white);
  border: 1px solid #e8e5df;
  border-radius: 6px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.program-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.program-icon { font-size: 2rem; margin-bottom: .75rem; }
.program-icon.big { font-size: 3rem; margin-bottom: 1rem; }
.program-card a { color: var(--primary); font-weight: 600; }

/* ── LEGAL INFO ────────────────────────────────────────── */
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.info-table td {
  padding: .55rem .75rem;
  border-bottom: 1px solid #e5e2db;
  font-size: .95rem;
}
.info-table td:first-child {
  color: var(--gray);
  width: 45%;
  white-space: nowrap;
}
.info-table.compact td { padding: .4rem .5rem; font-size: .88rem; }
.legal-note { font-size: .82rem; color: var(--gray); font-style: italic; margin-top: .75rem; }
.legal-cta { background: var(--primary); color: var(--white); padding: 2rem; border-radius: 6px; }
.legal-cta h3 { color: var(--white); margin-bottom: .75rem; }
.legal-cta p  { color: rgba(255,255,255,.85); }
.legal-cta .btn-primary { background: var(--accent); border-color: var(--accent); margin-top: 1rem; }

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #2c0808 0%, #1a1a1a 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; }

/* ── MVV GRID ──────────────────────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.mvv-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 6px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.mvv-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.values-list { list-style: none; padding: 0; }
.values-list li { padding: .35rem 0; border-bottom: 1px solid #ece9e3; font-size: .95rem; }
.values-list li:last-child { border-bottom: none; }

/* ── TEAM ──────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.team-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
}
.team-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
}
.team-title { color: var(--accent); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.team-card p { text-align: left; font-size: .95rem; color: var(--gray); }

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-block-icon { font-size: 1.5rem; margin-top: .1rem; }
.contact-block h4 { margin-bottom: .2rem; }
.contact-block p, .contact-block a { color: var(--gray); }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid #d8d4cc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-note { font-size: .8rem; color: var(--gray); margin-top: .75rem; font-style: italic; }

/* ── INVOLVE GRID ──────────────────────────────────────── */
.involve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.involve-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid #e8e5df;
  text-align: center;
}
.involve-icon { font-size: 2.5rem; margin-bottom: .75rem; }

/* ── DONATE PAGE ───────────────────────────────────────── */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.impact-amounts { margin: 2rem 0; }
.impact-amounts h3 { margin-bottom: 1rem; }
.amount-item { display: flex; gap: 1rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid #e8e5df; }
.amount { font-family: var(--font-head); font-size: 1.35rem; color: var(--primary); min-width: 60px; }
.amount-desc { font-size: .9rem; color: var(--gray); }
.tax-info-box { background: var(--light-gray); border-left: 4px solid var(--accent); padding: 1.25rem 1.5rem; border-radius: 0 6px 6px 0; margin-top: 1.5rem; }
.tax-info-box h4 { margin-bottom: .6rem; }
.donate-card {
  background: var(--white);
  border: 1px solid #e8e5df;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.donate-card h3 { margin-bottom: .6rem; }
.donate-card hr { border: none; border-top: 1px solid #e8e5df; margin: 1.5rem 0; }
.donate-card address { font-style: normal; background: var(--light-gray); padding: 1rem 1.25rem; border-radius: 4px; margin: .75rem 0; font-size: .95rem; line-height: 1.8; }

/* ── FEATURE LIST ──────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; margin: .75rem 0; }
.feature-list li { padding: .35rem 0 .35rem 1.5rem; position: relative; font-size: .95rem; color: var(--gray); }
.feature-list li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); }

/* ── CONTACT STRIP ─────────────────────────────────────── */
.contact-strip { background: var(--light-gray); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer { background: #111; color: rgba(255,255,255,.7); padding: 4rem 1.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-main { font-size: 1.3rem; color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.ein-footer { margin-top: .75rem; font-size: .78rem; color: var(--accent); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-family: var(--font-head); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); text-decoration: none; }
.footer-contact p { font-size: .9rem; line-height: 1.7; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col, .legal-grid, .contact-layout, .donate-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .col-visual { order: -1; }
}

@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 1rem 1.5rem;
    z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: .75rem; }
  .main-nav a { font-size: 1rem; }
  .site-header { position: relative; }
  .hero { min-height: 70vh; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 3rem 1.25rem; }
}
