/* TNT Dynamite Designs LLC
   Faith. Honor. Service.
   One stylesheet for the whole site. No frameworks, no external fonts,
   no trackers. Edit colors in :root and everything follows. */

:root {
  --ink: #06090f;
  --ink-2: #0d131d;
  --ink-3: #141c29;
  --line: rgba(255, 255, 255, 0.10);
  --paper: #f6f4f0;
  --paper-2: #ffffff;
  --text: #e8ecf4;
  --text-dim: #a9b4c6;
  --text-dark: #1a2230;
  --text-dark-dim: #55607a;
  --red: #c8102e;
  --red-hot: #e8203f;
  --blue: #1f4f9c;
  --blue-lt: #3f7ad1;
  --steel: #c9d2e0;
  --gold: #e0b048;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(12, 20, 35, 0.12);
  --wrap: 1180px;
  --sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-lt); }

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1.1em; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 9, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 46px; height: 46px; border-radius: 9px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.05rem; letter-spacing: 0.02em; font-weight: 800; }
.brand-text span { font-size: 0.7rem; letter-spacing: 0.22em; color: var(--steel); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-dim); text-decoration: none; font-size: 0.95rem;
  padding: 9px 13px; border-radius: 9px; font-weight: 600;
}
.main-nav a:hover, .main-nav a:focus { color: #fff; background: rgba(255, 255, 255, 0.07); }
.main-nav a.active { color: #fff; }
.main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--red), #97101f);
  color: #fff; margin-left: 8px; box-shadow: 0 8px 20px rgba(200, 16, 46, 0.35);
}
.main-nav a.nav-cta:hover { background: linear-gradient(135deg, var(--red-hot), #a8121f); }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; width: 46px; height: 42px; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text); }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .main-nav a.nav-cta { margin: 8px 0 0; text-align: center; }
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 0.98rem; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--red), #9c0f20); color: #fff;
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.35);
}
.button-secondary { background: rgba(255, 255, 255, 0.06); color: var(--text); border-color: var(--line); }
.button-secondary:hover { background: rgba(255, 255, 255, 0.12); }
.button-dark { background: var(--ink-2); color: #fff; }
.button.full { width: 100%; }
.button[disabled], .button.is-disabled {
  opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none;
}

.text-link { color: var(--blue-lt); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; padding: 74px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 18% 8%, rgba(31, 79, 156, 0.30), transparent 62%),
    radial-gradient(760px 460px at 88% 78%, rgba(200, 16, 46, 0.26), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 54px; align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem;
  font-weight: 800; color: var(--gold); margin: 0 0 14px;
}
.eyebrow.dark { color: var(--red); }
.hero h1 span { color: var(--gold); }
.hero-lead { font-size: 1.1rem; color: var(--text-dim); max-width: 33em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }

.creed {
  display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 18px;
  border-top: 1px solid var(--line); font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); font-weight: 700;
}
.creed span::before { content: "★ "; color: var(--red); }

.hero-art { position: relative; }
.image-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16); box-shadow: var(--shadow);
}
.floating-card {
  position: absolute; background: rgba(13, 19, 29, 0.94); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 17px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; max-width: 220px;
}
.floating-card strong { font-size: 0.95rem; }
.floating-card span { font-size: 0.78rem; color: var(--text-dim); }
.card-top { top: 18px; left: -22px; }
.card-bottom { bottom: 18px; right: -22px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .card-top, .card-bottom { display: none; }
}

/* ---------- sections ---------- */

.section { padding: 76px 0; }
.section-light { background: var(--paper); color: var(--text-dark); }
.section-light h1, .section-light h2, .section-light h3 { color: var(--text-dark); }
.section-light p { color: var(--text-dark-dim); }
.section-tint { background: var(--ink-2); }

.section-heading { max-width: 44em; margin-bottom: 40px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 34px; align-items: center; }

.card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.section-light .card {
  background: var(--paper-2); border-color: rgba(20, 30, 50, 0.10); box-shadow: var(--shadow-soft);
}
.icon-badge {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--blue)); color: #fff;
  font-size: 1.2rem; margin-bottom: 14px;
}

/* ---------- products ---------- */

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

.product-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.section-light .product-card { background: var(--paper-2); border-color: rgba(20, 30, 50, 0.10); box-shadow: var(--shadow-soft); }
.product-media { position: relative; aspect-ratio: 4 / 3; background: #f1efeb; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(6, 9, 15, 0.85); border: 1px solid var(--line); color: var(--steel);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; padding: 6px 11px; border-radius: 999px;
}
.badge.badge-live { background: #10381f; border-color: #1f6b3a; color: #7ee2a3; }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-body h3 { margin: 0; }
.product-body p { font-size: 0.93rem; margin: 0; color: var(--text-dim); }
.section-light .product-body p { color: var(--text-dark-dim); }
.price { font-weight: 800; font-size: 1.15rem; color: var(--gold); }
.section-light .price { color: var(--red); }
.product-foot { margin-top: auto; padding-top: 14px; }

.notice {
  border-left: 4px solid var(--gold); background: rgba(224, 176, 72, 0.09);
  padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 0 0 34px;
}
.notice strong { color: var(--gold); }
.section-light .notice { background: rgba(200, 16, 46, 0.06); border-left-color: var(--red); }
.section-light .notice strong { color: var(--red); }

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

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #0b1017; }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; background: #f1efeb; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 12px 14px; font-size: 0.86rem; color: var(--text-dim); }

/* ---------- steps ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps li { display: flex; gap: 18px; align-items: flex-start; }
.steps li > span {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), #12305f); color: #fff; font-weight: 800;
}
.steps li h3 { margin: 0 0 3px; }
.steps li p { margin: 0; font-size: 0.94rem; }

/* ---------- payments ---------- */

.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pay-card {
  background: var(--paper-2); border-radius: var(--radius); padding: 22px; text-align: center;
  box-shadow: var(--shadow-soft); color: var(--text-dark);
}
.pay-card img { width: 100%; max-width: 190px; margin: 0 auto 14px; }
.pay-card h3 { margin: 0 0 4px; color: var(--text-dark); }
.pay-card p { font-size: 0.88rem; color: var(--text-dark-dim); margin: 0 0 12px; }

.method-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 0; }
.chip {
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px;
  font-size: 0.82rem; font-weight: 700; color: var(--steel);
}
.section-light .chip { border-color: rgba(20, 30, 50, 0.16); color: var(--text-dark-dim); }

/* ---------- tables ---------- */

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(20, 30, 50, 0.12); }
table { width: 100%; border-collapse: collapse; background: var(--paper-2); font-size: 0.94rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid rgba(20, 30, 50, 0.09); }
th { background: #eceae5; font-weight: 800; color: var(--text-dark); white-space: nowrap; }
td { color: var(--text-dark-dim); }
tr:last-child td { border-bottom: none; }

/* ---------- forms ---------- */

.form {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px; display: grid; gap: 15px;
}
.form label { display: grid; gap: 7px; font-size: 0.86rem; font-weight: 700; color: var(--steel); }
.form input, .form textarea, .form select {
  font: inherit; font-size: 0.97rem; color: var(--text); background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 100%;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--blue-lt); outline-offset: 1px; border-color: transparent;
}
.form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-note { font-size: 0.82rem; color: var(--text-dim); margin: 0; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */

details {
  border: 1px solid rgba(20, 30, 50, 0.12); border-radius: var(--radius);
  background: var(--paper-2); padding: 0; margin-bottom: 12px; box-shadow: var(--shadow-soft);
}
summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--text-dark); list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--red); font-weight: 800; }
details[open] summary::after { content: "\2212"; }
details > div { padding: 0 22px 20px; color: var(--text-dark-dim); font-size: 0.95rem; }

/* ---------- page head ---------- */

.page-head { padding: 58px 0 34px; border-bottom: 1px solid var(--line); }
.page-head p { color: var(--text-dim); max-width: 44em; }

.prose { max-width: 46em; }
.prose h2 { margin-top: 1.9em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }

/* ---------- footer ---------- */

.site-footer { background: #04070c; border-top: 1px solid var(--line); padding: 54px 0 28px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 12px; }
.footer-grid a { display: block; color: var(--text-dim); text-decoration: none; padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: var(--text-dim); font-size: 0.9rem; }
.footer-bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: #7b8798; font-size: 0.84rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- motion ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
}
