:root {
  --bg: #f7f4ef;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #5b6474;
  --dark: #0f172a;
  --dark-2: #172033;
  --accent: #f5914f;
  --accent-2: #ffb36f;
  --line: rgba(17, 24, 39, .12);
  --shadow: 0 24px 70px rgba(15, 23, 42, .14);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1 {
  font-size: clamp(42px, 7vw, 86px);
}

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

h3 {
  font-size: 22px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: #fffaf4;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(245, 145, 79, .22), transparent 32rem),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.section-dark p,
.section-dark .form-note,
.section-dark address,
.section-dark address a {
  color: rgba(255, 255, 255, .76);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px max(16px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: rgba(15, 23, 42, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}

.main-nav a,
.header-phone {
  transition: color .2s ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: var(--accent-2);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, .98), rgba(15, 23, 42, .82)),
    radial-gradient(circle at 80% 20%, rgba(245, 145, 79, .55), transparent 34rem);
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 44px;
  align-items: center;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  color: #9a4d1c;
  background: rgba(245, 145, 79, .15);
  border: 1px solid rgba(245, 145, 79, .24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: #ffd0a6;
  background: rgba(245, 145, 79, .16);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #e26d27);
  box-shadow: 0 14px 34px rgba(245, 145, 79, .33);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, .86);
}

.hero-points li::before {
  content: "•";
  color: var(--accent-2);
  margin-right: 10px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: 26px;
}

.stats span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.service-grid,
.product-grid,
.equipment-grid,
.review-grid,
.feature-list,
.proof-grid,
.faq-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-list {
  grid-template-columns: 1fr;
}

.service-card,
.feature-list article,
.proof-grid article,
.equipment-grid article,
.review-grid article,
.lead-form,
.faq-grid details,
.document-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .07);
}

.service-card span,
.feature-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.document-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.document-card span {
  width: fit-content;
  padding: 6px 10px;
  color: #9a4d1c;
  background: rgba(245, 145, 79, .15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.document-card p {
  margin: 0;
}

.document-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.paint-shop-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.paint-shop-content {
  max-width: 640px;
}

.paint-shop-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.paint-shop-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.paint-shop-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
}

.paint-shop-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.paint-shop-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.paint-shop-gallery-main {
  grid-column: 1 / -1;
  height: 330px !important;
}

.product-card {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.product-card img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.equipment-grid img {
  width: calc(100% + 48px);
  height: 290px;
  margin: -24px -24px 20px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius) var(--radius) 18px 18px;
}

.product-card h3,
.product-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.product-card h3 {
  margin-top: 22px;
}

.product-card p {
  margin-bottom: 24px;
}

.section-dark .product-card p {
  color: var(--muted);
}

.equipment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 900px;
}

.city-grid a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(91, 100, 116, .28);
  text-underline-offset: 5px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.city-grid a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.review-grid {
  grid-template-columns: repeat(4, 1fr);
}

.review-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.review-grid span {
  color: var(--accent);
  font-weight: 800;
}

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

.faq-grid details {
  align-content: start;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.faq-grid p {
  margin: 16px 0 0;
}

address {
  margin: 24px 0;
  font-style: normal;
}

.legal-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, .98), rgba(15, 23, 42, .86)),
    radial-gradient(circle at 80% 20%, rgba(245, 145, 79, .42), transparent 34rem);
}

.legal-content {
  max-width: 920px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .07);
}

.legal-content h2 {
  margin: 44px 0 16px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.lead-form {
  color: var(--ink);
}

.lead-form h3 {
  margin-bottom: 20px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  font-size: 13px;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, .76);
  background: #080d18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 28px;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.legal {
  font-size: 13px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .paint-shop-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .review-grid,
  .proof-grid,
  .faq-grid,
  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    padding: 20px;
    background: rgba(15, 23, 42, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    justify-self: stretch;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-card img {
    height: 300px;
  }

  .equipment-grid img {
    height: 250px;
  }

  .product-card img {
    height: 250px;
  }

  .stats,
  .service-grid,
  .product-grid,
  .equipment-grid,
  .review-grid,
  .proof-grid,
  .faq-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  .paint-shop-gallery {
    grid-template-columns: 1fr;
  }

  .paint-shop-gallery img,
  .paint-shop-gallery-main {
    height: 240px !important;
  }

  .legal-content {
    padding: 24px;
  }
}
