:root {
  --color-lavender: #b77cc3;
  --color-lavender-dark: #7f4f91;
  --color-rose: #f6a8c7;
  --color-rose-light: #ffe3ef;
  --color-cream: #fff8fc;
  --color-mint: #dff2e8;
  --color-ink: #3b2b3f;
  --color-muted: #78647d;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(127, 79, 145, 0.16);
  --shadow-card: 0 18px 48px rgba(127, 79, 145, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 168, 199, .35), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(183, 124, 195, .18), transparent 30%),
    linear-gradient(180deg, #fff7fc 0%, #fff 46%, #fff8fc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-lavender-dark);
  color: var(--color-white);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 252, .78);
  border-bottom: 1px solid rgba(183, 124, 195, .12);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  color: var(--color-lavender-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  letter-spacing: .01em;
}

.brand__text small {
  color: var(--color-muted);
  font-size: .78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--color-muted);
  font-weight: 650;
}

.nav-menu a:not(.btn) {
  position: relative;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-lavender));
  transition: right .24s ease;
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn):focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-lavender-dark);
  transition: transform .2s ease, opacity .2s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-rose));
  color: var(--color-white);
  box-shadow: 0 16px 32px rgba(183, 124, 195, .25);
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(183, 124, 195, .33);
  filter: saturate(1.04);
}

.btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: .92rem;
}

.btn--ghost {
  background: rgba(255, 255, 255, .72);
  color: var(--color-lavender-dark);
  border: 1px solid rgba(183, 124, 195, .24);
  box-shadow: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--color-lavender-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding-top: 62px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 60px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--color-ink);
  line-height: 1.05;
  letter-spacing: -.035em;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  margin-bottom: 18px;
}

h3 {
  color: var(--color-lavender-dark);
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 670px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust span {
  padding: 10px 14px;
  border: 1px solid rgba(183, 124, 195, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--color-muted);
  font-size: .94rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: min(90vw, 540px);
  aspect-ratio: 1 / 1;
  border-radius: 48% 52% 60% 40% / 52% 45% 55% 48%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .95), transparent 30%),
    linear-gradient(135deg, rgba(255, 227, 239, .92), rgba(223, 242, 232, .70), rgba(226, 204, 239, .92));
  box-shadow: var(--shadow-soft);
  animation: morph 12s ease-in-out infinite alternate;
}

@keyframes morph {
  0% { border-radius: 48% 52% 60% 40% / 52% 45% 55% 48%; transform: rotate(0deg); }
  100% { border-radius: 60% 40% 43% 57% / 44% 62% 38% 56%; transform: rotate(3deg); }
}

.logo-card {
  position: relative;
  z-index: 2;
  width: min(80vw, 440px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(183, 124, 195, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 13px 18px;
  border: 1px solid rgba(183, 124, 195, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-card);
  color: var(--color-lavender-dark);
  font-weight: 850;
}

.floating-card--one {
  left: 2%;
  bottom: 24%;
}

.floating-card--two {
  right: 0;
  top: 21%;
}

.intro {
  padding-top: 54px;
}

.intro__grid {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: 38px;
  align-items: start;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-card);
}

.intro p {
  max-width: 710px;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 36px;
}

.section-head > div,
.section-head h2 {
  max-width: 760px;
}

.section-head > p,
.section-head--center p {
  max-width: 470px;
  color: var(--color-muted);
}

.section-head--center {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

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

.card,
.mood,
.contact-form,
.steps {
  border: 1px solid rgba(183, 124, 195, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.product-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  top: -70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246, 168, 199, .35), rgba(183, 124, 195, .18));
}

.product-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 24px;
  background: var(--color-rose-light);
  font-size: 2rem;
}

.product-card p,
.product-card li,
.mood p,
.step p,
.process__content p,
.gift p,
.contact__content p,
.faq p {
  color: var(--color-muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-left: 1.1rem;
}

.moods {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 227, 239, .72), transparent 24%),
    radial-gradient(circle at 85% 70%, rgba(223, 242, 232, .75), transparent 28%);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mood {
  padding: 28px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.mood:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(127, 79, 145, .15);
}

.mood span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-rose-light), #f0def7);
  font-size: 1.85rem;
}

.process__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.process__content {
  max-width: 590px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-lavender-dark);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 248, 252, .9));
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.step span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-rose));
  color: var(--color-white);
  font-weight: 950;
}

.step h3,
.step p {
  margin-bottom: 4px;
}

.gift__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 56px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 227, 239, .94), rgba(255, 255, 255, .88)),
    radial-gradient(circle at 90% 15%, rgba(183, 124, 195, .18), transparent 28%);
  box-shadow: var(--shadow-soft);
}

.gift__box div {
  max-width: 760px;
}

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

details {
  border: 1px solid rgba(183, 124, 195, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 32px rgba(127, 79, 145, .07);
  overflow: hidden;
}

summary {
  padding: 22px 26px;
  color: var(--color-lavender-dark);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  padding: 0 26px 24px;
}

.contact {
  padding-bottom: 110px;
}

.contact__grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(183, 124, 195, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  transition: transform .22s ease, box-shadow .22s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.contact-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: var(--color-rose-light);
  font-size: 1.4rem;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card small {
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form h3 {
  margin-bottom: 2px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-lavender-dark);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(183, 124, 195, .22);
  border-radius: 16px;
  background: rgba(255, 248, 252, .72);
  color: var(--color-ink);
  outline: none;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-lavender);
  box-shadow: 0 0 0 4px rgba(183, 124, 195, .14);
  background: var(--color-white);
}

.form-note {
  margin: -2px 0 0;
  color: var(--color-muted);
  font-size: .92rem;
}

.site-footer {
  padding: 58px 0 24px;
  background: #fff0f8;
  border-top: 1px solid rgba(183, 124, 195, .12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 30px;
  align-items: start;
}

.footer__logo {
  width: 150px;
  margin-bottom: 12px;
}

.footer__grid p {
  max-width: 380px;
  color: var(--color-muted);
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  color: var(--color-muted);
  font-weight: 750;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--color-lavender-dark);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(183, 124, 195, .13);
  color: var(--color-muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-rose));
  color: var(--color-white);
  box-shadow: 0 18px 38px rgba(127, 79, 145, .28);
  font-size: 1.75rem;
  transition: transform .22s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .68s ease, transform .68s ease;
}

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

.reveal--delay {
  transition-delay: .12s;
}

.reveal--delay-2 {
  transition-delay: .22s;
}

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 84px 20px auto 20px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(183, 124, 195, .18);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  body.menu-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    padding: 13px 12px;
  }

  .nav-menu .btn {
    width: auto;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .intro__grid,
  .process__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 430px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

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

  .gift__box {
    display: grid;
    padding: 38px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand__text {
    display: none;
  }

  .brand__logo {
    width: 58px;
    height: 58px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    display: grid;
  }

  .cards,
  .mood-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .intro__grid,
  .gift__box,
  .contact-form {
    padding: 26px;
  }

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

  .floating-card {
    display: none;
  }

  .footer__grid,
  .footer__bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

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