/* ============================================
   Bold Sip — Main Stylesheet
   boldsip.netlify.app
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Barlow', sans-serif; overflow-x: hidden; background: #0d0d0d; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #0d0d0d;
  border-bottom: 2px solid #f8f4ee;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.2em; color: #f8f4ee;
}
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: #f8f4ee; color: #0d0d0d;
  padding: 0.55rem 1.3rem; border: 2px solid #f8f4ee;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-cta:hover { background: #0d0d0d; color: #f8f4ee; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: #0d0d0d;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 5.5rem 1.5rem 3rem;
  gap: 1.8rem;
  border-bottom: 2px solid #f8f4ee;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(248,244,238,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-mascot {
  position: relative; z-index: 1;
  width: 130px; height: 130px; flex-shrink: 0;
  opacity: 0; animation: popIn 0.9s 0.1s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.hero-mascot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 1rem;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(248,244,238,0.45);
  opacity: 0; animation: fadeUp 0.6s 0.35s ease forwards;
}
h1.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 17vw, 9rem);
  line-height: 0.85; letter-spacing: 0.03em; color: #f8f4ee;
  opacity: 0; animation: fadeUp 0.6s 0.45s ease forwards;
}
h1.headline .outline {
  display: block; -webkit-text-stroke: 3px #f8f4ee; color: transparent;
}
p.hero-sub {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: clamp(0.72rem, 2.5vw, 0.9rem);
  letter-spacing: 0.3em; text-transform: uppercase; color: #f8f4ee;
  opacity: 0; animation: fadeUp 0.6s 0.58s ease forwards;
}
.hero-actions {
  display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.6s 0.7s ease forwards;
}
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; border: 2px solid #f8f4ee;
  display: inline-block; transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.96); }
.btn-fill  { background: #f8f4ee; color: #0d0d0d; }
.btn-fill:hover  { background: #0d0d0d; color: #f8f4ee; }
.btn-ghost { background: transparent; color: #f8f4ee; }
.btn-ghost:hover { background: #f8f4ee; color: #0d0d0d; }

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee {
  background: #0d0d0d; overflow: hidden;
  padding: 0.85rem 0; white-space: nowrap;
  border-top: 2px solid #f8f4ee; border-bottom: 2px solid #f8f4ee;
}
.marquee-track { display: inline-flex; animation: slide 30s linear infinite; }
.marquee span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.25em; color: #f8f4ee; padding: 0 2.2rem;
}
.marquee span::after { content: ' ✦'; opacity: 0.35; letter-spacing: 0; }

/* ══════════════════════════════
   STORY
══════════════════════════════ */
.story {
  background: #f8f4ee;
  padding: 4rem 1.5rem;
  border-bottom: 2px solid #0d0d0d;
}
.story-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.story-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(13,13,13,0.4); margin-bottom: 1rem;
}
.story-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 0.88; color: #0d0d0d; margin-bottom: 1.5rem;
}
.story-heading .outline {
  display: block; -webkit-text-stroke: 2px #0d0d0d; color: transparent;
}
.story-body {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75; color: rgba(13,13,13,0.65); max-width: 42ch;
}
.story-body strong { color: #0d0d0d; font-weight: 500; }
.story-right {
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
.story-mascot { width: clamp(100px, 26vw, 150px); }
.story-mascot img { width: 100%; height: auto; display: block; }
.facts { width: 100%; display: flex; flex-direction: column; gap: 1.4rem; }
.fact {
  padding-left: 1.2rem; border-left: 3px solid #0d0d0d;
  transition: border-color 0.2s;
}
.fact:hover { border-left-color: #c0160c; }
.fact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: 0.04em; color: #0d0d0d; line-height: 1; margin-bottom: 0.25rem;
}
.fact-sub {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(13,13,13,0.45);
}

/* ══════════════════════════════
   WEASEL SECTION
══════════════════════════════ */
.weasel {
  background: #0d0d0d;
  padding: 4rem 1.5rem;
  border-bottom: 2px solid #f8f4ee;
}
.weasel-inner {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2rem;
}
.weasel-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(248,244,238,0.38);
}
.weasel-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 0.88; color: #f8f4ee;
}
.weasel-heading .outline {
  display: block; -webkit-text-stroke: 2px #f8f4ee; color: transparent;
}
.weasel-body {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75; color: rgba(248,244,238,0.65); max-width: 52ch;
}
.weasel-body strong { color: #f8f4ee; font-weight: 500; }
.weasel-stat {
  border-left: 3px solid #f8f4ee;
  padding-left: 1.2rem; margin-top: 0.5rem;
}
.weasel-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: #f8f4ee; line-height: 1; margin-bottom: 0.2rem;
}
.weasel-stat-sub {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(248,244,238,0.4);
}

/* ══════════════════════════════
   MENU
══════════════════════════════ */
.menu {
  background: #f8f4ee;
  padding: 4rem 1.5rem;
  border-bottom: 2px solid #0d0d0d;
}
.menu-header {
  max-width: 900px; margin: 0 auto 3rem;
}
.menu-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(13,13,13,0.38); margin-bottom: 0.5rem;
}
.menu-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.85; color: #0d0d0d;
}
.menu-heading .outline {
  display: block; -webkit-text-stroke: 2.5px #0d0d0d; color: transparent;
}
.cards {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 2px; background: #0d0d0d; border: 2px solid #0d0d0d;
}
.card {
  background: #f8f4ee; padding: 2rem 1.8rem;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1.2rem; align-items: start;
}
.card-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  line-height: 1; color: rgba(13,13,13,0.08); padding-top: 0.1rem;
}
.card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.04em; color: #0d0d0d; line-height: 1; margin-bottom: 0.5rem;
}
.card-body p {
  font-size: 0.9rem; line-height: 1.6; color: rgba(13,13,13,0.55); max-width: 38ch;
}
.card-meta {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(13,13,13,0.3); margin-top: 0.6rem;
}
.card-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.05em; color: #0d0d0d; white-space: nowrap; padding-top: 0.15rem;
}
.menu-order {
  max-width: 900px; margin: 2.5rem auto 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem; text-align: center;
}
.menu-order-note {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(13,13,13,0.35);
}
.btn-order {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
  background: #0d0d0d; color: #f8f4ee;
  padding: 1rem 2.8rem; border: 2px solid #0d0d0d;
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-order:hover { background: #f8f4ee; color: #0d0d0d; }
.btn-order svg { width: 16px; height: 16px; flex-shrink: 0; }
.stripe-note {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(13,13,13,0.25);
  display: flex; align-items: center; gap: 0.4rem;
}
.card-order-btn {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: #0d0d0d; color: #f8f4ee;
  padding: 0.55rem 1.2rem;
  border: 2px solid #0d0d0d;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.card-order-btn:hover { background: #f8f4ee; color: #0d0d0d; }

/* ══════════════════════════════
   CTA / SIGNUP
══════════════════════════════ */
.cta {
  background: #0d0d0d;
  padding: 4rem 1.5rem;
  border-bottom: 2px solid #f8f4ee;
  text-align: center;
}
.cta-inner {
  max-width: 520px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 0.9; color: #f8f4ee;
}
.cta-sub {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,244,238,0.35);
  margin-bottom: 0.5rem;
}
.signup-form {
  display: flex; flex-direction: column; gap: 0.6rem; width: 100%;
}
.signup-form input {
  width: 100%; background: #0d0d0d;
  border: 1.5px solid rgba(248,244,238,0.3); color: #f8f4ee;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  padding: 0.85rem 1rem; outline: none; border-radius: 0;
  -webkit-appearance: none; text-align: center; transition: border-color 0.15s;
}
.signup-form input:focus { border-color: #f8f4ee; }
.signup-form input::placeholder { color: rgba(248,244,238,0.3); }
.signup-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  background: #f8f4ee; color: #0d0d0d; padding: 0.9rem 1rem;
  border: 2px solid #f8f4ee; cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-radius: 0; width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.signup-btn:hover { background: #0d0d0d; color: #f8f4ee; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #0d0d0d; border-top: 2px solid #f8f4ee;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.25em; color: #f8f4ee;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,244,238,0.2);
}

/* ══════════════════════════════
   REVEAL + ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (min-width: 640px) {
  nav { padding: 1.1rem 3rem; }
  .hero { flex-direction: row; justify-content: center; gap: 4rem; padding: 5.5rem 4rem 3rem; }
  .hero-mascot { width: 180px; height: 180px; }
  .hero-text { align-items: flex-start; text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .story { padding: 5rem 3rem; }
  .story-inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .story-right { align-items: flex-start; }
  .weasel { padding: 5rem 3rem; }
  .menu { padding: 5rem 3rem; }
  .cta { padding: 5rem 3rem; }
  .signup-form { flex-direction: row; }
  .signup-form input { flex: 1; text-align: left; }
  .signup-btn { width: auto; white-space: nowrap; padding: 0.9rem 1.8rem; }
}
@media (min-width: 960px) {
  nav { padding: 1.1rem 5rem; }
  .hero { padding: 5rem 8rem 3rem; gap: 6rem; }
  .hero-mascot { width: 220px; height: 220px; }
  .story { padding: 6rem 5rem; }
  .story-inner { gap: 7rem; }
  .weasel { padding: 6rem 5rem; }
  .menu { padding: 6rem 5rem; }
  .cta { padding: 6rem 5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
  .hero-mascot, h1.headline, p.hero-sub, .hero-actions, .hero-eyebrow { opacity: 1 !important; transform: none !important; }
}
