:root {
  --ink: #171d16;
  --muted: #697064;
  --leaf: #334b2f;
  --sage: #8ea77a;
  --mint: #dfead4;
  --cream: #f5f3df;
  --paper: #fffefa;
  --line: #e7e6d7;
  --gold: #d9ad35;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

section,
article,
div {
  min-width: 0;
}

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

button,
input {
  font: inherit;
}

.promo-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 7vw;
  background: #f4f1d6;
  color: #40513a;
  font-size: 11px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 7vw;
  background: rgba(255, 254, 250, .92);
  border-bottom: 1px solid rgba(231, 230, 215, .7);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  font-size: 20px;
  font-weight: 800;
}

.brand-logo {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 12px rgba(73, 38, 47, .18);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #384236;
  font-size: 13px;
  font-weight: 600;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.header-actions button {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  background: #f3efdc;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,243,223,.96) 0%, rgba(245,243,223,.82) 30%, rgba(245,243,223,.18) 58%, rgba(245,243,223,0) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-left: 7vw;
  padding-right: 24px;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #7d8b70;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.3;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.button,
.outline-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 25px;
  border: 1px solid var(--leaf);
  background: var(--leaf);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.outline-button {
  background: transparent;
  color: var(--leaf);
}

.mini-button {
  min-height: 34px;
  padding: 0 22px;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,.08);
}

.features,
.product-strip,
.care,
.testimonials,
.blog {
  padding: 84px 7vw;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  text-align: center;
}

.feature-icon {
  display: block;
  margin-bottom: 16px;
  color: #799068;
  font-size: 42px;
}

.features h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.features p {
  max-width: 220px;
  margin-inline: auto;
  font-size: 13px;
}

.collection {
  display: grid;
  grid-template-columns: 1fr .8fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 28px;
  padding: 20px 11vw 84px;
}

.collection-title {
  display: grid;
  place-items: center;
  text-align: center;
}

.collection-card {
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 28px;
  background: #eff4dd;
}

.collection-card img {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 68px;
  width: calc(100% - 36px);
  height: calc(100% - 86px);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.collection-card.tall {
  grid-row: span 2;
}

.product-img,
.blog-img,
.banner-jars,
.portrait {
  background-color: #e7efd9;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.95) 0 16%, transparent 17%),
    radial-gradient(circle at 72% 68%, rgba(94,122,70,.32) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(222,236,200,.95), rgba(255,255,247,.96));
}

.section-heading.side {
  max-width: 310px;
}

.section-heading.center {
  text-align: center;
}

.product-strip {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  background: #f4f7ea;
}

.product-img {
  display: block;
  width: 100%;
  height: 250px;
  margin-bottom: 16px;
  padding: 16px;
  object-fit: contain;
  background-size: cover;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.product-card .product-img {
  background-color: transparent;
}

.compact .product-img {
  height: 190px;
}

.product-card p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  padding: 4px 8px;
  background: #73bf87;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.serum {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 90px 12vw;
}

.serum-image {
  min-height: 430px;
  background: #e8f2d7;
  overflow: hidden;
}

.serum-image img {
  width: 100%;
  height: 430px;
  padding: 26px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 18px 34px;
  margin: 28px 0 30px;
}

.benefits span {
  color: #374333;
  font-size: 14px;
  font-weight: 700;
}

.benefits span::before {
  content: "◎";
  margin-right: 9px;
  color: #7b906c;
}

.wide-banner {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) 1fr;
  gap: 30px;
  align-items: center;
  min-height: 520px;
  padding: 90px 10vw;
  background: #f0efd9;
  overflow: hidden;
}

.wide-banner p {
  max-width: 760px;
}

.banner-jars {
  display: block;
  width: 100%;
  height: 350px;
  padding: 16px;
  object-fit: contain;
  mix-blend-mode: multiply;
  overflow: hidden;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 22px 0 40px;
}

.tabs button {
  border: 0;
  background: transparent;
  color: #596253;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tabs button:first-child {
  color: var(--leaf);
}

.video-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  align-items: center;
  min-height: 470px;
  padding: 80px 7vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, #ffe0c7 0 15%, transparent 16%),
    linear-gradient(105deg, rgba(255,255,255,.96) 0 42%, rgba(228,236,213,.5) 43% 100%),
    linear-gradient(135deg, #f8fbef, #fff);
}

.play-button {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid #2d3e2b;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  color: var(--leaf);
  cursor: pointer;
}

.testimonials {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
}

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

.reviews article {
  min-width: 0;
}

.reviews span {
  color: var(--gold);
  font-size: 13px;
}

.reviews p {
  margin: 12px 0 18px;
  font-size: 13px;
}

.reviews strong,
.reviews small,
.footer a,
.footer p {
  display: block;
}

.reviews small {
  color: var(--muted);
  margin-top: 4px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1040px;
  margin: 32px auto;
}

.blog-grid article {
  padding: 14px;
  background: #f4f7ea;
  overflow: hidden;
}

.blog-img {
  display: block;
  width: 100%;
  height: 230px;
  margin-bottom: 18px;
  padding: 14px;
  object-fit: contain;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.blog small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.blog a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.blog > .outline-button {
  margin: 10px auto 0;
}

.instagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0 7vw 80px;
}

.instagram img {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
  padding: 10px;
  object-fit: contain;
  mix-blend-mode: multiply;
  background-color: #e7efd9;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.95) 0 16%, transparent 17%),
    radial-gradient(circle at 72% 68%, rgba(94,122,70,.32) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(222,236,200,.95), rgba(255,255,247,.96));
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.1fr;
  gap: 48px;
  padding: 70px 7vw 54px;
  background: #f1efd8;
}

.footer h2 {
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: #58624f;
  font-size: 13px;
  line-height: 1.75;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.footer input {
  width: 100%;
  height: 45px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid #d8d5bd;
  background: #fffef6;
}

.footer button {
  height: 42px;
  padding: 0 24px;
  border: 0;
  background: #172016;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .promo-bar {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 7vw 320px;
    align-items: flex-start;
  }

  .hero-copy {
    padding-left: 0;
    max-width: 540px;
  }

  .hero-bg {
    object-position: 68% bottom;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(245,243,223,.98) 0%, rgba(245,243,223,.92) 42%, rgba(245,243,223,.22) 70%, rgba(245,243,223,0) 100%);
  }

  .features,
  .products,
  .reviews,
  .blog-grid,
  .instagram,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection,
  .product-strip,
  .serum,
  .wide-banner,
  .testimonials,
  .video-story {
    grid-template-columns: 1fr;
  }

  .collection {
    grid-template-rows: auto;
    padding-inline: 7vw;
  }

  .collection-card,
  .collection-card.tall {
    min-height: 300px;
    grid-row: auto;
  }

  .section-heading.side {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .features,
  .product-strip,
  .care,
  .testimonials,
  .blog,
  .serum,
  .wide-banner,
  .video-story,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero {
    padding-bottom: 260px;
  }

  .features,
  .products,
  .reviews,
  .blog-grid,
  .instagram,
  .footer {
    grid-template-columns: 1fr;
  }

  .tabs {
    flex-wrap: wrap;
  }

  .product-img,
  .compact .product-img {
    height: 220px;
  }

  .collection-card,
  .collection-card.tall {
    min-height: 260px;
  }

  .serum-image,
  .serum-image img {
    min-height: 0;
    height: 310px;
  }

  .wide-banner {
    min-height: 0;
  }

  .banner-jars {
    height: 260px;
  }
}
