:root {
  --pink: #ff6fae;
  --pink-deep: #ef4f98;
  --pink-soft: #ffe2ef;
  --purple: #6f3bb8;
  --purple-deep: #4e287f;
  --lavender: #a98be8;
  --cream: #fff4e6;
  --cream-light: #fffaf2;
  --gold: #e2a900;
  --blue: #20aeea;
  --green: #58c85b;
  --charcoal: #2a2028;
  --muted: #705d69;
  --white: #ffffff;
  --line: rgba(111, 59, 184, 0.14);
  --shadow: 0 24px 60px rgba(111, 59, 184, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Inter, Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 111, 174, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 16%, rgba(169, 139, 232, 0.18), transparent 29rem),
    linear-gradient(145deg, #fffaf2 0%, #ffeaf4 50%, #f5edff 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(111, 59, 184, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(111, 59, 184, 0.16));
}

.brand-mark {
  display: grid;
  line-height: 1;
}

.brand-mark strong {
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
}

.brand-mark span {
  color: var(--pink);
  font-family: "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
  font-size: 1.18rem;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 10px;
  border-radius: 999px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--pink-deep);
  background: rgba(255, 111, 174, 0.10);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 111, 174, 0.24);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  min-height: 44px;
  background: var(--green);
  box-shadow: 0 16px 28px rgba(88, 200, 91, 0.22);
  font-size: 0.82rem;
}

.header-cta::before,
.button[href*="wa.me"]::before,
.footer-links a[href*="wa.me"]::before {
  content: "✆";
  font-size: 1.65em;
  font-weight: 900;
  line-height: 0;
}

.footer-links a[href*="wa.me"]::before {
  margin-right: 0.35em;
}

.language-switch {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(111, 59, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--purple);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(111, 59, 184, 0.10);
}

.language-switch:hover {
  color: var(--pink-deep);
  background: var(--white);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--purple);
  box-shadow: none;
}

.button.green {
  background: var(--green);
  box-shadow: 0 18px 34px rgba(88, 200, 91, 0.23);
}

.main {
  flex: 1;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
  min-height: calc(100vh - 84px);
  padding-top: 46px;
  padding-bottom: 54px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #473944;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.actions,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin-top: 32px;
}

.chip-row {
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-media {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: min(92%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 226, 239, 0.95), rgba(255, 255, 255, 0.28) 64%, transparent 70%);
  filter: drop-shadow(0 30px 70px rgba(111, 59, 184, 0.18));
}

.video-stage {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
}

.video-stage video,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 2%;
  bottom: 7%;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.intro-band {
  background: rgba(255, 255, 255, 0.44);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.feature,
.gallery-card,
.faq-item,
.contact-panel,
.order-card {
  border: 1px solid rgba(111, 59, 184, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.card,
.feature,
.gallery-card,
.contact-panel,
.order-card {
  padding: 28px;
}

.feature {
  min-height: 230px;
}

.icon-dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--purple);
  font-weight: 950;
}

.feature:nth-child(2n) .icon-dot {
  background: #efe6ff;
}

.feature:nth-child(3n) .icon-dot {
  background: #fff0bd;
}

.feature h3,
.card h3,
.gallery-card h3,
.order-card h3 {
  margin-bottom: 12px;
}

.feature p,
.card p,
.gallery-card p,
.order-card p {
  margin: 0;
  color: var(--muted);
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card .image {
  height: 260px;
  overflow: hidden;
  background: var(--cream);
}

.gallery-card.media-card .image {
  height: 300px;
}

.carousel {
  position: relative;
}

.carousel img[hidden] {
  display: none;
}

.carousel-button {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 59, 184, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--purple);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 24px rgba(42, 32, 40, 0.12);
}

.carousel-button:hover {
  color: var(--pink-deep);
  background: var(--white);
}

.carousel-button.prev {
  left: 14px;
}

.carousel-button.next {
  right: 14px;
}

.carousel-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-card.media-card img {
  cursor: zoom-in;
}

.media-card .content {
  padding: 24px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(56px, 0.12fr) minmax(0, 1fr) minmax(56px, 0.12fr);
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(18px, 4vw, 44px);
  background: rgba(42, 32, 40, 0.84);
  backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  width: min(100%, 1040px);
  max-height: 88vh;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: calc(88vh - 54px);
  border-radius: 18px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.gallery-lightbox figcaption {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple);
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--pink-deep);
  background: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav.prev {
  justify-self: end;
}

.lightbox-nav.next {
  justify-self: start;
}

body.lightbox-open {
  overflow: hidden;
}

.placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 111, 174, 0.18), transparent 34%),
    radial-gradient(circle at 76% 30%, rgba(32, 174, 234, 0.16), transparent 34%),
    var(--cream);
  color: var(--purple);
  font-weight: 900;
  text-align: center;
}

.flavor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.flavor-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 226, 239, 0.72);
  color: var(--purple);
  font-weight: 850;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}

.step-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 950;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  background: var(--cream-light);
  color: var(--purple);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--pink);
  font-size: 1.35rem;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
  gap: 28px;
  align-items: start;
}

.contact-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--purple);
  font-weight: 850;
  text-decoration: none;
}

.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-list {
  gap: 16px;
}

.contact-list li {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.contact-list strong {
  color: var(--charcoal);
  font-weight: 700;
}

.contact-list a,
.contact-list span {
  min-width: 0;
  overflow-wrap: break-word;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.cta-band {
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 20%, rgba(169, 139, 232, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--purple), #8b4ad6);
  color: var(--white);
  padding: clamp(36px, 6vw, 64px);
  overflow: hidden;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 680px;
  opacity: 0.88;
}

.site-footer {
  padding: 38px 0;
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--purple);
  font-weight: 850;
  text-decoration: none;
}

.confetti {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.confetti i {
  position: absolute;
  top: -12vh;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  border-radius: var(--radius-shape);
  background: var(--color);
  opacity: 0;
  animation: confetti-fall var(--duration) var(--delay) cubic-bezier(0.23, 0.74, 0.55, 1) forwards;
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -20vh, 0) rotate(0deg);
  }

  10% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift), 112vh, 0) rotate(var(--spin));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .confetti {
    display: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 30px, 720px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 84px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 16px;
    font-size: 0.95rem;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero,
  .section-head,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    order: -1;
    min-height: 330px;
  }

  .video-stage {
    width: min(86vw, 380px);
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 58px 18px 18px;
  }

  .gallery-lightbox figure {
    grid-row: 1;
  }

  .gallery-lightbox img {
    max-height: calc(82vh - 70px);
  }

  .lightbox-nav {
    position: fixed;
    bottom: 18px;
  }

  .lightbox-nav.prev {
    left: calc(50% - 64px);
  }

  .lightbox-nav.next {
    right: calc(50% - 64px);
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section,
  .footer-inner {
    width: min(100% - 28px, 420px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-mark strong {
    font-size: 1.12rem;
  }

  .brand-mark span {
    font-size: 0.94rem;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .button {
    width: 100%;
  }

  .grid.three,
  .grid.four,
  .flavor-list {
    grid-template-columns: 1fr;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .card,
  .feature,
  .gallery-card,
  .contact-panel,
  .order-card {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
