/* ============================================================
   RED HALL LOGISTICS — Design tokens
   ============================================================ */

:root {
  --ink: #14110F;
  --ink-soft: #221E1B;
  --red: #D2222A;
  --red-dark: #9C1116;
  --concrete: #EFEAE1;
  --concrete-deep: #E4DDD0;
  --paper: #FAF8F4;
  --steel: #6E6F6D;
  --steel-light: #A7A6A0;
  --wheat: #C49A2E;
  --white: #FFFFFF;

  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --label: 'Barlow Semi Condensed', sans-serif;

  --max: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 2px;
}

/* ============================================================
   Hazard stripe — signature motif
   ============================================================ */
.hazard-rule {
  height: 10px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--red),
    var(--red) 14px,
    var(--ink) 14px,
    var(--ink) 28px
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--red);
  display: inline-block;
}

h1, h2, h3, .display {
  font-family: var(--display);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin: 0.3em 0 0.5em;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-bottom: 0.4em;
}

p { max-width: 62ch; }
p + p { margin-top: 1em; }

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.7em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-soft); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand img { height: 44px; width: auto; }
.brand { display: flex; align-items: center; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--concrete);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: var(--concrete);
}
.header-phone .call-label {
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
}
.header-phone .call-number {
  font-family: var(--label);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--concrete);
  color: var(--concrete);
  padding: 0.4em 0.6em;
  font-family: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media picture {
  display: contents;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,17,15,0.85) 0%, rgba(20,17,15,0.45) 45%, rgba(20,17,15,0.05) 100%);
  mix-blend-mode: multiply;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.15) 0%, rgba(20,17,15,0.55) 55%, rgba(20,17,15,0.94) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
}
.hero-content .eyebrow { color: var(--wheat); }
.hero-content .eyebrow::before { background: var(--wheat); }

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  color: var(--white);
  margin: 0.15em 0 0.35em;
  max-width: 14ch;
}
.hero h1 span { color: var(--red); }

.hero-lede {
  color: var(--concrete);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.4rem;
}
.hero-stats .stat-num {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--wheat);
  line-height: 1;
}
.hero-stats .stat-label {
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 0.3em;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-dark { background: var(--ink); color: var(--concrete); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-tint { background: var(--concrete); }

.section-head {
  max-width: 60ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   About / overview
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  height: auto;
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(20,17,15,0.18);
}
.about-media .tag {
  position: absolute;
  bottom: -1.1rem;
  left: -1.1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.7em 1.1em;
}
.about-text .lede { margin-bottom: 1.1rem; }

/* ============================================================
   Services
   ============================================================ */
.services-list { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.service-card.reverse .service-media { order: 2; }
.service-card.reverse .service-copy { order: 1; }

.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-index {
  position: absolute;
  top: 0; left: 0;
  background: var(--ink);
  color: var(--wheat);
  font-family: var(--display);
  font-size: 1.1rem;
  padding: 0.5em 0.8em;
  letter-spacing: 0.05em;
}

.service-copy .service-tag {
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.6rem;
  display: block;
}

.spec-row {
  display: flex;
  gap: 1.6rem;
  margin: 1.3rem 0 1.3rem;
  flex-wrap: wrap;
}
.spec {
  border-left: 3px solid var(--red);
  padding-left: 0.8rem;
}
.spec .spec-num {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
}
.spec .spec-label {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================================
   Why choose us
   ============================================================ */
.why-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-media { position: relative; }
.why-media img { width: 100%; filter: grayscale(15%); }
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.why-list li:first-child { padding-top: 0; }
.why-list .mark {
  flex: none;
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}
.why-list .why-copy strong {
  display: block;
  font-family: var(--label);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.why-list .why-copy span {
  color: var(--steel-light);
  font-size: 0.95rem;
}

/* ============================================================
   Coverage — hub & spoke diagram
   ============================================================ */
.coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.coverage-diagram {
  display: flex;
  justify-content: center;
}
.coverage-diagram svg { width: 100%; max-width: 480px; height: auto; }

.region-chip {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  fill: var(--ink);
}
.region-node {
  fill: var(--paper);
  stroke: var(--red);
  stroke-width: 2;
}
.hub-node { fill: var(--red); }
.hub-label {
  font-family: var(--label);
  font-weight: 700;
  fill: var(--white);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.spoke-line { stroke: var(--steel-light); stroke-width: 1.5; stroke-dasharray: 3 4; }

.coverage-note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-left: 4px solid var(--wheat);
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ============================================================
   Quote form
   ============================================================ */
.quote-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(20,17,15,0.12);
}
.quote-side {
  background: var(--ink);
  color: var(--concrete);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-side h3 { color: var(--white); }
.quote-side ul { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.quote-side li { padding-left: 1.4rem; position: relative; font-size: 0.95rem; color: var(--steel-light); }
.quote-side li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px;
  background: var(--red);
}

.quote-form { padding: clamp(2rem, 4vw, 3rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-field.full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: var(--label);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.4em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
  width: 100%;
  border: 2px solid var(--concrete-deep);
  background: var(--paper);
  padding: 0.75em 0.9em;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); outline: none; }
textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 0.8rem; color: var(--steel); margin-top: 0.35em; }

.req { color: var(--red); margin-left: 0.15em; }
.cf-turnstile { margin-bottom: 1.2rem; }
.required-note {
  font-family: var(--label);
  font-size: 0.82rem;
  color: var(--steel);
  margin-bottom: 1rem;
}

.visually-hidden-file {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.file-trigger {
  padding: 0.7em 1.4em;
  font-size: 0.85rem;
}
.file-chip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.file-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--concrete);
  border-left: 3px solid var(--red);
  padding: 0.55em 0.7em 0.55em 0.9em;
  font-family: var(--label);
  font-size: 0.88rem;
}
.file-chip .file-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-chip .file-chip-size {
  color: var(--steel);
  font-size: 0.8rem;
  flex: none;
  margin-left: auto;
  padding-right: 0.6rem;
}
.file-chip-remove {
  flex: none;
  width: 24px; height: 24px;
  border: none;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-chip-remove:hover { background: var(--red); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-card {
  background: var(--white);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 4px solid var(--red);
}
.contact-line { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--concrete-deep); }
.contact-line:last-child { border-bottom: none; }
.contact-line .cl-label {
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  min-width: 90px;
}
.contact-line a { text-decoration: none; color: var(--ink); font-weight: 600; }
.contact-line a:hover { color: var(--red); }

.map-frame { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(35%) contrast(1.05); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--steel-light);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--label);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { text-decoration: none; color: var(--steel-light); font-size: 0.92rem; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.4rem;
  font-size: 0.8rem;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .main-nav, .header-phone { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-header .wrap { height: 66px; }
  .brand img { height: 32px; }
  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--ink);
    border-bottom: 3px solid var(--red);
    padding: 1rem var(--gap) 1.5rem;
  }
  .site-header.nav-open .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .about-grid, .service-card, .service-card.reverse, .why-wrap, .coverage-wrap, .quote-panel, .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-card.reverse .service-media, .service-card.reverse .service-copy { order: initial; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .footer-top { grid-template-columns: 1fr; }
}
