:root {
  --orange: #F26A21;
  --orange-dark: #C85012;
  --black: #141412;
  --ink: #26261F;
  --steel: #5F5E5A;
  --paper: #F7F5F0;
  --panel: #EAE6DD;
  --white: #FFFFFF;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --util: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap.narrow { max-width: 720px; }

.skip {
  position: absolute;
  left: -9999px;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Header */

.site-header {
  background: var(--black);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: block; line-height: 0; }

.badge { display: block; height: auto; }

.brand .badge { width: 150px; }

.phone-link {
  text-decoration: none;
  text-align: right;
  line-height: 1.15;
}

.phone-label {
  display: block;
  font-family: var(--util);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.phone-number {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  color: var(--white);
}

/* Hero */

.hero {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 72px;
}

.hero-inner { max-width: 780px; }

.eyebrow {
  font-family: var(--util);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(46px, 10vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.lede {
  font-size: 20px;
  color: #CFCCC4;
  max-width: 56ch;
  margin: 0 0 36px;
}

.cta {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.cta:hover, .cta:focus { background: #FF8038; }

.cta-label {
  display: block;
  font-family: var(--util);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-number {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 6vw, 42px);
  line-height: 1.1;
}

.hero-note a { color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; }

.hero-note {
  font-family: var(--util);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C8A83;
  margin: 22px 0 0;
}

/* Signature stripe */

.stripe {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 22px,
    var(--black) 22px 44px
  );
}

/* Sections */

.section { padding: 72px 0; }

.section-alt { background: var(--panel); }

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h2 { max-width: 24ch; }

.section-dark .cta { margin-top: 12px; }

.section h2 {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 20ch;
}

.section p { max-width: 60ch; }

.lede-dark {
  font-size: 20px;
  color: #CFCCC4;
  margin: 0 0 40px;
}

.small { font-size: 16px; color: var(--steel); }

.inline-link { color: var(--orange-dark); font-weight: 600; }

/* Haul grid */

.haul-grid {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--panel);
  border: 2px solid var(--panel);
}

.haul-grid li {
  background: var(--paper);
  padding: 20px 22px;
  font-weight: 500;
}

/* Can't take */

.cant-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.cant-list li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid #D6D1C6;
  position: relative;
  font-weight: 500;
}

.cant-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 18px;
  height: 3px;
  background: var(--orange);
}

/* Steps */

.steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.steps li { border-top: 4px solid var(--black); padding-top: 18px; }

.step-num {
  font-family: var(--display);
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
}

.steps h3 {
  font-family: var(--display);
  font-size: 21px;
  margin: 12px 0 8px;
}

.steps p { margin: 0; font-size: 17px; }

/* Towns */

.towns {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.towns li {
  background: var(--panel);
  padding: 7px 15px;
  border-radius: 3px;
  font-family: var(--util);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Form */

.quote-form { margin-top: 32px; }

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-family: var(--util);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.field input, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 18px;
  padding: 13px 15px;
  border: 2px solid #C9C4B8;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.field input:focus, .field textarea:focus {
  border-color: var(--black);
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.35);
}

.quote-form button {
  font-family: var(--display);
  font-size: 21px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 17px 38px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.quote-form button:hover { background: var(--orange); color: var(--black); }

.form-note { margin: 16px 0 0; }

/* Footer */

.site-footer {
  background: var(--black);
  color: #CFCCC4;
  padding: 48px 0 96px;
}

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

.footer-contact p { margin: 4px 0; }

.footer-phone {
  font-family: var(--display);
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
}

.footer-phone:hover { color: var(--orange); }

.site-footer .small { color: #8C8A83; }

/* Mobile call bar */

.call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  text-align: center;
  padding: 12px 16px;
  z-index: 50;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.call-bar span {
  display: block;
  font-family: var(--util);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.call-bar strong {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .section { padding: 52px 0; }
  .hero { padding: 44px 0 56px; }
  .phone-link { display: none; }
  .brand .badge { width: 128px; }
  .call-bar { display: block; }
  .site-footer { padding-bottom: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
