:root {
  --ink: #243532;
  --ink-soft: rgba(36, 53, 50, 0.75);
  --mist: #e7f0ec;
  --sage: #6f9a90;
  --surface: #f4faf7;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--surface);
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bloom {
  width: 100%;
  height: 100%;
  display: block;
}

.orb-1 {
  animation: float 10s ease-in-out infinite;
}

.orb-2 {
  animation: float 13s ease-in-out infinite reverse;
}

.flower {
  animation: breathe 7s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding: clamp(2rem, 7vw, 5rem);
}

.brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.9;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.1s;
}

.headline {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.28s;
}

.lede {
  margin: 0 0 2rem;
  max-width: 28ch;
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0;
  animation: rise 0.9s ease forwards 0.46s;
}

.cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.85rem 1.35rem;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: rgba(244, 250, 247, 0.55);
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.25s ease;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.64s;
}

.cta:hover {
  background: rgba(244, 250, 247, 0.92);
  transform: translateY(-2px);
}

.cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.wish {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 10vw, 7rem) clamp(2rem, 8vw, 5rem);
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
}

.wish-kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.wish-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.wish-sign {
  margin: 1.75rem 0 0;
  font-size: 1rem;
  color: var(--ink-soft);
}

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

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

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@media (max-width: 700px) {
  .hero-copy {
    padding-top: clamp(3rem, 12vh, 5rem);
    align-self: flex-start;
  }
}

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

  .brand,
  .headline,
  .lede,
  .cta,
  .orb-1,
  .orb-2,
  .flower {
    animation: none;
    opacity: 1;
  }
}
