@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

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

:root {
  --honey: #F5A623;
  --honey-light: #FFD580;
  --cream: #FFF8EE;
  --warm: #FDF0DC;
  --brown: #8B5E3C;
  --brown-dark: #5C3D1E;
  --sand: #E8C99A;
  --blush: #F9C5D1;
  --mint: #B8E4D4;
  --lav: #D5C5F0;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka One', cursive;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

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

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,238,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--honey);
}
.nav-inner {
  max-width: 1000px; margin: 0 auto;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem; color: var(--brown);
}
.nav-logo span { font-size: 1.8rem; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-weight: 800; font-size: 0.95rem; color: var(--brown);
  position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--honey); border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--honey); }

/* hamburger — mobile only */
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brown); }
.nav-mobile { display: none; flex-direction: column; gap: 10px; padding: 12px 20px; border-top: 1px solid var(--sand); }
.nav-mobile a { font-weight: 800; font-size: 1rem; color: var(--brown); padding: 6px 0; }
.nav-mobile a.active { color: var(--honey); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding: 56px 20px;
  max-width: 1000px; margin: 0 auto;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── HOME HERO ── */
.hero-home {
  background: linear-gradient(135deg, #FFD580 0%, #F5A623 50%, #E8935A 100%);
  min-height: 520px;
}
.hero-home-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.hero-blob {
  width: 280px; height: 280px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(139,94,60,0.3);
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brown); margin-bottom: 12px;
}
.hero-home h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); color: var(--brown-dark); margin-bottom: 16px; }
.hero-home .hero-lead { font-size: 1.1rem; font-weight: 600; color: #7A4A20; max-width: 420px; margin: 0 auto 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  padding: 12px 24px; border-radius: 999px;
  font-weight: 900; font-size: 0.95rem;
  background: var(--brown-dark); color: var(--honey-light);
  box-shadow: 0 4px 16px rgba(92,61,30,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,61,30,0.4); }
.btn-secondary {
  padding: 12px 24px; border-radius: 999px;
  font-weight: 900; font-size: 0.95rem;
  background: rgba(255,255,255,0.4); color: var(--brown-dark);
  border: 2px solid var(--brown); cursor: pointer; display: inline-block;
  transition: transform 0.2s;
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-mint {
  padding: 12px 28px; border-radius: 999px;
  font-weight: 900; font-size: 0.95rem;
  background: #1E5A4E; color: var(--mint);
  box-shadow: 0 4px 16px rgba(30,90,78,0.3);
  display: inline-block; transition: transform 0.2s;
}
.btn-mint:hover { transform: translateY(-2px); }

/* ── SECTION HEADINGS ── */
.section-title { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--brown); margin-bottom: 12px; }
.section-lead { font-size: 1rem; font-weight: 600; color: #7A4A20; max-width: 640px; margin: 0 auto; }

/* ── CARDS ── */
.card {
  border-radius: 24px; padding: 24px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(139,94,60,0.18); }
.card-honey { background: #FFF0D6; border-color: var(--honey); }
.card-blush { background: #F9E4EC; border-color: var(--blush); }
.card-mint  { background: #E8F6F0; border-color: var(--mint); }
.card-lav   { background: #F0ECF9; border-color: var(--lav); }
.card-icon  { font-size: 2.4rem; margin-bottom: 10px; }
.card h3    { font-size: 1.2rem; color: var(--brown-dark); margin-bottom: 6px; }
.card p     { font-size: 0.85rem; font-weight: 600; color: var(--brown); line-height: 1.5; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── PHOTO STRIP ── */
.photo-strip {
  background: var(--honey); padding: 40px 20px;
}
.photo-strip-inner { max-width: 1000px; margin: 0 auto; }
.photo-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.photo-thumb {
  flex-shrink: 0; width: 180px; height: 180px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(92,61,30,0.2);
  transition: transform 0.25s ease;
}
.photo-thumb:hover { transform: translateY(-4px); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA CARDS ── */
.cta-card {
  border-radius: 24px; overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(139,94,60,0.2); }
.cta-card-img { height: 180px; overflow: hidden; }
.cta-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cta-card:hover .cta-card-img img { transform: scale(1.05); }
.cta-card-body { padding: 24px; }
.cta-card-body h3 { font-size: 1.4rem; color: var(--brown-dark); margin-bottom: 8px; }
.cta-card-body p { font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 16px; }
.tag {
  display: inline-block; padding: 6px 18px;
  border-radius: 999px; font-weight: 900; font-size: 0.85rem;
}
.tag-honey { background: var(--honey); color: var(--brown-dark); }
.tag-mint  { background: var(--mint);  color: var(--brown-dark); }

/* ── DARK BAND ── */
.band-dark { background: var(--brown-dark); padding: 40px 20px; text-align: center; }
.band-dark h2 { color: var(--honey-light); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.band-dark p  { color: #E8C99A; font-size: 0.95rem; font-weight: 600; max-width: 560px; margin: 0 auto; }

/* ── SOURCE CARDS (adoption) ── */
.source-card { border-radius: 24px; padding: 24px; border: 2px solid transparent; }
.source-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 900;
  padding: 2px 10px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
  color: var(--brown-dark);
}
.source-pros, .source-cons { margin-bottom: 14px; }
.source-pros h4, .source-cons h4 {
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--brown-dark); margin-bottom: 6px; font-family: 'Nunito', sans-serif;
}
.source-pros li, .source-cons li {
  font-size: 0.85rem; font-weight: 600; list-style: none;
  padding: 2px 0; color: var(--brown-dark);
}
.source-pros li::before { content: '• '; color: #3A7A6A; }
.source-cons li::before { content: '• '; color: #D47A3A; }
.source-tip {
  background: rgba(255,255,255,0.6); border-radius: 14px; padding: 12px;
}
.source-tip .tip-label { font-size: 0.7rem; font-weight: 900; color: var(--brown-dark); margin-bottom: 4px; }
.source-tip p { font-size: 0.83rem; font-weight: 600; color: #7A4A20; }

/* ── CHECKLIST ── */
.check-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border-radius: 18px; border: 2px solid transparent;
}
.check-item .check-emoji { font-size: 1.5rem; flex-shrink: 0; }
.check-item p { font-size: 0.88rem; font-weight: 700; color: var(--brown-dark); }

/* ── STEPS ── */
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--honey); color: var(--brown-dark);
  font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Fredoka One', cursive;
}
.step h3 { font-size: 0.95rem; color: var(--brown-dark); margin-bottom: 4px; font-family: 'Nunito', sans-serif; font-weight: 900; }
.step p  { font-size: 0.83rem; font-weight: 600; color: var(--brown); }

/* ── IMAGE ROUNDED ── */
.img-rounded { border-radius: 24px; overflow: hidden; }
.img-rounded img { width: 100%; height: 260px; object-fit: cover; }

/* ── CTA BOX ── */
.cta-box { border-radius: 24px; padding: 40px 24px; text-align: center; }
.cta-box h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 12px; }
.cta-box p  { font-size: 0.95rem; font-weight: 600; margin-bottom: 24px; }

/* ── FORBIDDEN LIST ── */
.forbidden-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.6); border-radius: 12px;
  padding: 8px 12px;
}
.forbidden-item span { font-size: 0.85rem; font-weight: 700; color: var(--brown-dark); }
.x { color: #e53e3e; font-weight: 900; flex-shrink: 0; }

/* ── FLEX ROW ── */
.flex-row { display: flex; gap: 32px; align-items: flex-start; }
.flex-row .col-5 { flex: 0 0 42%; }
.flex-row .col-7 { flex: 1; }

/* ── FOOTER ── */
footer {
  background: var(--brown); padding: 40px 20px; text-align: center; margin-top: 64px;
}
footer .foot-logo { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--honey-light); margin: 8px 0; }
footer p { font-size: 0.85rem; color: #E8C99A; margin-bottom: 16px; }
footer nav { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
footer nav a { font-size: 0.85rem; font-weight: 700; color: var(--honey-light); text-decoration: underline; }
footer .copy { font-size: 0.75rem; color: #C49A6C; }

/* ── PAW PATTERN ── */
.paw-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='15' cy='15' r='4' fill='%23F5A623' opacity='0.15'/%3E%3Ccircle cx='25' cy='10' r='3' fill='%23F5A623' opacity='0.15'/%3E%3Ccircle cx='35' cy='13' r='3' fill='%23F5A623' opacity='0.15'/%3E%3Ccircle cx='20' cy='25' r='6' fill='%23F5A623' opacity='0.12'/%3E%3C/svg%3E");
}

/* ── ANIMATIONS ── */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes wiggle {
  0%,100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
.float  { animation: float  3s ease-in-out infinite; }
.wiggle { animation: wiggle 2.5s ease-in-out infinite; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: block; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }

  .flex-row { flex-direction: column; }
  .flex-row .col-5, .flex-row .col-7 { flex: none; width: 100%; }

  .hero-blob { width: 220px; height: 220px; }

  .photo-thumb { width: 150px; height: 150px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
