/* Heavy Haul Marketing — prototype styles (to be rebuilt in Webflow) */

:root {
  --gold: #E5C94A;
  --black: #111111;
  --orange: #F47920;
  --white: #FFFFFF;
  --paper: #F6F4EE;      /* work-order paper, used sparingly */
  --steel: #1C1C1C;      /* dark painted steel panels */
  --line: #D9D5C8;
  --muted: #5A5A55;

  --display: "Anton", Impact, "Arial Narrow", sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --script: "Caveat", "Segoe Print", cursive;

  --wrap: 1160px;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0;
}
h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.12; }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }

/* The logo's gold block, reused as a highlight behind key words */
.block {
  background: var(--gold);
  padding: 0 .12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.script {
  font-family: var(--script);
  font-weight: 600;
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: .03em;
  text-decoration: none;
  background: var(--orange);
  color: var(--black);
  padding: 16px 28px;
  border: 2px solid var(--black);
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--black); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--black); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-sm { font-size: 1rem; padding: 9px 16px; box-shadow: 3px 3px 0 var(--black); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--black);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
}
.logo img { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  font-weight: 700; text-decoration: none; font-size: .95rem;
  border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover { border-bottom-color: var(--orange); }
.header-phone { display: none; font-weight: 700; text-decoration: none; }

@media (max-width: 760px) {
  .nav a:not(.btn) { display: none; }
  .logo img { height: 46px; }
  .header-phone { display: inline; font-size: .95rem; }
  .nav { gap: 14px; }
}
@media (max-width: 380px) { .header-phone { display: none; } }

/* ---------- Hazard stripe divider ---------- */
.hazard {
  height: 14px;
  background: repeating-linear-gradient(-45deg, var(--black) 0 14px, var(--gold) 14px 28px);
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 72px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 8vw, 5.2rem); line-height: 1.12; }
h1 .block, h2 .block { position: relative; z-index: 0; }
.hero .sub { font-size: 1.15rem; max-width: 36em; margin: 26px 0 32px; color: #2a2a2a; }
.hero-note { margin-top: 18px; font-weight: 700; font-size: .98rem; }
.hero-note span { color: var(--muted); font-weight: 500; }

/* Dispatch-ticket style card in hero */
.ticket {
  background: var(--paper);
  border: 2px solid var(--black);
  padding: 22px 22px 18px;
  font-family: "Courier New", Courier, monospace;
  font-size: .92rem;
  position: relative;
  transform: rotate(1.2deg);
  box-shadow: 8px 8px 0 var(--gold);
}
.ticket-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 2px solid var(--black); padding-bottom: 8px; margin-bottom: 12px;
  font-weight: 700;
}
.ticket-head b { font-family: var(--display); font-weight: 400; font-size: 1.3rem; letter-spacing: .02em; }
.ticket-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed #bdb8a8; }
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row span:last-child { font-weight: 700; text-align: right; }
.ticket .stamp {
  position: absolute; right: 14px; bottom: -22px;
  font-family: var(--script); font-size: 1.9rem; color: var(--orange);
  transform: rotate(-6deg); background: var(--white); padding: 0 8px; border: 2px solid var(--orange);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .hero { padding: 40px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .ticket { transform: none; max-width: 460px; }
}

/* ---------- Problem ---------- */
.problem { background: var(--black); color: var(--white); padding: 72px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.problem h2 { color: var(--white); }
.problem h2 .block { color: var(--black); }
.problem p { font-size: 1.2rem; color: #e6e6e6; }
.problem p strong { color: var(--gold); font-weight: 700; }
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; gap: 20px; } .problem { padding: 56px 0; } }

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head p { font-size: 1.15rem; color: var(--muted); margin-top: 16px; }
@media (max-width: 700px) { .section { padding: 64px 0; } .section-head { margin-bottom: 32px; } }

/* ---------- Services (spec-sheet list) ---------- */
.spec-list { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--black); }
.spec-list li {
  display: grid; grid-template-columns: minmax(200px, 340px) 1fr; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.spec-list li:last-child { border-bottom: 3px solid var(--black); }
.spec-list h3 { font-size: 1.7rem; }
.spec-list p { margin: 0; color: #2a2a2a; }
.spec-list .tag {
  display: inline-block; margin-top: 10px; font-size: .8rem; font-weight: 700;
  background: var(--gold); padding: 2px 8px;
}
@media (max-width: 700px) { .spec-list li { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; } }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }
.plans { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: stretch; }
.plan {
  background: var(--white); border: 3px solid var(--black); border-radius: 2px;
  display: flex; flex-direction: column;
}
.plan-top { padding: 26px 28px 22px; border-bottom: 3px solid var(--black); }
.plan.featured .plan-top { background: var(--gold); }
.plan-label { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-weight: 800; font-size: .95rem; }
.plan-badge { background: var(--black); color: var(--white); font-size: .78rem; padding: 3px 9px; font-weight: 700; white-space: nowrap; }
.plan h3 { font-size: 2rem; margin-top: 6px; }
.price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.price b { font-family: var(--display); font-weight: 400; font-size: 4.2rem; line-height: 1; }
.price span { font-weight: 700; }
.price-alt { font-weight: 700; margin-top: 6px; font-size: 1rem; }
.plan-body { padding: 22px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; }
.plan li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px dashed var(--line); }
.plan li:last-child { border-bottom: 0; }
.plan li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 14px; height: 8px; border-left: 3px solid var(--black); border-bottom: 3px solid var(--black);
  transform: rotate(-45deg);
}
.plan li.no::before { border: 0; content: "✕"; transform: none; top: 9px; left: 3px; font-weight: 800; color: #9b2b1a; width: auto; height: auto; }
.plan li.no { color: var(--muted); }
.plan .fine { font-size: .9rem; color: var(--muted); background: var(--paper); border-left: 4px solid var(--gold); padding: 12px 14px; margin: 0 0 24px; }
.plan .btn { align-self: flex-start; margin-top: auto; }
.plan-alt .btn { background: var(--white); }
.plan-quote { margin-top: 14px; font-weight: 700; font-size: .92rem; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; align-self: flex-start; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } .price b { font-size: 3.6rem; } }

/* ---------- How it works ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 3px solid var(--black); }
.steps li { padding: 30px 28px 34px; border-right: 3px solid var(--black); position: relative; }
.steps li:last-child { border-right: 0; }
.step-num {
  font-family: var(--display); font-size: 4.2rem; line-height: 1; color: var(--black);
  display: inline-block; background: var(--gold); padding: 4px 14px 0; margin-bottom: 18px;
}
.steps h3 { font-size: 1.6rem; margin-bottom: 10px; }
.steps p { margin: 0; color: #2a2a2a; }
.steps li:not(:last-child)::after {
  content: ""; position: absolute; right: -15px; top: 50px; width: 24px; height: 24px;
  background: var(--orange); border: 3px solid var(--black); transform: rotate(45deg); z-index: 2;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
  .steps li { border-right: 0; border-bottom: 3px solid var(--black); }
  .steps li:last-child { border-bottom: 0; }
  .steps li:not(:last-child)::after { right: auto; left: 40px; top: auto; bottom: -15px; }
}

/* ---------- Why (dispatch board) ---------- */
.why { background: var(--steel); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why h2 { color: var(--white); }
.why h2 .block { color: var(--black); }
.why .lead { font-size: 1.25rem; margin-top: 24px; }
.why p { color: #dcdcdc; }
.why .signoff { font-family: var(--script); font-size: 2.2rem; color: var(--orange); margin-top: 8px; line-height: 1.1; }

.board { border: 3px solid var(--gold); background: #0c0c0c; font-family: "Courier New", Courier, monospace; }
.board-head {
  background: var(--gold); color: var(--black); display: flex; justify-content: space-between;
  padding: 10px 16px; font-family: var(--display); font-size: 1.25rem; letter-spacing: .03em;
}
.board-head small { font-family: var(--body); font-size: .8rem; font-weight: 700; align-self: center; }
.board table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.board th { text-align: left; color: var(--gold); font-weight: 700; padding: 10px 16px; border-bottom: 1px solid #333; font-size: .78rem; }
.board td { padding: 9px 16px; border-bottom: 1px solid #262626; color: #eaeaea; vertical-align: top; }
.board tr:last-child td { border-bottom: 0; }
.board td:last-child { color: #a9a9a9; }
.board .dot { display: inline-block; width: 8px; height: 8px; background: var(--orange); margin-right: 8px; vertical-align: middle; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 480px) { .board td, .board th { padding: 8px 10px; } .board table { font-size: .84rem; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 64px; align-items: start; }
.faq-list { border-top: 3px solid var(--black); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 3px solid var(--black); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative;
  font-weight: 800; font-size: 1.15rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; display: grid; place-items: center;
  border: 2px solid var(--black); font-family: var(--display); font-size: 1.4rem; line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; background: var(--gold); }
.faq-list summary:hover { color: #000; text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.faq-list details p { padding: 0 48px 8px 0; color: #2a2a2a; }
.faq-list details p:last-child { padding-bottom: 22px; }
.faq-aside p { color: var(--muted); margin-top: 16px; }
.faq-aside a.phone { font-family: var(--display); font-size: 2rem; text-decoration: none; display: inline-block; margin-top: 4px; border-bottom: 4px solid var(--orange); line-height: 1.2; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Lead form ---------- */
.quote { background: var(--gold); border-top: 3px solid var(--black); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.quote h2 .script { font-size: 1.1em; display: inline-block; margin-top: 8px; color: var(--orange); background: var(--black); padding: 0 .3em; transform: rotate(-2deg); }
.quote-copy p { font-size: 1.15rem; margin-top: 18px; }
.quote-copy .call { font-weight: 700; }
.quote-copy .call a { font-family: var(--display); font-weight: 400; font-size: 1.6rem; text-decoration: none; border-bottom: 3px solid var(--black); }

.lead-form { background: var(--white); border: 3px solid var(--black); padding: 28px; box-shadow: 10px 10px 0 var(--black); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: .95rem; margin-bottom: 6px; }
.field input {
  width: 100%; font: inherit; font-size: 1.05rem; padding: 14px 14px;
  border: 2px solid var(--black); border-radius: 0; background: var(--white); color: var(--black);
  -webkit-appearance: none; appearance: none;
}
.field input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,121,32,.3); }
.lead-form .btn { width: 100%; text-align: center; margin-top: 6px; }
.form-note { font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.form-success { display: none; text-align: left; }
.form-success h3 { font-size: 2rem; margin-bottom: 10px; }
.lead-form.sent form { display: none; }
.lead-form.sent .form-success { display: block; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; gap: 36px; } .lead-form { padding: 22px; box-shadow: 6px 6px 0 var(--black); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #d8d8d8; padding: 56px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-logo { background: var(--white); display: inline-block; padding: 8px 12px; }
.footer-logo img { height: 64px; width: auto; }
.site-footer h4 { font-family: var(--display); font-weight: 400; text-transform: uppercase; color: var(--gold); font-size: 1.15rem; margin: 0 0 12px; letter-spacing: .03em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--orange); }
.site-footer address { font-style: normal; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid #333; font-size: .85rem; color: #9a9a9a; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--gold); border-bottom: 3px solid var(--black); padding: 48px 0 40px; }
.legal-hero h1 { font-size: clamp(2.6rem, 8vw, 4.4rem); }
.legal-hero p { margin: 10px 0 0; font-weight: 700; }
.legal { padding: 56px 0 88px; }
.legal-body { max-width: 740px; }
.legal-body h2 { font-size: 1.7rem; margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal-body li { margin-bottom: 8px; }
.legal-body .contact-block { border-left: 4px solid var(--gold); padding: 6px 0 6px 16px; }
.legal-back { display: inline-block; margin-top: 40px; font-weight: 700; }
