@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --bg: #fbfcf8;
  --surface: #ffffff;
  --muted: #f1f4ee;
  --sage: #dfe9dc;
  --sage-deep: #9fb99d;
  --teal: #4bb8ad;
  --emerald: #0f8f62;
  --emerald-dark: #096143;
  --charcoal: #17211d;
  --soft-text: #5d6a63;
  --line: rgba(23, 33, 29, 0.12);
  --shadow: 0 24px 70px rgba(23, 33, 29, 0.11);
  --radius: 22px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--charcoal);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--emerald-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--emerald);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 7vw, 6.9rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.75rem);
}

p {
  margin: 0;
  color: var(--soft-text);
}

.lead {
  max-width: 690px;
  color: #40504a;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 430px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 33, 29, 0.18);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: #fff;
  color: var(--charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 248, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.logo {
  color: var(--charcoal);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 800;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.87rem;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.icon-btn:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.icon {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-only {
  display: none;
}

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0 auto;
  z-index: 45;
  width: min(390px, 88vw);
  padding: 26px;
  background: var(--surface);
  box-shadow: -26px 0 70px rgba(23, 33, 29, 0.16);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

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

.mobile-panel nav {
  display: grid;
  gap: 4px;
}

.mobile-panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero.page-hero {
  min-height: 540px;
}

.hero-img,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-img img {
  opacity: 0.84;
}

.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 22, 18, 0.78), rgba(9, 22, 18, 0.2) 56%, rgba(9, 22, 18, 0.12)),
    linear-gradient(0deg, rgba(9, 22, 18, 0.66), rgba(9, 22, 18, 0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 78px 0 40px;
  color: #fff;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #fff;
}

.hero .eyebrow::before {
  background: #fff;
}

.hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--charcoal);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 66px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.stat {
  padding: 22px 24px;
}

.stat strong {
  display: block;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.image-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.08);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 22, 18, 0.68), rgba(9, 22, 18, 0.03) 62%);
}

.image-card img {
  transition: transform 460ms ease;
}

.image-card:hover img {
  transform: scale(1.055);
}

.image-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
}

.image-card h3 {
  color: #fff;
}

.image-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

.product-card {
  position: relative;
}

.product-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eef4ec;
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.08);
}

.product-media img {
  transition: transform 420ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-meta {
  display: grid;
  gap: 6px;
  padding: 14px 2px 0;
}

.product-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.product-title {
  font-weight: 800;
}

.price {
  color: var(--emerald-dark);
  font-weight: 900;
  white-space: nowrap;
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--emerald-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 52px;
  align-items: center;
}

.editorial-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-copy {
  display: grid;
  gap: 22px;
}

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

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #37453f;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--emerald);
  flex: 0 0 auto;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card,
.text-card,
.article-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(23, 33, 29, 0.05);
}

.benefit-card {
  min-height: 220px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--sage);
  color: var(--emerald-dark);
}

.benefit-card p {
  margin-top: 12px;
}

.reviews-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.reviews-track {
  display: flex;
  transition: transform 320ms ease;
}

.review {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 380px;
  background: var(--charcoal);
}

.review-aside {
  padding: 42px;
  background: var(--sage);
}

.review-aside strong {
  display: block;
  margin-top: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.review-quote {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 42px;
}

.review-quote p {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.45rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.review-quote span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

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

.article-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.article-body {
  padding: 24px;
}

.article-body span {
  color: var(--emerald-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-body h3 {
  margin-top: 12px;
}

.article-body p {
  margin-top: 12px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: calc(var(--radius) + 6px);
  background: var(--charcoal);
}

.newsletter h2,
.newsletter p {
  color: #fff;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 12px;
}

.newsletter-form {
  grid-template-columns: 1fr auto;
}

.field,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  padding: 0 18px;
  outline: none;
}

textarea {
  min-height: 140px;
  padding: 15px 18px;
  border-radius: 18px;
  resize: vertical;
}

.site-footer {
  padding: 72px 0 30px;
  background: #eef3ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 42px;
}

.footer-brand p {
  max-width: 370px;
  margin-top: 18px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  color: var(--soft-text);
  font-weight: 650;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft-text);
  font-size: 0.9rem;
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

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

.text-card {
  padding: 28px;
}

.text-card h3 {
  margin-bottom: 14px;
}

.split-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.split-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 48px;
  background: var(--surface);
}

.split-media {
  min-height: 440px;
}

.product-hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.about-values {
  grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(100% - 30px, 760px);
  }

  .desktop-only,
  .nav {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .logo {
    min-width: 0;
    font-size: 1.02rem;
  }

  .header-actions {
    gap: 2px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .section,
  .site-footer {
    padding: 64px 0;
  }

  .section-head,
  .page-intro,
  .editorial,
  .newsletter,
  .split-banner,
  .product-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .category-grid,
  .product-grid,
  .benefit-grid,
  .article-grid,
  .service-grid,
  .about-values,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-media,
  .split-media {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero {
    min-height: 720px;
  }

  .hero.page-hero {
    min-height: 500px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-actions,
  .hero-stats {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .category-grid,
  .product-grid,
  .benefit-grid,
  .article-grid,
  .service-grid,
  .about-values,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 36px;
  }

  .stat {
    padding: 18px;
  }

  .image-card {
    min-height: 260px;
  }

  .editorial-media,
  .split-media,
  .contact-media {
    min-height: 320px;
  }

  .newsletter {
    padding: 28px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .split-copy,
  .review-aside,
  .review-quote {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
