:root {
  --black: #0b0b0b;
  --coal: #151515;
  --ink: #24262a;
  --steel: #3c4651;
  --line: #d9dde1;
  --paper: #f6f7f4;
  --white: #ffffff;
  --amber: #f6c21c;
  --gold: #d99d0b;
  --green: #16825c;
  --shadow: 0 20px 50px rgba(20, 20, 20, 0.14);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0.85rem max(1rem, calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.brand span {
  display: grid;
  line-height: 1.04;
}

.brand strong {
  color: var(--black);
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  min-height: 40px;
  padding: 0.62rem 0.82rem;
  border-radius: 6px;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(246, 194, 28, 0.18);
  color: var(--black);
  outline: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.header-cta {
  padding: 0.72rem 0.95rem;
  background: var(--black);
  color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.3) 100%),
    url("assets/rental-showcase.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 78px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 4.2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: inherit;
  font-family: Arial Black, Impact, Arial, Helvetica, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: 3.9rem;
}

.hero-copy {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.btn {
  border: 2px solid transparent;
  padding: 0.9rem 1.05rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 14px 30px rgba(246, 194, 28, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--amber);
  color: var(--amber);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  max-width: 720px;
  margin: 2rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics div {
  min-width: 150px;
}

.hero-metrics dt {
  color: var(--amber);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  font-weight: 700;
}

.quick-contact {
  background: var(--amber);
  color: var(--black);
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}

.quick-contact-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
}

.quick-contact a,
.quick-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 62px;
  margin: 0;
  padding: 0.8rem 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.94rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quick-contact a:last-child,
.quick-contact p:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: none;
}

.section {
  padding: 4.8rem max(1rem, calc((100vw - var(--content)) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  color: var(--black);
  font-size: 2.35rem;
}

.section-heading p:last-child,
.contact-copy p {
  margin: 1rem 0 0;
  color: var(--steel);
  font-size: 1.03rem;
}

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

.equipment-card,
.service-card {
  min-height: 205px;
  padding: 1.25rem;
  border-radius: var(--radius);
}

.equipment-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(38, 39, 41, 0.08);
}

.equipment-card svg,
.service-card svg,
.project-list svg,
.contact-list svg,
.quick-contact svg,
.btn svg,
.header-cta svg,
.site-footer svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.equipment-card > svg,
.service-card > svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.equipment-card h3,
.service-card h3 {
  margin: 1rem 0 0.42rem;
  color: var(--black);
  font-size: 1.08rem;
  line-height: 1.2;
}

.equipment-card p,
.service-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.96rem;
}

.service-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--coal);
  color: var(--white);
}

.section-heading.light h2,
.section-heading.light p:last-child {
  color: var(--white);
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card h3 {
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.76);
}

.projects-section {
  background: var(--white);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.project-list {
  display: grid;
  gap: 0.75rem;
}

.project-list div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 66px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  background: #fbfbfa;
  color: var(--black);
  font-weight: 850;
}

.project-list svg {
  color: var(--green);
}

.project-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--black);
}

.project-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.project-image figcaption {
  padding: 0.85rem 1rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.flyer-section {
  background: var(--paper);
}

.flyer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.2rem;
  align-items: start;
}

.flyer-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(32, 34, 36, 0.1);
}

.flyer-grid img {
  width: 100%;
  height: auto;
}

.faq-section {
  background: var(--white);
}

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

.faq-card {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbfa;
  box-shadow: 0 12px 32px rgba(38, 39, 41, 0.07);
}

.faq-card h3 {
  margin: 0 0 0.65rem;
  color: var(--black);
  font-size: 1.08rem;
  line-height: 1.25;
}

.faq-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.96rem;
}

.contact-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  padding-top: 0.4rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--black);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbfa;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c6cbd0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 130, 92, 0.14);
  outline: none;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1rem, calc((100vw - var(--content)) / 2));
  background: var(--black);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 0.1rem;
}

.site-footer strong {
  color: var(--amber);
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.site-footer a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  background: var(--amber);
  color: var(--black);
  outline: none;
}

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .quick-contact-inner,
  .equipment-grid,
  .service-grid,
  .project-layout,
  .flyer-grid,
  .faq-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quick-contact a,
  .quick-contact p {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .brand img {
    width: 46px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero-content {
    padding: 2.8rem 0 1.65rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 2.32rem;
  }

  .hero-copy {
    margin-top: 0.85rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.76rem 0.9rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.25rem;
    padding-top: 0.85rem;
  }

  .hero-metrics div {
    min-width: 0;
  }

  .hero-metrics dt {
    font-size: 1.35rem;
  }

  .hero-metrics dd {
    font-size: 0.78rem;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 1.9rem;
  }

  .equipment-card,
  .service-card,
  .faq-card {
    min-height: 158px;
    padding: 1.05rem;
  }

  .project-image img {
    min-height: 0;
  }
}
