:root {
  --ink: #151719;
  --muted: #5f666b;
  --paper: #f4f4f1;
  --white: #ffffff;
  --line: #deded8;
  --yellow: #f0a500;
  --yellow-dark: #c98200;
  --charcoal: #202326;
  --red: #c93422;
  --shadow: 0 26px 80px rgba(20, 23, 25, 0.16);
  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: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 222, 216, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 1rem;
  font-weight: 950;
}

.brand-text {
  color: var(--ink);
  font-weight: 950;
  font-size: 1.08rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--yellow-dark);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
}

.header-call,
.button.primary {
  color: var(--ink);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 720px;
  padding: 138px clamp(18px, 5vw, 64px) 64px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.9) 0%, rgba(17, 19, 21, 0.72) 46%, rgba(17, 19, 21, 0.24) 100%),
    url("assets/img/hero.jpeg") center / cover;
}

.hero-content {
  position: relative;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 38px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-stats div {
  padding: 22px 18px 0 0;
}

.hero-stats dt {
  font-size: 1.38rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  color: var(--white);
  background: var(--charcoal);
}

.quick-info > * {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.split-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 23, 25, 0.06);
}

.service-card.large {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.shop-copy p,
.warranty-copy p,
.faq-list p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.shop-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 20, 22, 0.9), rgba(18, 20, 22, 0.64)),
    url("assets/img/shop.jpeg") center / cover;
}

.shop-copy {
  max-width: 680px;
}

.shop-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.warranty {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  background: var(--white);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfa;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 950;
}

details p {
  padding: 0 20px 20px;
}

.contact {
  background: var(--charcoal);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 6vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-lines {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  font-weight: 850;
}

.contact-lines a {
  color: var(--red);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fbfbfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: #111315;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer .brand-text {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  color: var(--yellow);
  font-weight: 950;
}

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

  .nav {
    display: none;
  }

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

  .split,
  .warranty,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .header-call {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 700px;
    padding-top: 110px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.9) 0%, rgba(17, 19, 21, 0.78) 68%, rgba(17, 19, 21, 0.66) 100%),
      url("assets/img/hero.jpeg") 58% center / cover;
  }

  .hero-stats,
  .service-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: auto;
  }

  .hero-stats div {
    padding-top: 18px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .contact-card {
    padding: 24px;
  }
}
