@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:ital,wght@0,400;0,600;0,700;1,600&display=swap');

:root {
  --cream: #FFF8EF;
  --cream-dark: #FCEDD9;
  --green: #4C8C3F;
  --green-dark: #35652C;
  --pink: #FF3E8E;
  --pink-dark: #E01E70;
  --purple: #8B2FC9;
  --gold: #FFC93C;
  --plum: #3B1E3A;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--plum);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.eyebrow svg { width: 16px; height: 16px; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 0 var(--pink-dark), 0 10px 20px rgba(255, 62, 142, 0.25);
}
.btn-primary:hover { box-shadow: 0 8px 0 var(--pink-dark), 0 14px 24px rgba(255, 62, 142, 0.3); }
.btn-primary:active { box-shadow: 0 3px 0 var(--pink-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--plum);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.logo svg { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--plum);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover { background: var(--cream-dark); }
.nav-links a.active { background: var(--green); color: var(--white); }

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-dark);
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 12px 28px 20px;
    border-bottom: 3px solid var(--plum);
    gap: 4px;
  }
}

/* ---------- Scalloped divider (jar-lid signature element) ---------- */
.scallop {
  width: 100%;
  height: 34px;
  display: block;
}

.scallop-cream-to-green path { fill: var(--green); }
.scallop-green-to-cream path { fill: var(--cream); }
.scallop-cream-to-plum path { fill: var(--plum); }

/* ---------- Sections ---------- */
section { position: relative; }

.section-pad { padding: 90px 0; }

.section-green {
  background: var(--green);
  color: var(--cream);
}
.section-green h2, .section-green h3 { color: var(--white); }

.section-plum {
  background: var(--plum);
  color: var(--cream-dark);
}
.section-plum h2, .section-plum h3 { color: var(--gold); }

/* ---------- Crown bullet ---------- */
.crown-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.crown-list li { display: flex; align-items: flex-start; gap: 12px; }
.crown-list svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 3px solid var(--plum);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--plum);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--plum);
}

/* Cards always have a white background, so their text must stay dark
   even when the card sits inside a colored section (e.g. section-green). */
.card h3 { color: var(--green-dark); }
.card p, .card li { color: var(--plum); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: var(--cream-dark);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
