:root {
  --cream: #F7F3EA;
  --cream-dim: #EFE9DB;
  --ink: #2A2825;
  --charcoal: #3D3B37;
  --rust: #A85422;
  --hairline: rgba(42,40,37,0.22);
  --serif: Georgia, 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
a { color: inherit; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,243,234,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { font-size: 19px; letter-spacing: 0.02em; font-weight: 700; text-decoration: none; }
.nav-links { display: flex; gap: 28px; font-size: 15px; }
.nav-links a { text-decoration: none; border-bottom: 1px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink); padding: 8px 18px; font-size: 14px;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,18,16,0.15) 0%, rgba(20,18,16,0.35) 55%, rgba(14,12,10,0.86) 100%),
              url('assets/hero.jpg') center/cover no-repeat;
  color: var(--cream);
}
.hero-inner { padding: 70px 28px 64px; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-logo { width: 74px; height: 74px; margin-bottom: 26px; border: 1px solid rgba(247,243,234,0.6); }
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700; margin: 0 0 18px; max-width: 15ch;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 19px; max-width: 46ch; font-style: italic; color: rgba(247,243,234,0.88);
  margin: 0 0 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 30px; font-size: 15px;
  text-decoration: none; border: 1px solid currentColor; letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s; cursor: pointer;
}
.btn-solid { background: var(--cream); color: var(--ink); }
.btn-solid:hover { background: transparent; color: var(--cream); }
.btn-outline { background: transparent; color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--ink); }

/* ---------- PROOF STRIP ---------- */
.proof { border-bottom: 1px solid var(--hairline); background: var(--cream-dim); }
.proof-inner {
  max-width: 1100px; margin: 0 auto; padding: 34px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: center;
}
.proof-num { font-size: 32px; font-weight: 700; }
.proof-label { font-size: 14px; color: var(--charcoal); font-style: italic; margin-top: 4px; }
@media (max-width: 640px) { .proof-inner { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- SECTION HEADERS ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 14px; font-weight: 700; }
.section-head p { font-size: 17px; color: var(--charcoal); margin: 0; }

/* ---------- ORDER SECTION ---------- */
.order { background: var(--ink); color: var(--cream); }
.order .section-head p { color: rgba(247,243,234,0.75); }
.order-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.order-steps { display: flex; flex-direction: column; gap: 22px; }
.order-step { display: flex; gap: 18px; align-items: baseline; }
.order-step .n { font-size: 14px; color: rgba(247,243,234,0.5); min-width: 22px; }
.order-step .t { font-size: 17px; }
.order-boxes { border: 1px solid rgba(247,243,234,0.35); padding: 34px; }
.order-boxes h3 { margin: 0 0 22px; font-size: 20px; font-weight: 700; }
.box-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(247,243,234,0.2);
}
.box-row:last-of-type { border-bottom: none; }
.box-row .fmt { font-size: 16px; }
.box-row .price { font-size: 16px; font-weight: 700; }
@media (max-width: 800px) { .order-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- COOKIES SHOWCASE ---------- */
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.showcase-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; }
.showcase-item .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px; font-size: 15px; color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(15,13,11,0.78));
}
@media (max-width: 720px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- GUIDES ---------- */
.guides { background: var(--cream-dim); }
.bundle-card {
  border: 1px solid var(--ink); padding: 44px; margin-bottom: 34px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.bundle-card .eyebrow { font-size: 13px; color: var(--rust); font-style: italic; margin-bottom: 10px; }
.bundle-card h3 { font-size: 28px; margin: 0 0 14px; font-weight: 700; }
.bundle-list { list-style: none; padding: 0; margin: 0 0 24px; font-size: 15px; }
.bundle-list li { padding: 7px 0; border-bottom: 1px solid var(--hairline); }
.bundle-list li:last-child { border-bottom: none; }
.bundle-price { text-align: center; border-left: 1px solid var(--hairline); padding-left: 40px; }
.bundle-price .was { font-size: 15px; color: var(--charcoal); text-decoration: line-through; }
.bundle-price .now { font-size: 44px; font-weight: 700; margin: 6px 0 20px; }
@media (max-width: 800px) {
  .bundle-card { grid-template-columns: 1fr; padding: 30px; }
  .bundle-price { border-left: none; border-top: 1px solid var(--hairline); padding-left: 0; padding-top: 24px; }
}

.guide-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.guide-card { border: 1px solid var(--hairline); padding: 26px; background: var(--cream); }
.guide-card h4 { font-size: 17px; margin: 0 0 10px; font-weight: 700; }
.guide-card p { font-size: 14px; color: var(--charcoal); margin: 0 0 18px; min-height: 66px; }
.guide-card .price { font-size: 15px; font-weight: 700; border-top: 1px solid var(--hairline); padding-top: 14px; }
@media (max-width: 900px) { .guide-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .guide-row { grid-template-columns: 1fr; } }

/* ---------- NOTE FROM VALERIE ---------- */
.note { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.note-photo { aspect-ratio: 4/5; overflow: hidden; }
.note-photo img { width: 100%; height: 100%; object-fit: cover; }
.note-text .eyebrow { font-size: 13px; color: var(--rust); font-style: italic; margin-bottom: 14px; }
.note-text p { font-size: 18px; margin: 0 0 20px; }
.note-text .sign { font-size: 19px; font-style: italic; margin-top: 26px; }
@media (max-width: 800px) { .note { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- MENU / SAVEURS (7, floating cutouts, no frame) ---------- */
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 24px;
  margin-top: 20px;
}
.menu-item { text-align: center; }
.menu-photo {
  aspect-ratio: 1; margin: 0 auto 14px;
  max-width: 190px; display: flex; align-items: center; justify-content: center;
}
.menu-photo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.menu-name { font-size: 16px; font-weight: 700; }
@media (max-width: 800px) { .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 34px 16px; } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

.menu-cta { text-align: center; margin-top: 48px; }

/* ---------- NEXT DROP TEASER ---------- */
.drop-teaser {
  background: var(--ink); color: var(--cream);
  padding: 72px 0; margin-top: 0; text-align: center; overflow: hidden;
}
.drop-teaser .stack {
  position: relative; height: 260px; display: flex; align-items: flex-end;
  justify-content: center; gap: -20px; margin-bottom: 36px;
}
.drop-teaser .stack img {
  max-height: 240px; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.45));
}
.drop-teaser .stack img:nth-child(1) { transform: rotate(-9deg) translateY(6px); margin-right: -34px; z-index: 1; }
.drop-teaser .stack img:nth-child(2) { transform: translateY(-14px); z-index: 2; max-height: 260px; }
.drop-teaser .stack img:nth-child(3) { transform: rotate(9deg) translateY(6px); margin-left: -34px; z-index: 1; }
.drop-teaser h3 { font-size: 30px; font-weight: 700; margin: 0 0 12px; }
.drop-teaser p { font-size: 17px; color: rgba(247,243,234,0.75); margin: 0; font-style: italic; }
@media (max-width: 640px) {
  .drop-teaser .stack { height: 190px; }
  .drop-teaser .stack img { max-height: 170px; }
  .drop-teaser .stack img:nth-child(2) { max-height: 190px; }
}

/* ---------- EVENTS CALLOUT ---------- */
.events-callout {
  border: 1px solid var(--ink); background: var(--ink); color: var(--cream);
  padding: 40px 44px; margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.events-callout .txt h3 { font-size: 22px; margin: 0 0 10px; font-weight: 700; }
.events-callout .txt p { font-size: 16px; margin: 0; color: rgba(247,243,234,0.82); max-width: 52ch; }
.events-callout .btn { flex-shrink: 0; }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--hairline); padding: 44px 0 60px; font-size: 14px; color: var(--charcoal); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-inner a { text-decoration: underline; }
.footer-note { max-width: 60ch; font-style: italic; margin-top: 18px; font-size: 13px; }

/* ---------- ACCESSIBILITY ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rust); outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
