/* Lone Star Arms — clean static rebuild */
:root {
  --bg: #0a0b0d;
  --bg-2: #16181e;
  --bg-3: #1f232b;
  --ink: #f4f0e6;
  --muted: #c4bba8;
  --gold: #d4a84b;
  --gold-2: #efc76a;
  --gold-ink: #16110a;
  --line: #3a3f49;
  --focus: #efc76a;
  --danger: #d4a84b;
  --max: 1120px;
  --radius: 10px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: #000; padding: 8px 12px; z-index: 99; }

header.site {
  background: rgba(10,11,13,.94);
  border-bottom: 1px solid rgba(212,168,75,.35);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand-name { font-family: Oswald, Impact, sans-serif; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; }
.brand-sub { display: block; font-size: .7rem; color: var(--muted); letter-spacing: .12em; }
.header-cta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .02em;
  border: 2px solid var(--gold);
  transition: background-color .15s ease, border-color .15s ease, filter .15s ease, color .15s ease;
}
.btn:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  filter: brightness(1.06);
  text-decoration: none;
}
.btn.ghost {
  background: transparent;
  color: var(--gold-2);
  border: 2px solid var(--gold);
  filter: none;
}
.btn.ghost:hover {
  background: rgba(212,168,75,.12);
  border-color: var(--gold);
  color: var(--gold-2);
  filter: none;
}
nav.main { background: var(--bg-2); border-bottom: 1px solid var(--line); }
nav.main ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 2px 0;
}
nav.main a {
  display: block; color: var(--ink); padding: 10px 12px 12px; font-size: .92rem;
  text-decoration: none;
  position: relative;
}
nav.main a:hover,
nav.main a[aria-current="page"] {
  color: var(--gold);
  text-decoration: none;
}
nav.main a:hover::after,
nav.main a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
}
.menu-toggle {
  display: none; background: var(--bg-3); color: var(--ink);
  border: 1px solid var(--line); padding: 8px 12px; border-radius: 6px;
}

.hero {
  background: linear-gradient(180deg, #16181d 0%, var(--bg) 100%);
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 70ch; }
.price-callout {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--bg-3);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.price-callout strong { color: var(--gold-2); }

.section { padding: 36px 0; }
.section h2 {
  font-family: Oswald, sans-serif;
  font-size: 1.45rem;
  letter-spacing: .04em;
  margin: 0 0 12px;
  color: var(--gold-2);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 1px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
}
.card img { width: 100%; height: 190px; object-fit: cover; background: #000; }
.card-body { padding: 14px 16px 18px; }
.card h3 { margin: 0 0 8px; font-family: Oswald, sans-serif; font-size: 1.15rem; }
.card p { margin: 0 0 12px; color: var(--muted); font-size: .95rem; }

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.proof div {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: var(--radius);
  font-size: .92rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-grid figure { margin: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gallery-grid img { width: 100%; height: 180px; object-fit: cover; }
.gallery-grid figcaption { padding: 8px 10px 12px; font-size: .85rem; color: var(--muted); }

.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.disclaimer {
  font-size: .92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 24px;
}
.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.portrait { border-radius: var(--radius); border: 1px solid var(--line); }
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 0 0 14px;
}
.testimonial h3 { margin: 0 0 8px; font-size: 1rem; color: var(--gold-2); }
.testimonial p { margin: 0 0 8px; white-space: pre-wrap; }
.letter { white-space: pre-wrap; color: var(--ink); }
.group-label {
  margin: 28px 0 12px;
  font-family: Oswald, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 1.05rem;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.video-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-card .cap { padding: 12px 14px; }
form.quote label { display: block; font-weight: 600; margin: 12px 0 4px; }
form.quote input, form.quote textarea, form.quote select {
  width: 100%; padding: 10px; border-radius: 6px;
  border: 1px solid var(--line); background: var(--bg-3); color: var(--ink);
  font: inherit;
}
footer.site {
  background: #070809;
  border-top: 1px solid var(--line);
  padding: 28px 0 20px;
  color: var(--muted);
  font-size: .95rem;
}
footer.site h2 { color: var(--ink); font-size: 1.05rem; margin: 0 0 8px; }
.nap strong { color: var(--ink); }
.fine { font-size: .82rem; color: #8d877b; }

@media (max-width: 900px) {
  .cards, .proof, .split, .video-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-block; }
  nav.main ul.hide-mobile { display: none; }
  nav.main ul { flex-direction: column; }
  .header-cta .btn.ghost { display: none; }
}

.prose p { margin: 0 0 14px; max-width: 75ch; }
.prose ul { max-width: 75ch; color: var(--muted); }
.prose li { margin: 0 0 6px; }
.kicker { color: var(--gold); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin: 0 0 8px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.small-note { font-size: .9rem; color: var(--muted); }
.nav-more { color: var(--gold-2) !important; }
iframe.video { width: 100%; aspect-ratio: 16/9; border: 0; }
.intake { background: var(--bg-2); border: 1px solid var(--line); padding: 16px 18px; border-radius: var(--radius); }
