:root {
  --ink: #172023;
  --muted: #607076;
  --line: #d8e0e2;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --steel: #253438;
  --teal: #0f766e;
  --teal-dark: #0d5f59;
  --gold: #c58b2b;
  --clay: #b95f43;
  --shadow: 0 18px 45px rgba(23, 32, 35, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(251, 252, 251, .92);
  border-bottom: 1px solid rgba(216, 224, 226, .8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--steel));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 118, 110, .25);
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: #e8f4f2;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--teal);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--steel);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  background: #0f191b;
}

.banner-hero {
  background: #030b14;
}

.banner-hero a {
  display: block;
}

.banner-hero img {
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 16, 18, .9) 0%, rgba(9, 16, 18, .68) 42%, rgba(9, 16, 18, .16) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(740px, 100%);
  color: #fff;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
  color: #dbe5e6;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(15, 118, 110, .28);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  margin: 40px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 22px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: #dbe5e6;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--steel);
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 54px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading a {
  color: var(--teal-dark);
  font-weight: 800;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.content-card,
.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(23, 32, 35, .06);
}

.service-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.content-card,
.gallery-card div {
  padding: 22px;
}

.service-card p,
.content-card p,
.gallery-card p {
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: 1288px;
  margin: 0 auto;
}

.split > div:first-child p:not(.eyebrow) {
  margin: 18px 0 26px;
  max-width: 620px;
}

.system-list {
  display: grid;
  gap: 12px;
}

.system-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.system-list span {
  color: var(--muted);
  text-align: right;
}

.feature-band {
  color: #fff;
  background: linear-gradient(135deg, var(--steel), #0d2f2c);
}

.feature-band div {
  max-width: 900px;
  margin: 0 auto;
}

.feature-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 26px;
  color: #dbe5e6;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.swatch {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .7) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 35%, rgba(0, 0, 0, .35) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .55) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 80%, rgba(0, 0, 0, .28) 0 2px, transparent 3px);
  background-size: 44px 44px, 52px 52px, 60px 60px, 46px 46px;
}

.swatch span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(23, 32, 35, .78);
  border-radius: 8px;
  font-weight: 800;
}

.graphite { background: linear-gradient(135deg, #1b2428, #737b7d); }
.shoreline { background: linear-gradient(135deg, #d7d2c2, #748c8b); }
.granite { background: linear-gradient(135deg, #2c3034, #d7dce0); }
.copper { background: linear-gradient(135deg, #253438, #b95f43 48%, #d4a34a); }

.quote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 4vw, 54px) clamp(56px, 8vw, 96px);
  padding: clamp(28px, 5vw, 46px);
  color: #fff;
  background: var(--steel);
  border-radius: 8px;
}

.quote-section p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 12px;
  color: #dbe5e6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: #dbe5e6;
  background: #11191b;
}

.site-footer p {
  margin-top: 6px;
  color: #aebcbf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.page-hero {
  padding: clamp(60px, 9vw, 118px) clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, rgba(23, 32, 35, .96), rgba(15, 118, 110, .84)), url("assets/garage-flake.png") center/cover;
}

.page-hero > div {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 18px;
  color: #e6eeee;
  font-size: 20px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 13px;
  height: 13px;
  background: var(--teal);
  border-radius: 50%;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

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

.contact-form textarea,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(9, 16, 18, .75), rgba(9, 16, 18, .88));
  }

  .trust-strip,
  .card-grid,
  .swatch-row,
  .two-column {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-stats,
  .trust-strip,
  .card-grid,
  .swatch-row,
  .two-column,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .quote-section,
  .site-footer,
  .system-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-list span {
    text-align: left;
  }
}
