:root {
  --ink: #121212;
  --muted: #5d5d5d;
  --black: #050505;
  --charcoal: #1d1d1d;
  --orange: #ff7a00;
  --orange-2: #ff9f1a;
  --red: #d91f10;
  --cream: #fff8ef;
  --paper: #ffffff;
  --line: #ead8c7;
  --shadow: 0 22px 60px rgba(20, 12, 5, 0.16);
  --display: Oswald, Impact, "Arial Narrow", sans-serif;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid var(--orange);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 22vw, 220px);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav .nav-button {
  padding: 8px 12px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 8px;
}

.site-nav .nav-button:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #b9150a, #ff8f16);
}

.hero {
  min-height: calc(92vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(32px, 5vw, 54px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 43%, rgba(0, 0, 0, 0.24) 76%),
    url("./assets/forklift-training-hero.png") center right / cover;
  color: #ffffff;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7.2vw, 5.35rem);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.tagline {
  margin: 16px 0 0;
  color: var(--orange-2);
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-text {
  max-width: 610px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 26px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border: 2px solid #ffb045;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(217, 31, 16, 0.26);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 44%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 35%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.16) 65%,
    transparent 100%
  );
  transform: skewX(-22deg);
  animation: button-shine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.button:hover {
  background: linear-gradient(90deg, #b9150a, #ff8f16);
}

@keyframes button-shine {
  0%,
  28% {
    left: -70%;
  }

  58%,
  100% {
    left: 130%;
  }
}

.phone-link {
  color: #ffffff;
  font-weight: 800;
}

.section-pad {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 80px);
  background: var(--paper);
}

h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-style: italic;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 18px 0 10px;
  color: var(--black);
  font-family: var(--display);
  font-size: 1.24rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.intro p:last-child {
  margin: 0;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.services {
  background: #fff1e3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(20, 12, 5, 0.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--black);
  border-radius: 8px;
  border-bottom: 4px solid var(--orange);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}

.equipment-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--black), #2a0b05 60%, var(--red));
  border-radius: 8px;
}

.equipment-band span {
  padding: 8px 12px;
  color: var(--black);
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checks span,
.pill-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 13px 16px;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  color: var(--charcoal);
  font-weight: 700;
}

.checks span::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--red);
  border-radius: 50%;
}

.perfect {
  background: #ffffff;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.instructor {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.94), rgba(92, 16, 7, 0.92)),
    var(--black);
}

.instructor-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.instructor h2,
.instructor h3 {
  color: #ffffff;
}

.instructor p {
  color: rgba(255, 255, 255, 0.82);
}

.instructor-role {
  margin: 10px 0 20px;
  color: var(--orange-2) !important;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.instructor-intro p:last-child {
  margin-bottom: 0;
}

.qualifications {
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.qualifications h3 {
  margin-top: 0;
  color: var(--black);
}

.qualifications ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.qualifications li {
  position: relative;
  padding-left: 30px;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.35;
}

.qualifications li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 4px;
}

.qualifications li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.36em;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(84, 13, 4, 0.94)),
    var(--black);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.6fr);
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  background: #ffffff;
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
  font-weight: 800;
}

.contact-actions a:not(.button) {
  color: var(--red);
  overflow-wrap: anywhere;
}

.service-area {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.site-footer {
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--black);
  border-top: 4px solid var(--orange);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .intro,
  .instructor-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .checks,
  .pill-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 100%;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10, 28, 19, 0.92), rgba(10, 28, 19, 0.78)),
      url("./assets/forklift-training-hero.png") center / cover;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .checks,
  .pill-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button::after {
    animation: none;
    display: none;
  }
}
