@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --charcoal: #1C2B39;
  --charcoal-soft: #2A3D4E;
  --terracotta: #B84B28;
  --terracotta-dark: #8E3A1F;
  --tan: #E9DFCC;
  --tan-deep: #DACBAC;
  --slate: #5C6B78;
  --line: #DCD4C4;

  --display: 'Fraunces', serif;
  --body: 'Work Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
p { margin: 0; }
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
}

/* ---------- Route line (signature element) ---------- */
.route-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 64px 0;
}
.route-line .pt {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.route-line .seg {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
  background-size: 12px 1px;
  background-repeat: repeat-x;
}
.route-line .label { white-space: nowrap; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.footer-grid .brand-icon {
  width: 28px;
  height: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links.open {
  display: flex;
}
.nav-links a {
  color: var(--charcoal-soft);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
}
.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--terracotta-dark); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta-dark); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); }

/* ---------- Hero (split layout) ---------- */
.hero {
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 44px;
  margin: 18px 0 20px;
  letter-spacing: -0.01em;
}
.hero p.lead {
  font-size: 17px;
  color: var(--slate);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.hero-stats .stat-num {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--terracotta-dark);
  font-weight: 500;
}
.hero-stats .stat-label {
  font-size: 12px;
  color: var(--slate);
  margin-top: 4px;
}
.hero-visual {
  background: var(--tan);
  border-radius: 10px;
  min-height: 420px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-visual .tag {
  align-self: flex-start;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--charcoal-soft);
}
.hero-visual .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.hero-visual .icon-wrap i {
  font-size: 108px;
  color: var(--terracotta-dark);
  opacity: 0.85;
}
.hero-visual .route-card {
  background: var(--white);
  border-radius: 8px;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--charcoal-soft);
  display: flex;
  justify-content: space-between;
}

/* ---------- Sections ---------- */
section { padding: 20px 0; }
.section-head { max-width: 560px; margin-bottom: 44px; }
.section-head h2 { font-size: 32px; margin-top: 14px; }
.section-head p { color: var(--slate); margin-top: 14px; font-size: 15px; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
}
.card i.icon {
  font-size: 26px;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.card h3 { font-size: 17px; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--slate); }

.dark-band {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 12px;
  padding: 56px 48px;
  margin: 20px 0;
}
.dark-band .eyebrow { color: var(--tan-deep); }
.dark-band .eyebrow::before { background: var(--tan-deep); }
.dark-band h2 { color: var(--white); font-size: 30px; margin: 14px 0 16px; }
.dark-band p { color: #C9D2D9; max-width: 520px; font-size: 15px; }

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.values-list .value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.values-list i {
  color: var(--terracotta);
  font-size: 18px;
  margin-top: 3px;
}
.values-list h4 { font-size: 15px; margin-bottom: 4px; }
.values-list p { font-size: 13px; color: var(--slate); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--tan);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0 0;
}
.cta-banner h2 { font-size: 26px; max-width: 420px; }
.cta-banner .actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid .brand { margin-bottom: 12px; }
.footer-grid p.desc { color: var(--slate); font-size: 13px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: var(--slate);
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--charcoal-soft);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--terracotta-dark); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate);
  font-family: var(--mono);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 56px 0 24px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: 38px; max-width: 640px; }
.page-hero p.lead { color: var(--slate); font-size: 16px; max-width: 560px; margin-top: 16px; }

/* ---------- Services page ---------- */
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row i { font-size: 26px; color: var(--terracotta); }
.service-row h3 { font-size: 19px; margin-bottom: 8px; }
.service-row p { font-size: 14px; color: var(--slate); max-width: 480px; }
.service-row .tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.service-row .tag-list span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--charcoal-soft);
  background: var(--tan);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-split .visual-block {
  background: var(--tan);
  border-radius: 10px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-split .visual-block i { font-size: 96px; color: var(--terracotta-dark); opacity: 0.85; }
.about-split p { color: var(--slate); font-size: 15px; margin-bottom: 16px; }

.timeline {
  margin-top: 20px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-item .yr {
  font-family: var(--mono);
  color: var(--terracotta-dark);
  font-size: 14px;
}
.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--slate); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
}
.contact-info-card .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-info-card .row:first-child { border-top: none; padding-top: 0; }
.contact-info-card i { color: var(--terracotta); font-size: 18px; margin-top: 2px; }
.contact-info-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: var(--charcoal); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
}
.form-card h3 { font-size: 20px; margin-bottom: 6px; }
.form-card p.note { color: var(--slate); font-size: 13px; margin-bottom: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  font-family: var(--body);
  font-size: 14px;
  color: var(--charcoal);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
textarea { resize: vertical; min-height: 90px; }
.form-card .btn { margin-top: 20px; width: 100%; justify-content: center; }

.map-note {
  margin-top: 24px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 20px;
  font-size: 13px;
  color: var(--slate);
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ---------- Pill / state lists ---------- */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pill-list span {
  font-size: 13px;
  color: var(--charcoal-soft);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
}
.state-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.state-strip span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--charcoal-soft);
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex: 1;
  text-align: center;
  min-width: 110px;
}
.state-strip span.hq {
  background: var(--terracotta);
  color: var(--white);
  font-weight: 500;
}

/* ---------- Fleet cards ---------- */
.fleet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.fleet-card .visual {
  background: var(--tan);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-card .visual i { font-size: 56px; color: var(--terracotta-dark); }
.fleet-card .body { padding: 22px; }
.fleet-card h3 { font-size: 17px; margin-bottom: 8px; }
.fleet-card p { font-size: 13px; color: var(--slate); margin-bottom: 12px; }
.fleet-card .specs { display: flex; gap: 8px; flex-wrap: wrap; }
.fleet-card .specs span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--terracotta-dark);
  background: var(--tan);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ---------- Checklist (quote form helper) ---------- */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 18px;
}
.checklist .item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--slate);
}
.checklist .item i { color: var(--terracotta); font-size: 15px; margin-top: 2px; }

/* ---------- Photo hero ---------- */
.photo-hero {
  position: relative;
  min-height: 560px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,17,13,0.88) 0%, rgba(20,17,13,0.35) 55%, rgba(20,17,13,0.1) 100%);
}
.photo-hero-content {
  position: relative;
  padding: 48px;
  max-width: 640px;
}
.photo-hero .eyebrow { color: var(--tan-deep); }
.photo-hero .eyebrow::before { background: var(--tan-deep); }
.photo-hero h1 { color: var(--white); }
.photo-hero p.lead { color: #E4DFD5; }
.photo-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.photo-hero-stats .stat-num { font-family: var(--mono); font-size: 19px; color: var(--tan-deep); font-weight: 500; }
.photo-hero-stats .stat-label { font-size: 12px; color: #C9C2B4; margin-top: 4px; }

/* ---------- Fleet photo cards ---------- */
.fleet-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-photo-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.fleet-photo-card .photo {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.fleet-photo-card .photo .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20,17,13,0.75);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 4px;
}
.fleet-photo-card .body { padding: 20px; }
.fleet-photo-card h3 { font-size: 16px; margin-bottom: 6px; }
.fleet-photo-card p { font-size: 13px; color: var(--slate); margin-bottom: 12px; }
.fleet-photo-card .specs { display: flex; gap: 6px; flex-wrap: wrap; }
.fleet-photo-card .specs span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--terracotta-dark);
  background: var(--tan);
  padding: 4px 9px;
  border-radius: 4px;
}

/* ---------- Photo band (asymmetric two-up) ---------- */
.photo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.photo-band .photo-tile {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  position: relative;
}
.photo-band .text-tile {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-band .text-tile .eyebrow { color: var(--tan-deep); }
.photo-band .text-tile .eyebrow::before { background: var(--tan-deep); }
.photo-band .text-tile h2 { color: var(--white); font-size: 26px; margin: 14px 0 14px; }
.photo-band .text-tile p { color: #C9D2D9; font-size: 14px; }

/* ---------- Service photo strip ---------- */
.service-photo-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.service-photo-row:last-child { border-bottom: 1px solid var(--line); }
.service-photo-row .thumb {
  height: 130px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-photo-row h3 { font-size: 18px; margin-bottom: 8px; }
.service-photo-row p { font-size: 14px; color: var(--slate); max-width: 480px; margin-bottom: 10px; }

/* ---------- Photo logo badge ---------- */
.photo-badge-mark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 5px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  z-index: 2;
}
.photo-badge-mark svg { width: 100%; height: 100%; display: block; }
.photo-badge-mark.small { width: 26px; height: 26px; padding: 4px; bottom: 8px; right: 8px; }
.photo-badge-mark.top-right { bottom: auto; top: 16px; right: 16px; width: 46px; height: 46px; padding: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 32px 20px;
  }
  .nav-links.open a { padding: 10px 0; width: 100%; }
  .menu-toggle { display: block; }
  .hero-grid, .about-split, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .grid-3, .grid-2, .values-list, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .service-row { grid-template-columns: 1fr; }
  .dark-band { padding: 36px 24px; }
  .checklist { grid-template-columns: 1fr; }
  .state-strip span { min-width: 90px; }
  .photo-hero { min-height: 420px; }
  .photo-hero-content { padding: 28px; }
  .photo-hero h1 { font-size: 28px; }
  .fleet-photo-grid { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr; }
  .photo-band .photo-tile { min-height: 220px; }
  .service-photo-row { grid-template-columns: 1fr; }
  .service-photo-row .thumb { height: 160px; }
}
