:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #17202a;
  background: #f4f5ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.nav,
.nav-actions,
.actions,
.product-top,
.meta,
.contact,
.business,
.steps {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: space-between;
  min-height: 48px;
  gap: 16px;
}

.nav-actions,
.actions,
.meta {
  flex-wrap: wrap;
  gap: 10px;
}

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

.brand {
  font-weight: 850;
  font-size: 19px;
}

.ghost,
.button {
  border-radius: 8px;
  font-weight: 800;
}

.ghost {
  border: 1px solid #c9cec3;
  padding: 10px 14px;
  background: #ffffff;
}

.hero {
  padding: 72px 0 34px;
  max-width: 890px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #386b56;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  margin: 24px 0 0;
  max-width: 780px;
  color: #526070;
  font-size: 20px;
  line-height: 1.68;
}

.actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: #1f6f53;
  color: white;
}

.button.line {
  background: #06c755;
  color: #071c10;
}

.button.secondary {
  background: #ffffff;
  color: #17202a;
  border: 1px solid #c9cec3;
}

.contact,
.business {
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #b7d3c3;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  margin: 0 0 22px;
}

.contact h2,
.business h2,
.steps h2 {
  margin: 8px 0 10px;
  font-size: 24px;
}

.contact p,
.business p,
.steps p {
  margin: 0;
  color: #526070;
  line-height: 1.65;
}

.contact > div:first-child {
  max-width: 650px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
}

.contact-card .button {
  width: 100%;
}

.contact-card p {
  font-size: 13px;
}

.business {
  align-items: stretch;
  flex-direction: column;
  border-color: #d8ddd3;
}

.section-head {
  max-width: 760px;
}

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

.info-grid div {
  border: 1px solid #d8ddd3;
  border-radius: 8px;
  background: #f8f9f5;
  padding: 16px;
}

.info-grid span {
  display: block;
  color: #b15035;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.info-grid strong {
  display: block;
  line-height: 1.45;
}

.map-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.map-actions p {
  font-size: 14px;
}

.notice {
  border-block: 1px solid #d7dccf;
  padding: 20px 0;
  margin: 12px 0 34px;
}

.notice strong {
  display: block;
  color: #b15035;
  margin-bottom: 8px;
}

.notice p {
  max-width: 920px;
  margin: 0;
  color: #526070;
  line-height: 1.7;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 440px;
  border: 1px solid #d8ddd3;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.product.featured {
  border-color: #9fbcae;
  box-shadow: 0 12px 32px rgba(31, 111, 83, 0.1);
}

.product-top {
  justify-content: space-between;
  gap: 12px;
}

.tag {
  color: #b15035;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: #17202a;
  font-size: 17px;
  font-weight: 900;
}

.product h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.product p {
  margin: 0;
  color: #526070;
  line-height: 1.65;
}

.product ul {
  margin: 0;
  padding-left: 20px;
  color: #303b47;
  line-height: 1.65;
}

.meta {
  margin-top: auto;
}

.meta span {
  border: 1px solid #d8ddd3;
  border-radius: 999px;
  padding: 7px 10px;
  color: #526070;
  font-size: 13px;
  font-weight: 750;
  background: #f8f9f5;
}

.product .button {
  width: fit-content;
}

.steps {
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
}

.steps div {
  flex: 1;
  border-top: 1px solid #d7dccf;
  padding-top: 18px;
}

.steps span {
  color: #b15035;
  font-weight: 900;
  font-size: 13px;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 52px;
  }

  .products,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact,
  .business,
  .steps {
    align-items: stretch;
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .product {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .ghost,
  .button {
    min-height: 44px;
  }
}
