:root {
  --ink: #181818;
  --muted: #5f6871;
  --line: #d7d9dc;
  --panel: #f5f5f5;
  --panel-strong: #ececec;
  --slate: #48525c;
  --green: #6ca649;
  --green-dark: #47772f;
  --gold: #d0bf2a;
  --gold-dark: #a39318;
  --white: #fff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--white);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 4px solid var(--gold);
  background: rgba(24, 24, 24, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 290px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  color: var(--ink);
  background: var(--gold);
}

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

.brand strong {
  color: var(--white);
}

.brand small {
  color: #d4d4d4;
  font-size: 12px;
}

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

.nav a {
  padding: 9px 11px;
  color: #e8ecef;
  text-decoration: none;
  border-radius: 6px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
}

.nav span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 4px;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.phone {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

main {
  min-height: 64vh;
}

.hero,
.band,
.split,
.page-title,
.service-list,
.product-grid,
.quote-layout,
.contact-grid,
.search-bar {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  padding: 70px 0;
}

.hero::before {
  content: "";
  grid-column: 1 / -1;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--slate));
  border-radius: 999px;
}

.hero-copy h1,
.page-title h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p,
.page-title p,
.split p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark) !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button:hover,
button:hover {
  border-color: var(--green);
}

.hero-panel {
  align-self: stretch;
  padding: 24px;
  background: #f7f7f1;
  border: 1px solid #d8cf66;
  border-radius: 8px;
}

.hero-panel strong,
.hero-panel a {
  display: block;
}

.hero-panel a {
  margin-top: 12px;
  padding: 12px 0;
  color: var(--green-dark);
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.band {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.section-head h2,
.split h2,
.service-list h2,
.quote-items h2,
.contact-grid h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.1;
}

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

.proof-grid article,
.service-list article,
.product-card,
.quote-items,
.quote-form,
.contact-grid > div,
.contact-grid > form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid article:first-child,
.service-list article:nth-child(odd) {
  border-top: 4px solid var(--green);
}

.proof-grid article:nth-child(2),
.service-list article:nth-child(even) {
  border-top: 4px solid var(--gold);
}

.proof-grid h3,
.product-card h2 {
  margin: 0 0 8px;
}

.proof-grid p,
.service-list p,
.product-card p,
.quote-item p,
.footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

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

.tick-list li {
  padding: 14px 16px;
  background: var(--panel);
  border-left: 4px solid var(--green);
}

.page-title {
  padding: 54px 0 28px;
}

.service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 58px;
}

.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.search-bar input,
.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-grid {
  padding-bottom: 58px;
}

.product-card {
  display: grid;
  grid-template-rows: 160px 1fr auto;
  gap: 16px;
}

.product-image {
  display: grid;
  place-items: center;
  background: #f7f7f1;
  border: 1px solid #e1dda6;
  border-radius: 6px;
}

.product-image img {
  max-width: 92%;
  max-height: 140px;
  object-fit: contain;
}

.sku {
  margin: 0 0 8px;
  color: var(--green-dark) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: var(--slate);
  font-weight: 800;
}

.quote-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding-bottom: 58px;
}

.quote-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.notice,
.empty {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto 22px;
  padding: 14px 16px;
  background: #eef7ea;
  border: 1px solid #b8d7a6;
  border-radius: 8px;
}

.empty {
  color: var(--muted);
  background: var(--panel);
  border-color: var(--line);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: #181818;
  border-top: 5px solid var(--gold);
}

.footer p {
  max-width: 640px;
  color: #cbd3dc;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

@media (max-width: 860px) {
  .site-header,
  .footer,
  .hero,
  .split,
  .quote-layout,
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .proof-grid,
  .service-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 0;
  }
}
