:root {
  --green: #123f2b;
  --green2: #1f6a46;
  --gold: #d7ad52;
  --cream: #fbf6ea;
  --text: #15231c;
  --muted: #66746b;
  --white: #ffffff;
  --line: #e7dfce;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Top Bar */
.topbar {
  background: var(--green);
  color: #fff;
  font-size: 14px;
  padding: 9px 0;
  text-align: center;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.logo img {
  width: 150px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 600;
  color: #294236;
}

.menu a:hover {
  color: var(--green2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--green2);
}

.btn-light {
  background: #fff;
  color: var(--green);
  border-color: var(--line);
}

/* Hero Section */
.hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 173, 82, 0.32), transparent 30%),
    linear-gradient(180deg, #fbf6ea 0%, #f7eedc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 52px;
}

.kicker {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

h1 {
  font-size: 58px;
  line-height: 1.04;
  margin: 20px 0;
  color: var(--green);
  letter-spacing: -1.8px;
}

.hero p {
  font-size: 19px;
  color: #46584e;
  margin: 0 0 28px;
  max-width: 630px;
}

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

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(18, 63, 43, 0.12);
}

/* Product Visual */
.product-visual {
  min-height: 390px;
  border-radius: 26px;
  background: linear-gradient(135deg, #e9f2db, #fff8e8);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.bottle {
  width: 170px;
  height: 280px;
  border-radius: 34px 34px 24px 24px;
  background: #fff;
  box-shadow: 0 25px 45px rgba(18, 63, 43, 0.18);
  position: relative;
  border: 1px solid #eee;
}

.bottle::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 52px;
  width: 66px;
  height: 45px;
  background: var(--green);
  border-radius: 14px 14px 8px 8px;
}

.label {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 96px;
  background: linear-gradient(135deg, var(--green), #255b40);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 28px 8px;
}

.label strong {
  display: block;
  font-size: 21px;
}

.leaf {
  position: absolute;
  width: 90px;
  height: 54px;
  border-radius: 70% 0 70% 0;
  background: rgba(31, 106, 70, 0.18);
  transform: rotate(-25deg);
}

.l1 {
  left: 48px;
  top: 66px;
}

.l2 {
  right: 42px;
  bottom: 60px;
  transform: rotate(145deg);
}

.l3 {
  right: 74px;
  top: 106px;
  transform: rotate(25deg);
}

/* Trust Items */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.trust div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  font-weight: 800;
  color: var(--green);
}

/* Common Sections */
.section {
  padding: 78px 0;
}

.section h2 {
  font-size: 40px;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--green);
  letter-spacing: -0.7px;
}

.section-sub {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 34px;
  max-width: 760px;
}

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

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(18, 63, 43, 0.06);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f1e5c9;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 26px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.product-img {
  height: 180px;
  background: linear-gradient(135deg, #eef5e7, #fff6df);
  display: grid;
  place-items: center;
  font-size: 54px;
}

.product-body {
  padding: 18px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
  background: #f3ead5;
  border-radius: 999px;
  padding: 6px 9px;
}

.product h3 {
  font-size: 19px;
  margin: 12px 0 5px;
  color: var(--green);
}

.price {
  font-weight: 900;
  color: var(--green2);
  margin-top: 12px;
}

/* Banner */
.banner {
  background: var(--green);
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.banner h2 {
  color: #fff;
  margin: 0 0 12px;
}

.banner p {
  color: #e6f1ea;
  margin: 0;
}

/* Form */
.form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
}

/* Footer */
.footer {
  background: #0f3022;
  color: #dbe8df;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-top: 0;
}

.footer a {
  display: block;
  color: #dbe8df;
  margin: 8px 0;
}

.footer small {
  display: block;
  color: #adc0b5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 18px;
}

/* Page Hero */
.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #fbf6ea, #efe1c3);
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.policy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust,
  .grid-3,
  .products {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 42px;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 560px) {
  .trust,
  .grid-3,
  .products {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  .section {
    padding: 52px 0;
  }
}