:root {
  --ink: #05090a;
  --ink-2: #101718;
  --teal: #12c7c2;
  --teal-dark: #078f91;
  --lime: #b8f24a;
  --white: #ffffff;
  --paper: #f7fbfa;
  --muted: #657172;
  --line: #d8e4e2;
  --shadow: 0 22px 54px rgba(5, 9, 10, 0.18);
  --max: 1180px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --radius: 0.375rem;
  --fast: 180ms ease;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 40;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 0.7rem var(--gutter);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(18, 199, 194, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  background: var(--white);
  text-decoration: none;
}

.brand img {
  width: clamp(11.25rem, 23vw, 17.25rem);
  height: auto;
}

.site-nav,
.header-actions {
  display: none;
}

.menu-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  border: 1px solid rgba(18, 199, 194, 0.48);
  background: transparent;
  color: var(--white);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.menu-button__line {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.site-nav[data-open] {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.1rem;
  padding-top: 0.6rem;
}

.site-nav a {
  min-height: 2.7rem;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--ink);
  padding: 0.82rem 1.25rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform var(--fast), background var(--fast), border-color var(--fast), color var(--fast);
}

.button::after {
  content: "->";
}

.button:hover {
  transform: translateY(-1px);
  background: var(--lime);
  border-color: var(--lime);
}

.button--outline {
  background: transparent;
  border-color: var(--lime);
  color: var(--lime);
}

.button--outline:hover {
  background: var(--lime);
  color: var(--ink);
}

.button--dark {
  width: 100%;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button--small {
  min-height: 2.65rem;
  padding-inline: 1rem;
}

.phone-link {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 4.4rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 9, 10, 0.98) 0%, rgba(5, 9, 10, 0.88) 32%, rgba(5, 9, 10, 0.28) 64%, rgba(5, 9, 10, 0.12) 100%),
    image-set(
      url("/images/hero-truck-1680.webp") type("image/webp"),
      url("/images/hero-truck-fallback.jpg") type("image/jpeg")
    ) 66% center / cover no-repeat,
    var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 4.4rem);
  display: grid;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(7rem, 12vw, 10rem);
}

.hero__copy {
  display: grid;
  gap: 1.35rem;
  max-width: 39rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.25rem);
}

h1 span {
  display: block;
  color: var(--teal);
}

h2 {
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.03rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero__actions,
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__proof {
  gap: 1.1rem;
  padding-top: 0.45rem;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero__proof svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selector {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: -4rem auto 0;
  padding: 0 var(--gutter);
}

.selector h2 {
  display: grid;
  place-items: center;
  min-height: 4.1rem;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  box-shadow: var(--shadow);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.05;
  text-align: center;
}

.selector__grid {
  display: grid;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.selector-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.7rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  text-decoration: none;
  transition: background var(--fast), color var(--fast);
}

.selector-card:hover {
  background: rgba(18, 199, 194, 0.2);
  color: var(--teal);
}

.selector-card span {
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.05;
}

.selector-card > svg:last-child,
.icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selector-card > svg:last-child {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--teal);
  stroke-width: 1.8;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--white);
}

.section__title {
  display: grid;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.section__title h2 {
  color: var(--ink);
}

.section__title h2::first-letter,
.why h2::first-letter {
  color: var(--teal);
}

.section__title p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5, 9, 10, 0.08);
}

.service-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8f4f2;
}

.service-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 199, 194, 0.28), transparent 48%);
  mix-blend-mode: color;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
}

.service-card .icon {
  width: 3rem;
  height: 3rem;
  margin-top: -2.8rem;
  padding: 0.55rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(18, 199, 194, 0.28);
}

.service-card p,
.value-grid p,
.process-step p,
.service-area p,
.quote-panel p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card a {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.service-card a::after {
  content: " ->";
}

.why {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 199, 194, 0.16), transparent 24rem),
    var(--ink);
  color: var(--white);
}

.section__title--dark h2 {
  color: var(--white);
}

.value-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.value-grid article {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.value-grid .icon {
  margin: 0 auto;
  width: 3rem;
  height: 3rem;
}

.value-grid article:nth-child(5n) .icon {
  color: var(--lime);
}

.value-grid h3 {
  color: var(--white);
}

.value-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.process-step {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.process-step span {
  place-self: center;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--teal);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 950;
}

.area-quote {
  display: grid;
  background: var(--ink);
  color: var(--white);
}

.service-area,
.quote-panel {
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter);
}

.service-area {
  display: grid;
  gap: 1.2rem;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(18, 199, 194, 0.18), transparent 32rem),
    var(--ink);
}

.service-area h2,
.quote-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.service-area p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
}

.service-area ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0.25rem 0 0.75rem;
  list-style: none;
}

.service-area li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 850;
}

.service-area li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: radial-gradient(circle, var(--teal) 0 32%, transparent 35%);
}

.quote-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 26rem),
    linear-gradient(135deg, var(--teal), #08aaa9);
  color: var(--ink);
}

.quote-panel form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.field-grid {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.32rem;
  color: rgba(5, 9, 10, 0.8);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(5, 9, 10, 0.14);
  border-radius: 0.25rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.78rem;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 1.4rem;
  color: rgba(5, 9, 10, 0.78);
  font-weight: 800;
}

/* Colour is a reinforcement, never the only signal: the message text itself
   states the outcome, so this still reads correctly without colour vision. */
.form-note[data-state="success"] {
  color: #0a6b52;
}

.form-note[data-state="error"] {
  color: #a3231b;
}

.form-note[data-state="pending"] {
  color: rgba(5, 9, 10, 0.6);
}

button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* Honeypot. Moved off-screen rather than display:none — some bots skip fields
   that are display:none, and a genuine screen reader never reaches it because
   the wrapper is aria-hidden and the input is removed from the tab order. */
.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3rem var(--gutter) 1.4rem;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(18, 199, 194, 0.3);
}

.site-footer > * {
  max-width: var(--max);
}

.site-footer .brand img {
  width: clamp(10rem, 20vw, 14rem);
}

.site-footer address,
.site-footer nav {
  display: grid;
  gap: 0.45rem;
  font-style: normal;
}

.site-footer strong {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.copyright {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.55rem);
  }

  .site-nav a {
    min-height: auto;
    border-top: 0;
    font-size: 0.72rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .selector__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .selector-card {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .selector-card:first-child {
    border-left: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .value-grid article {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .value-grid article:last-child {
    border-right: 0;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .field-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }

  .copyright {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .area-quote {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 10rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 9, 10, 0.96), rgba(5, 9, 10, 0.72)),
      image-set(
        url("/images/hero-truck-720.webp") type("image/webp"),
        url("/images/hero-truck-fallback.jpg") type("image/jpeg")
      ) center bottom / cover no-repeat,
      var(--ink);
  }

  .hero__actions .button {
    flex: 1 1 10rem;
  }

  .selector {
    margin-top: 0;
    padding-inline: 0;
  }

  .selector h2,
  .selector__grid {
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
}

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