:root {
  --ink: #18211f;
  --muted: #5f6f6a;
  --line: #d8e1dc;
  --paper: #f6f8f5;
  --white: #ffffff;
  --green: #176c4f;
  --deep: #0f3d34;
  --gold: #b98730;
  --blue: #23566f;
  --shadow: 0 18px 42px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--deep);
  font-weight: 800;
  border-radius: 8px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: 20px;
  color: #31413d;
  font-size: 14px;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--deep);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--deep);
  background: var(--white);
}

.nav-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: linear-gradient(140deg, #f6f8f5 0%, #ecf2ed 52%, #f9f5eb 100%);
}

.hero-copy,
.page-hero,
.section,
.band,
.site-footer,
.article {
  max-width: 1180px;
  margin: 0 auto;
}

.hero h1,
.page-hero h1,
.article h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

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

.hero-panel,
.form-panel,
.card,
.contact-details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.panel-title {
  margin-top: 0;
  font-weight: 800;
}

.hero-panel ul,
.feature-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.panel-note,
.note {
  color: var(--muted);
  font-size: 14px;
}

.section,
.page-hero,
.article {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 32px);
}

.page-hero.compact h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 32px;
  align-items: center;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2,
.split h2,
.two-col h2,
.band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

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

.card {
  overflow: hidden;
  padding: 22px;
}

.product-card {
  padding: 0;
}

.product-card > div {
  padding: 20px;
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.image-placeholder,
.detail-image {
  width: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 108, 79, 0.08), rgba(185, 135, 48, 0.12)),
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(15, 61, 52, 0.05) 12px, rgba(15, 61, 52, 0.05) 24px);
  color: var(--deep);
  text-align: center;
  aspect-ratio: 16 / 10;
}

.image-placeholder span {
  display: block;
  font-weight: 800;
}

.image-placeholder small {
  color: var(--muted);
}

img.detail-image,
.product-card img {
  object-fit: cover;
}

.split,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.steps span {
  padding: 14px 16px;
  background: var(--white);
  border-left: 4px solid var(--gold);
}

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

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form label span {
  color: #b33a2b;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 12px;
  font: inherit;
  background: #fbfcfa;
}

.lead-form .wide {
  grid-column: 1 / -1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  background: #fbfcfa;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
}

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

.location-list a {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.location-list span {
  color: var(--muted);
  font-size: 13px;
}

.location-list.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.article {
  max-width: 900px;
}

.article-body {
  margin-top: 24px;
  font-size: 18px;
}

.article-cta {
  margin-top: 30px;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--deep);
  color: var(--white);
  border-radius: 0;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 32px) 70px;
}

.site-footer h2 {
  font-size: 15px;
  margin: 0 0 12px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
}

.site-footer ul {
  margin: 0;
  padding-left: 18px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  color: var(--white);
  background: #168a52;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

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

  .site-nav a {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero,
  .product-detail,
  .split,
  .two-col,
  .section-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .location-list,
  .location-list.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .article h1 {
    font-size: 38px;
  }

  .hero {
    padding-top: 42px;
  }

  .card-grid,
  .location-list,
  .location-list.large,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .wide {
    grid-column: auto;
  }

  .contact-band,
  .hero-actions,
  .band-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
