/* QuickDrop — Local Marketplace Theme */

:root {
  --bg: #f5f0e6;
  --bg-alt: #ece7db;
  --fg: #1a2e1c;
  --fg-muted: #4a5c48;
  --accent: #c9842a;
  --accent-dark: #a06a1e;
  --green: #2d5a27;
  --green-light: #3d7a35;
  --cream: #f5f0e6;
  --card-bg: #ffffff;
  --border: #d4cfc3;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

.nav-spacer { flex: 1; }

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
  background: var(--green);
  color: var(--cream);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
}

.hero-geo-1 {
  width: 600px;
  height: 600px;
  right: -200px;
  top: -100px;
  background: radial-gradient(circle, rgba(45,90,39,0.08) 0%, transparent 70%);
}

.hero-geo-2 {
  width: 400px;
  height: 400px;
  right: 100px;
  top: 0;
  background: radial-gradient(circle, rgba(201,132,42,0.06) 0%, transparent 70%);
}

.hero-geo-3 {
  width: 200px;
  height: 200px;
  left: -50px;
  bottom: 0;
  background: radial-gradient(circle, rgba(45,90,39,0.05) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* listing cards */
.listing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(26,46,28,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,46,28,0.10);
}

.listing-card-2 {
  opacity: 0.75;
}

.listing-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 6px;
}

.listing-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.listing-meta {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.listing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.listing-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.badge-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.85); }
}

/* stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 72px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services {
  background: var(--green);
  padding: 100px 0;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.2s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.10);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 15px;
  color: rgba(245,240,230,0.7);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-detail {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ─── HOW ─────────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--cream);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.how .section-heading {
  color: var(--fg);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.step {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ─── SAFETY ──────────────────────────────────────────── */
.safety {
  padding: 100px 0;
  background: var(--bg-alt);
}

.safety-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.safety .section-heading {
  color: var(--fg);
}

.safety-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.safety-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.safety-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-point strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.safety-point p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* safety visual */
.safety-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.safety-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.badge-icon {
  color: var(--green);
}

.badge-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.location-pin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ─── PRICING ───────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--cream);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 480px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row-highlight {
  background: var(--green);
}

.price-row-highlight .price-service,
.price-row-highlight .price-val {
  color: var(--cream);
}

.price-service {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.price-val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green);
  letter-spacing: -0.01em;
}

/* ─── CLOSING ───────────────────────────────────────────── */
.closing {
  padding: 120px 0;
  background: var(--green);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 20px;
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  color: rgba(245,240,230,0.75);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #111a12;
  padding: 72px 0 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 14px;
  color: rgba(245,240,230,0.5);
  line-height: 1.65;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col p {
  font-size: 14px;
  color: rgba(245,240,230,0.5);
  line-height: 1.8;
  cursor: default;
}

.footer-col-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.3) !important;
  margin-bottom: 12px !important;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(245,240,230,0.3);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    gap: 32px;
  }

  .step-arrow {
    display: none;
  }

  .safety-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    gap: 40px;
  }

  .hero-stats {
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .stat {
    padding: 0 16px;
  }

  .stat-num {
    font-size: 28px;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .hero-inner,
  .services-inner,
  .how-inner,
  .safety-inner,
  .pricing-inner,
  .closing-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services,
  .how,
  .safety,
  .pricing,
  .closing {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    padding: 0;
  }

  .nav-tagline {
    display: none;
  }
}