:root {
  --brown-900: #3f2a1d;
  --brown-700: #6a4b35;
  --green-700: #2f6a3f;
  --green-600: #3d7f4f;
  --cream: #f9f6ef;
  --white: #ffffff;
  --text: #2b2b2b;
  --muted: #666666;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

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

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brown-900);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #d8cab7;
}

.brand span {
  line-height: 1;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
  color: #434343;
}

.nav a:hover,
.nav a.active {
  color: var(--green-700);
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-primary {
  background: var(--brown-900);
  color: var(--white);
}

.btn-primary:hover {
  background: #2f1f15;
}

.btn-outline {
  border: 2px solid var(--brown-700);
  color: var(--brown-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brown-700);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb157;
}

.hero {
  padding: 4.2rem 0;
  background: linear-gradient(135deg, #fffaf3, #f3fbf1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-700);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  color: var(--brown-900);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.hero-text {
  color: #4f4f4f;
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image-wrap img,
.story-image-wrap img {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  color: var(--brown-900);
  margin-bottom: 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.section-intro {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

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

.story-grid,
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.story-list {
  list-style: none;
  margin-top: 0.9rem;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.story-list i {
  color: var(--green-700);
}

.features-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.feature-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e8e1d8;
  padding: 1rem;
}

.feature-card i {
  font-size: 1.3rem;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}


.feature-card h3 {
  font-size: 1.02rem;
  color: var(--brown-900);
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: #636363;
  font-size: 0.95rem;
}

.products-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--white);
  border: 1px solid #ece2d4;
  border-radius: 14px;
  padding: 0.85rem;
}

.product-card img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 0.65rem;
}

.product-card h3 {
  color: var(--brown-900);
  margin-bottom: 0.25rem;
}

.product-card p {
  color: #606060;
  margin-bottom: 0.35rem;
}

.product-card strong {
  color: var(--green-700);
  font-size: 1.1rem;
}

.product-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-list blockquote {
  background: var(--white);
  border-left: 4px solid var(--green-600);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
}

.review-list cite {
  display: block;
  margin-top: 0.35rem;
  color: #5d5d5d;
  font-style: normal;
  font-weight: 600;
}

.cert-grid {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.cert-grid img {
  border-radius: 12px;
  border: 1px solid #dfdfdf;
  height: 170px;
  object-fit: cover;
}

.order-form {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 1rem;
}

.order-form label {
  display: block;
  font-weight: 600;
  color: #3e3e3e;
  margin-bottom: 0.7rem;
}

.order-form input,
.order-form select {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
}

.order-status {
  margin-top: 0.6rem;
  min-height: 24px;
  color: var(--green-700);
  font-weight: 700;
}

.site-footer {
  background: #1f150f;
  color: #e7dfd7;
  padding: 2.2rem 0;
}

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

.site-footer h3 {
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #6f5843;
  margin-bottom: 0.5rem;
}

.site-footer p {
  margin-bottom: 0.4rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(36, 180, 92, 0.38);
  z-index: 1200;
}

@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .brand span {
    display: none;
  }

  .nav {
    display: flex;
    font-size: 0.85rem;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-whatsapp {
    display: none;
  }

  .hero-grid,
  .story-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand span {
    font-size: 1rem;
  }

  .footer-logo {
    width: 88px;
    height: 88px;
  }

  .features-grid,
  .products-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
