:root {
  --cream: #f8f0dd;
  --butter: #f2c86d;
  --gold: #eda526;
  --earth: #233d20;
  --deep: #172b18;
  --sage: #9bbc2f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 61, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--deep);
  background:
    radial-gradient(circle at 7% 4%, rgba(155, 188, 47, 0.24), transparent 23%),
    radial-gradient(circle at 91% 22%, rgba(248, 240, 221, 0.95), transparent 28%),
    radial-gradient(circle at 98% 0%, rgba(237, 165, 38, 0.18), transparent 12%),
    var(--cream);
}

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

img, svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 240, 221, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35, 61, 32, 0.12);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(80, 49, 20, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep);
}

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

[id] {
  scroll-margin-top: 92px;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

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

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

h1, h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  margin-bottom: 24px;
  color: var(--gold);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 610px;
  color: rgba(47, 31, 18, 0.72);
  font-size: 1.18rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--earth);
  box-shadow: 0 16px 35px rgba(111, 69, 24, 0.26);
}

.button.secondary {
  color: var(--earth);
  background: var(--white);
  box-shadow: 0 16px 35px rgba(111, 69, 24, 0.1);
}

.button.whatsapp {
  color: var(--white);
  background: #1faa53;
  box-shadow: 0 16px 35px rgba(20, 90, 50, 0.28);
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 80% 72%, rgba(248, 240, 221, 0.92), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8f0dd 48%, #eef1e5);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(155, 188, 47, 0.28);
}

.hero-card::before {
  width: 260px;
  height: 260px;
  top: -70px;
  right: -60px;
}

.hero-card::after {
  width: 190px;
  height: 190px;
  bottom: 36px;
  left: -50px;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 64px 56px 96px;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 30px 28px rgba(47, 31, 18, 0.28));
  animation: heroFade 16s ease-in-out infinite;
}

.hero-photo:nth-child(1) {
  animation-delay: 0s;
}

.hero-photo:nth-child(2) {
  animation-delay: 4s;
}

.hero-photo:nth-child(3) {
  animation-delay: 8s;
}

.hero-photo:nth-child(4) {
  animation-delay: 12s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  4%,
  24% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  28%,
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slides,
  .hero-photo,
  .whatsapp-float::after {
    animation: none;
  }

  .hero-photo:first-child {
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mini-logo {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  gap: 4px;
  color: var(--earth);
  font-weight: 900;
  text-align: center;
}

.mini-logo img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(35, 61, 32, 0.25));
}

.mini-logo small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 34px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--earth);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(47, 31, 18, 0.18);
}

.trust-strip {
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-strip div {
  padding: 22px 18px;
  border-radius: 22px;
  background: var(--white);
  text-align: center;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(80, 49, 20, 0.08);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

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

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

.benefit-card,
.product-card,
.about-panel,
.usage-card,
.ingredients-card,
.contact-form {
  border: 1px solid rgba(111, 69, 24, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(80, 49, 20, 0.08);
}

.benefit-card,
.product-card {
  padding: 30px;
  border-radius: 32px;
}

.benefit-card p,
.product-card p,
.about-panel p,
.contact p {
  color: rgba(47, 31, 18, 0.68);
  line-height: 1.75;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #f8f0dd;
  color: var(--earth);
  font-size: 1.5rem;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card.featured {
  background: var(--deep);
  color: var(--white);
  transform: translateY(-18px);
}

.product-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.product-image {
  display: block;
  width: 100%;
  height: 230px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 26px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(47, 31, 18, 0.28));
  background: radial-gradient(circle at 35% 30%, #fff3c6, #eda526 44%, #233d20 100%);
}

.product-card.featured .product-image {
  background: radial-gradient(circle at 35% 30%, #ffffff, #9bbc2f 45%, #172b18 100%);
}

.product-card:nth-child(3) .product-image {
  background: radial-gradient(circle at 35% 30%, #eef3df, #a8c46a 45%, #2f4423 100%);
}

.product-card:last-child .product-image {
  background: radial-gradient(circle at 35% 30%, #f8f0dd, #f2c86d 45%, #233d20 100%);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--earth);
  transition: color 0.2s ease, transform 0.2s ease;
}

.card-cta:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.product-card.featured .card-cta {
  color: var(--butter);
}

.product-card.featured .card-cta:hover {
  color: var(--white);
}

.price {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
  color: var(--gold);
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(111, 69, 24, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(80, 49, 20, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid rgba(111, 69, 24, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 34px rgba(80, 49, 20, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--earth);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(47, 31, 18, 0.68);
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(23, 43, 24, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: grid;
}

.lightbox figure {
  margin: 0;
  max-width: min(92vw, 1000px);
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  margin-top: 16px;
  color: var(--cream);
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--earth);
  font-size: 1.6rem;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(20, 90, 50, 0.35);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.contact-numbers a.whatsapp-pill {
  background: #25d366;
  color: var(--white);
}

.gallery-card h3 {
  padding: 18px 20px 22px;
  margin: 0;
}

.empty-gallery {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 26px;
  border: 1px dashed rgba(41, 69, 29, 0.24);
  border-radius: 30px;
  color: rgba(28, 45, 22, 0.58);
  font-weight: 800;
  text-align: center;
}

.usage-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 6vw, 62px);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 240, 186, 0.62));
}

.usage-card p {
  max-width: 720px;
  color: rgba(47, 31, 18, 0.7);
  font-size: 1.08rem;
  line-height: 1.8;
}

.ingredients-card {
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
}

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

.ingredient-list li {
  padding: 13px 15px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--earth);
  font-weight: 800;
}

.about {
  max-width: 100%;
  background: linear-gradient(135deg, rgba(116, 132, 91, 0.18), rgba(247, 216, 117, 0.28));
}

.about-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 74px);
  border-radius: 42px;
}

.about-panel p {
  max-width: 760px;
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border-radius: 30px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(111, 69, 24, 0.16);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: var(--white);
  color: var(--deep);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(213, 155, 45, 0.22);
  border-color: var(--gold);
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--sage);
  font-weight: 800;
}

.contact-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-numbers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--earth);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(80, 49, 20, 0.08);
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 46px;
  color: rgba(47, 31, 18, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(111, 69, 24, 0.12);
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-copy {
  margin: 24px 0 0;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .usage-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .trust-strip,
  .benefit-grid,
  .product-grid,
  .site-gallery {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    transform: none;
  }

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

@media (max-width: 520px) {
  .section-padding {
    padding: 68px 18px;
  }

  .nav {
    padding-inline: 18px;
  }

  .hero-card {
    min-height: 430px;
    border-radius: 34px;
  }
}
