/* =========================================================
   Select Firearms and Safes, LLC — site styles
   Dark / tactical theme: charcoal + brushed silver + gold
   ========================================================= */

:root {
  --bg:        #0d0d0f;
  --bg-2:      #131316;
  --panel:     #16161a;
  --card:      #1b1b20;
  --line:      #2a2a30;
  --line-soft: #222228;

  --gold:      #e0b056;
  --gold-2:    #b9842f;
  --gold-soft: rgba(224, 176, 86, 0.12);

  --silver:    #d8dadf;
  --silver-2:  #aab0b8;

  --text:      #ececed;
  --muted:     #9a9aa2;
  --muted-2:   #74747c;

  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);

  --head: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .18s ease; }
a:hover { color: #f0c878; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .5px;
  margin: 0 0 .5em;
  color: #fff;
}

p { margin: 0 0 1.1em; color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 14px;
  display: inline-block;
}

.gold { color: var(--gold); }
.silver-text {
  background: linear-gradient(180deg, #f4f5f7 0%, #c7ccd3 45%, #8a9099 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1306;
  box-shadow: 0 10px 26px rgba(224,176,86,.22);
}
.btn-primary:hover { transform: translateY(-2px); color: #1a1306; box-shadow: 0 14px 32px rgba(224,176,86,.34); }
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,15,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav .brand img { height: 40px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 14px;
  font-weight: 400;
  color: var(--silver-2);
  padding: 10px 13px;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--gold); }
.nav-links .btn { font-size: 13px; padding: 10px 18px; margin-left: 6px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--silver); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 110px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 520px at 50% -10%, rgba(224,176,86,.10), transparent 60%),
    linear-gradient(180deg, #0f0f12 0%, #0b0b0d 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero img.hero-logo {
  width: min(520px, 80%);
  margin: 0 auto 30px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.6));
}
.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero .lede {
  max-width: 720px; margin: 0 auto 18px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--silver-2);
}
.hero .tagline {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(12px, 1.5vw, 15px);
  color: var(--gold);
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  position: relative;
  padding: 86px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(900px 360px at 50% -20%, rgba(224,176,86,.09), transparent 60%),
    linear-gradient(180deg, #101013 0%, #0d0d0f 100%);
}
.page-head h1 { font-size: clamp(32px, 4.5vw, 52px); }
.page-head p { max-width: 680px; margin: 10px auto 0; color: var(--silver-2); }

/* ---------- Sections ---------- */
section.block { padding: 84px 0; }
section.block.alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin: 0 0 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { font-size: 17px; }

/* ---------- Two-column ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.narrow-gap { gap: 40px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, var(--card) 0%, #141418 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(224,176,86,.5); box-shadow: var(--shadow); }
.card .icn {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  border: 1px solid rgba(224,176,86,.32);
  margin-bottom: 18px;
}
.card .icn svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 15px; margin-bottom: 0; }

/* ---------- Service detail blocks ---------- */
.service {
  display: grid; grid-template-columns: 64px 1fr; gap: 26px;
  padding: 34px 0; border-bottom: 1px solid var(--line-soft);
}
.service:last-child { border-bottom: 0; }
.service .num {
  font-family: var(--head); font-size: 40px; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px var(--gold-2);
  line-height: 1;
}
.service h3 { font-size: 24px; margin-bottom: 8px; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  position: relative; padding: 9px 0 9px 32px; color: var(--silver-2); font-size: 15.5px;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: ""; position: absolute; left: 4px; top: 17px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat { padding: 22px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); }
.stat .big { font-family: var(--head); font-size: 44px; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ---------- Offerings chips ---------- */
.offerings { display: flex; flex-wrap: wrap; gap: 14px; }
.offer {
  flex: 1 1 260px;
  display: flex; align-items: center; gap: 14px;
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: 10px; padding: 16px 18px;
  transition: border-color .2s ease, transform .2s ease;
}
.offer:hover { border-color: rgba(224,176,86,.5); transform: translateY(-2px); }
.offer .dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-2)); flex: 0 0 auto; }
.offer span { font-family: var(--head); letter-spacing: .6px; color: #fff; font-size: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 50%, rgba(224,176,86,.14), transparent 60%),
    linear-gradient(180deg, #141318, #0e0e11);
  border-top: 1px solid var(--line-soft);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: 56px 0; flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0; }
.cta-inner p { margin: 8px 0 0; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 46px; align-items: start; }
.form-card {
  background: linear-gradient(180deg, var(--card), #141418);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--head); letter-spacing: .8px;
  text-transform: uppercase; font-size: 12.5px; color: var(--silver-2); margin-bottom: 7px;
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  background: #0f0f12; color: var(--text);
  border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--body); font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e0b056' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 13px; color: var(--muted-2); margin: 6px 0 0; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 8px; font-size: 15px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(80,180,110,.12); border: 1px solid rgba(80,180,110,.4); color: #b6e6c4; }
.form-status.err { background: rgba(210,80,80,.12); border: 1px solid rgba(210,80,80,.4); color: #f0bcbc; }

.contact-info .info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.contact-info .info-item:last-of-type { border-bottom: 0; }
.contact-info .ic {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 10px;
  display: grid; place-items: center; background: var(--gold-soft);
  border: 1px solid rgba(224,176,86,.3);
}
.contact-info .ic svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.contact-info .info-item .k { font-family: var(--head); letter-spacing: .6px; color: #fff; font-size: 15px; text-transform: uppercase; }
.contact-info .info-item .v { color: var(--silver-2); font-size: 15px; }
.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line-soft); transition: .2s;
}
.social-row a:hover { border-color: var(--gold); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; fill: var(--silver-2); transition: fill .2s; }
.social-row a:hover svg { fill: var(--gold); }

/* ---------- Callout / disclaimer ---------- */
.callout {
  background: var(--gold-soft); border: 1px solid rgba(224,176,86,.28);
  border-left: 3px solid var(--gold);
  border-radius: 10px; padding: 18px 22px; color: var(--silver-2); font-size: 14.5px;
}
.callout strong { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0c; border-top: 1px solid var(--line-soft);
  padding: 54px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer img.f-logo { height: 38px; margin-bottom: 16px; }
.site-footer p { font-size: 14px; color: var(--muted); }
.site-footer h4 { font-family: var(--head); text-transform: uppercase; letter-spacing: 1.4px; font-size: 14px; color: var(--silver); margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: var(--muted); font-size: 14px; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-2);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0e0e11; border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 10px; }
  .nav-links .btn { margin: 10px 0 0; justify-content: center; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards, .cards.three { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  section.block { padding: 60px 0; }
  .form-card { padding: 24px; }
  .gear-list, .gear-list.cols3 { columns: 1; }
}

/* =========================================================
   Experience page — certifications, training, owned gear
   ========================================================= */

/* Certification cards */
.cert .icn svg { stroke: var(--gold); }
.cert .date {
  display: inline-block; margin-top: 12px;
  font-family: var(--head); letter-spacing: .6px; font-size: 13px;
  color: var(--gold); background: var(--gold-soft);
  border: 1px solid rgba(224,176,86,.28); border-radius: 20px; padding: 3px 12px;
}

/* Training list */
.train-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.train-item:last-child { border-bottom: 0; }
.train-item .t-main .t-title { font-family: var(--head); color: #fff; font-size: 18px; letter-spacing: .4px; }
.train-item .t-main .t-prov { color: var(--muted); font-size: 14px; }
.train-item .t-date {
  flex: 0 0 auto; font-family: var(--head); color: var(--gold); font-size: 15px; letter-spacing: .6px;
}
.prov-head { font-family: var(--head); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--silver-2); margin: 30px 0 4px; }

/* Owned & tested gear */
.gear-group { margin-bottom: 40px; }
.gear-group:last-child { margin-bottom: 0; }
.gear-group .gh { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.gear-group .gh h3 { margin: 0; font-size: 24px; }
.gear-group .count {
  font-family: var(--head); letter-spacing: .5px; font-size: 13px; color: var(--gold);
  border: 1px solid rgba(224,176,86,.34); border-radius: 20px; padding: 3px 12px; background: var(--gold-soft);
}
.gear-list { columns: 2; column-gap: 36px; list-style: none; margin: 0; padding: 0; }
.gear-list.cols3 { columns: 3; }
.gear-list li {
  break-inside: avoid; -webkit-column-break-inside: avoid;
  position: relative; padding: 9px 0 9px 24px; color: var(--silver-2); font-size: 15px;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.gear-list li .cal { color: var(--muted-2); }
.gear-list li::before {
  content: ""; position: absolute; left: 2px; top: 17px; width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 0 0 3px var(--gold-soft);
}
@media (max-width: 760px) { .gear-list, .gear-list.cols3 { columns: 1; } }

/* =========================================================
   Reviews page — placeholder cards
   ========================================================= */
.soon-banner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--gold-soft); border: 1px solid rgba(224,176,86,.28);
  border-left: 3px solid var(--gold); border-radius: 10px; padding: 18px 22px; margin-bottom: 40px;
}
.soon-banner .badge {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px;
  color: #1a1306; background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 20px; padding: 5px 14px; flex: 0 0 auto;
}
.soon-banner p { margin: 0; color: var(--silver-2); font-size: 15px; }
.review-card { position: relative; }
.review-card .badge-soon {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: 11px;
  color: var(--muted); border: 1px solid var(--line); border-radius: 20px; padding: 3px 10px;
}
.review-card .cat {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--gold);
}
.stars { color: var(--line); font-size: 18px; letter-spacing: 3px; margin: 8px 0 4px; }
.placeholder-line { height: 10px; border-radius: 6px; background: rgba(255,255,255,.05); margin: 10px 0; }
.placeholder-line.short { width: 60%; }
