:root {
  --ink: #17201b;
  --muted: #637067;
  --line: #d9e1dc;
  --surface: #f7f8f5;
  --panel: #ffffff;
  --green: #1f7a4d;
  --green-dark: #145c39;
  --lime: #d8f15f;
  --blue: #2f6fd5;
  --orange: #f09a3e;
  --shadow: 0 18px 50px rgba(23, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.nav-cta {
  padding: 9px 13px;
  color: #ffffff !important;
  background: var(--ink);
  border-radius: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  min-height: calc(100vh - 69px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 70px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.98), rgba(247, 248, 245, 0.76)),
    url("assets/e01b0f24186e7ae3ce5e4d3b6d4dbea3345252bea6999e749ad031c5e32c419a_crop_1000x1000.jpg") center right / contain no-repeat;
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 11vw, 136px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  color: #334139;
  font-size: clamp(20px, 2.7vw, 30px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.primary-button,
.secondary-button,
.quote-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
}

.primary-button,
.quote-form button {
  padding: 0 18px;
  color: #ffffff;
  background: var(--green);
}

.secondary-button {
  padding: 0 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

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

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-product {
  align-self: stretch;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.compact {
  padding-top: 72px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--panel);
}

.value-grid p,
.product-card p,
.steps p,
.order-band li,
.quote-panel p,
.site-footer {
  color: var(--muted);
}

.product-section {
  background: #ffffff;
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #ffffff;
}

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

.product-card span {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 900;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.order-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 40px;
  color: #ffffff;
  background: var(--ink);
}

.order-band .eyebrow {
  color: var(--lime);
}

.order-band h2 {
  color: #ffffff;
}

.order-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-band li {
  padding: 16px;
  color: #e6eee9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.95), rgba(247, 248, 245, 0.82)),
    url("assets/d485e2b2964fc83f8ab0449b73e0ece4_crop_1000x1000.jpg") right center / contain no-repeat;
}

.quote-panel {
  max-width: 760px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1.18fr);
  gap: 18px;
  align-items: center;
  margin: 26px 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-copy {
  display: grid;
  gap: 10px;
}

.contact-copy h3 {
  margin-bottom: 0;
}

.contact-copy p {
  margin-bottom: 4px;
}

.contact-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.contact-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .order-band {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 420px;
  }

  .value-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .order-band ul {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    gap: 8px;
    font-size: 13px;
  }

  .nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding: 28px 14px 34px;
    background: var(--surface);
  }

  h1 {
    margin-bottom: 14px;
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

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

  .hero-actions {
    display: grid;
    gap: 10px;
    margin: 22px 0;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-product {
    min-height: 0;
  }

  .hero-product img {
    min-height: 280px;
  }

  .section {
    padding: 44px 14px;
  }

  .value-grid article {
    min-height: 0;
    padding: 22px;
  }

  .product-card div {
    padding: 18px;
  }

  .steps article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .steps span {
    width: 38px;
    height: 38px;
  }

  .order-band li {
    padding: 14px;
  }

  .quote-section {
    background: var(--surface);
  }

  .quote-panel {
    padding: 18px;
  }

  .contact-grid {
    gap: 14px;
    margin: 20px 0;
    padding: 12px;
  }

  .contact-copy a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-grid img {
    max-height: 460px;
    object-fit: contain;
    background: #ffffff;
  }

  .quote-form {
    gap: 12px;
    margin-top: 18px;
  }

  .quote-form button {
    width: 100%;
  }

  .product-strip,
  .site-footer {
    flex-direction: column;
  }

  .site-footer {
    padding: 20px 14px;
  }
}
