:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #5b6670;
  --paper: #fff8df;
  --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: #f5f1e6;
}

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

.hero-scene {
  position: relative;
  min-height: min(680px, calc(100svh - 44px));
  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 h1 {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 7px 10px;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.intro {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.58;
}

.intro p {
  margin: 0;
}

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

.button,
.contact-button {
  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;
}

.contact-button {
  color: var(--ink);
  background: transparent;
}

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

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

.live-qr {
  position: absolute;
  left: 47.1%;
  top: 35.1%;
  width: clamp(58px, 6.8vw, 86px);
  height: auto;
  padding: 4px;
  background: var(--white);
  image-rendering: pixelated;
  transform: translate(-50%, -50%);
}

@media (max-width: 820px) {
  .site-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 0 32px;
  }

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

  .live-qr {
    left: 47%;
    top: 35.2%;
    width: clamp(56px, 15vw, 76px);
  }
}
