:root {
  --green: #2f7d28;
  --green-2: #5ba832;
  --green-dark: #155118;
  --black: #070909;
  --charcoal: #111515;
  --gray: #6d7472;
  --light: #f5f7f5;
  --white: #ffffff;
  --line: #d9dfda;
  --shadow: 0 18px 50px rgba(0,0,0,.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}

p, input, select, textarea, label, .hero-copy, .service-card p, .notice-card p, .quote-copy p, .values p, .form-note {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 108px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand img {
  width: 230px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .025em;
  font-weight: 500;
}
.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--black);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.language-switcher {
  display: flex;
  border: 1px solid #9ba49e;
  height: 38px;
}
.lang-btn {
  min-width: 46px;
  border: 0;
  border-right: 1px solid #9ba49e;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.lang-btn:last-child { border-right: 0; }
.lang-btn.active,
.lang-btn:hover {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #bfe4fb;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 32%, rgba(255,255,255,.1) 55%, rgba(255,255,255,0) 100%),
    url("assets/hero-truck.jpg");
  background-size: cover;
  background-position: center right;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.18));
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-panel {
  width: min(570px, 100%);
  padding: 44px 36px 44px 0;
}
.status-label,
.eyebrow {
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}
.status-label {
  color: var(--white);
  background: var(--green);
  padding: 8px 12px;
  border-left: 6px solid var(--green-dark);
}
.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-weight: 600;
  max-width: 620px;
}
.hero h1::first-line { color: var(--black); }
.hero-copy {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 540px;
  margin: 0 0 28px;
  color: #1a2220;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; }
.btn-icon { font-size: 20px; line-height: 1; }

.contact-strip {
  background: var(--black);
  color: var(--white);
}
.contact-line {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: .02em;
  text-transform: lowercase;
  white-space: nowrap;
}
.contact-line a { display: inline-flex; align-items: center; gap: 12px; }
.contact-line span[aria-hidden="true"] { color: var(--green-2); }
.separator { color: rgba(255,255,255,.7) !important; }

.notice-section {
  background: var(--white);
  padding: 48px 0 22px;
}
.notice-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, .9fr);
  gap: 40px;
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--green);
  background: var(--light);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.notice-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 600;
}
.notice-card p:not(.eyebrow) {
  margin: 0;
  align-self: center;
  color: #2b3331;
  font-size: 18px;
}

.services {
  padding: 58px 0 70px;
  background: #fbfcfb;
}
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 1.06;
  font-weight: 600;
}
.section-heading h2 strong { color: var(--green); font-weight: 900; }
.section-heading::after {
  content: "";
  width: 110px;
  height: 4px;
  display: block;
  background: var(--green);
  margin: 18px auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  min-height: 246px;
  padding: 26px 18px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  border-radius: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(0,0,0,.12);
  border-color: var(--green-2);
}
.icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  color: var(--green);
}
.icon svg { width: 100%; height: 100%; fill: currentColor; }
.service-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05;
}
.service-card p {
  margin: 0;
  color: #36403d;
  font-size: 15px;
}

.values {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 46px 0;
}
.values::after {
  content: "♻";
  position: absolute;
  right: 5%;
  top: -72px;
  font-size: 220px;
  opacity: .08;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.values article {
  padding: 14px 34px;
  border-right: 1px solid rgba(255,255,255,.34);
}
.values article:last-child { border-right: 0; }
.value-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.8);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 30px;
  margin-bottom: 16px;
}
.values h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 26px;
}
.values p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}

.quote {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.78)),
    url("assets/hero-truck.jpg") center/cover fixed;
  color: var(--white);
}
.quote-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}
.quote-copy { padding-top: 16px; }
.quote-copy h2 { color: var(--white); }
.quote-copy p {
  font-size: 18px;
  color: rgba(255,255,255,.84);
  max-width: 480px;
}
.quote-direct {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--white);
  font-size: 19px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.quote-direct a { font-weight: 700; }

.quote-form {
  background: var(--white);
  color: var(--charcoal);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 0;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
}
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #c9d0cc;
  background: #fafafa;
  padding: 14px 14px;
  border-radius: 0;
  outline: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47,125,40,.15);
}
textarea { resize: vertical; }
.form-submit { width: 100%; }
.form-note {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 13px;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-wrap img { width: 170px; }
.footer-wrap p {
  margin: 0;
  color: #27302d;
  font-weight: 600;
}
.footer-wrap a {
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .nav-wrap { grid-template-columns: 190px 1fr; min-height: auto; padding: 18px 0; }
  .brand img { width: 185px; }
  .language-switcher { grid-column: 2; justify-self: end; }
  .main-nav { grid-column: 1 / -1; order: 3; justify-content: flex-start; flex-wrap: wrap; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { grid-template-columns: 1fr; gap: 12px; }
  .brand img { width: 210px; }
  .main-nav { display: none; }
  .language-switcher { grid-column: auto; justify-self: start; }
  .hero { min-height: auto; }
  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
      url("assets/hero-truck.jpg");
    background-position: 70% center;
  }
  .hero-content { min-height: 560px; }
  .hero-panel { padding: 38px 0; }
  .contact-line {
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    gap: 8px;
    white-space: normal;
    font-size: 24px;
  }
  .separator { display: none; }
  .notice-card,
  .quote-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .values article:nth-child(2) { border-right: 0; }
  .footer-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .notice-card, .quote-form { padding: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .values article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); padding-inline: 0; }
  .values article:last-child { border-bottom: 0; }
  .contact-line { align-items: flex-start; }
}

/* Typography update requested: cleaner Helvetica-style titles and navigation */
h1, h2, h3, .main-nav, .btn, .lang-btn, .status-label, .eyebrow, .contact-line, .footer-wrap a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.015em;
}
.main-nav, .btn, .lang-btn, .footer-wrap a {
  font-weight: 500;
}
.section-heading h2 strong { font-weight: 600; }
.brand img { object-fit: contain; }
.footer-wrap img { object-fit: contain; }

/* Functional quote form */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}
.form-status.success { color: #23751f; }
.form-status.error { color: #b42318; }
.form-status.loading { color: #52615a; }
.form-submit:disabled {
  opacity: .72;
  cursor: wait;
}

/* PHP form response page */
.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #f7f8f7, #ffffff);
}
.response-card {
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px;
  text-align: center;
}
.response-card img {
  width: min(260px, 80%);
  height: auto;
  margin-bottom: 22px;
}
.response-card h1 {
  margin: 0 0 14px;
  color: var(--charcoal);
}
.response-card .btn {
  margin-top: 20px;
}
