:root {
  --cream: #fdfaf3;
  --cream-warm: #f8f1e2;
  --lilac: #e7dcf5;
  --lilac-deep: #c9b6e8;
  --pink: #fbe1ec;
  --pink-deep: #f2b9d2;
  --yellow: #fdf3c6;
  --yellow-deep: #f4e08a;
  --text: #3d3450;
  --text-soft: #6f6584;
  --accent: #b889d9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

p { font-weight: 300; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(253, 250, 243, 0.7);
  border-bottom: 1px solid rgba(231, 220, 245, 0.5);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
}
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--lilac) 60%, var(--pink) 100%);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--pink-deep); top: -100px; left: -120px; }
.blob-2 { width: 360px; height: 360px; background: var(--yellow-deep); bottom: -100px; right: -100px; animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: var(--lilac-deep); top: 40%; right: 20%; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.kicker {
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.accent {
  font-style: italic;
  color: var(--accent);
  position: relative;
}
.accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 8px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.7;
}
.lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 2rem auto 2.5rem;
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--text);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  transition: transform 0.3s, background 0.3s;
}
.btn:hover { transform: translateY(-3px); background: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--cream); }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* SECTIONS */
.section {
  padding: 7rem 0;
  position: relative;
}
.section-cream { background: var(--cream); }
.section-lilac { background: var(--lilac); }
.section-yellow { background: var(--yellow); }
.section-pink { background: var(--pink); }
.section-cta {
  background: linear-gradient(135deg, var(--lilac) 0%, var(--pink) 100%);
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.center { text-align: center; }
.center-block { max-width: 700px; margin: 0 auto; }
.center-block .lead { margin: 1.5rem auto 2.5rem; }

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col p { margin-bottom: 1rem; color: var(--text-soft); font-size: 1.05rem; }

.card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.petal-card {
  background: var(--cream-warm);
  padding: 2rem 1rem;
  border-radius: 24px;
  text-align: center;
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.4s;
  box-shadow: 0 4px 20px rgba(184, 137, 217, 0.08);
}
.petal-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}
.petal-card:hover { transform: translateY(-6px) rotate(-2deg); }
.pc-1 { background: var(--pink); transform: rotate(-3deg); }
.pc-2 { background: var(--lilac); transform: rotate(2deg); margin-top: 1.5rem; }
.pc-3 { background: var(--yellow); transform: rotate(2deg); }
.pc-4 { background: var(--cream-warm); transform: rotate(-2deg); margin-top: 1.5rem; }

/* GALLERY */
.gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.flower {
  background: var(--cream);
  border-radius: 28px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.5s;
  box-shadow: 0 8px 30px rgba(184, 137, 217, 0.1);
}
.flower:hover { transform: translateY(-10px); }
.flower figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text);
}
.petal {
  width: 140px;
  height: 140px;
  position: relative;
  animation: spin 30s linear infinite;
}
.petal::before, .petal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 0 50% 50%;
}
.flower-1 .petal::before { background: radial-gradient(circle at 30% 30%, #fff, var(--pink-deep)); transform: rotate(0deg); }
.flower-1 .petal::after  { background: radial-gradient(circle at 30% 30%, #fff, var(--pink-deep)); transform: rotate(90deg); opacity: 0.7; }
.flower-2 .petal::before { background: radial-gradient(circle at 30% 30%, #fff, var(--lilac-deep)); transform: rotate(0deg); }
.flower-2 .petal::after  { background: radial-gradient(circle at 30% 30%, #fff, var(--lilac-deep)); transform: rotate(90deg); opacity: 0.7; }
.flower-3 .petal::before { background: radial-gradient(circle at 30% 30%, #fff, #f8c8d8); transform: rotate(0deg); }
.flower-3 .petal::after  { background: radial-gradient(circle at 30% 30%, #fff, #f8c8d8); transform: rotate(90deg); opacity: 0.7; }
.flower-4 .petal::before { background: radial-gradient(circle at 30% 30%, #fff, var(--yellow-deep)); transform: rotate(0deg); }
.flower-4 .petal::after  { background: radial-gradient(circle at 30% 30%, #fff, var(--yellow-deep)); transform: rotate(90deg); opacity: 0.7; }
.flower-5 .petal::before { background: radial-gradient(circle at 30% 30%, #fff, #d4b8f0); transform: rotate(0deg); }
.flower-5 .petal::after  { background: radial-gradient(circle at 30% 30%, #fff, #d4b8f0); transform: rotate(90deg); opacity: 0.7; }
.flower-6 .petal::before { background: radial-gradient(circle at 30% 30%, #fff, #f4a8c4); transform: rotate(0deg); }
.flower-6 .petal::after  { background: radial-gradient(circle at 30% 30%, #fff, #f4a8c4); transform: rotate(90deg); opacity: 0.7; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* QUOTES */
.quotes {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
blockquote {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 6px 24px rgba(196, 168, 100, 0.08);
}
blockquote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--yellow-deep);
  line-height: 1;
}
blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
blockquote cite {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  font-style: normal;
}

/* FACTS */
.facts {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.fact {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  transition: transform 0.4s;
  box-shadow: 0 6px 24px rgba(242, 185, 210, 0.15);
}
.fact:hover { transform: translateY(-8px); }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 0.5rem;
}
.fact p { color: var(--text-soft); font-size: 0.98rem; }

/* FOOTER */
.footer {
  background: var(--text);
  color: var(--cream);
  padding: 4rem 0 3rem;
}
.footer .logo { color: var(--pink-deep); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.muted {
  color: rgba(253, 250, 243, 0.6);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { gap: 1rem; font-size: 0.85rem; }
  .nav-links a { font-size: 0.85rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .section { padding: 5rem 0; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .container { padding: 0 1.2rem; }
  .hero { padding: 5rem 1.2rem 2rem; }
}
