/* ============================================
   Noah's Haul Away — Design System
   ============================================ */

:root {
  --bg: #0e0e0e;
  --fg: #ffffff;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --muted: #9ca3af;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --cream: #f5f0e8;
  --cream-fg: #1a1a1a;
  --cream-muted: #6b6560;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.site-nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* ── Hero ── */
.hero {
  padding: 100px 40px 80px;
  background: var(--bg);
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.stat { display: flex; flex-direction: column; gap: 4px; padding: 0 36px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-val {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); margin: 0 36px 0 0; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--fg); }
.btn-lg { padding: 20px 40px; font-size: 18px; }

/* ── Sections ── */
.section {
  padding: 80px 40px;
}
.section-alt {
  background: var(--surface);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.service-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Service Areas ── */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.county-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.county-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.county-info {}
.county-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.county-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--accent);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0 12px 0 8px;
}
.pricing-tier {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-name {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-price {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Contact / CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 80px 40px;
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.85; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--accent-dark);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── Docs Section ── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doc-icon {
  font-size: 32px;
  display: block;
}
.doc-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.doc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.doc-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-steps li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.step-num {
  background: var(--accent);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Footer ── */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 50px; }
  .hero-headline { font-size: clamp(40px, 12vw, 72px); }
  .hero-stats { gap: 0; }
  .stat { padding: 0 20px 0 0; }
  .stat-val { font-size: 32px; }
  .stat-divider { margin: 0 20px 0 0; }
  .section { padding: 60px 20px; }
  .btn-lg { padding: 16px 28px; font-size: 16px; }
  .cta-phone { font-size: 28px; }
  .cta-section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
}

/* ── Utility ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Phone badge animation ── */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.phone-icon-wrap {
  position: relative;
  display: inline-flex;
}
.phone-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse-ring 2s ease-out infinite;
}