/* Beluga Bevco wireframes — sketchy / low-fi */
:root {
  --paper: #f6f1e7;
  --paper-2: #ede5d3;
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --muted: #8a8578;
  --rule: #2a2a2a;
  --note: #fff1a8;        /* sticky note */
  --note-edge: #d4b73a;
  --beluga-blue: #6cc4e8;  /* Sonic Sky */
  --tidal: #94b9a8;        /* Tidal Pool Green */
  --sun: #f5c542;          /* Sunshine Yellow */
  --ghost: #c8651b;        /* add-on dashed border */
  --ghost-tint: rgba(200,101,27,0.07);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #e9e2d1;
  color: var(--ink);
  font-family: 'Architects Daughter', 'Comic Sans MS', cursive;
  font-size: 16px;
  line-height: 1.5;
}

/* paper / canvas */
.app {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,0,0,0.04), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(0,0,0,0.04), transparent 40%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(0,0,0,0.025) 27px 28px),
    #ece4d2;
  padding: 18px 18px 80px;
}

/* top control bar */
.toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236,228,210,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px dashed var(--ink);
  padding: 12px 16px;
  margin: -18px -18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.toolbar h1 {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  margin: 0;
  letter-spacing: 0.5px;
}
.toolbar h1 small {
  font-family: 'Architects Daughter', cursive;
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: -4px;
}
.tab-group {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: #fffaf0;
}
.tab-group button {
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--ink);
}
.tab-group button.active {
  background: var(--ink);
  color: var(--paper);
}
.chip-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  font-family: inherit;
  font-size: 13px;
  background: #fffaf0;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 5px 11px;
  cursor: pointer;
  color: var(--ink);
  white-space: nowrap;
}
.chip.active {
  background: var(--sun);
  transform: rotate(-1deg);
}
.spacer { flex: 1; }
.legend {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.legend .swatch {
  display: inline-block;
  width: 14px; height: 14px;
  border: 1.5px solid var(--ink);
  margin-right: 4px;
  vertical-align: -2px;
}

/* Base+ pinned banner */
.pick2-banner {
  background: var(--sun);
  border: 2px dashed var(--ink);
  padding: 10px 14px;
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  transform: rotate(-0.3deg);
}
.pick2-banner .info {
  font-family: 'Architects Daughter', cursive;
  font-size: 13px;
  color: var(--ink-2);
  margin-left: auto;
}
.pick2-banner .counter {
  background: #fffaf0;
  border: 1.5px solid var(--ink);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 16px;
}

/* page grid — mobile + desktop side by side, with vertical clearance for the labels */
.page-grid {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  column-gap: 36px;
  row-gap: 36px;
  align-items: start;
  padding-top: 28px; /* clearance so viewport-label tabs are never clipped */
}
@media (max-width: 1100px) {
  .page-grid { grid-template-columns: 1fr; }
}
/* desktop host: reserves the scaled space; child viewport scales into it */
.desktop-host {
  position: relative;
  width: 100%;
  overflow: visible;
}
.desktop-host > .viewport.desktop {
  width: 1280px;
  transform-origin: top left;
}
/* mobile host */
.mobile-host { position: relative; }

/* viewport frames */
.viewport {
  background: #fffaf0;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.viewport.mobile {
  width: 390px;
  border-radius: 28px;
  border-width: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}
.viewport.desktop {
  width: 100%;
  max-width: 1280px;
  border-radius: 6px 6px 0 0;
  border-bottom-width: 8px;
}
.viewport-label {
  background: var(--note);
  border: 1.5px solid var(--ink);
  padding: 2px 10px;
  font-family: 'Caveat', cursive;
  font-size: 16px;
  transform: rotate(-2deg);
  white-space: nowrap;
  box-shadow: 1px 1px 0 rgba(0,0,0,0.18);
  display: inline-block;
  margin: 0 0 6px 14px;
  position: relative;
  z-index: 4;
}

.viewport-inner {
  padding: 0;
  background: #fffaf0;
}

/* nav (sticky in real life — static here) */
.wf-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1.5px dashed var(--ink);
  background: #fffaf0;
}
.wf-nav .logo-stub {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  border: 1.5px solid var(--ink);
  padding: 2px 10px;
  background: var(--beluga-blue);
}
.wf-nav .nav-links {
  display: flex;
  gap: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}
.wf-nav .nav-links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--ink-2);
}
.wf-nav .phone {
  margin-left: auto;
  font-size: 13px;
  border: 1.5px solid var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  background: #fffaf0;
}
.wf-nav .ham {
  font-size: 20px;
  border: 1.5px solid var(--ink);
  padding: 0 8px;
  border-radius: 4px;
  cursor: default;
}
.viewport.mobile .nav-links { display: none; }
.viewport.desktop .ham { display: none; }

/* generic blocks */
.block {
  border: 1.5px dashed var(--ink-2);
  padding: 12px;
  margin: 12px;
  background: #fffaf0;
  position: relative;
}
.block.solid { border-style: solid; }

/* Menu page — top grid (Pop-Up + Tap Takeover side-by-side, always visible) */
.menu-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.mobile .menu-top-grid { grid-template-columns: 1fr; }

.popup-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: stretch;
}
.popup-art {
  background: var(--sun);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  position: relative;
  box-shadow: 3px 3px 0 var(--ink);
}
.popup-art.takeover { background: var(--tidal); }
.popup-art-glyph { font-size: 36px; line-height: 1; }
.popup-art-strip {
  font-size: 9px;
  font-family: 'Architects Daughter', cursive;
  color: var(--ink-2);
  margin-top: 6px;
  text-align: center;
}
.popup-meat { display: flex; flex-direction: column; gap: 2px; }
.popup-now {
  font-size: 10px;
  letter-spacing: 1.2px;
  font-weight: bold;
  color: var(--ink-2);
}
.popup-now.accent { color: var(--accent); }
.popup-name {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
.popup-when { font-size: 11px; color: var(--ink-2); margin-top: 2px; }
.popup-next {
  margin-top: auto;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
}
.chip-mini {
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.8px;
  padding: 2px 5px;
  border-radius: 2px;
}
.takeover-foot {
  font-size: 11px;
  color: var(--ink-2);
  font-style: italic;
  margin-top: 8px;
  border-top: 1px dashed var(--ink-2);
  padding-top: 6px;
}

/* Newsletter — relocated, more substantial card */
.newsletter-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}
.mobile .newsletter-card { grid-template-columns: 1fr; }
.newsletter-eyebrow {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: bold;
  color: var(--accent);
}
.newsletter-title {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  line-height: 1.05;
  margin-top: 4px;
}
.newsletter-sub {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 6px;
}
.block.collapsible { padding: 0; }
.block.collapsible > summary.block-label {
  list-style: none;
  cursor: pointer;
  padding: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.block.collapsible > summary.block-label::-webkit-details-marker { display: none; }
.block.collapsible > summary.block-label .caret {
  display: inline-block;
  transition: transform 120ms ease;
  font-size: 12px;
  color: var(--ink-2);
}
.block.collapsible[open] > summary.block-label .caret { transform: rotate(90deg); }
.block.collapsible > .block-body { padding: 0 12px 12px; }
.block.collapsible > .ghost-chip-row { padding: 8px 12px 0; }
.block-label {
  font-family: 'Caveat', cursive;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--ink);
}
.block-label .tag {
  font-family: 'Architects Daughter', cursive;
  font-size: 11px;
  background: var(--ink);
  color: var(--paper);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: 2px;
}

/* placeholder image */
.ph {
  background:
    repeating-linear-gradient(135deg, #efe6d2 0 12px, #e3d8be 12px 24px);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ink-2);
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 8px;
  min-height: 80px;
  position: relative;
}
.ph::before, .ph::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(0,0,0,0.25);
  pointer-events: none;
}
.ph::after { display: none; }

/* hero */
.hero {
  position: relative;
  background: var(--beluga-blue);
  padding: 18px 14px 20px;
  border-bottom: 1.5px dashed var(--ink);
  text-align: center;
}
.hero .ph.hero-img {
  height: 160px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.4) 0 14px, rgba(255,255,255,0.15) 14px 28px),
    var(--beluga-blue);
}
.hero .logo-big {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  margin: 10px 0 0;
  line-height: 1;
}
.hero .tagline {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  margin: 4px 0;
}
.hero .subhead {
  font-size: 14px;
  margin: 0 0 12px;
}
.hero-ctas {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: inherit;
  font-size: 14px;
  border: 1.5px solid var(--ink);
  padding: 6px 14px;
  background: #fffaf0;
  cursor: default;
  text-decoration: none;
  color: var(--ink);
}
.btn.primary {
  background: var(--ink);
  color: var(--paper);
}
.btn.outline { background: transparent; }
.tap-call {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-2);
  text-decoration: underline;
}

/* quick info pills */
.pill-band {
  display: flex;
  gap: 8px;
  padding: 12px;
  flex-wrap: wrap;
  background: var(--paper-2);
  border-bottom: 1.5px dashed var(--ink);
}
.pill {
  background: #fffaf0;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* card grids */
.grid {
  display: grid;
  gap: 8px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.viewport.mobile .grid-3, .viewport.mobile .grid-4 { grid-template-columns: 1fr 1fr; }

/* tap card */
.tap-card {
  border: 1.5px solid var(--ink);
  padding: 8px;
  background: #fffaf0;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.tap-card .tap-num {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  line-height: 1;
}
.tap-card .brewery { font-weight: bold; font-size: 12px; }
.tap-card .meta { color: var(--ink-2); font-size: 10px; }
.tap-card.featured {
  background: var(--sun);
  transform: rotate(-0.5deg);
}
.tap-card .status {
  position: absolute;
  top: 6px; right: 6px;
  font-size: 9px;
  background: var(--tidal);
  border: 1px solid var(--ink);
  padding: 0 4px;
}

/* menu rows */
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px dotted var(--ink-2);
  padding: 8px 0;
  gap: 8px;
}
.menu-row .name { font-weight: bold; font-size: 14px; }
.menu-row .desc { font-size: 12px; color: var(--ink-2); }
.menu-row .price { font-family: 'Caveat', cursive; font-size: 20px; }
.dietary {
  display: inline-flex;
  gap: 4px;
  margin-left: 6px;
}
.dietary span {
  font-size: 9px;
  border: 1px solid var(--ink-2);
  padding: 0 3px;
  border-radius: 2px;
  font-family: 'Courier New', monospace;
}

/* section heading */
.section-h {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  margin: 18px 12px 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.section-h .sub {
  font-family: 'Architects Daughter', cursive;
  font-size: 12px;
  color: var(--ink-2);
  font-style: italic;
}

/* in-page chips (sticky on real site) */
.section-chips {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  flex-wrap: wrap;
  border-bottom: 1.5px dashed var(--ink-2);
  background: var(--paper-2);
}

/* footer */
.wf-footer {
  background: var(--paper-2);
  border-top: 1.5px dashed var(--ink);
  padding: 14px;
  font-size: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.viewport.desktop .wf-footer {
  grid-template-columns: repeat(5, 1fr);
}
.wf-footer .h { font-family: 'Caveat', cursive; font-size: 16px; margin-bottom: 4px; }
.badge-row { display: flex; gap: 4px; flex-wrap: wrap; }
.badge {
  border: 1.5px solid var(--ink);
  background: #fffaf0;
  padding: 2px 6px;
  font-size: 10px;
  font-family: 'Courier New', monospace;
}
.badge.yelp { background: var(--sun); }

/* GHOSTED add-on */
.ghost {
  position: relative;
  border: 2px dashed var(--ghost) !important;
  background: var(--ghost-tint) !important;
  opacity: 0.92;
}
.ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 8px,
    rgba(200,101,27,0.07) 8px 16px
  );
  pointer-events: none;
}
.ghost-chip {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--ghost);
  color: #fff;
  font-family: 'Architects Daughter', cursive;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  z-index: 3;
  border: 1.5px solid var(--ink);
}
.ghost-tooltip {
  margin-top: 8px;
  font-size: 11px;
  color: var(--ghost);
  font-style: italic;
  border-top: 1px dotted var(--ghost);
  padding-top: 4px;
}

/* sticky-note annotation */
.note {
  position: relative;
  background: var(--note);
  border: 1.5px solid var(--note-edge);
  padding: 8px 10px;
  font-family: 'Caveat', cursive;
  font-size: 16px;
  line-height: 1.15;
  margin: 10px 12px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.12);
}
.note::before {
  content: '★';
  margin-right: 6px;
  color: var(--note-edge);
}
.note.locked::before { content: '🔒'; font-family: inherit; font-size: 12px; }

/* page header inside viewport */
.page-header {
  background: var(--tidal);
  padding: 18px 14px;
  border-bottom: 1.5px dashed var(--ink);
}
.page-header h2 {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  margin: 0;
  line-height: 1;
}
.page-header .ribbon {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-2);
  margin-top: 4px;
}

/* page section heading on cards */
.card-head {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  margin: 0 0 4px;
}
.card-sub { font-size: 11px; color: var(--ink-2); }

/* perk list */
.perk {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--ink-2);
  align-items: center;
}
.perk .icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  background: var(--sun);
}

/* event cards (Base+) */
.event-card {
  border: 1.5px solid var(--ink);
  padding: 8px;
  background: #fffaf0;
  font-size: 12px;
}
.event-card .date {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  line-height: 1;
}

/* form */
.form-field {
  display: block;
  margin: 6px 0;
  font-size: 12px;
}
.form-field .lbl { display: block; margin-bottom: 2px; color: var(--ink-2); }
.form-field .input {
  border: 1.5px solid var(--ink);
  background: #fffaf0;
  height: 26px;
  padding: 0 6px;
  font-family: inherit;
  font-size: 12px;
  width: 100%;
}
.form-field .input.tall { height: 60px; padding: 6px; }

/* Base+ footer summary */
.addon-summary {
  background: #fffaf0;
  border: 2px dashed var(--ghost);
  padding: 14px;
  margin: 18px 12px;
  font-size: 13px;
}
.addon-summary h3 {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  margin: 0 0 8px;
}
.addon-summary ul { list-style: none; padding: 0; margin: 0; }
.addon-summary li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted var(--ink-2);
  align-items: center;
}
.addon-summary .check {
  width: 16px; height: 16px;
  border: 1.5px solid var(--ink);
  display: inline-block;
}
.addon-summary .totals {
  margin-top: 10px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

/* page section gap */
.viewport-inner > .block:last-child { margin-bottom: 18px; }

/* annotation pointer (curved leader). Used as small marker. */
.callout {
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: var(--ghost);
  border-left: 2px solid var(--ghost);
  padding-left: 8px;
  margin: 6px 12px;
}

/* Crew modal */
.crew-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
}
.crew-modal {
  background: #fffaf0;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  border-radius: 6px;
}
.crew-x {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink);
  background: #fffaf0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}
.page-divider {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  margin: 24px 0 8px;
  border-top: 2px dashed var(--ink);
  padding-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.page-divider .url {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--ink-2);
}

/* small color chip */
.color-chip {
  display: inline-block;
  width: 16px; height: 16px;
  border: 1.5px solid var(--ink);
  vertical-align: -3px;
  margin-right: 4px;
}

/* logo placeholder */
.logo-ph {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--beluga-blue);
  border: 1.5px solid var(--ink);
  padding: 4px 10px;
  border-radius: 18px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  position: relative;
}
.logo-ph::before {
  content: '';
  width: 28px; height: 14px;
  background: var(--ink);
  border-radius: 50% 80% 30% 70% / 60% 60% 40% 40%;
  display: inline-block;
}
.logo-ph.big { font-size: 28px; padding: 6px 16px; }
.logo-ph.big::before { width: 44px; height: 22px; }

/* misc */
.txt-line {
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--ink-2) 0 4px, transparent 4px 8px);
  margin: 4px 0;
  opacity: 0.55;
}
.txt-line.short { width: 60%; }
.txt-line.med { width: 80%; }

/* sticky in-page nav highlight */
.section-chips .chip.active { background: var(--tidal); }

/* tabs for page selector */
.page-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ensure ghost chip is above content */
.block.ghost > * { position: relative; z-index: 2; }

/* hide add-on chips when toggled off (still show ghost styling) */
.viewport.no-addon-chips .ghost-chip,
.viewport.no-addon-chips .ghost-tooltip { display: none; }

/* LOUD Pick-2 banner — gift announcement, not footnote */
.pick2-banner-loud {
  background: var(--sun);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  padding: 12px 16px;
  font-family: 'Caveat', cursive;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  position: relative;
  box-shadow: 0 3px 0 rgba(0,0,0,0.08);
}
.pick2-banner-loud .gift { font-size: 26px; }
.pick2-banner-loud .lead { font-size: 26px; font-weight: 700; }
.pick2-banner-loud .dot { color: var(--ink-2); }
.pick2-banner-loud .value { font-size: 22px; }
.pick2-banner-loud .counter {
  margin-left: auto;
  background: #fffaf0;
  border: 2px solid var(--ink);
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 18px;
}
.viewport.mobile .pick2-banner-loud {
  font-size: 18px;
  padding: 10px 12px;
  gap: 6px;
}
.viewport.mobile .pick2-banner-loud .lead { font-size: 20px; }
.viewport.mobile .pick2-banner-loud .counter { font-size: 14px; margin-left: 0; }

/* Sticky-note system (§10) */
.sticky-note {
  background: var(--note);
  border: 1.5px solid var(--note-edge);
  padding: 10px 26px 12px 12px;
  font-family: 'Caveat', cursive;
  font-size: 17px;
  line-height: 1.22;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.16), 0 1px 0 rgba(255,255,255,0.6) inset;
  max-width: 280px;
  position: relative;
  align-self: flex-start;
}
.sticky-note.tone-cream { background: #fff1d4; border-color: #c9a047; }
.sticky-note.tone-warm { background: #ffe1ad; border-color: #c98a1d; }
.sticky-note .sn-close {
  position: absolute;
  top: 4px; right: 6px;
  width: 18px; height: 18px;
  border: 1px solid var(--ink);
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
}
.sticky-note .sn-close:hover { background: #fff; }
.sticky-note .sn-label {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 1px 6px;
  margin-bottom: 6px;
}
.sticky-note .sn-body { font-family: 'Caveat', cursive; font-size: 18px; }
.sticky-note.kind-why .sn-body em { font-style: italic; }

/* margin sticky — sits to the side of the page divider, never inside the wireframe */
.margin-sticky {
  background: var(--note);
  border: 1.5px solid var(--note-edge);
  padding: 10px 12px 12px;
  font-family: 'Caveat', cursive;
  font-size: 17px;
  line-height: 1.2;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.12);
  max-width: 320px;
  align-self: flex-start;
  transform: rotate(-1.2deg);
  position: relative;
}
.margin-sticky.tone-insight { background: #ffe4b3; border-color: #c98a1d; }
.margin-sticky .ms-tab {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  padding: 1px 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.page-divider-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 24px;
}
.page-divider-row .page-divider { flex: 1; min-width: 280px; margin-top: 0; }

/* Add-on dependency / sub-add-on chips */
.ghost-chip-row {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 6px;
  right: 8px;
}
.ghost-chip-row .ghost-chip { position: static; }
.requires-chip {
  background: #fff4e0;
  color: #b34700;
  border: 1.5px dashed #b34700;
  padding: 1px 6px;
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  letter-spacing: 0.3px;
  border-radius: 2px;
}
.sub-addon-chip {
  background: var(--ghost-tint);
  color: var(--ghost);
  border: 1.2px dotted var(--ghost);
  padding: 1px 6px;
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  border-radius: 2px;
}
.block.sub-addon {
  border-style: dotted;
  margin-left: 18px;
  border-left-width: 4px;
  position: relative;
}
.block.sub-addon::before {
  content: '↳';
  position: absolute;
  left: -22px;
  top: 14px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--ghost);
}

/* ============== PROPOSAL PAGE ============== */
.proposal-doc {
  max-width: 820px;
  margin: 24px auto 80px;
  padding: 0 24px;
  font-family: 'Architects Daughter', 'Caveat', cursive;
  color: var(--ink);
}
.proposal-cover {
  background: var(--beluga-blue);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 56px 48px 48px;
  margin-bottom: 40px;
  position: relative;
}
.proposal-cover-mark {
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.proposal-cover h1 {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  line-height: 1;
  margin: 0 0 16px;
  font-weight: 700;
}
.proposal-cover-sub {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.5;
}
.proposal-cover-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Architects Daughter', cursive;
  font-size: 14px;
}
.proposal-cover-meta span {
  background: #fffaf0;
  border: 1.5px solid var(--ink);
  padding: 6px 12px;
}

.proposal-section {
  margin-bottom: 36px;
  background: var(--paper);
  border: 1.8px solid var(--ink);
  position: relative;
}
.proposal-section-head {
  background: var(--tidal);
  border-bottom: 1.8px solid var(--ink);
  padding: 14px 24px;
}
.proposal-section-head h3 {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  margin: 0;
  line-height: 1;
}
.proposal-section-body {
  padding: 26px 30px;
  font-size: 17px;
  line-height: 1.6;
}
.proposal-section-body .lead {
  font-size: 19px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.proposal-section-body p { margin: 0 0 12px; }
.proposal-section-body strong { font-weight: 700; }

.proposal-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.proposal-checklist li {
  padding: 10px 0 10px 30px;
  border-bottom: 1px dashed var(--ink-3);
  position: relative;
}
.proposal-checklist li:last-child { border-bottom: 0; }
.proposal-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 9px;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--tidal-deep, #4a8a7a);
  font-weight: 700;
}
.proposal-checklist li { font-size: 17px; }

.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.addon-card {
  border: 1.5px solid var(--ink);
  padding: 14px 16px;
  background: #fffaf0;
  position: relative;
}
.addon-card.picked {
  background: #fff8d6;
  border-width: 2px;
  box-shadow: 4px 4px 0 var(--ink);
}
.addon-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.addon-name {
  font-family: 'Caveat', cursive;
  font-size: 27px;
}
.addon-price {
  font-family: 'Architects Daughter', cursive;
  font-size: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 8px;
}
.addon-desc { font-size: 15px; line-height: 1.5; }

.addon-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.addon-meta .meta-chip {
  font-family: 'Architects Daughter', cursive;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1.2px solid;
}
.addon-meta .foundation {
  background: var(--sun);
  border-color: var(--ink);
  color: var(--ink);
}
.addon-meta .requires {
  background: #fff4e0;
  border-style: dashed;
  border-color: #b34700;
  color: #b34700;
}
.addon-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.addon-meta .meta-chip {
  font-family: 'Architects Daughter', cursive;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1.2px solid;
}
.addon-meta .foundation {
  background: var(--sun);
  border-color: var(--ink);
  color: var(--ink);
}
.addon-meta .requires {
  background: #fff4e0;
  border-style: dashed;
  border-color: #b34700;
  color: #b34700;
}

.proposal-sticky {
  margin-top: 14px;
  background: var(--sun);
  border: 1.5px solid var(--ink);
  padding: 12px 30px 12px 14px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  line-height: 1.35;
  position: relative;
  transform: rotate(-0.6deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.proposal-sticky.cream { background: #f5e8c8; }
.proposal-sticky .x {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 18px;
  color: var(--ink-2);
}

.gift-band {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--sun);
  border: 2px solid var(--ink);
  padding: 18px 22px;
  box-shadow: 4px 4px 0 var(--ink);
}
.gift-icon { font-size: 42px; }
.gift-headline {
  font-family: 'Caveat', cursive;
  font-size: 33px;
  line-height: 1.05;
}
.gift-sub { font-size: 16px; line-height: 1.5; }

.picks {
  padding-left: 24px;
  margin: 0;
  font-size: 17px;
}
.picks li { margin-bottom: 10px; line-height: 1.55; }
.footnote { font-size: 14px; color: var(--ink-2); font-style: italic; margin-top: 10px; line-height: 1.5; }

.proposal-math {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}
.proposal-math td { padding: 12px 8px; border-bottom: 1px dashed var(--ink-3); }
.proposal-math td.num { text-align: right; font-family: 'Caveat', cursive; font-size: 25px; }
.proposal-math .total td {
  border-top: 2px solid var(--ink);
  border-bottom: 2px double var(--ink);
  font-weight: 700;
  background: var(--sun);
}
.proposal-math .total td.num { font-size: 32px; }

.timeline {
  display: grid;
  gap: 14px;
}
.timeline .step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.timeline .step-num {
  flex: 0 0 36px;
  height: 36px;
  border: 2px solid var(--ink);
  background: var(--beluga-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
}

.timeline .step { font-size: 17px; line-height: 1.55; display: flex; gap: 14px; align-items: flex-start; }
.timeline .step strong { font-size: 18px; }
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 17px;
}
.bullets li {
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.55;
}
.bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-2);
}

.note {
  border-left: 4px solid var(--sun);
  background: #fffaf0;
  padding: 16px 20px;
  margin: 0;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  line-height: 1.4;
}

.next-steps {
  padding-left: 24px;
  margin: 0;
  font-size: 17px;
}
.next-steps li { margin-bottom: 9px; line-height: 1.55; }

.accept-grid {
  display: grid;
  gap: 22px;
}
.accept-line .lbl {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  margin-bottom: 4px;
}
.accept-line .sigline,
.accept-line .dateline {
  border-bottom: 2px solid var(--ink);
  padding: 18px 0 4px;
  font-size: 11px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.accept-line .sigline { margin-bottom: 6px; }

.proposal-foot {
  text-align: center;
  margin-top: 40px;
  padding: 24px 0;
}
.proposal-foot-mark {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.proposal-foot-meta { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

@media (max-width: 720px) {
  .addon-grid { grid-template-columns: 1fr; }
  .proposal-cover h1 { font-size: 44px; }
  .proposal-cover { padding: 36px 24px 28px; }
  .proposal-section-body { padding: 18px 18px; }
}

/* Per-add-on color tones — each add-on family gets its own hue
   so identical chips/borders are immediately recognizable.
   Override --ghost + --ghost-tint locally. */
.block.ghost.tone-events       { --ghost: #c8651b; --ghost-tint: rgba(200,101,27,0.07); }   /* faded orange (default) */
.block.ghost.tone-newsletter   { --ghost: #b88a1a; --ghost-tint: rgba(184,138,26,0.08); }   /* faded yellow / honey */
.block.ghost.tone-blog         { --ghost: #5d8a6a; --ghost-tint: rgba(93,138,106,0.08); }   /* faded green */
.block.ghost.tone-reservations { --ghost: #3f7a99; --ghost-tint: rgba(63,122,153,0.08); }   /* faded blue */
.block.ghost.tone-brewroom     { --ghost: #8c5a3c; --ghost-tint: rgba(140,90,60,0.08); }    /* faded brown */
.block.ghost.tone-private      { --ghost: #8a4f8e; --ghost-tint: rgba(138,79,142,0.08); }   /* faded plum */

/* keep the diagonal hatch in the same tone family */
.block.ghost.tone-newsletter::before   { background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(184,138,26,0.08) 8px 16px); }
.block.ghost.tone-blog::before         { background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(93,138,106,0.08) 8px 16px); }
.block.ghost.tone-reservations::before { background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(63,122,153,0.08) 8px 16px); }
.block.ghost.tone-brewroom::before     { background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(140,90,60,0.08) 8px 16px); }
.block.ghost.tone-private::before      { background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(138,79,142,0.08) 8px 16px); }

/* Featured drink card — uses Tap Takeover slot styling but with a sun accent */
.featured-drink-card { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: stretch; }
.featured-drink-art {
  background: var(--sun);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  text-align: center;
  padding: 6px;
  position: relative;
}
.featured-drink-art::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 6px, rgba(0,0,0,0.04) 6px 12px);
  pointer-events: none;
  border-radius: 3px;
}
.featured-drink-meat .now {
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  background: var(--ink); color: var(--sun);
  padding: 2px 6px; border-radius: 3px;
  display: inline-block;
}
.featured-drink-meat .name { font-family: 'Caveat', cursive; font-size: 22px; line-height: 1.05; margin-top: 4px; }
.featured-drink-meat .blurb { font-size: 11px; color: var(--ink-2); margin-top: 2px; }
.featured-drink-meat .meta { font-size: 11px; margin-top: 4px; font-family: 'Architects Daughter', cursive; }

/* Sub-section header inside What's On Tap */
.tap-subhead {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  margin: 14px 0 6px;
  display: flex; align-items: baseline; gap: 8px;
}
.tap-subhead .tag {
  font-family: 'Architects Daughter', cursive;
  font-size: 10px;
  background: var(--ink); color: var(--paper);
  padding: 2px 6px; border-radius: 3px;
}
