/* ===========================
   BLASTANDSWEEP — BRAND TOKENS
   =========================== */
:root {
  --bg: #0a0e14;
  --bg-raised: #111720;
  --bg-card: #161e28;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --accent-muted: rgba(245,158,11,0.12);
  --text: #e8e3d6;
  --text-muted: #8a877f;
  --text-faint: #4a4840;
  --border: rgba(232,227,214,0.08);
  --border-mid: rgba(232,227,214,0.15);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY HELPERS
   =========================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 64px;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,14,20,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-fb {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-fb:hover { color: var(--text); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 6px 16px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--accent);
  color: #0a0e14;
}

@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav-right { gap: 12px; }
  .nav-cta { font-size: 12px; padding: 5px 12px; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  border: 1px solid var(--accent-muted);
  background: var(--accent-muted);
  border-radius: 100px;
  padding: 6px 14px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0e14;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
}
.cta-primary:hover {
  background: var(--accent-dim);
}
.cta-primary:active { transform: scale(0.98); }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 24px;
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  background: rgba(232,227,214,0.04);
}
.cta-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-mid);
  margin-right: 32px;
}
.hero-surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.surface-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 60%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,158,11,0.04) 0%, transparent 50%);
}
.surface-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
}

/* ===========================
   PROOF BAR
   =========================== */
.proof {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.proof-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-muted);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.proof-text strong {
  color: var(--text);
  font-weight: 500;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: 120px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-raised);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
/* Service card accent borders */
.service-card--blast { border-left: 3px solid var(--accent); }
.service-card--sweep { border-left: 3px solid var(--accent-dim); }

/* Blast — water jet visual */
.service-card--blast .service-visual {
  height: 120px;
  position: relative;
}
.blast-pattern { position: relative; height: 100%; }
.blast-line {
  position: absolute;
  bottom: 0;
  border-radius: 4px;
  background: linear-gradient(to top, var(--accent), transparent);
  opacity: 0.5;
}
.blast-line--1 { left: 10%; width: 6px; height: 40%; animation: blast-pulse 1.8s ease-in-out infinite; }
.blast-line--2 { left: 25%; width: 8px; height: 65%; animation: blast-pulse 1.8s ease-in-out 0.2s infinite; }
.blast-line--3 { left: 45%; width: 10px; height: 90%; animation: blast-pulse 1.8s ease-in-out 0.4s infinite; }
.blast-line--4 { left: 65%; width: 7px; height: 55%; animation: blast-pulse 1.8s ease-in-out 0.3s infinite; }
.blast-line--5 { left: 80%; width: 5px; height: 30%; animation: blast-pulse 1.8s ease-in-out 0.5s infinite; }
.blast-nozzle {
  position: absolute;
  bottom: 0;
  left: 48%;
  width: 14px;
  height: 28px;
  background: var(--accent);
  border-radius: 4px 4px 0 0;
  transform: translateX(-50%);
}
@keyframes blast-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Sweep — truck bed visual */
.service-card--sweep .service-visual { height: 120px; position: relative; }
.sweep-pattern { position: relative; height: 100%; display: flex; align-items: flex-end; gap: 10px; padding-bottom: 10px; }
.junk-item {
  border-radius: 4px;
  background: rgba(232,227,214,0.15);
}
.junk-item--1 { width: 30px; height: 40px; }
.junk-item--2 { width: 50px; height: 30px; background: rgba(232,227,214,0.2); }
.junk-item--3 { width: 35px; height: 50px; }
.junk-item--4 { width: 45px; height: 35px; background: rgba(232,227,214,0.12); }
.truck-bed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: #1e2936;
  border-radius: 4px;
  border-top: 2px solid var(--text-faint);
}

/* ===========================
   PROCESS
   =========================== */
.process {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding-right: 40px;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border-mid);
  flex-shrink: 0;
  margin-top: 36px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.price-card--accent {
  border-color: var(--accent);
  background: rgba(245,158,11,0.04);
}
.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.price-service {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
}
.price-unit {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-includes {
  margin-bottom: 24px;
}
.price-includes li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 16px;
}
.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  padding: 120px 0 160px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 32px;
}
.closing p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}
.closing-vibe {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent) !important;
  margin-top: 32px !important;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-raised);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}
.footer-location {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom {
  font-size: 11px;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  letter-spacing: 0.04em;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-bottom: 48px;
}
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gallery-slot {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.gallery-slot--after {
  border-color: var(--border-mid);
}
.slot-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  background: rgba(10,14,20,0.7);
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}
.slot-label--after {
  color: var(--accent);
}
.slot-placeholder {
  width: 100%;
  padding-bottom: 65%;
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
}
/* CSS "before" treatment — grime, muted, distressed */
.slot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(74,72,64,0.5) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 70%, rgba(74,72,64,0.4) 0%, transparent 50%),
    linear-gradient(160deg, rgba(74,72,64,0.2) 0%, rgba(30,28,22,0.3) 100%);
}
/* Subtle grain overlay */
.slot-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(232,227,214,0.02) 3px, rgba(232,227,214,0.02) 4px
  );
}
.slot-placeholder span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

/* CSS "after" treatment — clean, bright, amber tint */
.slot-placeholder--after {
  background: var(--bg-raised);
}
.slot-placeholder--after::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245,158,11,0.08) 0%, transparent 60%),
    linear-gradient(160deg, rgba(245,158,11,0.04) 0%, rgba(10,14,20,0.2) 100%);
}
.slot-placeholder--after::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(245,158,11,0.015) 2px, rgba(245,158,11,0.015) 3px
  );
}
.gallery-cta {
  text-align: center;
}
.gallery-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.gallery-cta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.gallery-cta a:hover { text-decoration: underline; }

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail-link:hover { color: var(--text); }
.contact-detail-link--fb { color: #8b9dc3; }
.contact-detail-link--fb:hover { color: #c8d3e8; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-faint);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}
.btn-submit {
  background: var(--accent);
  color: #0a0e14;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--accent-dim); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg {
  font-size: 0.875rem;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.5;
}
.form-msg--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.form-msg--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero-headline { font-size: 3rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-ctas .cta-primary, .hero-ctas .cta-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .proof-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--blast { border-left: none; border-top: 3px solid var(--accent); }
  .service-card--sweep { border-left: none; border-top: 3px solid var(--accent-dim); }
  .process-steps { flex-direction: column; }
  .step-connector { width: 1px; height: 40px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section-headline { margin-bottom: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 60px 0 80px; }
  .services, .process, .pricing, .closing { padding: 80px 0; }
  .service-card { padding: 32px 24px; }
  .price-card { padding: 28px 24px; }
}