:root {
  --black: #050505;
  --dark: #111111;
  --charcoal: #1c1c1c;
  --blue: #1156d9;
  --green: #168a3a;
  --gold: #af8e54;
  --light: #f4f4f4;
  --text: #111;
  --muted: #555;
  --border: #dedede;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--text);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 4%;
  border-bottom: 3px solid var(--gold);
}

.brand img {
  width: 142px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.btn-blue {
  background: var(--blue);
}

.btn-green {
  background: var(--green);
}

.hero {
  min-height: 610px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.18) 100%),
    url("hero-cover.jpg");
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  padding: 70px 4%;
  color: white;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 14px;
}

.location-line {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.trust-bar {
  background: var(--black);
  color: white;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.trust-bar div {
  padding: 22px 15px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  border-right: 2px solid var(--gold);
}

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

.page-section,
.split-section,
.grates-section,
.quote-area,
.service-area,
.lower-grid,
.contact {
  max-width: 1200px;
  margin: 22px auto;
  padding: 0 18px;
}

.page-section.compact {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h3 {
  margin: 0 0 9px;
}

p {
  color: inherit;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

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

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

.feature-card,
.info-card,
.panel,
.quote-panel,
.area-lists {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feature-card {
  text-align: center;
  padding: 28px 18px;
}

.feature-card p,
.info-card p,
.mini-card p,
.price-card p,
.review-card p,
.about p {
  line-height: 1.4;
  color: #222;
}

.icon {
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
}

.info-card {
  padding: 22px;
}

.info-card.horizontal {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  padding: 24px;
}

.mini-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.mini-card,
.price-card {
  padding: 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.mini-card:nth-child(2n),
.price-card:nth-child(2n) {
  border-right: 0;
}

.mini-card:nth-last-child(-n + 2),
.price-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.price-card {
  text-align: center;
}

.price-card strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1.05;
  margin: 14px 0;
}

.pricing-note {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}

.grates-section {
  background: var(--black);
  color: white;
  border-radius: 14px;
  padding: 28px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
}

.grates-section h2,
.grates-section p {
  color: white;
}

.grates-content > p {
  text-align: center;
  margin-top: -8px;
}

.grate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grate-card {
  background: #151515;
  border: 2px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
}

.grate-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  background: white;
}

.grate-card div {
  padding: 14px;
  text-align: center;
}

.grate-card strong,
.grate-card span {
  display: block;
}

.grate-cta {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grate-cta strong {
  color: white;
  background: var(--blue);
  border-radius: 8px;
  padding: 12px;
  display: block;
  margin: 10px 0;
}

.quote-panel {
  padding: 24px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 2fr auto 220px;
  gap: 18px;
  align-items: end;
}

label {
  display: block;
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #cfcfcf;
  border-radius: 7px;
  font: inherit;
}

.quote-total {
  background: #eaf1ff;
  color: var(--blue);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 900;
}

.service-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.area-lists {
  padding: 24px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 10px;
}

.area-grid h3 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 16px;
}

.area-highlight {
  background: var(--blue);
  color: white;
  border-radius: 8px;
  padding: 14px;
  margin-top: 18px;
  text-align: center;
  font-weight: 900;
}

.service-area iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 18px;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 15px;
  background: #fff;
  font-style: italic;
}

.stars {
  color: #f8b400;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.faq details {
  border: 1px solid var(--border);
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-bottom: 0;
  line-height: 1.4;
}

.start-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-card .btn {
  width: 100%;
}

.contact {
  background: var(--black);
  color: white;
  border-radius: 14px 14px 0 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  padding: 30px;
  margin-bottom: 0;
}

.contact h2 {
  text-align: left;
}

.contact a {
  color: white;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}

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

.contact-form button {
  background: var(--blue);
  color: white;
  border: 0;
  padding: 14px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

footer {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 18px;
  border-top: 1px solid #222;
}

footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    justify-content: center;
    text-align: center;
  }

  .header-actions {
    justify-content: center;
  }

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

  .quote-form,
  .service-area,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 115px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 560px;
    background-position: center center;
    align-items: flex-end;
    padding-bottom: 45px;
  }

  .hero p {
    font-size: 17px;
  }

  .trust-bar,
  .feature-grid.four,
  .feature-grid.three,
  .split-section,
  .grates-section,
  .grate-grid,
  .area-grid,
  .lower-grid,
  .mini-grid,
  .pricing-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--gold);
  }

  .grate-cta {
    border-left: 0;
    border-top: 2px solid var(--gold);
    padding-left: 0;
    padding-top: 20px;
  }

  .mini-card,
  .price-card {
    border-right: 0;
  }

  .mini-card:nth-last-child(-n + 2),
  .price-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .mini-card:last-child,
  .price-card:last-child {
    border-bottom: 0;
  }
}
