:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #5b616b;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dfe3dc;
  --teal: #007f73;
  --lime: #c8ef62;
  --coral: #ff6848;
  --cobalt: #2758c7;
  --gold: #e8b534;
  --shadow: 0 18px 48px rgba(17, 20, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem 4vw;
  border-bottom: 1px solid rgba(17, 20, 24, 0.1);
  background: rgba(247, 248, 245, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

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

.nav-links {
  gap: 0.45rem;
}

.nav-links a,
.button,
.segment {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0;
}

.nav-links a {
  padding: 0.55rem 0.85rem;
  color: #273039;
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.88), rgba(17, 20, 24, 0.58) 45%, rgba(17, 20, 24, 0.28)),
    url("/assets/hero-showroom.png") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 20, 24, 0), rgba(17, 20, 24, 0.75));
}

.hero-content {
  width: min(860px, 92vw);
  padding: 8rem 4vw 6rem;
  color: var(--white);
}

.eyebrow,
.kicker {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

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

.button {
  gap: 0.5rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.signal-strip div {
  padding: 1.25rem 4vw;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 1.55rem;
}

.signal-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 5rem 4vw;
}

.intro-grid,
.package {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 4rem;
  align-items: start;
}

.intro-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.segmented {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.segment {
  border: 0;
  padding: 0.55rem 0.8rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.segment.active {
  background: var(--ink);
  color: var(--white);
}

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

.show-card,
.step,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 20, 24, 0.06);
}

.show-card {
  overflow: hidden;
}

.show-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d9ded8;
}

.show-card-body {
  padding: 1.25rem;
}

.show-card p {
  color: var(--muted);
}

.show-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 0.4rem;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.process {
  background: #eef2ee;
}

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

.step {
  padding: 1.35rem;
}

.step span {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--coral);
  font-weight: 900;
}

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

.package {
  align-items: center;
}

.package-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.price-panel {
  max-width: 430px;
  margin-left: auto;
  padding: 1.6rem;
  border-color: rgba(0, 127, 115, 0.35);
}

.price-panel span,
.price-panel p {
  color: var(--muted);
}

.price-panel strong {
  display: block;
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1.1;
}

.price-panel hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.2rem 0;
}

.price-panel .button {
  width: 100%;
  margin-top: 1rem;
}

.guardrails {
  background: var(--ink);
  color: var(--white);
}

.guardrails .eyebrow {
  color: var(--gold);
}

.guardrails h2 {
  max-width: 900px;
}

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

.guardrail-grid p {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 4vw;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    flex: 1 1 118px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .signal-strip,
  .intro-grid,
  .package,
  .guardrail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .showroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .price-panel {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 5rem 5vw 3.5rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .signal-strip div,
  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .showroom-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .segmented {
    width: 100%;
    overflow-x: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
