@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500&family=IM+Fell+English:ital@0;1&display=swap');

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

body {
  background: #0d0c0b;
  color: #c8bfb0;
  font-family: 'Shippori Mincho', serif;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

#cursor {
  position: fixed;
  width: 6px; height: 6px;
  background: rgba(200,191,176,0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 9999;
  mix-blend-mode: screen;
}

#cursor-ring {
  position: fixed;
  width: 28px; height: 28px;
  border: 0.5px solid rgba(200,191,176,0.25);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: all 0.12s ease;
  z-index: 9998;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.18;
  pointer-events: none;
  z-index: 1000;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 24px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orb-fade 6s ease-in-out forwards;
}
.orb1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(180,160,130,0.12), transparent 70%); top: 10%; left: 5%; animation-delay: 0.5s; }
.orb2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(140,130,120,0.1), transparent 70%); bottom: 20%; right: 8%; animation-delay: 1.2s; }

@keyframes orb-fade {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.eyebrow {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(200,191,176,0.3);
  margin-bottom: 32px;
  opacity: 0;
  animation: rise 1.4s ease forwards;
  animation-delay: 0.3s;
}

.main-title {
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #d4c9b8;
  opacity: 0;
  animation: rise 1.6s ease forwards;
  animation-delay: 0.6s;
}

.divider {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, rgba(200,191,176,0.3), transparent);
  margin: 40px auto;
  animation: grow-line 1.8s ease forwards;
  animation-delay: 1s;
}
@keyframes grow-line { to { height: 80px; } }

.subtitle {
  font-size: 15px;
  line-height: 2.6;
  text-align: center;
  color: rgba(200,191,176,0.5);
  max-width: 380px;
  opacity: 0;
  animation: rise 1.6s ease forwards;
  animation-delay: 1.2s;
}

@keyframes rise {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.petal {
  position: fixed;
  top: 0;
  pointer-events: none;
  animation: fall linear infinite;
  opacity: 0;
  z-index: 999;
}
@keyframes fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.middle {
  padding: 80px 24px;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
  text-align: center;
}
.middle.visible { opacity: 1; transform: translateY(0); }
.middle p {
  font-size: 18px;
  line-height: 2.8;
  color: rgba(200,191,176,0.65);
}

.ending {
  padding: 80px 24px 120px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.ending.visible { opacity: 1; transform: translateY(0); }
.ending p {
  font-size: 20px;
  color: rgba(200,191,176,0.5);
  letter-spacing: 0.05em;
}

.thin-rule {
  width: 40px;
  height: 0.5px;
  background: rgba(200,191,176,0.2);
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 0 24px 60px;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(200,191,176,0.15);
  letter-spacing: 0.2em;
}