:root {
  --bg: #fff6ef;
  --text: #4d2004;
  --muted: #7f4c2f;
  --accent: #f27f34;
  --accent-dark: #db6318;
  --cta-bg: #b64910;
  --cta-bg-hover: #8f3507;
  --panel: rgba(255, 255, 255, 0.65);
  --badge: rgba(255, 255, 255, 0.85);
  --stroke: rgba(174, 99, 50, 0.18);
  --surface: rgba(255, 246, 237, 0.75);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff9f5 0%, var(--bg) 44%, #ffeddf 100%);
  line-height: 1.45;
}

.landing {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.bg-glow-left {
  left: -8rem;
  top: 6rem;
  background: rgba(254, 190, 140, 0.62);
}

.bg-glow-right {
  right: -8rem;
  bottom: 8rem;
  background: rgba(255, 169, 110, 0.45);
}

.bg-glow-top-right {
  right: 8%;
  top: -7rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 206, 146, 0.36);
}

.bg-glow-mid-left {
  left: 12%;
  top: 44%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 190, 128, 0.24);
}

.bg-glow-bottom-center {
  left: 50%;
  bottom: -8rem;
  transform: translateX(-50%);
  width: 24rem;
  height: 24rem;
  background: rgba(255, 176, 116, 0.24);
}

.shell {
  position: relative;
  width: min(1160px, 100% - 2rem);
  margin: 0 auto;
  padding: 1.25rem 0 4.2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  margin: 0;
  letter-spacing: 0.3em;
  font-weight: 700;
  font-size: 1.15rem;
  opacity: 0.92;
}

.wa-icon {
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(242, 127, 52, 0.3);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.wa-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.hero-grid {
  position: relative;
  margin-top: 1.2rem;
  border-radius: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--stroke);
  background: linear-gradient(140deg, rgba(255, 233, 214, 0.84), rgba(255, 214, 184, 0.52));
  box-shadow: 0 22px 48px rgba(186, 105, 50, 0.14);
  display: grid;
  align-items: center;
  gap: 1.1rem;
}

.silhouette {
  position: absolute;
  z-index: 0;
  right: 30%;
  top: 50%;
  transform: translate(50%, -50%);
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.88;
  font-size: clamp(4.2rem, 16vw, 11rem);
  color: rgba(124, 63, 22, 0.09);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
  user-select: none;
  pointer-events: none;
}

.silhouette span {
  display: block;
}

.panel {
  position: relative;
  z-index: 1;
}

.details {
  padding: 1.05rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(181, 98, 46, 0.14);
  background: linear-gradient(170deg, rgba(255, 250, 246, 0.7), rgba(255, 240, 227, 0.45));
  box-shadow: 0 10px 22px rgba(171, 88, 34, 0.08);
  backdrop-filter: blur(4px);
}

.details .eyebrow {
  margin: 0;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: #a3511c;
}

.details .lead {
  margin: 0.8rem 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.06rem);
  line-height: 1.58;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem 1rem;
  max-width: 31rem;
}

.facts-grid p {
  margin: 0;
  padding: 0.62rem 0.1rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(181, 98, 46, 0.22);
  background: transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

.price {
  margin: 1rem 0 0;
  display: inline-block;
  padding: 0.1rem 0;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid rgba(191, 92, 22, 0.28);
  background: transparent;
  color: #bc520f;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  line-height: 1.05;
}

.price span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b86a35;
}

.product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 3;
}

.product picture {
  display: block;
  width: min(100%, 390px);
  aspect-ratio: 760 / 1200;
}

.product::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(78%, 320px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 172, 96, 0.5) 0%, rgba(255, 172, 96, 0.16) 45%, rgba(255, 172, 96, 0) 72%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(149, 71, 23, 0.24));
}

.why {
  background: var(--panel);
  border-radius: 1.25rem;
  border: 1px solid var(--stroke);
  padding: 1.05rem;
  align-self: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgba(174, 92, 39, 0.12);
}

.why h2 {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.2rem);
  line-height: 1.25;
}

.why p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.badges {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badges span {
  display: inline-flex;
  background: var(--badge);
  border: 1px solid rgba(181, 98, 46, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.cta,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--cta-bg);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta {
  margin-top: 1rem;
  padding: 0.78rem 1.5rem;
  font-size: 0.82rem;
  box-shadow: 0 10px 20px rgba(131, 53, 10, 0.28);
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 1rem));
  padding: 0.9rem 1rem;
  z-index: 30;
  box-shadow: 0 14px 30px rgba(131, 53, 10, 0.3);
}

.cta:hover,
.cta:focus-visible,
.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--cta-bg-hover);
}

.site-footer {
  text-align: center;
  color: #9a653f;
  font-size: 0.88rem;
  padding: 0.45rem 1rem 1.25rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.95fr 1fr;
    padding: 2rem 2rem 1.8rem;
    min-height: min(740px, calc(100vh - 7rem));
  }

  .silhouette {
    left: 50%;
    right: auto;
    top: 52%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: clamp(7rem, 21vw, 15rem);
  }

  .why {
    padding: 1.25rem;
  }

  .floating-cta {
    width: auto;
    left: auto;
    right: 1rem;
    transform: none;
    padding-inline: 1.4rem;
  }
}

@media (max-width: 639px) {
  .hero-grid {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .bg-glow-mid-left,
  .bg-glow-bottom-center {
    display: none;
  }

  .silhouette {
    right: 50%;
    top: 46%;
    transform: translate(50%, -50%);
    font-size: clamp(3.1rem, 19vw, 6.4rem);
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .wa-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

a:hover {
  background: var(--accent-dark);
}

a:hover,
a:focus-visible {
  transform: translateY(-1px);
}

a:focus-visible {
  outline: 2px solid rgba(123, 61, 23, 0.45);
  outline-offset: 2px;
}
