* {
  box-sizing: border-box;
}

:root {
  --green: #22a85d;
  --cream: #e8e6df;
  --black: #000000;
  --white: #ffffff;
  --gold: #b08a2e;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Big page titles and buttons keep the heavy style */
h1,
button,
.home-button {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 1.5px;
}

/* Top logo and navigation use a cleaner bold readable font */
.home-logo,
.home-nav a,
.brand,
.nav a {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

a {
  color: inherit;
}

/* ============================= */
/* HOME PAGE */
/* ============================= */

.home-body {
  background: var(--black);
  color: var(--white);
}

.home-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 96px;
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-logo {
  color: var(--white);
  text-decoration: none;
  font-size: 30px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--gold);
  text-shadow:
    1px 1px 0 var(--gold),
    -1px 1px 0 var(--gold),
    1px -1px 0 var(--gold),
    -1px -1px 0 var(--gold);
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 58px;
}

.home-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  -webkit-text-stroke: 0.7px var(--gold);
  text-shadow:
    1px 1px 0 var(--gold),
    -1px 1px 0 var(--gold),
    1px -1px 0 var(--gold),
    -1px -1px 0 var(--gold);
}

.home-hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url("hero-truck.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-shade {
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(0, 0, 0, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 105px 24px 22px;
}

.home-center {
  width: 100%;
  max-width: 1450px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-title {
  margin: 0 0 24px;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.home-title span {
  display: block;
  font-size: clamp(54px, 5.4vw, 94px);
  line-height: 0.88;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.home-intro {
  margin: 0 auto 18px;
  max-width: 950px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.home-list {
  list-style-position: inside;
  padding: 0;
  margin: 0 auto 34px;
  color: var(--white);
  text-align: center;
}

.home-list li {
  margin: 7px 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.home-button {
  width: 300px;
  height: 78px;
  border-radius: 60px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 auto;
}

.home-button:hover {
  filter: brightness(1.08);
}

/* ============================= */
/* SHARED LIGHT PAGE HEADER */
/* ============================= */

.light-body {
  background: var(--cream);
  color: var(--black);
}

.header {
  width: 100%;
  height: 100px;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.header-light {
  position: relative;
  color: var(--black);
  background: var(--cream);
}

.brand {
  text-decoration: none;
  font-size: 30px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 58px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 20px;
}

/* ============================= */
/* CONTACT PAGE */
/* ============================= */

.contact-layout {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--cream);
}

.contact-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 56px 36px;
}

.contact-content {
  width: 100%;
  max-width: 660px;
  margin-top: -20px;
}

.page-heading {
  margin-bottom: 46px;
}

.page-heading h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 0.9;
}

.page-heading p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  width: 100%;
}

.contact-form label,
.contact-form small {
  display: block;
  font-size: 11px;
  font-weight: 700;
}

.contact-form label {
  margin-bottom: 6px;
}

.contact-form small {
  margin-bottom: 5px;
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.field {
  margin-bottom: 12px;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--black);
  border-radius: 20px;
  background: transparent;
  outline: none;
  font-size: 15px;
  padding: 9px 14px;
}

input {
  height: 36px;
}

textarea {
  min-height: 78px;
  resize: vertical;
}

button {
  min-width: 82px;
  height: 44px;
  border-radius: 24px;
  padding: 0 26px;
  font-size: 11px;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.08);
}

.contact-right {
  background-image: url("contact-paperwork.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 100px);
}

/* ============================= */
/* ABOUT PAGE */
/* ============================= */

.about-layout {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--cream);
}

.about-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 42px 56px;
}

.about-content {
  width: 100%;
  max-width: 650px;
  margin-top: -12px;
}

.about-content h1 {
  margin: 0 0 78px;
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 0.9;
}

.about-content p {
  max-width: 610px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.about-right {
  background-image: url("about-truck.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 100px);
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 1100px) {
  .home-header,
  .header {
    padding: 0 38px;
  }

  .home-logo,
  .brand {
    font-size: 24px;
  }

  .home-nav a,
  .nav a {
    font-size: 17px;
  }

  .home-title span {
    font-size: clamp(50px, 7vw, 78px);
  }

  .home-intro,
  .home-list li {
    font-size: 17px;
  }

  .home-list {
    margin-bottom: 95px;
  }

  .contact-layout,
  .about-layout {
    grid-template-columns: 55% 45%;
  }

  .contact-left,
  .about-left {
    padding-left: 34px;
    padding-right: 34px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 820px) {
  .home-header,
  .header {
    height: 82px;
    padding: 0 22px;
  }

  .home-logo,
  .brand {
    font-size: 18px;
    letter-spacing: 0.7px;
  }

  .home-nav,
  .nav {
    gap: 20px;
  }

  .home-nav a,
  .nav a {
    font-size: 14px;
    letter-spacing: 0.6px;
  }

  .home-shade {
    padding-top: 110px;
  }

  .home-title span {
    white-space: normal;
    font-size: 42px;
  }

  .home-intro {
    font-size: 18px;
    line-height: 1.35;
  }

  .home-list li {
    font-size: 18px;
    line-height: 1.35;
  }

  .home-list {
    margin-bottom: 60px;
  }

  .home-button {
    width: 230px;
    height: 72px;
    font-size: 18px;
  }

  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .about-left {
    padding: 48px 24px;
    align-items: flex-start;
  }

  .contact-content,
  .about-content {
    max-width: 100%;
    margin-top: 0;
  }

  .page-heading {
    margin-bottom: 36px;
  }

  .page-heading h1,
  .about-content h1 {
    font-size: 44px;
  }

  .about-content h1 {
    margin-bottom: 36px;
  }

  .name-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-right,
  .about-right {
    min-height: 360px;
  }
}

/* ============================= */
/* SMALL PHONES */
/* ============================= */

@media (max-width: 460px) {
  .home-header,
  .header {
    padding: 0 16px;
  }

  .home-logo,
  .brand {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .home-nav,
  .nav {
    gap: 14px;
  }

  .home-nav a,
  .nav a {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .home-title span {
    font-size: 34px;
  }

  .home-intro {
    font-size: 16px;
    line-height: 1.35;
  }

  .home-list li {
    font-size: 16px;
    line-height: 1.35;
  }

  .page-heading p,
  .about-content p {
    font-size: 12px;
  }
  
  .about-content p {
   font-size: 16px;
   line-height: 1.5;
 }
  
  .home-button {
    width: 200px;
    height: 64px;
    font-size: 16px;
  }

  input {
    height: 38px;
  }

  textarea {
    min-height: 90px;
  }
}
