:root {
  --pink: #f6b9c2;
  --pink-deep: #e98a99;
  --pink-soft: #fde6ea;
  --cream: #fbf3ea;
  --cream-deep: #f3e6d4;
  --ink: #3a2b2b;
  --ink-soft: #6b5454;
  --accent: #ff5b6e;
  --sun: #ffd66b;
  --mint: #b9e3c6;
  --sky: #b9d8ee;
  --shadow: 0 10px 30px rgba(180, 120, 130, 0.18);
  --shadow-soft: 0 4px 14px rgba(180, 120, 130, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 10% 10%, #ffe4ea 0%, transparent 40%),
    radial-gradient(circle at 90% 30%, #fff0d6 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, #e9f5ec 0%, transparent 40%),
    var(--cream);
}

a { color: var(--pink-deep); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
}

.hand {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--pink-deep);
  font-size: 1.2em;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 234, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 138, 153, 0.15);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.brand-hat { width: 32px; height: 32px; display: block; }
.brand-text { font-family: 'Fredoka', sans-serif; }
.nav-links {
  display: flex;
  list-style: none;
  margin: 0 auto 0 24px;
  padding: 0;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-links a:hover { color: var(--pink-deep); }

.cta-btn {
  display: inline-block;
  background: var(--pink-deep);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: var(--shadow);
  color: white !important;
}
.cta-btn.big {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 999px;
}

.ghost-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--pink);
  color: var(--pink-deep);
  font-weight: 600;
  background: transparent;
  transition: background .15s ease;
}
.ghost-btn:hover { background: var(--pink-soft); }

/* HERO */
.hero {
  position: relative;
  padding: 40px 24px 80px;
  max-width: 1140px;
  margin: 0 auto;
  overflow: visible;
}
.hero-banner {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid white;
  background: var(--pink-soft);
  margin-bottom: 48px;
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.1;
}
.tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 2px dashed var(--pink);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  font-size: 0.85rem;
  max-width: 100%;
}
.ca-label {
  font-weight: 700;
  color: var(--pink-deep);
}
.ca-pill code {
  font-family: 'Courier New', monospace;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
#copy-ca {
  background: var(--pink-soft);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--pink-deep);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.85rem;
  transition: background .15s ease;
}
#copy-ca:hover { background: var(--pink); color: white; }

/* Floaties */
.floaties { position: absolute; inset: 0; pointer-events: none; }
.floatie {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.85;
}
.f1 { top: 8%; left: 4%; animation-delay: 0s; }
.f2 { top: 18%; right: 6%; animation-delay: 1s; font-size: 1.6rem; }
.f3 { top: 60%; left: 2%; animation-delay: 2s; font-size: 1.8rem; }
.f4 { bottom: 18%; right: 3%; animation-delay: 3s; }
.f5 { top: 70%; right: 14%; animation-delay: 1.5s; font-size: 1.4rem; }
.f6 { bottom: 6%; left: 18%; animation-delay: 2.5s; font-size: 1.6rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

/* LORE */
.lore { padding: 80px 0; background: white; position: relative; }
.lore::before, .lore::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  background-image: radial-gradient(circle at 12px 0, var(--cream) 12px, transparent 12px);
  background-size: 24px 24px;
}
.lore::before { top: -12px; }
.lore::after { bottom: -12px; transform: rotate(180deg); }

.lore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.lore-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  border: 2px solid transparent;
  transition: transform .2s ease, border-color .2s ease;
}
.lore-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--pink);
}
.lore-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.lore-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--ink);
}
.lore-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.lore-footer {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--pink-deep);
  margin-top: 48px;
  margin-bottom: 0;
}
.lore-video {
  max-width: 820px;
  margin: 40px auto 0;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid white;
  background: var(--pink-soft);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.heart { color: var(--accent); }

/* CHARITY */
.charity { padding: 100px 0; }
.charity-card {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
  border: 3px solid var(--pink);
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.badge {
  display: inline-block;
  background: var(--pink-deep);
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.charity h2 { margin-top: 0; }
.big-p {
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 720px;
  margin: 16px auto 36px;
}
.big-p strong { color: var(--pink-deep); }

.charity-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 36px;
}
.charity-stat {
  background: white;
  border-radius: 20px;
  padding: 24px 16px;
  box-shadow: var(--shadow-soft);
}
.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--pink-deep);
  font-family: 'Fredoka', sans-serif;
}
.stat-label {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 4px;
}
.fineprint {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* HOW */
.how { padding: 80px 0; background: white; position: relative; }
.how::before, .how::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  background-image: radial-gradient(circle at 12px 0, var(--cream) 12px, transparent 12px);
  background-size: 24px 24px;
}
.how::before { top: -12px; }
.how::after { bottom: -12px; transform: rotate(180deg); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: 24px;
  transition: transform .2s ease;
}
.step:hover { transform: translateY(-6px) rotate(1deg); }
.step-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.step-hat {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: block;
}
.step h3 { margin: 0 0 8px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* COMMUNITY */
.community { padding: 100px 0 80px; text-align: center; }
.community .sub {
  color: var(--ink-soft);
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  margin: 0 0 36px;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: white;
  border: 2px solid var(--pink-soft);
  border-radius: 24px;
  padding: 28px 16px;
  color: var(--ink) !important;
  transition: all .2s ease;
  box-shadow: var(--shadow-soft);
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: var(--shadow);
}
.link-emoji { font-size: 2.4rem; }
.link-title { font-weight: 700; font-size: 1.1rem; margin-top: 6px; }
.link-sub { color: var(--ink-soft); font-size: 0.9rem; }

/* FOOTER */
.footer {
  padding: 40px 0;
  text-align: center;
  background: var(--pink-soft);
  color: var(--ink-soft);
}
.footer p { margin: 4px 0; }
.tiny { font-size: 0.85rem; opacity: 0.75; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
  .charity-row { grid-template-columns: 1fr; }
  .charity-card { padding: 36px 22px; }
  .ca-pill code { max-width: 180px; }
  .hero { padding: 24px 16px 60px; }
  .hero-banner { border-radius: 20px; border-width: 3px; }
}
