/* ============================================================
   SUGAR & SPICE — hand-baked cookie co.
   A whimsical, storybook cookie universe.
   One font throughout: Quicksand.
   ============================================================ */

:root {
  /* warm cookie palette */
  --vanilla:   #FFF7EC;
  --cream:     #FBEFD9;
  --biscuit:   #EAD3AB;
  --biscuit-d: #DDBE8E;
  --caramel:   #C58A52;
  --caramel-d: #B0703A;
  --cocoa:     #5A3A26;
  --cocoa-ink: #3E2719;
  --pink:      #F4C2BC;
  --pink-d:    #E79A93;
  --mint:      #BFE3D0;
  --mint-d:    #8FCBAE;

  --text:      #3E2719;
  --text-soft: #7C6151;

  --shadow-sm: 0 8px 20px rgba(90, 58, 38, 0.10);
  --shadow-md: 0 18px 40px rgba(90, 58, 38, 0.14);
  --shadow-lg: 0 30px 70px rgba(90, 58, 38, 0.20);

  --r-lg: 38px;
  --r-md: 26px;
  --r-sm: 18px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, #FFE9CE 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 30%, #FCE3DC 0%, transparent 55%),
    var(--vanilla);
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--caramel), var(--pink-d), var(--mint-d));
  z-index: 200; border-radius: 0 4px 4px 0;
  transition: width .1s linear;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: .92rem 1.7rem; border-radius: 999px;
  cursor: pointer; border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-caramel {
  background: linear-gradient(135deg, var(--caramel), var(--caramel-d));
  color: #fff; box-shadow: 0 12px 26px rgba(176, 112, 58, .38);
}
.btn-caramel:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(176, 112, 58, .48); }

.btn-ghost {
  background: rgba(255, 255, 255, .7); color: var(--cocoa);
  border: 2px solid var(--biscuit-d);
}
.btn-ghost:hover { transform: translateY(-3px); background: #fff; border-color: var(--caramel); }

.btn-pill {
  background: var(--cocoa-ink); color: var(--vanilla);
  padding: .7rem 1.4rem; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.btn-pill:hover { transform: translateY(-3px); background: var(--caramel-d); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s, box-shadow .35s;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 247, 236, .86);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(90, 58, 38, .10);
}
.nav-wrapper { display: flex; align-items: center; gap: 1.2rem; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-cookie {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--biscuit), var(--caramel) 90%);
  box-shadow: inset 0 -4px 8px rgba(90,58,38,.3), var(--shadow-sm);
  flex: none;
}
.brand-cookie .chip {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cocoa-ink);
}
.brand-cookie .c1 { top: 11px; left: 12px; }
.brand-cookie .c2 { top: 10px; right: 11px; }
.brand-cookie .c3 { bottom: 11px; left: 16px; }
.brand-cookie .c4 { bottom: 13px; right: 13px; width: 5px; height: 5px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.32rem; font-weight: 700; letter-spacing: -.01em; color: var(--cocoa-ink); }
.brand-text strong i { color: var(--caramel); font-style: normal; }
.brand-text em { font-size: .68rem; font-style: normal; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .5rem .85rem; border-radius: 999px; font-weight: 600; font-size: .96rem;
  color: var(--cocoa); transition: background .25s, color .25s;
}
.nav-links a:hover { background: var(--cream); color: var(--caramel-d); }
.nav-links a.nav-privacy { color: var(--text-soft); }
.nav-links a.nav-privacy:hover { background: var(--pink); color: var(--cocoa); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--cocoa-ink); transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Decorative crumbs & florishes
   ============================================================ */
.crumb {
  position: absolute; border-radius: 50%;
  background: var(--caramel); opacity: .5; z-index: 0;
  animation: floaty 7s ease-in-out infinite;
}
.crumb::after {
  content: ""; position: absolute; width: 40%; height: 40%; border-radius: 50%;
  background: var(--cocoa-ink); top: 25%; left: 20%; opacity: .6;
}
.crumb.x1 { width: 18px; height: 18px; top: 18%; left: 6%; background: var(--pink-d); animation-delay: .2s; }
.crumb.x2 { width: 12px; height: 12px; top: 30%; right: 9%; background: var(--mint-d); animation-delay: 1.1s; }
.crumb.x3 { width: 22px; height: 22px; bottom: 12%; left: 12%; animation-delay: .6s; }
.crumb.x4 { width: 10px; height: 10px; bottom: 22%; right: 14%; background: var(--caramel-d); animation-delay: 1.8s; }
.crumb.x5 { width: 14px; height: 14px; top: 60%; left: 50%; background: var(--biscuit-d); animation-delay: 2.3s; }
.crumb.x6 { width: 16px; height: 16px; top: 12%; right: 30%; background: var(--pink-d); animation-delay: 1.4s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-18px) rotate(12deg); }
}

.kicker {
  display: inline-block; font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--caramel-d);
  background: rgba(197, 138, 82, .12);
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  line-height: 1.04; font-weight: 700; letter-spacing: -.02em;
  color: var(--cocoa-ink); margin-bottom: 1.3rem;
}
.ink-caramel { color: var(--caramel); }
.ink-pink { color: var(--pink-d); }

.lede { font-size: 1.12rem; color: var(--text-soft); max-width: 30rem; margin-bottom: 1.8rem; }

.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero-stats { list-style: none; display: flex; gap: 2.2rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.9rem; font-weight: 700; color: var(--caramel-d); line-height: 1; }
.hero-stats span { font-size: .82rem; font-weight: 600; color: var(--text-soft); letter-spacing: .04em; }

/* hero art */
.hero-art { position: relative; }
.hero-photo {
  position: relative; border-radius: 50% 50% 46% 46% / 54% 54% 46% 46%;
  overflow: hidden; aspect-ratio: 1 / 1;
  border: 10px solid #fff;
  box-shadow: var(--shadow-lg);
  rotate: -3deg;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.float-cookie {
  position: absolute; border-radius: 50%; overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.float-cookie img { width: 100%; height: 100%; object-fit: cover; }
.float-cookie.f1 { width: 120px; height: 120px; top: -26px; right: 4%; animation-delay: .3s; }
.float-cookie.f2 { width: 96px; height: 96px; bottom: 4%; left: -28px; animation-delay: 1.2s; }
.float-cookie.f3 { width: 78px; height: 78px; bottom: 24%; right: -22px; animation-delay: 2s; }

.badge-bake {
  position: absolute; top: 46%; left: -10px;
  background: var(--cocoa-ink); color: var(--vanilla);
  font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  padding: .55rem 1.1rem; border-radius: 999px;
  box-shadow: var(--shadow-md); rotate: -8deg; z-index: 3;
}
.badge-bake.alt { background: var(--pink-d); color: #fff; left: auto; right: -6px; top: auto; bottom: 8%; rotate: 7deg; }

/* wave dividers */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave-divider svg { width: 100%; height: 90px; }
.wave-divider path { fill: var(--cream); }
.wave-divider.flip { transform: rotate(180deg); top: -1px; bottom: auto; }
.wave-divider.flip path { fill: var(--vanilla); }

/* ============================================================
   Story strip
   ============================================================ */
.story { background: var(--cream); padding: 70px 0 90px; position: relative; }
.story-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.4rem; align-items: center; }
.story-photo { position: relative; }
.story-photo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  rotate: -2deg; border: 8px solid #fff;
}
.story-tag {
  position: absolute; bottom: -16px; right: 14px;
  background: var(--mint-d); color: var(--cocoa-ink);
  font-weight: 700; font-size: .82rem; padding: .5rem 1rem;
  border-radius: 999px; box-shadow: var(--shadow-sm); rotate: 4deg;
}
.story-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.12; color: var(--cocoa-ink); margin-bottom: 1.1rem; letter-spacing: -.01em; }
.story-copy p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 1.4rem; max-width: 34rem; }
.story-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.story-list li { display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--cocoa); }
.story-list li span { font-size: 1.2rem; }

/* ============================================================
   Generic section
   ============================================================ */
.section { position: relative; padding: 90px 0; }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3.2rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.1; color: var(--cocoa-ink); letter-spacing: -.015em; margin-bottom: .8rem; }
.section-head p { color: var(--text-soft); font-size: 1.06rem; }

/* ============================================================
   Cookie collection cards
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.cookie-card {
  position: relative; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(221, 190, 142, .4);
}
.cookie-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.cookie-card .card-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.cookie-card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cookie-card:hover .card-photo img { transform: scale(1.08) rotate(-1deg); }

.price-dot {
  position: absolute; top: 14px; right: 14px;
  background: var(--vanilla); color: var(--caramel-d);
  font-weight: 700; font-size: .82rem; padding: .4rem .85rem;
  border-radius: 999px; box-shadow: var(--shadow-sm);
}
.card-body { padding: 1.4rem 1.5rem 1.7rem; }
.card-body h3 { font-size: 1.28rem; color: var(--cocoa-ink); margin-bottom: .45rem; }
.card-body p { color: var(--text-soft); font-size: .96rem; margin-bottom: 1rem; }

.tag {
  display: inline-block; font-weight: 700; font-size: .74rem; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px;
}
.tag-cocoa  { background: var(--cocoa-ink); color: var(--vanilla); }
.tag-caramel{ background: var(--biscuit); color: var(--cocoa-ink); }
.tag-pink   { background: var(--pink); color: var(--cocoa-ink); }
.tag-mint   { background: var(--mint); color: var(--cocoa-ink); }

/* ============================================================
   Seasonal
   ============================================================ */
.seasonal { background: var(--cream); }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.season-card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.season-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-md); }
.season-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.season-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.season-card:hover .season-photo img { transform: scale(1.07); }
.season-body { padding: 1.2rem 1.3rem 1.5rem; }
.season-chip {
  display: inline-block; font-weight: 700; font-size: .78rem;
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: .6rem;
}
.chip-winter  { background: #D9ECF5; color: #2E5A6E; }
.chip-spring  { background: var(--pink); color: #8A4A52; }
.chip-summer  { background: #FCE7B8; color: #9A6B1E; }
.chip-festive { background: var(--mint); color: #2F5E47; }
.season-body h3 { font-size: 1.16rem; color: var(--cocoa-ink); margin-bottom: .4rem; }
.season-body p { font-size: .92rem; color: var(--text-soft); }

/* ============================================================
   Ingredients
   ============================================================ */
.ingredient-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.ingredient-card {
  text-align: center; background: #fff; border-radius: var(--r-md);
  padding: 1.4rem 1.1rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(221, 190, 142, .4);
}
.ingredient-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.ing-photo {
  width: 116px; height: 116px; margin: 0 auto 1rem;
  border-radius: 50%; overflow: hidden; border: 5px solid var(--cream);
  box-shadow: var(--shadow-sm);
}
.ing-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ingredient-card:hover .ing-photo img { transform: scale(1.12) rotate(6deg); }
.ingredient-card h3 { font-size: 1.04rem; color: var(--cocoa-ink); margin-bottom: .35rem; }
.ingredient-card p { font-size: .86rem; color: var(--text-soft); }

/* ============================================================
   Gift boxes
   ============================================================ */
.gift-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.6rem; }
.gift-card {
  position: relative; background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gift-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.gift-photo { overflow: hidden; }
.gift-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gift-card:hover .gift-photo img { transform: scale(1.06); }
.gift-card .gift-photo { aspect-ratio: 4 / 3; }
.gift-card.feature { grid-row: span 1; display: grid; grid-template-rows: 1fr auto; }
.gift-card.feature .gift-photo { aspect-ratio: 16 / 11; }
.gift-body { padding: 1.4rem 1.5rem 1.7rem; position: relative; }
.gift-body h3 { font-size: 1.32rem; color: var(--cocoa-ink); margin-bottom: .5rem; }
.gift-card.feature .gift-body h3 { font-size: 1.6rem; }
.gift-body p { color: var(--text-soft); font-size: .96rem; margin-bottom: .9rem; }
.gift-price { font-weight: 700; color: var(--caramel-d); font-size: 1.05rem; }
.ribbon {
  display: inline-block; background: var(--pink-d); color: #fff;
  font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: .7rem;
}

/* ============================================================
   Favorites
   ============================================================ */
.favorites { background: var(--cream); }
.fav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.fav-card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fav-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.fav-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.fav-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.fav-card:hover .fav-photo img { transform: scale(1.07); }
.fav-body { padding: 1.4rem 1.5rem 1.6rem; }
.stars { color: #E8A33D; letter-spacing: .12em; font-size: 1.05rem; margin-bottom: .7rem; }
.fav-body p { color: var(--cocoa); font-size: 1rem; font-style: italic; margin-bottom: .9rem; }
.fav-name { font-weight: 700; color: var(--caramel-d); font-size: .92rem; }

/* ============================================================
   Process
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step-card {
  position: relative; text-align: center; background: #fff;
  border-radius: var(--r-md); padding: 2.2rem 1.3rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(221, 190, 142, .4);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--caramel); color: #fff; font-weight: 700; font-size: 1rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.step-photo {
  width: 130px; height: 130px; margin: .4rem auto 1.1rem;
  border-radius: 50%; overflow: hidden; border: 6px solid var(--cream);
  box-shadow: var(--shadow-sm);
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.step-card:hover .step-photo img { transform: scale(1.12); }
.step-card h3 { font-size: 1.16rem; color: var(--cocoa-ink); margin-bottom: .4rem; }
.step-card p { font-size: .9rem; color: var(--text-soft); }

/* ============================================================
   Contact
   ============================================================ */
.contact { padding-top: 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.4rem; align-items: center; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: var(--cocoa-ink); margin-bottom: .9rem; letter-spacing: -.015em; }
.contact-copy > p { color: var(--text-soft); font-size: 1.08rem; max-width: 30rem; margin-bottom: 1.8rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.9rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.contact-list strong { display: block; color: var(--cocoa-ink); font-size: 1rem; margin-bottom: .15rem; }
.contact-list a, .contact-list span { color: var(--text-soft); font-weight: 600; }
.contact-list a:hover { color: var(--caramel-d); }
.contact-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.contact-art { position: relative; }
.contact-photo {
  border-radius: var(--r-lg); overflow: hidden; border: 8px solid #fff;
  box-shadow: var(--shadow-lg); rotate: 2deg;
}
.contact-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-photo.small {
  position: absolute; width: 46%; bottom: -28px; left: -28px;
  rotate: -6deg; aspect-ratio: 1 / 1; border-width: 6px;
}
.contact-photo.small img { aspect-ratio: 1 / 1; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative; background: var(--cocoa-ink); color: var(--cream);
  padding: 70px 0 30px; margin-top: 40px; overflow: hidden;
}
.site-footer .crumb { opacity: .25; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.4rem;
  padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255, 247, 236, .14);
  position: relative; z-index: 2;
}
.footer-brand .brand-cookie { margin-bottom: .9rem; }
.footer-brand strong { display: block; font-size: 1.4rem; color: var(--vanilla); margin-bottom: .6rem; }
.footer-brand p { color: rgba(255, 247, 236, .72); font-size: .96rem; max-width: 22rem; }
.footer-nav h4, .footer-contact h4 {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--biscuit); margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { color: rgba(255, 247, 236, .8); font-weight: 600; font-size: .95rem; transition: color .25s; }
.footer-nav a:hover { color: var(--pink); }
.footer-contact a { display: inline-block; color: var(--vanilla); font-weight: 700; font-size: 1.15rem; margin-bottom: .6rem; }
.footer-contact a:hover { color: var(--pink); }
.footer-contact p { color: rgba(255, 247, 236, .72); font-size: .95rem; }

.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .8rem; padding-top: 1.6rem;
  font-size: .9rem; color: rgba(255, 247, 236, .65);
  position: relative; z-index: 2;
}
.footer-base a { color: var(--biscuit); font-weight: 700; }
.footer-base a:hover { color: var(--pink); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid, .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-card.feature { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: .6rem; padding: 2rem;
    background: var(--vanilla); box-shadow: -20px 0 60px rgba(90,58,38,.2);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 99;
  }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; font-size: 1.1rem; padding: .7rem 1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .header-cta { display: none; }

  .hero-grid, .story-inner, .contact-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero { padding-top: 120px; text-align: center; }
  .hero-copy { order: 2; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-art { order: 1; max-width: 420px; margin: 0 auto; }
  .lede { margin-left: auto; margin-right: auto; }
  .story-photo { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 620px) {
  .shell { padding: 0 18px; }
  .card-grid, .fav-grid, .season-grid, .ingredient-grid, .process-grid, .gift-grid { grid-template-columns: 1fr; }
  .gift-card.feature { grid-column: span 1; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .footer-base { justify-content: center; text-align: center; }
  .contact-photo.small { width: 42%; bottom: -18px; left: -14px; }
  .section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .crumb, .float-cookie { animation: none; }
  * { scroll-behavior: auto; }
}
