@font-face {
  font-family: Montserrat;
  src: url("montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url("montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #d70a73;
  --pink-dark: #920044;
  --pink-soft: #f6d4e4;
  --yellow: #f2df00;
  --cream: #fffaf3;
  --paper: #ffffff;
  --ink: #2d1723;
  --muted: #745f69;
  --line: #eadde3;
  --green: #1f9560;
  --radius: 28px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(215, 10, 115, 0.12);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 52;
  width: 154px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav > a:not(.nav-buy) {
  padding: 10px 0;
}

.main-nav > a:not(.nav-buy):hover {
  color: var(--pink);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 223, 0, 0.2), transparent 26%),
    linear-gradient(122deg, var(--cream) 0%, #fbe8f1 56%, #efc2d8 100%);
}

.hero::before {
  content: "3";
  position: absolute;
  top: 50%;
  right: -0.06em;
  color: rgba(255, 255, 255, 0.44);
  font-size: min(63vw, 800px);
  font-weight: 700;
  line-height: 0.6;
  transform: translateY(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(650px, 100%);
  padding: 80px 48px 80px max(32px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #ffd9ea;
}

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

h1,
h2 {
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  margin: 28px 0 30px;
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
  line-height: 0.92;
}

h1 em,
h2 em {
  color: var(--pink);
  font-style: normal;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  padding: 16px 24px;
  background: var(--pink);
  box-shadow: 0 14px 34px rgba(146, 0, 68, 0.2);
  color: #fff;
}

.button-text {
  min-height: 44px;
  color: var(--pink-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  padding: 28px 0 0;
  margin: 42px 0 0;
  border-top: 1px solid rgba(146, 0, 68, 0.14);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 4px;
  padding-right: 18px;
}

.hero-facts strong {
  color: var(--pink);
  font-size: 1.3rem;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.hero-product {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: center;
  padding: 60px 3vw;
}

.hero-product img {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  filter: drop-shadow(0 36px 34px rgba(90, 0, 40, 0.23));
  transform: rotate(-2deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(146, 0, 68, 0.19);
  border-radius: 50%;
}

.orbit-one {
  width: min(38vw, 520px);
  aspect-ratio: 1;
}

.orbit-two {
  width: min(30vw, 410px);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.68);
}

.product-note {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--pink-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.note-one {
  top: 20%;
  left: 10%;
}

.note-two {
  right: 10%;
  bottom: 22%;
}

.section {
  padding: 112px max(28px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.formula-intro h2,
.buy-copy h2,
.brand-story h2 {
  margin: 24px 0 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.section-heading > p,
.formula-intro > p,
.buy-copy > p,
.brand-story-copy > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.benefit-grid article {
  min-height: 270px;
  padding: 30px;
  background: var(--paper);
}

.benefit-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
}

.benefit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.benefits-visual {
  overflow: hidden;
  margin: 36px 0 0;
  border-radius: var(--radius);
  background: #faeaf2;
}

.benefits-visual img {
  width: 100%;
}

.formula {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  background: var(--pink-dark);
  color: #fff;
}

.formula-intro {
  align-self: start;
  position: sticky;
  top: 132px;
}

.formula-intro > p {
  max-width: 460px;
  margin-top: 30px;
  color: #efd5e1;
}

.formula-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.formula-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.formula-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 0.7rem;
}

.formula-list h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.formula-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: #efd5e1;
  font-size: 0.88rem;
  line-height: 1.75;
}

.routine {
  background: var(--paper);
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  margin: 72px 0 32px;
  list-style: none;
}

.routine-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.routine-steps li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.routine-steps h3 {
  margin: 13px 0 12px;
  font-size: 1.35rem;
}

.routine-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.precaution {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
}

.buy-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  overflow: hidden;
  background: var(--yellow);
}

.buy-copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.buy-copy > p {
  max-width: 600px;
  margin: 28px 0 34px;
  color: #5f5320;
}

.buy-stamp {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-self: center;
  width: min(32vw, 340px);
  aspect-ratio: 1;
  border: 2px solid rgba(45, 23, 35, 0.22);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.buy-stamp::before,
.buy-stamp::after {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(45, 23, 35, 0.3);
  border-radius: inherit;
  content: "";
}

.buy-stamp::after {
  inset: 32px;
  border-style: solid;
}

.buy-stamp > span {
  margin-left: 19%;
  color: var(--pink);
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 700;
  line-height: 1;
}

.buy-stamp small {
  position: relative;
  z-index: 1;
  font-size: clamp(0.65rem, 1.2vw, 0.92rem);
  font-weight: 700;
  line-height: 1.3;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  background: var(--cream);
}

.faq-heading {
  display: block;
  align-self: start;
  position: sticky;
  top: 132px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--pink);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 56px 30px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  background: var(--ink);
  color: #fff;
}

.brand-story-copy {
  align-self: end;
}

.brand-story-copy > p {
  color: #dfcdd5;
}

.brand-story nav {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-story nav a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-story nav a:hover {
  color: var(--yellow);
}

.whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 10px 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(16, 86, 53, 0.3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.whatsapp svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

footer {
  padding: 72px max(28px, calc((100vw - var(--max)) / 2)) 30px;
  background: var(--pink-dark);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  align-items: start;
  gap: 64px;
  padding-bottom: 62px;
}

.footer-logo {
  width: 180px;
}

.footer-main > p {
  margin: 4px 0;
  color: #eac8d7;
  font-size: 0.82rem;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-main nav a:hover {
  color: var(--yellow);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #dbaabd;
  font-size: 0.66rem;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.nav-buy) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-product {
    min-height: 540px;
  }

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

  .routine-steps {
    grid-template-columns: 1fr;
  }

  .routine-steps li {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 20px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    padding: 0;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 2px;
    background: var(--pink-dark);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    z-index: 51;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100vh - 72px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 36px 28px;
    background: var(--cream);
    opacity: 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .main-nav > a:not(.nav-buy) {
    display: flex;
    min-height: 62px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav .nav-buy {
    justify-content: space-between;
    margin-top: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    top: auto;
    right: -0.08em;
    bottom: 8%;
    font-size: 115vw;
    transform: none;
  }

  .hero-copy {
    padding: 70px 24px 24px;
  }

  h1 {
    margin: 24px 0;
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .hero-copy > p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button-text {
    justify-content: space-between;
    padding: 0 8px;
  }

  .hero-facts {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-facts li {
    padding-right: 4px;
  }

  .hero-facts strong {
    font-size: 1.04rem;
  }

  .hero-product {
    min-height: 390px;
    padding: 24px 12px 64px;
  }

  .hero-product img {
    width: 108%;
    max-width: none;
  }

  .orbit-one {
    width: 90vw;
  }

  .orbit-two {
    width: 70vw;
  }

  .product-note {
    font-size: 0.52rem;
  }

  .note-one {
    top: 10%;
    left: 5%;
  }

  .note-two {
    right: 5%;
    bottom: 14%;
  }

  .section {
    padding: 82px 24px;
  }

  .section-heading,
  .formula,
  .buy-section,
  .faq,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .section-heading h2,
  .formula-intro h2,
  .buy-copy h2,
  .brand-story h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .benefit-grid {
    margin-top: 48px;
  }

  .benefit-grid article {
    min-height: 220px;
    padding: 22px;
  }

  .benefit-grid article > span {
    margin-bottom: 36px;
  }

  .benefits-visual {
    margin-top: 20px;
    border-radius: 18px;
  }

  .benefits-visual img {
    min-height: 280px;
    object-fit: cover;
  }

  .formula {
    gap: 58px;
  }

  .formula-intro,
  .faq-heading {
    position: static;
  }

  .routine-steps {
    margin-top: 48px;
  }

  .routine-steps li {
    grid-template-columns: 48px 1fr;
    padding: 24px;
  }

  .routine-steps li > span {
    width: 44px;
    height: 44px;
  }

  .buy-section {
    gap: 58px;
  }

  .buy-stamp {
    width: min(82vw, 320px);
  }

  .faq {
    gap: 48px;
  }

  .brand-story {
    gap: 54px;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 11px;
  }

  .whatsapp span {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-legal {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
