:root {
  color-scheme: light;
  --green: #075f3c;
  --green-2: #0a7a4b;
  --red: #ed1c24;
  --red-dark: #b81019;
  --text: #111514;
  --muted: #64706b;
  --paper: #ffffff;
  --soft: #f5f8f4;
  --line: #dfe7e1;
  --shadow: 0 18px 48px rgba(7, 95, 60, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 0 clamp(18px, 5vw, 68px);
  border-bottom: 1px solid rgba(223, 231, 225, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--green);
  box-shadow: inset -9px 0 0 var(--red), 0 8px 18px rgba(7, 95, 60, 0.18);
}

.brand-mark::before {
  position: absolute;
  left: 8px;
  top: 7px;
  width: 12px;
  height: 18px;
  border-radius: 8px 8px 2px 2px;
  background: white;
  content: "";
  transform: skew(-7deg);
}

.brand-word {
  font-size: 1.38rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-word span {
  color: var(--green);
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 42px);
  color: #26322e;
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  padding: 26px 0;
}

.main-nav a.active {
  color: var(--red);
}

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

.header-cta,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
}

.header-cta {
  padding: 0 18px;
  background: var(--green);
  color: white;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(24px, 5vw, 68px);
  min-height: calc(100svh - 74px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(237, 28, 36, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faf6 44%, #e7f2ea 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(135deg, rgba(7, 95, 60, 0.12) 12%, transparent 12% 50%, rgba(7, 95, 60, 0.12) 50% 62%, transparent 62%),
    linear-gradient(45deg, rgba(237, 28, 36, 0.08) 12%, transparent 12% 50%, rgba(237, 28, 36, 0.08) 50% 62%, transparent 62%);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--green);
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 34px;
  color: #30413a;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

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

.primary-link {
  padding: 0 23px;
  background: var(--red);
  color: white;
  box-shadow: 0 14px 28px rgba(237, 28, 36, 0.24);
}

.secondary-link {
  padding: 0 22px;
  border: 1px solid rgba(7, 95, 60, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 95, 60, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 95, 60, 0.16);
  box-shadow: var(--shadow);
}

.hero-panel div {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  color: var(--green);
  font-size: 1.12rem;
  line-height: 1.22;
}

.section {
  padding: clamp(54px, 9vw, 96px) clamp(18px, 5vw, 68px);
}

.section-heading {
  max-width: 1180px;
}

.section-heading.centered {
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-section {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #34413d;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.intro-copy p {
  margin: 0;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(7, 95, 60, 0.06), rgba(7, 95, 60, 0)),
    var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(7, 95, 60, 0.04);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-weight: 950;
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--green);
  font-size: 1.34rem;
  line-height: 1.15;
}

.service-card p,
.document-card p,
.document-note,
.contact-band p {
  margin: 0;
  color: var(--muted);
}

.documents-section {
  background: #ffffff;
}

.document-note {
  max-width: 330px;
  font-weight: 700;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.document-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.document-image {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(7, 95, 60, 0.08), rgba(237, 28, 36, 0.05)),
    #f7faf7;
}

.document-image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(16, 21, 18, 0.12);
}

.document-copy {
  padding: 22px;
  border-top: 5px solid var(--green);
}

.document-copy h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 1.22rem;
  line-height: 1.15;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 68px);
  background: var(--green);
  color: white;
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p {
  color: white;
}

.contact-list {
  display: grid;
  gap: 10px;
  min-width: min(360px, 100%);
}

.contact-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 850;
}

.contact-list a:hover {
  background: var(--red);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 68px);
  background: #101514;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer span {
  color: #ffffff;
  font-weight: 950;
}

.site-footer p {
  margin: 0;
}

.products-page {
  background:
    linear-gradient(180deg, rgba(7, 95, 60, 0.05), rgba(7, 95, 60, 0) 280px),
    #ffffff;
}

.product-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  min-width: 0;
  padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 68px) clamp(58px, 8vw, 102px);
}

.product-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 95, 60, 0.1);
}

.product-sidebar a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  color: #26322e;
  font-weight: 850;
}

.product-sidebar a:first-child,
.product-sidebar a:hover {
  background: var(--green);
  color: #ffffff;
}

.product-content {
  display: grid;
  gap: clamp(44px, 6vw, 78px);
  min-width: 0;
}

.product-category {
  scroll-margin-top: 92px;
}

.category-heading {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.category-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  min-width: 0;
}

.shop-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 225, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(7, 95, 60, 0.08);
}

.shop-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 48px 22px 26px;
  background: #f6f7f6;
}

.shop-media img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 18px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #63df00;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(7, 95, 60, 0.36);
}

.color-stack {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  gap: 10px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.color-stack span {
  width: 26px;
  height: 26px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #0e1110;
  box-shadow: 0 4px 10px rgba(16, 21, 18, 0.18);
}

.color-stack span + span {
  background: #d9d7cf;
}

.shop-card h3 {
  min-height: 58px;
  margin: 0;
  padding: 22px 18px 14px;
  color: #060807;
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-top: 1px solid #ecefec;
  color: #111514;
  font-weight: 800;
}

.feature-list li::before {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    var(--green);
  content: "";
  box-shadow: inset 0 0 0 4px #0d1210;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 22px 18px 18px;
  border-radius: 999px;
  background: #0d0f0e;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 950;
}

.buy-button:hover {
  background: var(--green);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    border-top: 1px solid var(--line);
  }

  .main-nav a {
    padding: 12px 0 14px;
    white-space: nowrap;
  }

  .hero,
  .intro-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .service-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

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

  .product-sidebar {
    position: static;
    display: flex;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;
  }

  .product-sidebar::-webkit-scrollbar {
    display: none;
  }

  .product-sidebar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .document-image {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 0 14px;
    gap: 12px;
  }

  .brand-word {
    font-size: 1.16rem;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section,
  .contact-band,
  .product-shell {
    padding-inline: 14px;
  }

  .hero-actions {
    display: grid;
  }

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

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .shop-media {
    min-height: 300px;
  }

  .service-card {
    padding: 22px;
  }

  .document-image {
    min-height: 320px;
    padding: 10px;
  }

  .document-copy {
    padding: 18px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}
