/* ══════════════════════════════════════════════════════════════════
   Locked and Loaded Armory — Locked & Loaded Theme
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg:      #0a0706;
  --dark:    #060403;
  --card:    #18110f;
  --alt:     #120b0a;
  --border:  #2a1e1a;
  --bronze:  #c43228;
  --bronze-d:#8a221c;
  --sage:    #d4b684;
  --text:    #f2ebd8;
  --muted:   #8e7f70;
  --green:   #6b8e4e;
  --danger:  #ef4444;
  --warn:    #f59e0b;

  --f-head:  "Oswald", system-ui, sans-serif;
  --f-body:  "Inter", system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;

  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.1; }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1em; color: var(--muted); }
a  { color: var(--bronze); text-decoration: none; }
a:hover { opacity: 0.85; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ── Layout ───────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.section--alt { background: var(--alt); }
.section--card { background: var(--card); }

/* ── Announcement Bar ─────────────────────────────────────────────── */
.announce {
  background: var(--bronze);
  color: #000;
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.announce a { color: #000; text-decoration: underline; }

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(8, 7, 6, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--text);
}
.brand-logo { width: 40px; height: 40px; flex-shrink: 0; }
.brand-name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 2px;
}
.primary-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.primary-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--bronze); background: rgba(196, 50, 40, 0.1); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  color: var(--muted); font-size: 0.58rem; font-weight: 700;
}
.nav-phone svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .brand-tag   { display: none; }
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-md);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--bronze); color: #000; }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--bronze); color: var(--bronze); opacity: 1; }
.btn--ghost { background: transparent; color: var(--bronze); border: 1px solid var(--bronze); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.72rem; }
.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1410 0%, var(--bg) 55%, var(--alt) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 25%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bronze), transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 640px; }
.kicker {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--text); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0; }
.hero h1 .accent { color: var(--bronze); }
.hero-sub { font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; color: rgba(242, 237, 224, 0.75); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stats div .n { font-size: 1.3rem; font-weight: 900; color: var(--bronze); }
.hero-stats div .l { font-size: 0.7rem; color: var(--muted); }

/* ── Trust Strip ──────────────────────────────────────────────────── */
.trust-strip {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.trust-strip .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-badge svg { width: 14px; height: 14px; fill: var(--bronze); flex-shrink: 0; }

/* ── Cards ────────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}
.card:hover { border-color: rgba(196, 50, 40, 0.4); }
.card-body { padding: 1.25rem; }
.card-title { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text); font-weight: 900; }
.card-meta { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.75rem; }
.card-price { font-size: 1.3rem; font-weight: 900; color: var(--bronze); }

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ── Section headings ─────────────────────────────────────────────── */
.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-head h2 { color: var(--text); margin-bottom: 0.5rem; text-transform: uppercase; }
.section-head p  { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ── Service card ─────────────────────────────────────────────────── */
.service-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: inherit;
}
.service-card:hover { border-color: rgba(196, 50, 40, 0.5); }
.service-card-top {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--alt) 0%, var(--dark) 100%);
  display: flex; justify-content: space-between; align-items: flex-start;
  height: 120px;
}
.chip {
  padding: 0.2rem 0.6rem; border-radius: 5px;
  font-size: 0.58rem; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.chip--bronze { background: var(--bronze); color: #000; }
.chip--sage   { background: rgba(212, 182, 132, 0.25); color: var(--sage); }
.chip--muted  { background: rgba(142, 134, 121, 0.25); color: var(--text); }

/* ── Forms ────────────────────────────────────────────────────────── */
.form-row { margin-bottom: 0.75rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--bronze);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-label { display: block; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { font-size: 0.85rem; color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.footer-brand p { font-size: 0.8rem; margin-bottom: 0.5rem; color: var(--muted); line-height: 1.6; }
.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--muted);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Before / After tile (restoration) ────────────────────────────── */
.ba-tile {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.ba-tile .label {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.2em;
}
.ba-tile.before { background: linear-gradient(135deg, #1a1612, #0a0706); }
.ba-tile.after  { background: linear-gradient(135deg, #2a2018, #14100a); }
.ba-tile.before .label { background: rgba(142, 134, 121, 0.4); color: var(--text); }
.ba-tile.after  .label { background: var(--bronze); color: #000; }

/* ── Utilities ────────────────────────────────────────────────────── */
.txt-center  { text-align: center; }
.txt-muted   { color: var(--muted); }
.txt-bronze  { color: var(--bronze); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.flex-gap { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.rounded { border-radius: var(--r-md); }
