:root {
  --bg: #f7f0e8;
  --bg-deep: #e9ddcf;
  --surface: rgba(255, 252, 247, 0.7);
  --surface-strong: rgba(255, 249, 243, 0.92);
  --ink: #1b1630;
  --muted: #5f5978;
  --lavender: #8e74d8;
  --lavender-soft: #d8ccff;
  --lavender-deep: #5640a8;
  --sage: #8fa584;
  --gold: #f0bf73;
  --shadow: 0 24px 80px rgba(42, 22, 90, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 193, 255, 0.9), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(240, 191, 115, 0.3), transparent 18%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.hero,
.marquee,
.benefits-section,
.usage-section,
.gallery-section,
.reviews-section,
.buy-section {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  margin-top: 8px;
  border: 1px solid rgba(86, 64, 168, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(84, 55, 122, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--lavender) 0%, var(--lavender-deep) 100%);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span,
.site-nav a,
.hero-text,
.benefit-card p,
.usage-steps p,
.usage-note li,
.review-card footer,
.buy-card label,
.form-note,
.site-footer {
  color: var(--muted);
}

.brand-copy span {
  font-size: 0.78rem;
}

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

.site-nav a {
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lavender-deep), var(--lavender));
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(86, 64, 168, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(86, 64, 168, 0.28);
}

.button:disabled {
  cursor: wait;
  transform: none;
  box-shadow: 0 18px 30px rgba(86, 64, 168, 0.14);
  opacity: 0.85;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(86, 64, 168, 0.12);
}

.hero,
.benefits-section,
.usage-section,
.gallery-section,
.reviews-section,
.buy-section {
  padding: 72px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 36px;
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
}

h1 span {
  color: var(--lavender-deep);
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-stats div,
.benefit-card,
.usage-note,
.review-card,
.buy-card,
.scene-card {
  border: 1px solid rgba(86, 64, 168, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  min-height: 640px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(248, 221, 179, 0.35), transparent 18%),
    linear-gradient(180deg, rgba(255, 249, 243, 0.9), rgba(228, 219, 246, 0.82) 64%, rgba(216, 204, 237, 0.94));
  border: 1px solid rgba(86, 64, 168, 0.1);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(58, 32, 122, 0.18);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 24%, transparent 76%, rgba(61, 42, 115, 0.08));
  mix-blend-mode: screen;
}

.hero-stage::after {
  background:
    radial-gradient(circle at center, transparent 55%, rgba(41, 25, 77, 0.18) 100%);
}

.orb,
.bubble {
  position: absolute;
  border-radius: 999px;
}

.orb {
  filter: blur(18px);
}

.orb-one {
  inset: 40px auto auto 38px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.76);
}

.orb-two {
  inset: auto 20px 100px auto;
  width: 220px;
  height: 220px;
  background: rgba(240, 191, 115, 0.28);
}

.bubble {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.1));
  animation: drift 6s ease-in-out infinite;
  box-shadow: inset -10px -10px 20px rgba(255, 255, 255, 0.14);
}

.bubble-one {
  top: 112px;
  right: 98px;
  width: 26px;
  height: 26px;
}

.bubble-two {
  top: 166px;
  right: 54px;
  width: 48px;
  height: 48px;
  animation-delay: 1.2s;
}

.bubble-three {
  bottom: 150px;
  left: 72px;
  width: 32px;
  height: 32px;
  animation-delay: 2.4s;
}

.soap-pedestal {
  position: absolute;
  inset: 50% 68px auto 54px;
  transform: translateY(-42%);
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(232, 222, 249, 0.18)),
    radial-gradient(circle at 40% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -30px 44px rgba(122, 94, 203, 0.16),
    0 26px 50px rgba(72, 52, 143, 0.12);
}

.soap-pedestal::after {
  content: "";
  position: absolute;
  inset: auto 36px 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 36, 109, 0.28), transparent 68%);
}

.soap-pedestal::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 44%);
}

.hero-image-placeholder,
.scene-placeholder {
  display: grid;
  place-items: center;
  color: var(--lavender-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image-placeholder {
  width: min(100%, 420px);
  min-height: 190px;
  padding: 24px;
  border: 2px dashed rgba(86, 64, 168, 0.25);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(223, 211, 255, 0.65));
  box-shadow: 0 18px 36px rgba(92, 67, 171, 0.12);
  transform: rotate(-8deg);
}

.stage-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(86, 64, 168, 0.08);
}

.stage-card span,
.scene-card p,
.scene-caption,
.usage-note ul,
.buy-copy p,
.buy-card input,
.buy-card select {
  color: var(--muted);
}

.stage-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stage-card strong,
.scene-card h3,
.benefit-card h3,
.usage-steps h3,
.buy-card label {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.top-card {
  top: 72px;
  left: 40px;
}

.bottom-card {
  right: 34px;
  bottom: 42px;
}

.marquee {
  margin-top: 42px;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(86, 64, 168, 0.08);
  border-bottom: 1px solid rgba(86, 64, 168, 0.08);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lavender-deep);
}

.marquee-track span::after {
  content: "•";
  color: rgba(86, 64, 168, 0.4);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.benefit-grid,
.reviews-grid,
.scene-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

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

.benefit-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.accent-card {
  background: linear-gradient(180deg, rgba(247, 241, 255, 0.95), rgba(237, 228, 255, 0.78));
}

.benefit-card p {
  margin: 10px 0 0;
  line-height: 1.65;
}

.usage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  margin-top: 30px;
}

.usage-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usage-steps li,
.buy-section {
  display: grid;
  gap: 18px;
}

.usage-steps li {
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 246, 0.68);
  border: 1px solid rgba(86, 64, 168, 0.08);
}

.usage-steps span {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lavender);
}

.usage-steps p,
.buy-copy p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.usage-note {
  align-self: start;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.usage-note ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usage-note li {
  position: relative;
  padding-left: 22px;
}

.usage-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

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

.scene-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 251, 247, 0.82);
}

.scene-visual {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(227, 215, 255, 0.55));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.scene-placeholder {
  width: 100%;
  height: 100%;
  padding: 24px;
  border: 2px dashed rgba(86, 64, 168, 0.2);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(231, 221, 255, 0.72));
}

.scene-caption {
  display: grid;
  gap: 6px;
}

.scene-caption span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}

.gallery-image-frame {
  margin-top: 30px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-image-frame img {
  width: 100%;
  height: auto;
}

.reviews-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  margin: 0;
}

.review-card p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.review-card footer {
  margin-top: 18px;
}

.featured-review {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(92, 72, 170, 0.96), rgba(124, 99, 204, 0.92));
}

.featured-review p,
.featured-review footer {
  color: white;
}

.buy-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  padding-bottom: 36px;
}

.buy-card {
  padding: 28px;
  border-radius: 28px;
}

.buy-card label {
  display: grid;
  gap: 10px;
}

.buy-card input,
.buy-card select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(86, 64, 168, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 12px;
  font-size: 0.92rem;
}

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

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

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .benefit-grid,
  .usage-layout,
  .reviews-grid,
  .buy-section,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero-stage {
    min-height: 520px;
  }

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

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

  .featured-review {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero,
  .benefits-section,
  .usage-section,
  .gallery-section,
  .reviews-section,
  .buy-section {
    padding-top: 56px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .soap-pedestal {
    inset: 48% 24px auto;
  }

  .top-card {
    top: 20px;
    left: 20px;
  }

  .bottom-card {
    right: 20px;
    bottom: 20px;
  }

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

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

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