/* =========================================
   CLEARPATH — THEME
   Junk Removal That Moves
   ========================================= */

/* --- TOKENS --- */
:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE6D9;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --fg-subtle: #8A8A8A;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --sand: #F5F0E8;
  --border: #D9D3C4;
  --card-bg: #FFFFFF;
  --font-display: 'Barlow', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --pad-x: 48px;
  --pad-y: 80px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--green-deep);
}
.nav-logo-accent { color: var(--amber); }
.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* --- SECTION LABELS --- */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}

/* --- HERO --- */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 80vh;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--amber);
  display: inline-block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
  width: fit-content;
}
.hero-stat {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-deep);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* --- HERO VISUAL (CSS Truck) --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 480px;
}
.truck-graphic {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.truck-body {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
}
.truck-cab {
  width: 120px;
  height: 100px;
  background: var(--green-deep);
  border-radius: 8px 8px 0 0;
  position: relative;
  z-index: 2;
}
.truck-cab::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 15px;
  right: 15px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}
.truck-cab::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -16px;
  width: 24px;
  height: 50px;
  background: var(--green-mid);
  border-radius: 3px;
}
.truck-bed {
  width: 280px;
  height: 140px;
  background: var(--amber);
  border-radius: 4px 12px 4px 0;
  position: relative;
  margin-left: -2px;
}
.truck-bed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--amber-light);
  border-radius: 4px 12px 0 0;
  opacity: 0.4;
}
.truck-wheel {
  position: absolute;
  bottom: -24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1A1A1A;
  border: 6px solid #444;
}
.wheel-front { left: 30px; }
.wheel-rear { right: 80px; }
.load-items {
  position: absolute;
  top: -60px;
  left: 140px;
  right: 10px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.load-item {
  animation: float 4s ease-in-out infinite;
}
.load-1 { animation-delay: 0s; }
.load-2 { animation-delay: 0.8s; }
.load-3 { animation-delay: 1.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.item-icon {
  color: var(--green-deep);
}
.load-1 .item-icon { width: 60px; height: 40px; }
.load-2 .item-icon { width: 36px; height: 52px; }
.load-3 .item-icon { width: 44px; height: 40px; }
.crew-silhouette {
  position: absolute;
  bottom: 0;
}
.crew-1 {
  left: 10px;
  width: 40px;
  height: 80px;
}
.crew-2 {
  left: 55px;
  width: 40px;
  height: 80px;
  animation: lift 3s ease-in-out infinite;
}
@keyframes lift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.truck-ground {
  height: 8px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  border-radius: 4px;
  margin-top: 8px;
}

/* --- SERVICES --- */
.services {
  background: var(--bg-alt);
  padding: var(--pad-y) var(--pad-x);
}
.services-header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
}
.services-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--card-bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { background: var(--sand); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--green-deep);
}
.service-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green-deep);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}
.services-note {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 0.85rem;
}
.services-note svg { color: var(--amber); flex-shrink: 0; }

/* --- PROCESS --- */
.process {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}
.process-header { margin-bottom: 64px; }
.process-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 48px 0 0;
  position: relative;
}
.step:not(:first-child) { padding-left: 48px; border-left: none; }
.step:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--green-deep);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-bottom: 16px;
}
.step-connector--last { background: transparent; }
.step-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.process-timer {
  display: flex;
  gap: 32px;
  padding: 28px 36px;
  background: var(--green-deep);
  border-radius: 10px;
  color: var(--sand);
}
.timer-block {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.timer-block svg { color: var(--amber-light); flex-shrink: 0; }

/* --- MANIFESTO --- */
.manifesto {
  background: var(--green-deep);
  padding: var(--pad-y) var(--pad-x);
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 24px;
}
blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--sand);
  margin-bottom: 20px;
  font-style: italic;
}
cite {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  font-style: normal;
  letter-spacing: 0.08em;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.m-stat {
  padding: 24px 0;
}
.m-stat:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }
.m-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.m-stat-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.5;
}
.m-divider { display: none; }

/* --- CLOSING --- */
.closing {
  background: var(--bg-alt);
  padding: 80px var(--pad-x);
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

/* --- FOOTER --- */
.footer {
  background: var(--green-deep);
  padding: 64px var(--pad-x) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--sand);
  display: block;
  margin-bottom: 16px;
}
.footer-logo-accent { color: var(--amber); }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
  max-width: 340px;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.footer-contact, .footer-areas {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact-label, .footer-areas-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.4);
  font-family: var(--font-display);
}
.footer-contact-value, .footer-areas-value {
  font-size: 0.95rem;
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 600;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; --pad-y: 64px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; --pad-y: 48px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px var(--pad-x) 64px; min-height: auto; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero-stats { flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step:not(:first-child)::before { display: none; }
  .step { padding-left: 0; }
  .step-number { font-size: 2.5rem; }
  .process-timer { flex-direction: column; gap: 16px; padding: 24px; }
  .manifesto-stats .m-stat { padding: 16px 0; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat-divider { width: 60px; height: 1px; }
}