/* =========================================================
   GÜEROTE — Jason Hill | Shared Stylesheet
   Multi-page static site. No frameworks, no build step.
   ========================================================= */

:root {
  --navy: #0b1c3a;
  --navy-light: #0f2347;
  --navy-deep: #040d1e;
  --panel: #060f22;
  --gold: #F0B429;
  --gold-bright: #FFD166;
  --red: #C8220A;
  --offwhite: #F5F5F0;
  --white: #ffffff;
  --gray: #8a9bb5;
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

h1, h2, h3, .display {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.gold { color: var(--gold); }
.gold-bright { color: var(--gold-bright); }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(8, 20, 42, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 3px; color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 13px; color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.current { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 18px; border-radius: 2px;
  font-weight: 600; letter-spacing: 1.5px;
}
.nav-cta:hover { background: var(--gold-bright); color: var(--navy) !important; }
.nav-donate {
  background: #E8590C; color: #fff !important;
  padding: 10px 18px; border-radius: 2px; font-weight: 600; letter-spacing: 1.5px;
}
.nav-donate:hover { background: #ff6a1a; color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); width: 26px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: 2px; font-size: 14px;
  padding: 16px 28px; border-radius: 2px; cursor: pointer;
  transition: all 0.2s; border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-primary:hover { background: var(--gold-bright); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ===== HERO ===== */
.page-hero {
  min-height: 60vh;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  display: flex; align-items: center;
  padding: 130px 40px 70px;
  position: relative; overflow: hidden;
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-copy h1 { font-size: clamp(44px, 7vw, 88px); margin: 6px 0 22px; }
.hero-copy p.lead { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 540px; }
.hero-media img {
  width: 100%; border-radius: 4px; object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.hero-simple { display: block; text-align: left; }
.hero-simple .wrap { max-width: var(--maxw); }
.hero-simple h1 { font-size: clamp(54px, 9vw, 120px); margin-bottom: 18px; }
.hero-quote {
  font-family: 'Lato', sans-serif; font-style: italic;
  font-size: clamp(20px, 3vw, 30px); color: var(--gold-bright);
  max-width: 760px; line-height: 1.4;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-label {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 4px; font-size: 13px; color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(34px, 5vw, 56px); margin-bottom: 28px; }
.lede { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 720px; margin-bottom: 28px; }
.panel { background: var(--panel); }
.navy-light-bg { background: var(--navy-light); }

/* ===== IMPACT / STATS STRIP ===== */
.impact-section { background: var(--panel); padding: 60px 40px; }
.impact-strip {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.impact-block { padding: 24px; }
.impact-block .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--gold); line-height: 1;
}
.impact-block .num.alert { color: var(--red); }
.impact-block .label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ===== QUOTE ===== */
.section-quote {
  font-family: 'Lato', sans-serif; font-style: italic; font-size: 22px;
  color: var(--gold-bright);
  border-left: 3px solid var(--gold);
  padding: 20px 24px; margin: 24px 0;
  background: rgba(240,180,41,0.05);
}
.attrib { font-family: 'Oswald', sans-serif; letter-spacing: 2px; font-size: 13px; color: var(--gray); text-transform: uppercase; }

/* ===== CARD GRIDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.two { grid-template-columns: 1fr 1fr; }
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  padding: 32px 26px;
}
.card .idx { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); }
.card h3 { font-size: 26px; margin: 10px 0 14px; }
.card p { color: rgba(255,255,255,0.78); font-size: 15px; margin-bottom: 18px; }
.card .more {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; color: var(--gold);
}

/* audience / ecosystem cards */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.audience-item {
  background: rgba(255,255,255,0.03); padding: 14px 16px;
  border-left: 2px solid var(--gold);
  font-size: 15px;
}

/* ===== LISTS ===== */
.keynote-list { list-style: none; }
.keynote-list li {
  position: relative; padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}
.keynote-list li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }

/* ===== WARRIORS COMPASS GRID ===== */
.compass-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 30px 0; }
.compass-cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px 18px;
}
.compass-cell .ltr {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold); line-height: 1;
}
.compass-cell .trait {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px;
  font-size: 15px; color: var(--white); margin: 6px 0 8px;
}
.compass-cell .spirit { font-size: 14px; color: rgba(255,255,255,0.72); }

/* ===== STORY / TIMELINE ===== */
.story-body { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.82); margin-bottom: 22px; }
.timeline { display: grid; gap: 2px; }
.timeline-item {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
}
.timeline-item .stage {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 3px;
  font-size: 12px; color: var(--gold);
}
.timeline-item h3 { font-size: 28px; margin: 6px 0 10px; }
.timeline-item p { color: rgba(255,255,255,0.78); font-size: 15px; }

/* ===== BOOK ===== */
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.book-cover img { width: 100%; max-width: 320px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border-radius: 4px; }
.book-cover.wide img { max-width: 520px; }

/* ===== FORM ===== */
.form-wrap { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.form-field input, .form-field textarea, .form-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Lato', sans-serif; font-size: 15px;
  transition: border-color 0.2s; border-radius: 2px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--gold);
}
.form-field select option { background: var(--navy); }
.form-note { font-size: 13px; color: var(--gray); margin-top: 14px; }

/* ===== CONTACT CHOICE BLOCKS ===== */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 50px; }
.choice {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.choice .idx { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--gold); }
.choice h3 { font-size: 24px; margin: 8px 0 14px; }
.choice p { color: rgba(255,255,255,0.78); font-size: 15px; margin-bottom: 20px; flex: 1; }

/* ===== PHOTO ROW (mission gallery) ===== */
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; }
.photo-figure { margin: 0; }
.photo-figure img { width: 100%; height: 280px; object-fit: cover; object-position: center top; border-radius: 4px; display: block; }
.photo-figure figcaption {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 11px; color: var(--gray); margin-top: 8px;
}
@media (max-width: 760px) { .photo-row { grid-template-columns: 1fr; } .photo-figure img { height: 320px; } }

/* ===== DONATE EMBED ===== */
.donate-embed { display: flex; justify-content: center; margin-top: 28px; }
.donate-embed iframe {
  width: 100%; max-width: 560px; min-width: 250px;
  background: #fff; border-radius: 6px; border: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== CALLOUT / GATE ===== */
.callout {
  background: rgba(240,180,41,0.06);
  border: 1px solid rgba(240,180,41,0.25);
  padding: 34px; margin: 30px 0;
}
.callout h3 { font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.callout p { color: rgba(255,255,255,0.82); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-light) 100%);
  text-align: center; padding: 80px 24px;
}
.cta-band h2 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 26px; }
.cta-band .btn-row { justify-content: center; }

/* ===== VIDEO EMBED ===== */
.video-embed {
  position: relative; width: 100%; max-width: 860px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Click-to-play facade (reliable — no embed restrictions) */
.video-facade { display: block; cursor: pointer; }
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-facade .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 86px; height: 86px; border-radius: 50%;
  background: rgba(200,34,10,0.92); box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.18s, background 0.18s;
}
.video-facade .play-btn::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent #fff;
}
.video-facade:hover .play-btn { transform: translate(-50%,-50%) scale(1.08); background: var(--red); }

/* ===== BECOMING WARRIORS ===== */
.bw {
  background: var(--panel); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 24px; text-align: center;
}
.bw .tag { font-family:'Oswald',sans-serif; letter-spacing:4px; font-size:12px; color: var(--gold); text-transform: uppercase; }
.bw h2 { font-size: clamp(32px,4vw,48px); margin: 10px 0 16px; }
.bw p { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 14px; }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); padding: 60px 24px 30px; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px;
}
.footer-brand .logo { font-family:'Bebas Neue',sans-serif; font-size: 30px; letter-spacing: 3px; color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 10px; max-width: 320px; }
.footer-col h4 {
  font-family:'Oswald',sans-serif; text-transform: uppercase; letter-spacing: 2px;
  font-size: 12px; color: var(--gold); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,0.72); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--maxw); margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.5); font-size: 13px;
}
.footer-bottom .motto { font-family:'Oswald',sans-serif; letter-spacing: 3px; color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  nav { padding: 14px 20px; }
  .nav-links {
    position: fixed; top: 60px; right: 0; left: 0;
    background: rgba(6,15,34,0.98);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 10px 20px 20px; display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
  .nav-cta, .nav-donate { display: inline-block; width: auto; margin-top: 10px; padding: 12px 22px; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }   /* headline first, photo underneath on phones */
  .impact-strip { grid-template-columns: 1fr 1fr; }
  .card-grid, .card-grid.two, .choice-grid, .form-grid,
  .audience-grid, .compass-grid, .book-grid, .footer-grid { grid-template-columns: 1fr; }
  .compass-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 26px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .impact-strip, .compass-grid { grid-template-columns: 1fr; }
}
