/* ===== Tokens ===== */
:root{
  --cream:        #FBF1DD;
  --cream-soft:   #F4E6C4;
  --paper:        #FFFCF5;
  --ink:          #241B12;
  --muted:        #6B5C46;
  --gold-light:   #FCDE76; /* Pantone 12-0739 TSX "Daisy Floret" — main brand color */
  --gold:         #F1C752;
  --gold-deep:    #DD9A2E;
  --orange:       #EC8B3F;
  --orange-deep:  #D4742A;
  --ticket-red:   #C0453A;
  --line:         rgba(36,27,18,0.13);
  --shadow:       rgba(64,42,12,0.16);
  --radius:       20px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
::selection{ background:var(--gold-light); color:var(--ink); }
body{
  margin:0;
  font-family:'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  position:relative;
}
body::after{
  content:"";
  position:fixed; inset:0;
  background-image:radial-gradient(circle, rgba(36,27,18,0.05) 1px, transparent 1.6px);
  background-size:14px 14px;
  pointer-events:none;
  z-index:50;
  mix-blend-mode:multiply;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.shell{ width:min(1080px, calc(100% - 48px)); margin:0 auto; }
:focus-visible{ outline:3px solid var(--orange-deep); outline-offset:3px; border-radius:6px; }

/* ===== Topbar ===== */
.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(251,241,221,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-row{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px; }
.topbar-left{ display:flex; align-items:center; gap:28px; }
.topbar-nav{ display:none; gap:22px; }
.topbar-link{
  font-size:14px; font-weight:600; color:var(--ink); text-decoration:none;
  position:relative; padding-bottom:2px;
}
.topbar-link::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:var(--orange-deep); transition:right .18s ease;
}
.topbar-link:hover::after{ right:0; }
.topbar-right{ display:flex; align-items:center; gap:14px; }
.btn.topbar-cta{ display:inline-flex; }
.btn-small{ padding:9px 16px; font-size:14px; }

@media (max-width:480px){
  .eyebrow{ display:none; }
}

@media (min-width:700px){
  .topbar-nav{ display:flex; }
  .btn.topbar-cta{ display:none; }
}

.skip-link{
  position:absolute; left:50%; top:-60px; transform:translateX(-50%);
  background:var(--ink); color:var(--cream); padding:10px 18px; border-radius:0 0 10px 10px;
  z-index:100; transition:top .15s ease; font-weight:600; font-size:14px; text-decoration:none;
}
.skip-link:focus{ top:0; }

#flavors, #notify{ scroll-margin-top:78px; }
.brand-mark{ display:inline-flex; text-decoration:none; }
.brand-mark-img{ height:32px; width:auto; display:block; }
.brand-mark-img.small{ height:30px; margin-bottom:10px; }
.eyebrow{
  font-size:13px; font-weight:600; letter-spacing:.04em;
  color:var(--orange-deep);
  text-transform:uppercase;
}

/* ===== Shared bits ===== */
.pill{
  display:inline-flex; padding:9px 14px; border-radius:999px;
  background:rgba(36,27,18,0.08); font-size:13px; font-weight:600;
  letter-spacing:.01em; color:var(--ink);
}
.pill.dark{ background:var(--ink); color:var(--cream); }
.lede{ margin:0 0 22px; font-size:18px; line-height:1.55; color:var(--muted); max-width:46ch; }
.lede.center{ margin-inline:auto; }
.countdown{
  display:inline-flex; align-items:center; gap:8px; margin:4px 0 0;
  font-size:14px; font-weight:700; color:var(--orange-deep);
}
.center{ text-align:center; }
h2{
  margin:0 0 14px; font-family:'Fraunces', serif; font-weight:700;
  font-size:clamp(28px, 3.6vw, 42px); line-height:1.05;
}
.section{ padding:64px 0; }
.muted{ color:var(--muted); }
.muted-link{ color:var(--muted); text-decoration:underline; text-decoration-color:var(--line); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px; padding:13px 22px; border:1px solid var(--line);
  font-weight:700; font-size:15px; cursor:pointer; text-decoration:none;
  background:var(--paper); color:var(--ink);
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn.primary{
  background:linear-gradient(180deg, var(--orange), var(--orange-deep));
  border-color:rgba(150,90,30,0.45); color:#241405;
}
.btn.ghost{ background:rgba(255,255,255,0.4); }
.btn:hover{ transform:translateY(-2px); box-shadow:0 14px 30px var(--shadow); }
.btn:active{ transform:translateY(0); }

/* ===== Hero ===== */
.hero{ position:relative; padding:64px 0 56px; overflow:hidden; }
.hero-glow{
  position:absolute; inset:-20% -10% auto -10%; height:520px;
  background:radial-gradient(60% 60% at 70% 30%, rgba(239,185,73,0.35), transparent 70%);
  pointer-events:none;
}
.hero-grid{
  position:relative; display:grid; grid-template-columns:1.05fr .95fr;
  gap:32px; align-items:center;
}
.wordmark{ margin:6px 0 0; line-height:0; }
.wordmark-img{ width:100%; max-width:460px; height:auto; display:block; }
.wordmark-sub{
  margin:2px 0 18px; font-size:14px; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:var(--orange-deep);
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; }

.hero-art{ display:flex; justify-content:center; }
.bucket-illustration{ width:100%; max-width:380px; height:auto; }
.bucket-illustration .bucket-shadow{ fill:url(#bucketShadowGrad); }
.bucket-illustration .stripe-cream{ fill:var(--paper); }
.bucket-illustration .stripe-gold{ fill:url(#stripeGoldGrad); }
.bucket-illustration .bucket-outline{
  fill:none; stroke:var(--ink); stroke-width:3; stroke-linejoin:round;
}
.bucket-illustration .bucket-rim{ fill:url(#bucketRimGrad); stroke:var(--ink); stroke-width:2.5; stroke-linejoin:round; }
.bucket-illustration .bucket-edge-shade-l{ fill:var(--ink); opacity:.08; }
.bucket-illustration .bucket-edge-shade-r{ fill:var(--ink); opacity:.1; }
.bucket-illustration .popcorn-pile circle{ fill:#FFF9EA; stroke:var(--ink); stroke-width:2.5; stroke-linejoin:round; }
.bucket-illustration .popcorn-pile .kernel-shine{ fill:url(#kernelShineGrad); }
.bucket-illustration .ticket rect{ fill:var(--paper); stroke:var(--ink); stroke-width:2.5; }
.bucket-illustration .ticket-frame-mini{ fill:none; stroke:var(--ticket-red); stroke-width:1.6; }
.bucket-illustration .ticket-notch{ fill:var(--gold); stroke:var(--ink); stroke-width:2; }
.bucket-illustration .ticket-perf{ stroke:var(--ticket-red); stroke-width:2; }
.bucket-illustration .ticket-admit{
  font-family:'Permanent Marker', cursive; font-size:13px;
  letter-spacing:.04em; fill:var(--ink);
}
.bucket-illustration .spark{ fill:var(--gold-light); }
.bucket-illustration .kernel-float circle{ fill:var(--gold-light); stroke:var(--ink); stroke-width:1.5; }
.kernel-float{ animation:float 5s ease-in-out infinite; transform-origin:center; }
.k2{ animation-delay:.8s; }
.k3{ animation-delay:1.6s; }
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ===== Scallop divider ===== */
.scallop{ height:26px; width:100%; }
.scallop-down{
  background:var(--gold);
  -webkit-mask:radial-gradient(circle at 13px 0, transparent 13px, #000 13.5px) 0 0/26px 100% repeat-x;
  mask:radial-gradient(circle at 13px 0, transparent 13px, #000 13.5px) 0 0/26px 100% repeat-x;
}
.scallop-up{
  background:var(--cream);
  -webkit-mask:radial-gradient(circle at 13px 26px, transparent 13px, #000 13.5px) 0 0/26px 100% repeat-x;
  mask:radial-gradient(circle at 13px 26px, transparent 13px, #000 13.5px) 0 0/26px 100% repeat-x;
}

/* ===== Flavor block ===== */
.flavor-block{
  background:linear-gradient(180deg, var(--gold), var(--gold-deep));
  color:var(--ink);
}
.made-with{
  text-align:center; font-family:'Fraunces', serif; font-size:22px;
  margin:0 0 30px;
}
.made-with em{ font-style:italic; font-weight:500; display:block; font-size:16px; opacity:.85; }
.flavor-block h2{ color:var(--ink); }
.flavor-block p{ color:rgba(36,27,18,0.78); }
.flavor-intro{ text-align:center; max-width:52ch; margin:0 auto 36px; }
.flavor-intro p{ margin:0; }

/* Movie ticket flavor cards */
.ticket-row{
  list-style:none; margin:0 0 40px; padding:0;
  display:flex; flex-wrap:wrap; justify-content:center; gap:30px 22px;
}
.ticket-card{
  width:212px;
  transform:rotate(var(--r, 0deg));
  transition:transform .2s ease;
}
.ticket-card:hover{ transform:rotate(0deg) translateY(-4px); }
.ticket-svg{
  width:100%; height:auto; display:block;
  filter:drop-shadow(0 10px 18px var(--shadow));
  transition:filter .2s ease;
}
.ticket-card:hover .ticket-svg{ filter:drop-shadow(0 16px 26px var(--shadow)); }
.ticket-paper{ fill:var(--paper); stroke:var(--ink); stroke-width:3; stroke-linejoin:round; }
.ticket-frame{ fill:none; stroke:var(--ticket-red); stroke-width:2.5; }
.ticket-div{ stroke:var(--ticket-red); stroke-width:2; }
.ticket-vert{
  font-family:'Permanent Marker', cursive; font-size:12px; fill:var(--ink); letter-spacing:1.5px;
}
.ticket-title{
  font-family:'Permanent Marker', cursive; font-size:15px; fill:var(--ink); text-anchor:middle;
}
.ticket-stars path{ fill:var(--gold-light); stroke:var(--ink); stroke-width:1.3; }
.ticket-admit{
  font-family:'Permanent Marker', cursive; font-size:11px; fill:var(--ink);
  text-anchor:middle; letter-spacing:2.5px;
}

.badges{ list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }
.badge{
  display:flex; align-items:center; gap:12px; font-weight:600; font-size:15px;
  background:rgba(255,252,245,0.55); border-radius:999px; padding:10px 16px;
}
.badge-icon{
  width:34px; height:34px; border-radius:50%; background:var(--paper);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.badge-icon svg{ width:18px; height:18px; fill:none; stroke:var(--orange-deep); stroke-width:1.8; }

/* ===== Launch meter ===== */
.meter-section{ background:var(--cream); }
.meter-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:40px; align-items:center; }
.meter{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px 30px 30px; box-shadow:0 16px 40px var(--shadow); display:flex; gap:22px; }
.meter-track{
  position:relative; width:14px; border-radius:999px; background:var(--cream-soft);
  border:1px solid var(--line); flex:none;
}
.meter-fill{
  position:absolute; left:0; top:0; width:100%; border-radius:999px;
  height:var(--fill); background:linear-gradient(180deg, var(--orange), var(--gold-light));
  transition:height 1.1s cubic-bezier(.2,.8,.2,1);
}
.meter[data-revealed="true"] .meter-fill{ height:var(--fill); }
.meter:not([data-revealed="true"]) .meter-fill{ height:0%; }
.meter-ticks{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column;
  justify-content:space-between; flex:1; min-height:280px; }
.tick{ display:flex; flex-direction:column; gap:2px; }
.tick-label{ font-weight:700; font-size:15px; }
.tick-sub{ font-size:13px; color:var(--muted); }
.tick.is-current .tick-label{ color:var(--orange-deep); }
.tick.is-current .tick-label::before{ content:"\2605  "; }

/* ===== Notify ===== */
.notify-block{ background:var(--cream); }
.signup{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:22px; }
.signup input{
  width:min(340px, 100%); padding:13px 16px; border-radius:999px;
  border:1px solid var(--line); font-size:15px; background:var(--paper); color:var(--ink);
  font-family:inherit;
}
.signup input::placeholder{ color:var(--muted); }
.form-status{ min-height:20px; margin:14px 0 0; font-weight:600; font-size:14px; color:var(--orange-deep); }
.note{ margin-top:8px; color:var(--muted); font-size:14px; }
.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

/* ===== Footer ===== */
.footer{ padding:30px 0 46px; background:var(--cream-soft); }
.footer-tagline{
  font-family:'Fraunces', serif; font-style:italic; font-weight:600;
  font-size:16px; margin:0 0 12px; color:var(--ink);
}
.footer-grid{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:30px; }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
  .meter-grid{ grid-template-columns:1fr; }
  .meter{ flex-direction:row; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

/* Scroll reveal */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
