:root {
  --cream: #FFF8F0;
  --cream-alt: #FFF1E1;
  --orange: #E8834A;
  --orange-dark: #C8672E;
  --orange-light: #FBD9BE;
  --pink: #F6C9C6;
  --sage: #A9C6A3;
  --ink: #2B2118;
  --ink-soft: #5C4E40;
  --white: #FFFFFF;
  --shadow: 0 8px 24px rgba(43, 33, 24, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

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

a { color: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 0 var(--orange-dark);
}
.btn-primary:hover { box-shadow: 0 8px 0 var(--orange-dark); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--orange-dark); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-disabled {
  background: var(--cream-alt);
  color: var(--ink-soft);
  border: 2px dashed var(--orange);
  cursor: not-allowed;
}

/* Announcement strip */
.strip {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.9rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* Nav */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--ink); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
}
.nav-links a { text-decoration: none; position: relative; }
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
}
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 820px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: center; gap: 18px; padding: 24px; border-bottom: 2px solid var(--ink); transform: translateY(-150%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: -120px; right: -140px;
  width: 480px; height: 480px;
  background: var(--pink);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--sage);
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.hero p.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-art img { border-radius: 14px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-art { max-width: 380px; margin: 0 auto; }
  .hero-blob { width: 320px; height: 320px; top: -80px; right: -100px; }
}

/* Section shared */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.tag {
  display: inline-block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.about {
  background: var(--white);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.about-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: center;
}
.about-inner img {
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}
.about p { font-size: 1.1rem; }
@media (max-width: 720px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-inner img { width: 160px; margin: 0 auto; }
}

/* Gallery */
.gallery-grid {
  columns: 4 280px;
  column-gap: 18px;
}
.gallery-grid figure {
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  cursor: zoom-in;
  background: var(--white);
  transition: transform 0.2s ease;
}
.gallery-grid figure:hover { transform: translateY(-4px) rotate(-0.5deg); }
.gallery-grid img { width: 100%; height: auto; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(43, 33, 24, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 720px); max-height: 84vh; border-radius: 16px; border: 3px solid var(--white); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: var(--white); color: var(--ink);
  width: 44px; height: 44px; border-radius: 50%;
  border: none; font-size: 1.3rem; cursor: pointer;
}

/* Find me / markets */
.markets {
  background: var(--ink);
  color: var(--cream);
}
.markets .section-head p { color: #D8C9B8; }
.market-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.market-card {
  background: #3A2E22;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 2px solid #55452F;
}
.market-card .emoji { font-size: 2.2rem; margin-bottom: 12px; }
.market-card h3 { color: var(--cream); font-size: 1.2rem; }
.market-card p { color: #C8B8A4; font-size: 0.95rem; margin: 0; }
@media (max-width: 760px) { .market-cards { grid-template-columns: 1fr; } }

/* Shop placeholder */
.shop-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 3px dashed var(--orange);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.shop-card .emoji { font-size: 2.6rem; }

/* Footer */
footer {
  background: var(--pink);
  border-top: 2px solid var(--ink);
  padding: 56px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink); }
.newsletter { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  min-width: 220px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(43,33,24,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 300;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
