:root {
  color-scheme: light;
  --ink: #122322;
  --muted: #596a63;
  --line: #ddd9c9;
  --paper: #f4f0df;
  --field: #e8ecdf;
  --leaf: #0e5960;
  --leaf-dark: #073f45;
  --gold: #d2a13a;
  --coral: #df664a;
  --water: #4c9ac6;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button {
  font: inherit;
}

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

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cart-button,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 700;
}

.cart-button span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.82rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) 42px;
}

.hero-image {
  min-height: auto;
  overflow: hidden;
  padding: 0;
  background: var(--leaf-dark);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 63, 69, 0.92) 0%, rgba(7, 63, 69, 0.66) 34%, rgba(7, 63, 69, 0.08) 68%),
    linear-gradient(0deg, rgba(7, 63, 69, 0.2), rgba(7, 63, 69, 0.04));
}

.hero-image .hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(18px, 5vw, 72px);
  width: min(620px, 46vw);
  transform: translateY(-50%);
  color: var(--white);
}

.hero-image .eyebrow,
.hero-image .hero-text,
.hero-image .proof-row {
  color: rgba(255, 255, 255, 0.86);
}

.hero-image .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

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

h1,
h2 {
  margin: 0;
  max-width: 780px;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-text,
.section-heading p,
.split p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--leaf-dark);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.trust-strip div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-strip span {
  color: var(--muted);
}

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

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.image-band {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(18, 35, 34, 0.1);
}

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

.product-card,
.review {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card.featured {
  border-color: var(--leaf);
  box-shadow: 0 20px 48px rgba(47, 107, 69, 0.14);
}

.product-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.price {
  display: grid;
  gap: 2px;
}

.price strong {
  font-size: 2rem;
}

.price span,
.product-card p,
.cart-note,
.cart-summary small {
  color: var(--muted);
}

.badge {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--field);
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 18px;
  border-left: 4px solid var(--leaf);
  background: var(--field);
  border-radius: 8px;
}

.steps span,
.checklist {
  color: var(--muted);
  line-height: 1.55;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  box-shadow: -24px 0 60px rgba(0,0,0,0.18);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header,
.cart-summary {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-size: 1.5rem;
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--field);
  font-size: 1.5rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: rgba(22, 32, 27, 0);
  transition: background 180ms ease;
}

.overlay.open {
  pointer-events: auto;
  background: rgba(22, 32, 27, 0.44);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--leaf-dark);
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.76);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

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

  nav {
    display: none;
  }

  .brand span {
    display: none;
  }

  .hero-image {
    display: flex;
    flex-direction: column;
  }

  .hero-image::after {
    background: linear-gradient(0deg, rgba(7, 63, 69, 0.92) 0%, rgba(7, 63, 69, 0.68) 44%, rgba(7, 63, 69, 0.02) 78%);
  }

  .hero-image .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
    padding: 24px 18px 30px;
    background: var(--leaf-dark);
  }

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

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