@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

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

:root {
  --forest: #1B4332;
  --forest-deep: #0D2818;
  --rose: #FF758F;
  --rose-soft: #FFB0BD;
  --ivory: #FFFCF2;
  --sage: #52796F;
  --text-cream: #F0EDE5;
  --text-muted: #A8B5A0;
}

html { scroll-behavior: smooth; }

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

/* ORGANIC NAV */
.organic-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 40, 24, 0.96);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid rgba(255, 117, 143, 0.2);
}

.lyth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lyth-brand svg { width: 36px; height: 36px; }

.lyth-brand span {
  font-family: 'Philosopher', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rose);
  font-style: italic;
}

.organic-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.organic-links a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.organic-links a:hover { color: var(--rose); }

.leaf-btn {
  display: none;
  background: none;
  border: 2px solid var(--rose);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}

.leaf-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rose);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.leaf-btn span:nth-child(1) { top: 12px; }
.leaf-btn span:nth-child(2) { top: 18px; }
.leaf-btn span:nth-child(3) { top: 24px; }

.leaf-btn.toggled span:nth-child(1) { top: 18px; transform: translateX(-50%) rotate(45deg); }
.leaf-btn.toggled span:nth-child(2) { opacity: 0; }
.leaf-btn.toggled span:nth-child(3) { top: 18px; transform: translateX(-50%) rotate(-45deg); }

.vine-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  background: var(--forest-deep);
  list-style: none;
  padding: 1rem 0;
  border-bottom: 2px solid var(--rose);
}

.vine-menu.revealed { display: block; }

.vine-menu li { text-align: center; padding: 0.7rem; }

.vine-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.vine-menu a:hover { color: var(--rose); }

/* FLOWING HERO */
.flow-hero {
  margin-top: 66px;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(180deg, var(--forest-deep), var(--forest), var(--sage));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.flow-hero::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--forest-deep);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.flow-hero h1 {
  font-family: 'Philosopher', serif;
  font-size: 3rem;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  position: relative;
}

.flow-hero h1 em {
  color: var(--rose);
  font-style: italic;
}

.flow-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  position: relative;
}

.leaf-badges {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
}

.lbadge {
  background: rgba(255, 117, 143, 0.1);
  border: 1px solid rgba(255, 117, 143, 0.4);
  color: var(--rose-soft);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.82rem;
}

/* GAME GARDEN */
.game-garden {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.game-garden h2 {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.garden-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--rose);
  box-shadow: 0 10px 40px rgba(255, 117, 143, 0.1);
}

.garden-frame iframe { width: 100%; height: 100%; border: none; }

/* ORGANIC CARDS */
.organic-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.organic-section h2 {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 3rem;
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.flower-card {
  background: linear-gradient(180deg, var(--forest), var(--sage));
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 117, 143, 0.15);
  transition: transform 0.3s;
}

.flower-card:hover { transform: translateY(-6px); }

.flower-card .ficon { font-size: 2.5rem; margin-bottom: 1rem; }

.flower-card h3 {
  font-family: 'Philosopher', serif;
  color: var(--rose-soft);
  margin-bottom: 0.6rem;
}

.flower-card p { font-size: 0.93rem; color: var(--text-muted); }

/* ROSE BAND */
.rose-band {
  background: linear-gradient(90deg, var(--rose), #FF9CAD);
  padding: 3rem 2rem;
  text-align: center;
}

.rose-band h2 {
  font-family: 'Philosopher', serif;
  color: var(--forest-deep);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.rose-band p {
  color: var(--forest);
  max-width: 780px;
  margin: 0 auto;
  font-weight: 600;
}

/* NOTICE */
.nature-notice {
  max-width: 850px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(255, 117, 143, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 117, 143, 0.15);
}

.nature-notice h3 {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  margin-bottom: 1rem;
}

.nature-notice ul { list-style: none; }

.nature-notice li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: var(--text-muted);
}

.nature-notice li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* TEXT PAGES */
.prose-page {
  margin-top: 66px;
  padding: 4rem 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.prose-page h1 {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 2rem;
  font-style: italic;
}

.prose-page h2 {
  font-family: 'Philosopher', serif;
  color: var(--rose-soft);
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.prose-page p { margin-bottom: 1rem; color: var(--text-muted); }

.prose-page ul { margin: 0.5rem 0 1.5rem 1.5rem; }
.prose-page li { margin-bottom: 0.5rem; color: var(--text-muted); }

/* PLAY */
.play-garden {
  margin-top: 66px;
  padding: 3rem 2rem;
  text-align: center;
}

.play-garden h1 {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.play-garden > p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

.garden-tip {
  max-width: 680px;
  margin: 2rem auto;
  background: var(--forest);
  border-left: 4px solid var(--rose);
  border-radius: 0 14px 14px 0;
  padding: 1.2rem 1.8rem;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* FOOTER */
.nature-footer {
  background: var(--forest-deep);
  border-top: 2px solid rgba(255, 117, 143, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
}

.nature-footer .nf-brand {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.nf-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.nf-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.nf-links a:hover { color: var(--rose); }

.rg-garden {
  border-top: 1px solid rgba(255, 117, 143, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.rg-garden p {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 0.4rem;
}

.rg-garden a {
  color: var(--rose);
  text-decoration: none;
  font-size: 0.78rem;
  margin: 0 0.5rem;
}

.rg-garden a:hover { text-decoration: underline; }

/* AGE GATE */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(13, 40, 24, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.gone { display: none; }

.age-flower {
  background: var(--forest);
  border: 2px solid var(--rose);
  border-radius: 24px;
  padding: 3rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.age-flower h2 {
  font-family: 'Philosopher', serif;
  color: var(--rose);
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.age-flower p { color: var(--text-muted); margin-bottom: 2rem; }

.age-pair {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.bloom-yes, .bloom-no {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.2s;
}

.bloom-yes { background: var(--rose); color: var(--forest-deep); }

.bloom-no {
  background: transparent;
  border: 2px solid var(--rose);
  color: var(--rose);
}

.bloom-yes:hover, .bloom-no:hover { transform: scale(1.05); }

.wilt-msg {
  display: none;
  color: #FF4444;
  margin-top: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .organic-links { display: none; }
  .leaf-btn { display: block; }

  .flow-hero h1 { font-size: 2rem; }
  .flow-hero { padding: 4rem 1.5rem 3rem; }

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

  .prose-page h1, .play-garden h1 { font-size: 1.7rem; }

  .nf-links { flex-direction: column; gap: 0.5rem; }
}
