/* ===== Pop Stand brand tokens ===== */
:root {
  --pine:   #14331a;
  --green:  #3e8e2e;
  --tangerine: #e2603c;
  --cream:  #f6efdd;
  --cream-2:#e9f1d9;
  --mist:   #eaf6dd;
  --muted:  #6f8a5f;
  --gold:   #c2a25e;
  --purple: #7a4b9a;
  --line:   rgba(20,51,26,.14);
  --disp: "Fredoka", system-ui, sans-serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--pine);
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--disp); font-weight: 600; margin: 0; }
.wrap { width: min(1120px, 92vw); margin: 0 auto; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .14s ease, background .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn-solid { background: var(--tangerine); color: #fff; }
.btn-solid:hover { background: #e0742c; }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: #489a2c; }
.btn-ghost { background: transparent; color: var(--pine); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--pine); }

/* ===== nav ===== */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--green);
  border-bottom: 1px solid rgba(20,51,26,.2);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 44px; aspect-ratio: 1; object-fit: contain; background: var(--cream); border-radius: 50%; padding: 6px; }
.brand b { font-family: var(--disp); font-weight: 600; font-size: 25px; letter-spacing: -.01em; color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a.link { padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--cream); transition: background .18s; }
.nav-links a.link:hover { background: rgba(251,246,232,.16); }

/* ===== hero ===== */
.hero { position: relative; overflow: hidden; padding: 78px 0 64px; background: radial-gradient(130% 80% at 92% -10%, rgba(62,142,46,.12), transparent 55%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; background: var(--mist); color: var(--pine); font-weight: 600;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(84,176,51,.5);} 70%{box-shadow:0 0 0 7px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }
.hero h1 { font-size: clamp(54px, 8vw, 92px); line-height: .94; letter-spacing: -.03em; margin: 20px 0 18px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero .lede { font-size: 20px; line-height: 1.5; max-width: 38ch; color: color-mix(in oklab, var(--pine) 88%, transparent); margin: 0 0 28px; }
.hero .lede em { font-style: normal; color: var(--green); font-weight: 600; }
.hero .acts { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { position: relative; display: grid; place-items: center; }
.coin {
  width: min(420px, 42vw); aspect-ratio: 1; border-radius: 46% 54% 52% 48% / 54% 46% 54% 46%;
  background: radial-gradient(circle at 50% 30%, #fffef9, #efe6cd);
  display: grid; place-items: center;
  box-shadow: 0 40px 70px -32px rgba(20,51,26,.42), inset 0 0 0 2px rgba(62,142,46,.18);
  animation: bob 5.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0) rotate(-1.5deg);} 50%{transform:translateY(-14px) rotate(1.5deg);} }
.coin img { width: 72%; }
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob.b1 { width: 90px; height: 90px; background: var(--tangerine); top: 8px; right: 6%; opacity: .9; }
.blob.b2 { width: 64px; height: 64px; background: var(--green); bottom: 24px; left: 1%; opacity: .9; }
@media (prefers-reduced-motion: reduce) { .coin { animation: none; } }

/* ===== section frame ===== */
section.band { padding: 84px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(38px, 5vw, 56px); line-height: 1; letter-spacing: -.02em; }
.sec-head h2 em { font-style: normal; color: var(--green); }
.sec-head p { margin: 0; max-width: 40ch; color: var(--muted); }

/* ===== menu / pricing ===== */
.menu { background: var(--cream-2); border-radius: 36px; }
.menu .wrap { padding-top: 0; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.item {
  display: flex; align-items: flex-start; gap: 16px; justify-content: space-between;
  background: var(--cream); border-radius: 22px; padding: 22px 24px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.item:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(23,61,29,.4); }
.item .nm { font-family: var(--disp); font-weight: 600; font-size: 23px; line-height: 1.1; }
.item .spec { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.item .ds { font-size: 14.5px; color: var(--muted); margin-top: 4px; max-width: 32ch; }
.item .badge { display: inline-block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--tangerine); margin-top: 8px; }
.item .price { font-family: var(--disp); font-weight: 600; font-size: 24px; white-space: nowrap; color: var(--pine); }
.item .item-main { flex: 1; min-width: 0; }
.menu-note { grid-column: 1 / -1; }

/* trust strip */
.trust { padding: 6px 0 10px; }
.trust-in { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tpill { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: 9px 16px; border-radius: 999px; background: var(--mist); color: var(--pine); }
.tpill.hot { background: var(--tangerine); color: #fff; }

/* grade legend + section subheads */
.tier-legend { display: flex; flex-wrap: wrap; gap: 12px 30px; padding-bottom: 26px; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.tier-legend .leg { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted); }
.tier-legend .leg b { color: var(--pine); font-weight: 600; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.dot-house { background: var(--green); }
.dot-prem  { background: var(--purple); }
.menu-subhead { font-family: var(--disp); font-weight: 600; font-size: 22px; color: var(--green); margin: 34px 0 16px; }
.menu-subhead .reg { font-family: var(--sans); font-weight: 500; font-size: 15px; color: var(--muted); }

/* signature drinks */
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sig-card {
  background: var(--cream); border-top: 3px solid var(--tangerine); border-radius: 4px 4px 20px 20px; padding: 22px 24px 24px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.sig-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(20,51,26,.4); }
.sig-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.sig-nm { font-family: var(--disp); font-weight: 600; font-size: 24px; line-height: 1.05; }
.sig-price { font-family: var(--disp); font-weight: 600; font-size: 26px; color: var(--tangerine); white-space: nowrap; }
.sig-ds { font-size: 14px; color: var(--green); font-weight: 600; margin-top: 10px; }
.sig-spec { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); margin-top: 4px; }

/* two-tier drink pricing (House / Premium) */
.item .tiers { display: flex; gap: 18px; flex-shrink: 0; }
.tier { display: flex; flex-direction: column; align-items: flex-end; min-width: 76px; }
.tier .t-name { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.tier .t-price { font-family: var(--disp); font-weight: 600; font-size: 22px; line-height: 1.1; margin-top: 5px; color: var(--pine); }

/* tasting flight */
.flight-card {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--pine); color: var(--cream); border-radius: 22px; padding: 22px 26px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.flight-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(20,51,26,.55); }
.flight-card .fl-nm { font-family: var(--disp); font-weight: 600; font-size: 22px; }
.flight-card .fl-ds { font-size: 14px; color: rgba(251,246,232,.6); margin-top: 4px; }
.flight-card .fl-price { font-family: var(--disp); font-weight: 600; font-size: 26px; white-space: nowrap; color: var(--gold); }

/* additions — categorized */
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.add-cat { grid-column: 1 / -1; font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 12px; }
.add-cat:first-child { margin-top: 0; }
.addon {
  background: var(--cream); border: 1px dashed var(--line); border-radius: 18px; padding: 15px 18px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.addon:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(20,51,26,.35); }
.addon .add-left { flex: 1; min-width: 0; }
.addon .a-nm { font-weight: 600; font-size: 15px; }
.addon .a-sub { font-size: 12px; color: var(--muted); margin-top: 3px; font-style: italic; }
.addon .a-pr { font-family: var(--disp); color: var(--green); font-size: 18px; white-space: nowrap; text-align: right; }
.addon .a-extra { display: block; font-family: var(--sans); font-style: italic; font-weight: 400; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.menu-fine { grid-column: 1 / -1; text-align: center; margin-top: 22px; font-size: 12.5px; font-style: italic; color: var(--muted); }

/* ===== about ===== */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.about-card { background: var(--green); color: var(--cream); border-radius: 30px; padding: 40px; }
.about-card .big { font-family: var(--disp); font-weight: 600; font-size: 30px; line-height: 1.12; }
.about-card .src { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(251,246,232,.28); font-size: 15px; line-height: 1.55; color: rgba(251,246,232,.9); }
.about-copy p { font-size: 18px; line-height: 1.65; margin: 0 0 18px; }
.about-copy p:first-child { font-family: var(--disp); font-weight: 500; font-size: 26px; line-height: 1.25; color: var(--pine); }
.about-copy p:first-child em { font-style: normal; color: var(--green); }
.stats { display: flex; gap: 36px; margin-top: 24px; }
.stats .s .n { font-family: var(--disp); font-weight: 600; font-size: 36px; color: var(--tangerine); line-height: 1; }
.stats .s .l { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ===== contact ===== */
.contact { background: var(--pine); color: var(--cream); border-radius: 36px; }
.contact .sec-head h2 { color: var(--cream); }
.contact .sec-head h2 em { color: var(--green); }
.contact .sec-head p { color: rgba(251,246,232,.7); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.c-block { min-width: 0; border-top: 1px solid rgba(251,246,232,.25); padding-top: 22px; }
.c-block h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,246,232,.6); margin: 0 0 10px; font-weight: 400; }
.c-val { font-size: 18px; }
.c-val.big { font-family: var(--disp); font-weight: 500; font-size: 22px; }
.c-link {
  display: inline-block; font-family: var(--disp); font-weight: 500; font-size: 20px;
  color: var(--cream); overflow-wrap: anywhere; transition: color .15s ease;
}
.c-link:hover { color: var(--green); }
.c-note { margin: 8px 0 0; font-size: 14.5px; line-height: 1.5; color: rgba(251,246,232,.65); }

/* ===== footer ===== */
footer.foot { background: var(--green); color: var(--cream); padding: 60px 0 48px; }
.foot-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot h2 { font-size: clamp(44px, 6vw, 72px); line-height: .9; letter-spacing: -.03em; }
.foot h2 em { font-style: normal; color: var(--tangerine); }
.foot-links { display: flex; gap: 8px; flex-wrap: wrap; }
.foot .btn-ghost { color: var(--cream); border-color: rgba(251,246,232,.4); }
.foot .btn-ghost:hover { color: var(--cream); border-color: var(--cream); background: rgba(251,246,232,.1); }
.foot-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(251,246,232,.22); flex-wrap: wrap; }
.foot-bot .mono { font-size: 11px; color: rgba(251,246,232,.72); }

@media (max-width: 860px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .nav-links a.link { display: none; }
  .nav-links a.link.show-sm { display: inline-flex; }
  .stats { flex-wrap: wrap; gap: 24px; }
}
