:root {
  --nav-height: 72px;
  --ink: #101216;
  --muted: #62666f;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: rgba(16, 18, 22, 0.14);
  --night: #080a0d;
  --green: #39c782;
  --amber: #e7a83a;
  --blue: #6db7ff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(8, 10, 13, 0.18);
  font-family: Inter, ui-sans-serif, 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(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.78), rgba(8, 10, 13, 0));
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links a,
.nav-action {
  opacity: 0.88;
}

.nav-links a:hover,
.nav-action:hover {
  opacity: 1;
}

.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

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

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

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.9) 0%, rgba(8, 10, 13, 0.58) 39%, rgba(8, 10, 13, 0.1) 72%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.92) 0%, rgba(8, 10, 13, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 170px clamp(20px, 5vw, 72px) 150px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: #06100b;
  background: var(--green);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 520px;
}

.hero-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.36);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.intro,
.rentals,
.fleet,
.contact {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.intro-grid p,
.rental-copy p,
.experience-copy p,
.contact p,
.fleet-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.intro-grid p {
  font-size: 1.08rem;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  min-height: 680px;
  background: var(--night);
  color: #fff;
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature-large img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.feature-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.86), rgba(8, 10, 13, 0.05) 55%);
}

.feature-copy {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 66px);
  max-width: 760px;
}

.feature-copy p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.feature-split {
  display: grid;
  align-content: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-split > div {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.stat {
  margin-bottom: 10px;
  color: var(--amber);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

.stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.rentals {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  background: #fff;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #262a31;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(57, 199, 130, 0.16);
}

.rental-photo {
  margin: 0;
}

.rental-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rental-photo figcaption {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fleet {
  background: #ebf0ef;
}

.fleet-head {
  max-width: 980px;
  margin-bottom: 52px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fleet-grid article {
  min-height: 280px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.fleet-grid article:last-child {
  border-right: 0;
}

.number {
  display: block;
  margin-bottom: 52px;
  color: var(--blue);
  font-weight: 950;
}

.experience {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.experience img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.9), rgba(8, 10, 13, 0.1) 58%);
}

.experience-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 104px);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 0.68fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf9;
}

label {
  display: grid;
  gap: 8px;
  color: #333841;
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 18, 22, 0.16);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 760px);
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--night);
  color: #fff;
}

.site-footer img {
  width: 132px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

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

  .nav-links {
    display: none;
  }

  .brand img {
    width: 124px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 190px;
  }

  .hero-strip {
    left: 20px;
    right: 20px;
    justify-content: flex-start;
  }

  .intro-grid,
  .photo-band,
  .rentals,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-large img {
    min-height: 560px;
  }

  .feature-split {
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
  }

  .feature-split > div {
    min-height: 180px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fleet-grid article:last-child {
    border-bottom: 0;
  }
}

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

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split > div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-form {
    padding: 18px;
  }
}

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--green);
  color: #06100b;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
}

/* ── Focus visible ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--green);
  border-color: var(--green);
}

/* ── Header scrolled state ───────────────────────────────────── */
.site-header.scrolled {
  background: rgba(8, 10, 13, 0.96);
  backdrop-filter: blur(18px);
  transition: background 0.2s;
}

/* ── Hamburger button ────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav menu ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .hamburger {
    display: flex;
  }

  #nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 8px 0;
    background: rgba(8, 10, 13, 0.97);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #nav-menu.open .nav-link {
    padding: 14px clamp(18px, 4vw, 56px);
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.88;
  }

  #nav-menu.open .nav-link:hover {
    opacity: 1;
  }
}

/* ── Contact form wrap + success state ───────────────────────── */
.contact-success {
  display: none;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf9;
}

.contact-success h3 {
  margin-bottom: 8px;
}

/* ── reCAPTCHA ───────────────────────────────────────────────── */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.recaptcha-note a {
  color: inherit;
  text-decoration: underline;
}
