/* ============================================================
   DETAIL CHAMP - one-page site
   Matte black base. Discipline rules:
   - Green is the ACTION color. Buttons only. Nothing else is green.
   - Purple is the accent. Eyebrows, marks, small details only.
   - Graffiti font lives in the hero and the offer tag, nowhere else.
   - Everything else is white / gray on black.
   ============================================================ */

/* ---------- Fonts (self-hosted Satoshi) ---------- */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-black.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --black: #0b0b0c;          /* matte black page background */
  --panel: #121214;          /* card surface */
  --line: #232328;
  --text: #f2f2f0;
  --muted: #9b9ba2;
  --dim: #6f6f76;

  --cta: #c8ff1e;            /* electric green: BUTTONS ONLY */
  --cta-dark: #0b0b0c;       /* text on green */
  --accent: #b06aff;         /* neon purple: small accents only */

  --font-body: 'Satoshi', 'Segoe UI', system-ui, sans-serif;
  --font-tag: 'Permanent Marker', 'Satoshi', cursive;

  --radius: 16px;
  --maxw: 1140px;
}

/* ---------- Reset-ish ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

body {
  /* solid, fixed matte black; the background never moves */
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

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

/* faint static vignette so the black reads matte; does not move */
.bg-texture {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 550px at 80% -10%, rgba(176, 106, 255, 0.05), transparent 60%),
    var(--black);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }

/* ---------- Type system ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent);
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 14px 0 14px;
}

.section-head p { color: var(--muted); font-size: 17px; }
.section-head { max-width: 640px; margin-bottom: 44px; }

/* ---------- Buttons (green = action, used for nothing else) ---------- */
.btn-primary {
  display: inline-block; text-decoration: none; text-align: center;
  font-weight: 900; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cta-dark); background: var(--cta);
  padding: 16px 32px; border-radius: 10px; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(200, 255, 30, 0.3); }
.btn-primary.glow { box-shadow: 0 0 26px rgba(200, 255, 30, 0.35); }
.btn-primary.glow:hover { box-shadow: 0 0 36px rgba(200, 255, 30, 0.5); }

.btn-secondary {
  display: inline-block; text-decoration: none; text-align: center;
  font-weight: 700; font-size: 15px;
  color: var(--text); border: 1px solid #3a3a41;
  padding: 15px 28px; border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: #55555e; background: rgba(255, 255, 255, 0.04); }

.link-plain {
  color: var(--muted); font-weight: 700; text-decoration: none;
  border-bottom: 1px solid #3a3a41; padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.link-plain:hover { color: var(--text); border-color: var(--text); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 44px; height: auto; }
.brand span {
  font-weight: 900; font-size: 14px; line-height: 1.1; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 0.02em;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-phone {
  text-decoration: none; font-weight: 700; font-size: 14px; color: var(--text);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--cta); }
.nav .btn-primary { padding: 11px 22px; font-size: 13px; }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 8px;
  color: var(--text); font-size: 20px; line-height: 1; padding: 6px 12px; cursor: pointer;
}

@media (max-width: 1200px) {
  .nav-phone { display: none; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11, 11, 12, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 0;
    display: none;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px 24px; }
  .nav-phone { display: none; }
}
@media (max-width: 520px) {
  .nav .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 140px 0 80px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-family: var(--font-tag);
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 400;
  margin: 18px 0 14px;
  transform: rotate(-1.5deg);
  color: var(--text);
}
.hero h1 .tagline-accent {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(176, 106, 255, 0.35);
}
.offer-tag {
  display: inline-block;
  font-family: var(--font-tag);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text);
  border: 2px solid var(--accent);
  padding: 5px 16px; border-radius: 8px;
  transform: rotate(-1.5deg);
  margin: 4px 0 20px;
}
.hero p.lede { color: var(--muted); font-size: 18px; max-width: 52ch; }
.hero .cta-row { margin-top: 30px; }

.hero-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  width: 100%; height: 540px; object-fit: cover;
}

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.trust-chip {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px;
}

@media (max-width: 900px) {
  .hero { padding-top: 115px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media img { height: 360px; }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.tight { padding-top: 0; }

/* checklist cards */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .cards-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.card h3 {
  font-size: 17px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px; padding-top: 14px; position: relative;
}
.card h3::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 30px; height: 3px; background: var(--accent);
}

.checklist li {
  position: relative; padding: 6px 0 6px 30px; color: #cfcfcc; font-size: 16px;
}
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 5px; height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* video (3:4 vertical, aspect-ratio reserves space so layout never shifts) */
.video-wrap { max-width: 480px; margin: 28px auto 0; }
.video-wrap video {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: #000;
  border-radius: var(--radius); border: 1px solid var(--line);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.cta-band .band-title {
  font-family: var(--font-tag);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  transform: rotate(-1deg);
}
.cta-band p { color: var(--muted); margin-top: 6px; max-width: 44ch; }
@media (max-width: 700px) { .cta-band { padding: 36px 26px; } }

/* ---------- Service sections ---------- */
.service-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start;
}
.service-grid.flip { grid-template-columns: 1.15fr 0.85fr; }
.service-media { position: sticky; top: 100px; }
.service-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  width: 100%; height: 440px; object-fit: cover;
}
@media (max-width: 900px) {
  .service-grid, .service-grid.flip { grid-template-columns: 1fr; gap: 30px; }
  .service-media { position: static; }
  .service-media img { height: 280px; }
}

.stack { display: grid; gap: 24px; }

/* price display: information, not decoration */
.price-row { display: flex; flex-wrap: wrap; gap: 36px; margin: 6px 0 18px; }
.price-item .amount { font-size: 30px; font-weight: 900; letter-spacing: -0.01em; }
.price-item .label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); margin-top: 2px;
}

.service-cta { margin-top: 28px; }

/* ---------- About / stats ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px;
}
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
}
.stat .num { font-size: 30px; font-weight: 900; }
.stat .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 19px 22px;
  font-weight: 700; font-size: 16px;
  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: 22px; font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 22px 20px; color: var(--muted); font-size: 16px; }

/* ---------- Quote form ---------- */
.quote-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px;
  max-width: 860px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .quote-panel { padding: 30px 22px; } }

label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid #2e2e34;
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
}
textarea { min-height: 110px; resize: vertical; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 23px, calc(100% - 15px) 23px; background-size: 5px 5px; background-repeat: no-repeat; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 12px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.footer-grid a { text-decoration: none; color: var(--muted); transition: color 0.2s; }
.footer-grid a:hover { color: var(--text); }
.footer-list li { padding: 5px 0; }
.footer-phone { font-size: 20px; font-weight: 900; color: var(--text) !important; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  color: var(--dim); font-size: 14px;
}
.social-row { display: flex; gap: 14px; align-items: center; }
.social-row img { width: 20px; height: 20px; object-fit: contain; opacity: 0.75; transition: opacity 0.2s; }
.social-row a:hover img { opacity: 1; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
