:root {
  --ink: #161815;
  --muted: #5d655c;
  --paper: #fbfaf4;
  --surface: #ffffff;
  --line: #dfe3d8;
  --safety: #f3b11b;
  --safety-dark: #a46506;
  --steel: #2d5a5c;
  --forest: #273d31;
  --clay: #b75b35;
  --shadow: 0 18px 50px rgba(22, 24, 21, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(22, 24, 21, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: var(--safety);
  color: #17140b;
  font-size: 0.88rem;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--safety);
}

.header-cta {
  min-width: 126px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 18, 15, 0.92) 0%, rgba(14, 18, 15, 0.74) 36%, rgba(14, 18, 15, 0.18) 78%),
    linear-gradient(0deg, rgba(14, 18, 15, 0.54), rgba(14, 18, 15, 0.14));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 78px);
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--safety);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--safety);
  color: #17140b;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 18px;
  background: rgba(14, 18, 15, 0.62);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.promise-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, auto);
  gap: 18px;
  align-items: center;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--safety);
  color: #17140b;
  font-weight: 850;
}

.promise-strip strong {
  font-size: clamp(1.22rem, 2.2vw, 1.85rem);
  line-height: 1.05;
}

.promise-strip span {
  padding-left: 18px;
  border-left: 1px solid rgba(23, 20, 11, 0.26);
  font-size: 0.95rem;
}

.section,
.split-section,
.contact-section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 34px;
  margin: 0 auto 36px;
  align-items: end;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.rental-grid,
.process-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.rental-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rental-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(22, 24, 21, 0.05);
}

.rental-card img {
  width: 100%;
  max-height: 260px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.rental-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.rental-category {
  margin: 0;
  color: var(--safety-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rental-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-list span {
  display: grid;
  gap: 2px;
  padding: 14px;
  background: #f1f0e8;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
}

.price-list small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rental-button {
  width: 100%;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: var(--forest);
  color: #ffffff;
}

.split-section > div:first-child {
  max-width: 560px;
}

.split-section p:not(.eyebrow),
.service-list span {
  color: rgba(255, 255, 255, 0.74);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-list strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.process-section {
  background: #f1f0e8;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  min-height: 218px;
  padding: 28px;
  border-left: 4px solid var(--safety);
  background: var(--surface);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--safety-dark);
  font-weight: 850;
}

.process-grid p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(34px, 6vw, 92px);
  background: var(--ink);
  color: #ffffff;
}

.contact-copy {
  max-width: 560px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-options a,
.contact-options span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #f7f7f1;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--steel);
  outline: 3px solid rgba(45, 90, 92, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0f110e;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 80px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    background: rgba(22, 24, 21, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-content {
    margin-inline: 18px;
  }

  .section-heading,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .promise-strip {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 18, 15, 0.94), rgba(14, 18, 15, 0.7)),
      linear-gradient(0deg, rgba(14, 18, 15, 0.72), rgba(14, 18, 15, 0.15));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .hero-stats,
  .rental-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 14px 16px;
  }

  .promise-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promise-strip span {
    padding-left: 0;
    border-left: 0;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .rental-card img {
    max-height: 220px;
  }

  .site-footer {
    flex-direction: column;
  }
}
