:root {
  --bg: #f4f5ef;
  --ink: #11140f;
  --muted: #606756;
  --panel: #ffffff;
  --line: #dde1d3;
  --green: #174a31;
  --green-dark: #0d2c1e;
  --lime: #c8f24d;
  --gold: #d9ad4f;
  --terracotta: #bf5f45;
  --shadow: 0 24px 70px rgba(13, 44, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(221, 225, 211, 0.82);
  background: rgba(244, 245, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--lime);
  background: var(--green-dark);
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.6vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.text-link:hover {
  color: var(--green);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #ffffff !important;
  background: var(--green-dark);
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(44px, 8vw, 94px) clamp(18px, 5vw, 72px) clamp(36px, 7vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent 52%),
    linear-gradient(145deg, #f8f8f3 0%, #ecf0e3 46%, #cfdcc5 100%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions,
.contact,
.product-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #ffffff;
  background: var(--green);
}

.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(23, 74, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

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

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(23, 74, 49, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.hero-shelf {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54)),
    linear-gradient(145deg, rgba(217, 173, 79, 0.18), rgba(200, 242, 77, 0.16));
  box-shadow: var(--shadow);
}

.hero-shelf::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 112px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 44, 30, 0.16);
  filter: blur(16px);
}

.shelf-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--green-dark);
}

.shelf-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shelf-heading strong {
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 14px;
}

.shelf-products {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: clamp(4px, 1.4vw, 14px);
  min-height: 430px;
  padding: 26px 0 8px;
}

.shelf-product {
  display: grid;
  place-items: end center;
  height: 330px;
}

.shelf-product-tall {
  height: 380px;
}

.shelf-product-front {
  height: 420px;
}

.shelf-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(13, 44, 30, 0.24));
}

.shelf-tags {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.shelf-tags span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(23, 74, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.photo-fallback {
  position: absolute;
  z-index: 0;
  color: rgba(13, 44, 30, 0.58);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 18px;
  background: #ffffff;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.section,
.benefits,
.routine,
.contact {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.65;
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 430px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 38px rgba(16, 31, 22, 0.07);
}

.featured-card {
  border-color: rgba(23, 74, 49, 0.28);
}

.product-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
}

.product-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(221, 225, 211, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(217, 173, 79, 0.18)),
    linear-gradient(35deg, rgba(23, 74, 49, 0.1), transparent);
}

.product-photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3.2vw, 36px);
}

.product-photo .photo-fallback {
  color: rgba(13, 44, 30, 0.58);
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: 10px 4px;
}

.product-info p {
  color: var(--muted);
  line-height: 1.65;
}

.product-tag {
  margin-bottom: 8px;
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-points {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.product-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(23, 74, 49, 0.12);
}

.product-footer {
  justify-content: space-between;
  margin-top: auto;
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 900;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--green-dark);
  color: #ffffff;
}

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

.benefits p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.benefit-list,
.routine-grid {
  display: grid;
  gap: 14px;
}

.benefit-item,
.routine-step {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
}

.benefit-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-item strong,
.routine-step strong {
  font-size: 20px;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.routine {
  background: #ffffff;
}

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

.routine-step {
  border: 1px solid var(--line);
  background: #fafbf6;
}

.routine-step span {
  color: var(--terracotta);
  font-weight: 900;
}

.routine-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  justify-content: space-between;
  background:
    linear-gradient(90deg, rgba(200, 242, 77, 0.18), transparent 46%),
    #eef1e5;
}

.contact div {
  max-width: 720px;
}

.contact p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .product-card,
  .product-card-wide {
    grid-template-columns: 1fr;
  }

  .product-photo {
    min-height: 330px;
  }
}

@media (max-width: 920px) {
  .hero,
  .benefits {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .shelf-products {
    min-height: 380px;
  }

  .shelf-product {
    height: 280px;
  }

  .shelf-product-tall {
    height: 330px;
  }

  .shelf-product-front {
    height: 360px;
  }

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

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

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav a {
    white-space: nowrap;
  }

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

  .hero-showcase {
    min-height: 560px;
  }

  .shelf-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
  }

  .shelf-product,
  .shelf-product-tall,
  .shelf-product-front {
    height: 230px;
  }

  .shelf-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .contact,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
