:root {
  --bg: #F5F2ED;
  --bg-alt: #EDEAE4;
  --navy: #0F1F38;
  --navy-light: #1A2F4E;
  --copper: #C8640A;
  --copper-light: #D4792A;
  --cream: #FDFBF7;
  --text: #0F1F38;
  --text-muted: #4A5568;
  --text-light: #718096;
  --border: #DDD9D0;
}

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

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

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,100,10,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  max-width: 540px;
  z-index: 1;
}

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

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-badge .sep { color: var(--border); }

/* Truck illustration */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-visual {
  position: relative;
  width: 340px;
  height: 260px;
}

.truck-body {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-55%);
  display: flex;
  align-items: flex-end;
}

.truck-cab {
  width: 70px;
  height: 55px;
  background: var(--navy);
  border-radius: 4px 12px 4px 4px;
  position: relative;
}

.truck-cab::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.truck-bin {
  width: 180px;
  height: 80px;
  background: var(--copper);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bin-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: white;
  line-height: 1.2;
  text-align: center;
}

/* Route lines */
.route-line {
  position: absolute;
  border: 1.5px dashed rgba(15,31,56,0.18);
  border-radius: 2px;
}

.route-1 {
  width: 80px;
  height: 40px;
  border-right: none;
  border-top: none;
  border-bottom: none;
  left: 50px;
  bottom: 100px;
}

.route-2 {
  width: 60px;
  height: 30px;
  border-left: none;
  border-top: none;
  border-bottom: none;
  right: 40px;
  bottom: 100px;
}

.route-3 {
  width: 120px;
  height: 50px;
  border-top: none;
  border-right: none;
  border-bottom: none;
  left: 20px;
  top: 20px;
}

/* Pins */
.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid var(--navy);
}

.pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}

.pin-home { bottom: 90px; left: 30px; }
.pin-office { bottom: 120px; right: 20px; }
.pin-store { top: 40px; left: 60px; }

/* ── SERVICES ────────────────────────────────────── */
.services {
  padding: 100px 64px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

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

.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 56px;
  line-height: 1.15;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}

.service-card {
  padding: 48px 40px;
  background: var(--cream);
  border-right: 1px solid var(--border);
}

.service-card:last-child { border-right: none; }

.service-card--accent {
  background: var(--navy);
  color: white;
}

.service-card--accent .section-label { color: var(--copper-light); }
.service-card--accent h3 { color: white; }
.service-card--accent p { color: rgba(255,255,255,0.72); }
.service-card--accent .service-features li { color: rgba(255,255,255,0.6); }
.service-card--accent .service-features li::before { color: var(--copper-light); }

.service-icon {
  margin-bottom: 24px;
  color: var(--copper);
}

.service-card--accent .service-icon { color: var(--copper-light); }

.service-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}

.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 11px;
}

/* ── NICHES ──────────────────────────────────────── */
.niches {
  padding: 100px 64px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.niches-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.niches-text h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.niches-text > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.niche-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.niche-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  margin-top: 6px;
  flex-shrink: 0;
}

.niche-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.niche-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PHILOSOPHY ─────────────────────────────────── */
.philosophy {
  padding: 100px 64px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.philosophy .section-label { margin-bottom: 48px; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.philosophy-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}

.philosophy-card:last-child { border-right: none; }

.philosophy-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px;
  color: var(--copper);
  opacity: 0.35;
  margin-bottom: 20px;
  line-height: 1;
}

.philosophy-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--copper);
  margin: 0 auto 24px;
}

.closing-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  padding: 40px 64px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-meta p {
  font-size: 12px;
  color: var(--text-light);
}

.footer-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: var(--navy);
  color: white;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.footer-cta:hover { background: var(--copper); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    min-height: auto;
  }

  .hero-right { display: none; }

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

  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

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

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

  .philosophy-card:nth-child(2) { border-right: none; }
  .philosophy-card { border-bottom: 1px solid var(--border); }
  .philosophy-card:nth-last-child(-n+2) { border-bottom: none; }

  .services, .niches, .philosophy, .closing { padding: 72px 32px; }
  footer { padding: 32px; }
}

@media (max-width: 600px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-card { border-right: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}