/* Nectar & Nosh - B (cinematic door) into A (provisions shelf) */
@font-face { font-family: 'Aleo'; src: url(../assets/fonts/Aleo-Light.ttf) format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Aleo'; src: url(../assets/fonts/Aleo-Regular.ttf) format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Aleo'; src: url(../assets/fonts/Aleo-SemiBold.ttf) format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Aleo'; src: url(../assets/fonts/Aleo-Bold.ttf) format('truetype'); font-weight: 700; font-display: swap; }

:root {
  --navy: #1d2f42;
  --navy-deep: #16253a;
  --ink: #223548;
  --ink-soft: #47586b;
  --cream: #f7f5f0;
  --paper: #fffdf8;
  --jam: #b5372e;
  --pistachio: #5f7440;
  --line: #ddd3c2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Aleo', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: var(--jam); text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--jam); outline-offset: 3px; border-radius: 2px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  #heroJar { transform: none !important; }
}

/* ============ HERO (B) ============ */
.hero {
  min-height: 100svh;
  background: radial-gradient(120% 90% at 50% 10%, #27405c 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: #f3efe6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 56px 24px 28px;
  overflow: hidden;
  position: relative;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-badge { width: 108px; height: auto; margin-bottom: 26px; }
.hero-eyebrow {
  font-weight: 600; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: #e8b48c; margin-bottom: 18px;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(44px, 8.5vw, 92px);
  line-height: 1.02;
  color: #fffdf8;
  text-wrap: balance;
}
.hero-sub { margin-top: 20px; font-size: clamp(17px, 2.2vw, 21px); color: #c8d0d9; font-weight: 300; }
.hero-art { margin-top: 34px; width: min(520px, 78vw); }
.hero-art img {
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  will-change: transform;
}
.scroll-cue {
  color: #e8b48c; text-decoration: none; display: flex; flex-direction: column; align-items: center;
  gap: 6px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  padding: 14px; margin-top: 18px;
}
.scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue svg { animation: none; } }

/* ============ SHELF (A) ============ */
.shelf { background: var(--cream); }
.block { max-width: 1060px; margin: 0 auto; padding: 96px 24px 0; }
.block:last-child { padding-bottom: 96px; }

.eyebrow {
  font-weight: 600; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--jam); margin-bottom: 12px;
}
.eyebrow.light { color: #e8b48c; }
h2 {
  font-weight: 700; font-size: clamp(30px, 4.6vw, 44px); line-height: 1.12;
  text-wrap: balance; margin-bottom: 26px;
}
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.split.flip figure { order: 2; }
.split figure img { border-radius: 8px; border: 1px solid var(--line); }
.copy p + p { margin-top: 14px; }
.copy .fine { font-size: 14px; color: var(--ink-soft); }
.price { font-weight: 700; font-size: 30px; color: var(--jam); margin-top: 20px; }
.price span { font-weight: 400; font-size: 16px; color: var(--ink-soft); }
.bundles { font-weight: 600; font-size: 16px; margin-top: 2px; }

/* pairing cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--jam);
  border-radius: 6px; padding: 22px 22px 20px;
}
.card h3 { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }
.wide img { border-radius: 8px; border: 1px solid var(--line); }

/* story */
.story .prose { max-width: 68ch; }
.story .prose p + p { margin-top: 16px; }

/* market panel */
.market-panel {
  background: var(--navy); color: #f3efe6; border-radius: 12px;
  padding: 52px 48px; text-align: center;
}
.market-panel h2 { color: #fffdf8; }
.market-lead { color: #c8d0d9; margin-top: -12px; }
.market-facts { margin: 26px 0 30px; display: grid; gap: 6px; font-size: 16.5px; }
.market-facts b { font-weight: 700; font-size: 19px; }
.btn {
  display: inline-block; background: var(--jam); color: #fff8f0; text-decoration: none;
  font-weight: 600; font-size: 15.5px; letter-spacing: .04em;
  padding: 13px 30px; border-radius: 999px;
}
.btn:hover { background: #a02e26; }
.btn:focus-visible { outline: 2px solid #fff8f0; outline-offset: 3px; }

/* coming soon */
.soon { text-align: center; }
.soon p { max-width: 52ch; margin: 0 auto; color: var(--ink-soft); }

/* footer */
footer {
  margin-top: 96px; background: var(--paper); border-top: 1px solid var(--line);
  text-align: center; padding: 44px 24px 38px; color: var(--ink-soft); font-size: 15px;
}
footer img { margin: 0 auto 14px; }
footer p + p { margin-top: 6px; }
footer .tiny { font-size: 12.5px; margin-top: 16px; }

@media (max-width: 760px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 26px; }
  .split.flip figure { order: 0; }
  .cards { grid-template-columns: 1fr; }
  .block { padding-top: 72px; }
  .market-panel { padding: 40px 24px; }
  .desktop-br { display: none; }
}

.soon .btn { margin-top: 26px; }
