:root {
  color-scheme: light;
  --ink: #1f1b29;
  --muted: #6b607a;
  --lavender: #b8a2ff;
  --lavender-deep: #6f55d9;
  --rose: #f7a9c8;
  --cream: #f6f1ff;
  --mist: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.58);
  --shadow: 0 20px 60px rgba(35, 16, 77, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f8f5ff 0%, #efe9ff 38%, #fdfbff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

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

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  mix-blend-mode: multiply;
  animation: float 18s ease-in-out infinite;
}

.orb-a {
  background: radial-gradient(circle, #d5c2ff 0%, rgba(213, 194, 255, 0) 70%);
  top: -80px;
  left: -80px;
}

.orb-b {
  background: radial-gradient(circle, #ffc7da 0%, rgba(255, 199, 218, 0) 70%);
  bottom: -120px;
  right: -60px;
  animation-delay: -6s;
}

.orb-c {
  background: radial-gradient(circle, #c6f0ff 0%, rgba(198, 240, 255, 0) 70%);
  top: 35%;
  left: 55%;
  width: 420px;
  height: 420px;
  animation-delay: -12s;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6vw;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180, 160, 230, 0.25);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--lavender-deep);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav a:focus,
.nav a:focus-visible,
.btn:focus,
.btn:focus-visible,
.skip-link:focus,
.skip-link:focus-visible {
  outline: 3px solid rgba(111, 85, 217, 0.6);
  outline-offset: 4px;
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lavender-deep), #8c6bff);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow);
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  padding: 90px 0 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--lavender-deep);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 3.8vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #6f55d9, #b59dff);
  color: white;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(112, 86, 205, 0.35);
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, 0.7);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(75, 52, 150, 0.2);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid rgba(140, 120, 200, 0.2);
  padding-top: 20px;
  font-size: 14px;
}

.meta-label {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.hero-card {
  background: var(--glass);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(160, 140, 220, 0.2);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.chip {
  background: rgba(120, 95, 205, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--lavender-deep);
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.card-stats strong {
  display: block;
  font-size: 22px;
  color: var(--ink);
}

.section {
  padding: 70px 0 20px;
  scroll-margin-top: 110px;
}

.section-title h2,
.section-text h2,
.closing-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.section-title p,
.section-text p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

.section-title p + p,
.section-text p + p {
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tags span {
  border: 1px solid rgba(123, 95, 210, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, 0.6);
}

.section-visual {
  display: grid;
  place-items: center;
  gap: 18px;
}

.visual-media {
  width: min(320px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(124, 98, 208, 0.25);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.7);
}

.visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-caption {
  color: var(--muted);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  margin-top: 28px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
}

.about-text p + p {
  margin-top: 16px;
}

.about-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.about-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(124, 98, 208, 0.2);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 36px rgba(69, 46, 150, 0.1);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.about-photo figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px 12px;
  background: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.ritual,
.safety-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(170, 150, 230, 0.2);
  box-shadow: 0 16px 40px rgba(69, 46, 150, 0.08);
}

.card h3,
.ritual h3,
.safety-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p,
.ritual p,
.safety-card p {
  color: var(--muted);
  line-height: 1.7;
}

.rituals {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.ritual-number {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lavender-deep);
  display: inline-block;
  margin-bottom: 12px;
}

.safety {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.closing {
  display: grid;
  place-items: center;
  padding-bottom: 90px;
}

.closing-card {
  background: linear-gradient(135deg, rgba(111, 85, 217, 0.12), rgba(248, 183, 210, 0.35));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  width: min(760px, 100%);
  min-width: 0;
  box-shadow: var(--shadow);
}

.closing-card .btn {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
}

.footer {
  padding: 30px 6vw 50px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

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

  .orb {
    animation: none;
  }

  .skip-link,
  .btn,
  .nav a::after,
  .js .reveal {
    transition: none;
  }

  .reveal,
  .js .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

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

  .hero-card {
    order: 2;
  }
}

@media (max-width: 600px) {
  .topbar {
    gap: 12px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

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

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

  .about-media {
    grid-template-columns: 1fr;
  }

  .orb {
    width: 240px;
    height: 240px;
    filter: blur(32px);
  }

  .orb-c {
    width: 300px;
    height: 300px;
  }
}
