:root {
  --plum: #5b134b;
  --plum-deep: #3d0c32;
  --gold: #e59b1f;
  --cream: #fff6e6;
  --cream-soft: #fffaf1;
  --sage: #a3ad8c;
  --ink: #22151e;
}

* {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(229, 155, 31, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--cream-soft), #fff);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.hero {
  min-height: calc(100vh - 5rem);
  background:
    linear-gradient(90deg, rgba(255, 246, 230, 0.96) 0%, rgba(255, 246, 230, 0.88) 45%, rgba(255, 246, 230, 0.45) 100%),
    url("../images/product-jar.jpg") right 7% center / min(38rem, 46vw) auto no-repeat,
    linear-gradient(135deg, #fffaf1 0%, #f8edda 100%);
}

.soft-band {
  background: linear-gradient(135deg, rgba(255, 246, 230, 0.92), rgba(255, 255, 255, 0.94));
}

.plum-gradient {
  background: linear-gradient(135deg, var(--plum), #7a185f 55%, var(--plum-deep));
}

.gold-gradient {
  background: linear-gradient(135deg, #f3b13c, var(--gold));
}

.nav-link {
  position: relative;
  color: rgba(34, 21, 30, 0.72);
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--plum);
}

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

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--plum);
  box-shadow: 0 18px 38px rgba(91, 19, 75, 0.22);
}

.btn-secondary {
  color: var(--plum);
  border: 1px solid rgba(91, 19, 75, 0.22);
  background: rgba(255, 255, 255, 0.68);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: var(--plum-deep);
  box-shadow: 0 22px 44px rgba(91, 19, 75, 0.28);
}

.feature-pill {
  border: 1px solid rgba(91, 19, 75, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(57, 35, 24, 0.06);
}

.product-card {
  border: 1px solid rgba(91, 19, 75, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(57, 35, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 155, 31, 0.55);
  box-shadow: 0 30px 70px rgba(57, 35, 24, 0.13);
}

.section-eyebrow {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.input-field {
  width: 100%;
  border: 1px solid rgba(91, 19, 75, 0.14);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(229, 155, 31, 0.16);
}

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

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

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: inline-flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 16px 34px rgba(31, 157, 85, 0.35);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 246, 230, 0.98) 0%, rgba(255, 246, 230, 0.78) 100%),
      url("../images/product-jar.jpg") center bottom 1rem / min(22rem, 78vw) auto no-repeat,
      linear-gradient(135deg, #fffaf1 0%, #f8edda 100%);
    padding-bottom: 24rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 20rem;
  }
}
