:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #5b6670;
  --paper: #fffdf4;
  --signal: #f7c531;
  --signal-dark: #c84b31;
  --green: #2f6f4e;
  --white: #ffffff;
  --line: rgba(23, 33, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf4 0, #eef3ee 100%);
}

.company-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 244, 0.92);
  padding: 14px clamp(16px, 5vw, 54px);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--signal);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

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

nav a,
.contact-link {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 9px 10px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.site-shell {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 38px;
}

.hero-scene {
  position: relative;
  min-height: min(670px, calc(100svh - 112px));
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 33, 38, 0.02), rgba(23, 33, 38, 0.12)),
    url("/parking-lot-hero.png") center / cover;
  box-shadow: 0 22px 52px rgba(23, 33, 38, 0.18);
}

.hero-scene h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.intro {
  max-width: 560px;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
  line-height: 1.58;
}

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

.intro h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro p {
  margin: 0;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

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

.proof-points-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 11px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
}

.proof-points span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

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

.button,
.contact-link {
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.button {
  color: var(--white);
  background: var(--green);
  text-decoration: none;
}

.nav-button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

.button.secondary {
  color: var(--ink);
  background: var(--signal);
}

.button:focus-visible,
.contact-link:focus-visible,
nav a:focus-visible,
.scene-link:focus-visible {
  outline: 4px solid var(--signal-dark);
  outline-offset: 4px;
}

.scene-link {
  position: absolute;
  inset: 0;
}

@media (max-width: 820px) {
  .company-bar {
    position: static;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .proof-points,
  .proof-points-3,
  .proof-points-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 0 32px;
  }

  .hero-scene {
    min-height: 62svh;
    aspect-ratio: 4 / 5;
  }

}

@media (max-width: 560px) {
  .company-bar {
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .proof-points,
  .proof-points-3,
  .proof-points-4 {
    grid-template-columns: 1fr;
  }
}
