/* ============================================
   Sole Oak Silencers — modern tactical theme
   ============================================ */

:root {
  --bg:           #0d0f0c;
  --bg-elev:      #161613;
  --bg-card:      #1c1c17;
  --line:         #2d2c25;
  --line-strong:  #403e34;
  --text:         #e8e6df;
  --text-dim:     #a8a89e;
  --text-muted:   #797569;
  --accent:       #f2cb40;   /* sole oak yellow */
  --accent-hot:   #ffe066;
  --accent-deep:  #6a5316;
  --warn:         #d97a3a;
  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 6px 24px rgba(0,0,0,.4);
  --maxw:         1180px;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent-hot);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--accent); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--text);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.4rem; letter-spacing: .06em; }
h4 { font-size: 1.05rem; letter-spacing: .08em; color: var(--accent-hot); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

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

/* ====== ANNOUNCE BAR ====== */

.announce {
  background: var(--accent);
  color: #1a1503;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.announce a {
  color: #1a1503;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announce a:hover { color: #000; }
.announce .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #1a1503;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: announce-pulse 1.6s ease-in-out infinite;
}
@keyframes announce-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}

/* ====== TOP BAR ====== */

.topbar {
  background: #07080a;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--text-dim); }
.topbar a:hover { color: var(--accent-hot); }

/* ====== NAV ====== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 15, 12, .92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--text);
  text-transform: uppercase;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 56px; height: 56px;
  display: inline-grid; place-items: center;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-mark { width: 64px; height: 64px; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-dim);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #0d0f0c !important;
  padding: 10px 18px !important;
  border-radius: var(--radius);
  border: none !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--accent-hot); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--text);
  width: 40px; height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }
}

/* ====== HERO ====== */

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(242,203,64,.10), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(106,83,22,.22), transparent 60%),
    linear-gradient(180deg, #0a0a07 0%, #0d0f0c 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  max-width: 14ch;
  margin-bottom: .3em;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--text-dim);
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
}

/* ====== BUTTONS ====== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #0d0f0c;
}
.btn-primary:hover { background: var(--accent-hot); color: #0d0f0c; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-hot);
}

/* ====== SECTIONS ====== */

section { padding: 90px 0; }
section.tight { padding: 60px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* ====== STAT STRIP ====== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-strip > div {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-strip > div:last-child { border-right: none; }
.stat-strip .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: .04em;
}
.stat-strip .lbl {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > div:nth-child(2) { border-right: none; }
  .stat-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ====== CARDS ====== */

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}
.card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(242,203,64,.10);
  border: 1px solid var(--accent-deep);
  border-radius: var(--radius);
  color: var(--accent-hot);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-dim); margin-bottom: 0; }
.card .more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* numbered process cards */
.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-deep);
  letter-spacing: .04em;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 8px;
  padding-right: 50px;
}
.step p { color: var(--text-dim); margin: 0; font-size: .95rem; }

/* ====== CTA BAND ====== */

.cta-band {
  background:
    linear-gradient(120deg, rgba(106,83,22,.50) 0%, rgba(13,15,12,.95) 70%),
    var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0; max-width: 22ch; }
.cta-band p { color: var(--text-dim); margin: 8px 0 0; max-width: 50ch; }

/* ====== TWO COLUMN ====== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ====== INFO BOX ====== */

.info {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info h4 {
  margin-bottom: 8px;
  color: var(--accent-hot);
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .15em;
}
.info p { margin: 0; color: var(--text-dim); }

.warn {
  border-left-color: var(--warn);
}
.warn h4 { color: var(--warn); }

/* ====== TABLES ====== */

.tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
}
.tbl th, .tbl td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tbl th {
  background: var(--bg-elev);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.tbl tr:last-child td { border-bottom: none; }
.tbl td.price {
  font-family: var(--font-display);
  color: var(--accent-hot);
  font-size: 1.2rem;
}

/* ====== FAQ / ACCORDION ====== */

.faq {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:last-child { border-bottom: none; }
.faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div {
  padding: 0 24px 20px;
  color: var(--text-dim);
}
.faq details > div p:last-child { margin-bottom: 0; }

/* ====== FORM ====== */

.form {
  display: grid;
  gap: 18px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .form .row { grid-template-columns: 1fr; }
}
.form label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color .15s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form textarea { resize: vertical; min-height: 120px; }

/* ====== CHECKLIST ====== */

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.checklist li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--text-dim);
  border-bottom: 1px dashed var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 4px; top: 14px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* ====== PAGE HEADER ====== */

.pagehead {
  padding: 80px 0 60px;
  background:
    radial-gradient(800px 400px at 70% 0%, rgba(242,203,64,.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.pagehead h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.pagehead p { color: var(--text-dim); font-size: 1.1rem; max-width: 64ch; }
.crumbs {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--accent-hot); }

/* ====== FOOTER ====== */

footer {
  background: #07080a;
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-dim); font-size: .92rem; }
.footer-grid a:hover { color: var(--accent-hot); }
.footer-brand p { color: var(--text-muted); font-size: .9rem; max-width: 36ch; }

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ====== UTILITIES ====== */

.text-dim { color: var(--text-dim); }
.text-mono { font-family: var(--font-mono); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* svg icon size */
.icon svg { width: 22px; height: 22px; }
