/* Metroline Moving Co. — operational/dispatch grid aesthetic */

:root {
  --ink: #0d1117;
  --ink-2: #1c2128;
  --ink-soft: #4a5868;
  --paper: #ffffff;
  --paper-2: #f7f5f1;
  --line: #d8d2c4;
  --line-2: #ebe6d8;
  --orange: #ff6a1a;
  --orange-deep: #e6580c;
  --orange-soft: #fff3e9;
  --green: #1a8a4c;
  --display: 'Archivo', -apple-system, system-ui, sans-serif;
  --condensed: 'Archivo Narrow', 'Archivo', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --shadow-md: 0 1px 3px rgba(13,17,23,.05), 0 8px 24px rgba(13,17,23,.06);
  --shadow-lg: 0 2px 6px rgba(13,17,23,.06), 0 14px 40px rgba(13,17,23,.10);
  --radius: 6px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--display);
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  background: var(--paper-2);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Concept banner */
.banner {
  background: var(--ink); color: #f0e6d8;
  font-family: var(--mono); font-size: 12px;
  text-align: center; padding: 9px 16px;
  letter-spacing: 0.02em;
}
.banner strong { color: var(--orange); font-weight: 700; }
.banner a { color: var(--orange); border-bottom: 1px dotted; }

/* Header */
.head {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.head-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
  font-family: var(--display); font-weight: 900;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-text .sub {
  font-family: var(--mono); font-weight: 500;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-soft); margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--display); font-weight: 600;
  font-size: 14px; color: var(--ink-soft);
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--mono) !important;
  background: var(--orange); color: white !important;
  padding: 10px 16px; border-radius: var(--radius);
  font-weight: 700 !important; font-size: 12.5px !important;
  letter-spacing: 0.06em;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); color: white !important; }

@media (max-width: 720px) {
  .head-inner { padding: 14px 20px; }
  .nav a:not(.nav-cta) { display: none; }
  .brand-text .sub { display: none; }
}

/* Hero */
.hero {
  background: var(--paper-2);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,17,23,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,17,23,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  font-family: var(--mono); font-weight: 600;
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(26,138,76,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26,138,76,.18); }
  50% { box-shadow: 0 0 0 7px rgba(26,138,76,.05); }
}
.hero h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 60%, var(--orange-soft) 60%);
  padding: 0 .08em;
}
.hero .lede {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: white !important;
  padding: 18px 28px; border-radius: var(--radius);
  font-family: var(--display); font-weight: 700;
  font-size: 15px;
  border: 0; cursor: pointer;
  transition: background .15s, transform .15s;
  text-decoration: none !important;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); }
.btn-primary .btn-mono {
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.14em; opacity: .7;
  border-right: 1px solid rgba(255,255,255,.2);
  padding-right: 14px;
}
.btn-primary .btn-num {
  font-family: var(--mono); font-weight: 700; font-size: 16px;
  letter-spacing: 0.02em;
}
.btn-secondary {
  font-family: var(--display); font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
  padding: 6px 0;
  transition: color .15s, border-color .15s;
}
.btn-secondary:hover { color: var(--orange); border-color: var(--ink); }

/* Hero stats — dispatch grid */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-child(n+3) { border-bottom: 0; }
.stat-num {
  font-family: var(--display); font-weight: 900;
  font-size: 38px; line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat-num .stat-unit { color: var(--orange); margin-left: 2px; font-size: 28px; }
.stat-label {
  font-family: var(--mono); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.12em;
  color: var(--ink-soft);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 60px; }
  .hero-stats { max-width: 460px; }
}
@media (max-width: 720px) {
  .stat { padding: 22px 18px; }
  .stat-num { font-size: 30px; }
  .btn-primary { width: 100%; justify-content: center; }
  .hero-ctas { width: 100%; }
  .btn-secondary { width: 100%; text-align: center; }
}

/* Trust strip */
.trust {
  background: var(--ink);
  color: #f0e6d8;
  padding: 28px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 13.5px; line-height: 1.4;
}
.trust-item svg { width: 32px; height: 32px; color: var(--orange); flex-shrink: 0; }
.trust-item strong { font-weight: 700; color: white; font-size: 14px; }
.trust-item span { color: rgba(240,230,216,.7); font-size: 12.5px; }
@media (max-width: 920px) { .trust-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust-inner { grid-template-columns: 1fr; gap: 16px; } }

/* Sections common */
section.services, section.pricing, section.process, section.reviews, section.quote {
  padding: 90px 0;
}
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .eyebrow {
  font-family: var(--mono); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--orange);
  display: inline-block; margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.section-head .section-lede {
  margin-top: 18px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 720px) { section.services, section.pricing, section.process, section.reviews, section.quote { padding: 64px 0; } .section-head { margin-bottom: 36px; } }

/* Services dispatch grid */
.services { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc {
  padding: 38px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .2s;
  position: relative;
}
.svc:nth-child(2n) { border-right: 0; }
.svc:nth-child(n+3) { border-bottom: 0; }
.svc:hover { background: var(--paper-2); }
.svc-num {
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 14px;
}
.svc h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 26px; line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.svc p {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 15.5px;
}
.svc-bullets {
  list-style: none; padding: 0; margin: 0 0 24px;
  font-size: 14px;
  border-left: 2px solid var(--orange);
  padding-left: 14px;
}
.svc-bullets li { margin-bottom: 6px; color: var(--ink-soft); }
.svc-bullets strong { color: var(--ink); font-family: var(--mono); font-size: 13.5px; }
.svc-price {
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-soft);
  padding-top: 16px; border-top: 1px dashed var(--line);
}
.svc-price strong { color: var(--ink); font-size: 18px; font-weight: 700; }

@media (max-width: 880px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .svc:last-child { border-bottom: 0 !important; }
}

/* Pricing table */
.pricing { background: var(--paper-2); }
.price-table {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-row {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 15px;
}
.price-row:last-child { border-bottom: 0; }
.price-row > div:nth-child(2),
.price-row > div:nth-child(3) {
  font-family: var(--mono); font-size: 13.5px;
  color: var(--ink-soft);
}
.price-row > div:last-child {
  text-align: right;
  font-family: var(--mono); font-size: 16px;
}
.price-row > div:last-child strong { font-weight: 700; color: var(--orange); }
.price-row.price-head {
  background: var(--ink); color: #f0e6d8;
  font-family: var(--mono); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.14em;
  padding: 14px 28px;
}
.price-row.price-head > div { color: rgba(240,230,216,.85) !important; font-family: var(--mono) !important; }
.price-row:not(.price-head):hover { background: var(--paper-2); }
.price-row > div:first-child { font-weight: 600; color: var(--ink); }
.price-note {
  margin-top: 24px;
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  border-radius: 4px;
}
.price-note strong { color: var(--ink); }
@media (max-width: 880px) {
  .price-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .price-row.price-head { display: none; }
  .price-row > div:nth-child(2)::before { content: 'Crew: '; color: var(--ink-soft); }
  .price-row > div:nth-child(3)::before { content: 'Truck: '; color: var(--ink-soft); }
  .price-row > div:last-child { text-align: left; padding-top: 4px; border-top: 1px dashed var(--line); margin-top: 6px; }
}

/* Process timeline */
.process { background: var(--paper); border-top: 1px solid var(--line); }
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.process-steps li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-steps li:last-child { border-bottom: 0; }
.step-num {
  font-family: var(--display); font-weight: 900;
  font-size: 56px; line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
}
.step-body h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 24px; margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.step-body p { margin: 0 0 10px; color: var(--ink-soft); font-size: 16px; max-width: 640px; }
.step-time {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.1em; color: var(--orange);
  background: var(--orange-soft);
  padding: 4px 10px; border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 720px) {
  .process-steps li { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .step-num { font-size: 36px; }
}

/* Reviews */
.reviews { background: var(--ink); color: #f0e6d8; }
.reviews .section-head h2 { color: white; }
.reviews .section-head .eyebrow { color: var(--orange); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--ink-2);
  border: 1px solid #2a2f37;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
  display: flex; flex-direction: column;
}
.review-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.review p {
  font-size: 15px; line-height: 1.6;
  color: rgba(240,230,216,.92);
  margin: 0 0 22px;
  flex: 1;
}
.review footer {
  border-top: 1px solid #2a2f37;
  padding-top: 16px;
  font-size: 13px;
  color: rgba(240,230,216,.6);
}
.review footer strong { color: white; font-weight: 700; font-size: 14px; }
@media (max-width: 920px) { .review-grid { grid-template-columns: 1fr; } }

/* Quote section */
.quote { background: var(--paper-2); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.quote-pitch h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 12px 0 18px;
  color: var(--ink);
}
.quote-pitch p {
  font-size: 16.5px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.quote-contact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-line {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.contact-line:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-label {
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--orange);
}
.contact-val {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
a.contact-val:hover { color: var(--orange); }

/* Quote form */
.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.quote-form label {
  display: flex; flex-direction: column;
  font-family: var(--mono); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--ink-soft);
  gap: 6px;
}
.quote-form label.full { margin-bottom: 16px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--display); font-weight: 500;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  letter-spacing: -0.005em;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.quote-form textarea { resize: vertical; min-height: 80px; font-family: var(--display); }
.btn-full { width: 100%; justify-content: center; padding: 18px; }
.btn-arrow { font-family: var(--mono); font-size: 18px; }
.form-fine {
  font-size: 12.5px; color: var(--ink-soft);
  text-align: center;
  margin: 14px 0 0;
}
@media (max-width: 920px) {
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 20px; }
}

/* Footer */
.foot {
  background: var(--ink); color: #f0e6d8;
  padding: 50px 0 38px;
  border-top: 4px solid var(--orange);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot-brand {
  display: flex; align-items: center; gap: 16px;
  font-size: 13.5px; line-height: 1.5;
}
.foot-brand strong { color: white; font-family: var(--display); font-weight: 900; font-size: 16px; letter-spacing: 0.04em; }
.foot-brand span { color: rgba(240,230,216,.55); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; }
.foot-meta {
  text-align: right;
  font-size: 13.5px;
  color: rgba(240,230,216,.7);
  display: flex; flex-direction: column; gap: 6px;
}
.foot-meta a { color: var(--orange); border-bottom: 1px dotted; }
.foot-credit { font-size: 12px; color: rgba(240,230,216,.5); margin-top: 8px; }
@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr; }
  .foot-meta { text-align: left; }
}
