/* The Shooting Gallery - shared site stylesheet
   One file controls all pages: index, how-it-works, partner, about.
   Design tokens from the July 2026 site restructure mockups. */

:root {
  --bg: #0B0A09;
  --panel: #100E0C;
  --line: #1E1B18;
  --line2: #2A2622;
  --line3: #3A342E;
  --text: #E9E2D8;
  --bright: #F8F4EE;
  --soft: #F1EBE2;
  --mid: #B7AEA2;
  --dim: #8F877C;
  --faint: #6E665C;
  --accent: #F26430;
  --accent2: #F2A65A;
  --accent-hover: #FF8A5B;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.wrap { max-width: 1280px; margin: 0 auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
::selection { background: var(--accent); color: var(--bg); }

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

/* ---------- Type ---------- */

h1, h2, h3 { font-family: var(--display); color: var(--bright); }

h1 { font-weight: 700; font-size: 66px; line-height: 0.98; letter-spacing: -0.02em; }
h2 { font-weight: 700; font-size: 40px; letter-spacing: -0.01em; }
h3 { font-weight: 600; font-size: 20px; }

.eyebrow {
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.lead { font-size: 18px; color: var(--mid); max-width: 640px; line-height: 1.5; }

.grad {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: var(--body);
}
.btn:hover { background: var(--accent-hover); color: var(--bg); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--line3);
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  font-family: var(--body);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--bright); }

/* ---------- Nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 20px;
  color: #F6F1E9;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { color: var(--bright); }

.nav-right { display: flex; align-items: center; gap: 34px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}
.nav-links a:hover, .nav-links a.active { color: var(--bright); }

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--accent-hover); color: var(--bg); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line3);
  border-radius: 4px;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
}

/* ---------- Sections ---------- */

.section { padding: 76px 48px; }
.section-tight { padding: 76px 48px 10px; }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 48px 64px;
}
.hero h1 { margin: 20px 0 0; }
.hero .lead { font-size: 19px; max-width: 520px; margin-top: 24px; }
.hero .lead strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-img {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Value strip ---------- */

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-strip > div { background: var(--bg); padding: 30px 28px; }
.value-strip .big {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  color: var(--accent);
}
.value-strip p { font-size: 14.5px; color: var(--mid); margin-top: 6px; line-height: 1.4; }

/* ---------- 4-step row (homepage) ---------- */

.steps4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.steps4 > div { border-top: 2px solid var(--line2); padding-top: 16px; }
.step-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.steps4 h3 { font-size: 18px; margin: 8px 0; }
.steps4 p { font-size: 14px; line-height: 1.45; color: var(--dim); }

/* ---------- Why it sells: deeper reasons ---------- */

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reasons > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
}
.reasons h3 { font-size: 17px; color: var(--soft); }
.reasons p { font-size: 14.5px; color: var(--dim); margin-top: 8px; line-height: 1.5; }

/* ---------- Captures gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 44px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.gallery-note { font-size: 14px; color: var(--dim); margin-top: 16px; }

/* ---------- Live-at strip ---------- */

.live-at {
  margin: 0 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.live-at .label {
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.live-at .where { font-size: 17px; color: var(--soft); font-weight: 600; }
.live-at .where span { color: var(--dim); font-weight: 400; }
.live-at .next { font-size: 14px; color: var(--dim); }

/* ---------- Stats panel ---------- */

.stats-panel {
  margin: 72px 48px 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 52px 44px;
  text-align: center;
}
.stats-panel .sub { font-size: 17px; color: var(--dim); margin: 12px 0 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 14px; color: var(--mid); margin-top: 10px; letter-spacing: 0.04em; }

/* ---------- Testimonial ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: center;
}
.quote-mark {
  font-family: var(--display);
  font-size: 56px;
  color: var(--accent);
  line-height: 0;
  height: 34px;
}
.quote-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  color: var(--soft);
}
.quote-who { margin-top: 24px; font-size: 15px; color: var(--mid); }
.quote-who strong { color: var(--bright); font-weight: 600; }

.stake-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 32px;
}
.stake-card .label {
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--dim);
  font-weight: 600;
}
.stake-row { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.stake-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
}
.stake-row p { font-size: 14px; color: var(--mid); }
.stake-card hr { border: none; height: 1px; background: var(--line); margin: 22px 0; }
.stake-fine { font-size: 14.5px; color: var(--dim); line-height: 1.5; }
.stake-fine .hl { color: #E9E2D8; font-weight: 600; }
.stake-fine .hl-accent { color: var(--accent); font-weight: 600; }

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 44px;
}
.price-cell { text-align: center; border-right: 1px solid var(--line); }
.price-num { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--bright); }
.price-cell p { font-size: 15px; color: var(--mid); margin-top: 4px; }
.price-note h3 { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--soft); }
.price-note p { font-size: 15px; color: var(--dim); margin-top: 6px; line-height: 1.45; }

/* ---------- CTA band with 3 steps ---------- */

.cta-band {
  background: linear-gradient(120deg, #1A1512, #100E0C);
  border-top: 1px solid var(--line2);
  padding: 76px 48px;
}
.cta-band h2 { text-align: center; }

.three-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.three-steps > div { text-align: center; }
.step-dot {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--bg);
  background: var(--accent);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.three-steps h3 { font-size: 20px; margin: 18px 0 8px; }
.three-steps p { margin: 0 auto; max-width: 280px; font-size: 15px; color: var(--dim); line-height: 1.5; }

.cta-final { text-align: center; margin-top: 52px; }
.cta-contact { font-size: 14px; color: var(--dim); margin-top: 16px; }

/* ---------- How-it-works step rows ---------- */

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.step-row:first-of-type { border-top: none; }
.step-row h3 { font-size: 26px; margin: 10px 0 14px; }
.step-row p { font-size: 16px; color: var(--mid); line-height: 1.55; }
.step-aside {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
  font-size: 15px;
  color: var(--dim);
  line-height: 1.55;
}
.step-aside .hl { color: var(--soft); font-weight: 600; }

/* ---------- FAQ ---------- */

.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.faq > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
}
.faq h3 { font-size: 17px; color: var(--soft); }
.faq p { font-size: 14.5px; color: var(--dim); margin-top: 8px; line-height: 1.5; }

/* ---------- Benefit cards (partner) ---------- */

.cards6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.cards6 > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
}
.cards6 h3 { font-size: 18px; color: var(--soft); }
.cards6 p { font-size: 14.5px; color: var(--dim); margin-top: 8px; line-height: 1.5; }

/* ---------- About prose + principles ---------- */

.prose { max-width: 780px; }
.prose p { font-size: 17px; color: var(--mid); line-height: 1.6; margin-top: 18px; }
.prose p:first-child { margin-top: 0; }
.prose .hl { color: var(--soft); font-weight: 600; }

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.principles > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
}
.principles h3 { font-size: 18px; color: var(--soft); }
.principles p { font-size: 14.5px; color: var(--dim); margin-top: 8px; line-height: 1.5; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; margin-top: 44px; }

.contact-info > div { margin-top: 22px; }
.contact-info .label {
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--dim);
  font-weight: 600;
}
.contact-info .val { font-size: 18px; color: var(--soft); margin-top: 4px; }

.form { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 30px 32px; }
.form label { display: block; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); margin: 18px 0 6px; }
.form label:first-child { margin-top: 0; }
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line2);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.form textarea { min-height: 110px; resize: vertical; }
.form .btn { width: 100%; margin-top: 22px; }
.form-success {
  display: none;
  margin-top: 22px;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}

/* ---------- Footer ---------- */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--faint);
  gap: 16px;
  flex-wrap: wrap;
}
.footer .logo { font-family: var(--display); font-weight: 700; letter-spacing: 0.06em; color: var(--mid); }
.footer .logo span { color: var(--accent); }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  .hero { grid-template-columns: 1fr; padding: 48px 28px 40px; }
  .hero-img { height: 320px; }
  .section, .section-tight, .cta-band { padding-left: 28px; padding-right: 28px; }
  .nav { padding: 18px 28px; }
  .live-at, .stats-panel { margin-left: 28px; margin-right: 28px; }
  .value-strip, .steps4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons, .cards6, .gallery { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .step-row, .contact-grid, .pricing, .three-steps, .faq, .principles { grid-template-columns: 1fr; }
  .price-cell { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .stat-num { font-size: 44px; }
}

@media (max-width: 640px) {
  h1 { font-size: 38px; }
  h2 { font-size: 27px; }
  .section, .section-tight, .cta-band { padding: 52px 20px; }
  .section-tight { padding-bottom: 6px; }
  .nav { padding: 14px 20px; }
  .live-at, .stats-panel { margin-left: 20px; margin-right: 20px; }
  .stats-panel { padding: 36px 22px; }
  .nav-toggle { display: block; }
  .nav-right {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--line2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    z-index: 50;
  }
  .nav { position: relative; }
  .nav-right.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; }
  .nav-links a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-cta { margin-top: 16px; text-align: center; }
  .value-strip, .steps4, .stats-grid, .reasons, .cards6, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .quote-text { font-size: 21px; }
  .stake-num { font-size: 42px; }
}
