/* ============================================================
   BASE / RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .5s ease, color .5s ease;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.08; }
p { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
ol, ul { margin: 0; padding: 0; list-style: none; }
.ph { opacity: .62; font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */
.site {
  max-width: 760px;
  margin: 0 auto;
  padding: 58px 22px 64px;
}
.section-head { margin-bottom: 26px; }
.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.itinerary, .faq, .download { margin-top: 64px; }

/* ---- entrance reveal: content is ALWAYS visible; motion is a non-hiding enhancement ---- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { transform: translateY(14px); transition: transform .6s ease; }
  .reveal.in { transform: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; text-align: center; padding: 18px 0 8px; }
.eyebrow {
  font-size: 12.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.title {
  font-family: var(--display-font);
  font-size: clamp(52px, 16vw, 96px);
  letter-spacing: var(--title-spacing, 0);
  color: var(--ink);
}
.title .amp { color: var(--accent); font-style: italic; font-weight: 400; }
.hero-sub {
  font-family: var(--display-font);
  font-size: clamp(20px, 5vw, 27px);
  font-style: italic;
  color: var(--muted);
  margin-top: 12px;
}
.hero-note {
  max-width: 30ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 16px;
}
.hero-date {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.hero-cta {
  max-width: 46ch;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.hero-emblem { display: none; }
.hero-emblem svg { width: 100%; height: auto; display: block; }
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.spark { position: absolute; color: var(--accent); opacity: .5; font-size: 18px; }
.spark.s1 { top: 6%; left: 12%; font-size: 22px; }
.spark.s2 { top: 30%; right: 9%; }
.spark.s3 { top: 4%; right: 24%; font-size: 13px; }

/* ============================================================
   ITINERARY STOPS
   ============================================================ */
.stops { display: flex; flex-direction: column; gap: 30px; position: relative; }
.stop { position: relative; }
.stop-rail { position: absolute; top: 22px; left: -56px; z-index: 3; }
.stop:not(:last-child)::after {
  content: ""; position: absolute; left: -33px; top: 45px; bottom: -75px;
  width: 2px; background: var(--line); z-index: 0;
}
.stop-index {
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
}
.stop-rail::after { display: none; }

.stop-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 24px;
  box-shadow: var(--shadow);
}
.stop-icon {
  width: 34px; height: 34px; color: var(--accent);
  margin-bottom: 12px;
}
.stop-icon svg { width: 100%; height: 100%; }
.stop-time {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 6px;
}
.stop-title {
  font-family: var(--display-font);
  font-size: clamp(26px, 7vw, 34px);
  color: var(--ink);
}
.stop-where { margin-top: 4px; color: var(--ink); font-weight: 500; font-size: 15px; }
.stop-desc { margin-top: 12px; color: var(--muted); font-size: 15.5px; }

.walk-note {
  margin-top: 26px; text-align: center;
  font-family: var(--display-font); font-style: italic;
  font-size: 18px; color: var(--muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--accent); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: 0; text-align: left;
  padding: 17px 20px;
  font-family: var(--display-font);
  font-size: 19px; font-weight: 600; color: var(--ink);
}
.chev {
  flex: none; width: 16px; height: 16px; position: relative;
  transition: transform .3s ease; color: var(--accent);
}
.chev::before, .chev::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 2px; border-radius: 2px; background: currentColor;
  transform: translate(-50%, -50%);
}
.chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .chev::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 20px 19px; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   DOWNLOAD + FOOTER
   ============================================================ */
.download { text-align: center; }
.dl-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--accent); color: var(--on-accent);
  border: 0; border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--body-font); font-weight: 600; font-size: 16px;
  letter-spacing: .01em;
  box-shadow: var(--shadow);
  transition: transform .15s ease, filter .2s ease;
}
.dl-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.dl-btn:active { transform: translateY(0); }
.dl-btn svg { width: 20px; height: 20px; }
.dl-btn.busy { opacity: .7; pointer-events: none; }
.dl-hint { margin-top: 14px; font-size: 13.5px; color: var(--muted); }

.foot { margin-top: 72px; text-align: center; padding-top: 28px; border-top: 1px solid var(--line); }
.foot-line { font-family: var(--display-font); font-size: 26px; color: var(--ink); }
.foot-sign { font-family: var(--display-font); font-style: italic; font-size: 22px; color: var(--accent); margin-top: 2px; }
.foot-meta { margin-top: 16px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   STYLE SWITCHER
   ============================================================ */
.switcher {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 4px;
  background: var(--switch-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 6px 5px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.switcher-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.switcher-btn {
  border: 0; background: none; border-radius: 999px;
  padding: 7px 13px; font-size: 13px; font-weight: 600; color: var(--muted);
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.switcher-btn.is-active { background: var(--accent); color: var(--on-accent); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 22px; left: 50%; transform: translate(-50%, 30px);
  background: #1d1d1f; color: #fff; padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500; opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease; z-index: 80;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 760px) {
  .site { padding-top: 72px; }
  .stop-card { padding: 26px 30px 28px; }
}
@media (max-width: 829px) {
  .stops { padding-left: 50px; }
  .stop-rail { left: -50px; }
  .stop:not(:last-child)::after { left: -27px; }
}

/* ============================================================
   THEME 1 — STORYBOOK  (warm, ornamental, romantic serif)
   ============================================================ */
[data-theme="1"] {
  --bg: #F7EDDA;
  --card: #FFFAEE;
  --ink: #4A2A39;
  --muted: #8C6675;
  --accent: #B14A40;        /* terracotta rose */
  --gold: #C7993F;
  --on-accent: #FFF6EC;
  --line: #E6D2B6;
  --radius: 14px;
  --shadow: 0 16px 38px -26px rgba(90,40,55,.5);
  --display-font: "Yeseva One", Georgia, serif;
  --body-font: "Mulish", system-ui, sans-serif;
  --switch-bg: rgba(255,250,238,.88);
  background:
    radial-gradient(125% 70% at 50% -8%, #F3E2C4 0%, rgba(243,226,196,0) 58%),
    #F7EDDA;
}
[data-theme="1"] .eyebrow { color: var(--gold); }
[data-theme="1"] .title .amp { color: var(--gold); }
[data-theme="1"] .hero::after {
  content: "\2766";                 /* floral heart ornament */
  display: block; margin: 22px auto 0;
  font-size: 26px; color: var(--gold); line-height: 1;
}
[data-theme="1"] .section-kicker { font-family: var(--display-font); font-weight: 400; letter-spacing: .12em; }
[data-theme="1"] .section-kicker::before,
[data-theme="1"] .section-kicker::after { content: "\2014"; opacity: .5; margin: 0 .5em; }
[data-theme="1"] .stop-index {
  border-color: var(--gold); color: var(--accent);
  box-shadow: inset 0 0 0 3px var(--card), inset 0 0 0 4px var(--gold);
  border-width: 0;
}
[data-theme="1"] .stop-card { border-radius: 16px; }
[data-theme="1"] .stop-icon { color: var(--gold); }
[data-theme="1"] .walk-note::before,
[data-theme="1"] .walk-note::after { content: "\273B"; color: var(--gold); font-style: normal; margin: 0 .5em; font-size: .8em; vertical-align: middle; }
[data-theme="1"] .foot-sign { color: var(--accent); }

/* ============================================================
   THEME 2 — SOFT POP  (candy pastels, rounded, sticker cards)
   ============================================================ */
[data-theme="2"] {
  --bg: #FFF7F4;
  --card: #FFFFFF;
  --ink: #342941;
  --muted: #7E7390;
  --accent: #FF6F61;         /* coral */
  --on-accent: #FFFFFF;
  --line: #F0E8F3;
  --radius: 26px;
  --shadow: 0 20px 44px -24px rgba(120,80,150,.4);
  --display-font: "Fredoka", system-ui, sans-serif;
  --body-font: "Nunito", system-ui, sans-serif;
  --switch-bg: rgba(255,255,255,.88);
  background:
    radial-gradient(40% 30% at 12% 8%, rgba(120,210,180,.20), transparent 60%),
    radial-gradient(36% 28% at 92% 14%, rgba(255,170,150,.22), transparent 60%),
    radial-gradient(46% 34% at 82% 78%, rgba(190,165,235,.20), transparent 60%),
    #FFF7F4;
  background-attachment: fixed;
}
[data-theme="2"] .title { font-weight: 600; letter-spacing: -.01em; }
[data-theme="2"] .title .amp { color: var(--accent); font-style: normal; }
[data-theme="2"] .hero-sub { font-style: normal; font-weight: 500; }
[data-theme="2"] .section-kicker {
  background: var(--accent); color: #fff; padding: 5px 12px; border-radius: 999px; letter-spacing: .1em;
}
[data-theme="2"] .stop-rail::after { background: repeating-linear-gradient(var(--line) 0 6px, transparent 6px 12px); width: 3px; }
[data-theme="2"] .stop-index { border: 0; color: #fff; font-weight: 600; }
[data-theme="2"] .stop-card { border: 0; box-shadow: var(--shadow); }
[data-theme="2"] .stop-icon {
  width: 50px; height: 50px; border-radius: 16px; padding: 12px; color: #fff;
  display: grid; place-items: center;
}
[data-theme="2"] .stop-time { border-radius: 999px; display: inline-block; padding: 4px 13px; white-space: nowrap; letter-spacing: .08em; }
/* per-stop candy colors */
[data-theme="2"] .stop:nth-child(1) .stop-index,
[data-theme="2"] .stop:nth-child(1) .stop-icon { background: #FF8A7A; }
[data-theme="2"] .stop:nth-child(1) .stop-time { background: #FFE6E1; color: #D9543F; }
[data-theme="2"] .stop:nth-child(2) .stop-index,
[data-theme="2"] .stop:nth-child(2) .stop-icon { background: #3FC4A8; }
[data-theme="2"] .stop:nth-child(2) .stop-time { background: #D9F4EC; color: #1E8C73; }
[data-theme="2"] .stop:nth-child(3) .stop-index,
[data-theme="2"] .stop:nth-child(3) .stop-icon { background: #9B7FE0; }
[data-theme="2"] .stop:nth-child(3) .stop-time { background: #ECE4FB; color: #6A4FC0; }
[data-theme="2"] .stop-title { font-weight: 600; }
[data-theme="2"] .faq-q { font-weight: 600; }
[data-theme="2"] .walk-note { font-style: normal; font-weight: 600; color: var(--accent); }

/* ============================================================
   THEME 3 — VINTAGE POSTER  (mid-century travel, bold condensed)
   ============================================================ */
[data-theme="3"] {
  --bg: #ECDDBE;
  --card: #F5EAD0;
  --ink: #243038;
  --muted: #5B6168;
  --accent: #C24E2C;         /* rust */
  --gold: #DDA536;
  --teal: #2C7A6F;
  --on-accent: #F5EAD0;
  --line: #CBB68C;
  --em-boot: #243038;
  --em-blade: #2C7A6F;
  --em-pick: #C24E2C;
  --em-lace: #ECDDBE;
  --radius: 2px;
  --shadow: 6px 6px 0 var(--ink);
  --display-font: "Anton", system-ui, sans-serif;
  --body-font: "Archivo", system-ui, sans-serif;
  --switch-bg: rgba(245,234,208,.9);
  background:
    repeating-linear-gradient(180deg, transparent 0 38px, color-mix(in srgb, var(--ink) 5%, transparent) 38px 39px),
    var(--bg);
  color: var(--ink);
  transition: background .35s ease, color .35s ease;
}
[data-theme="3"] .eyebrow { color: var(--teal); }
[data-theme="3"] .title {
  font-family: "Bevan", Georgia, serif;
  font-weight: 400; text-transform: uppercase; letter-spacing: .005em;
  line-height: 1.06; font-size: clamp(40px, 10vw, 66px);
}
[data-theme="3"] .title .amp { color: var(--teal); font-style: normal; }
[data-theme="3"] .hero-sub { font-style: normal; text-transform: uppercase; letter-spacing: .14em; font-size: 15px; font-family: var(--body-font); font-weight: 600; color: var(--accent); }
[data-theme="3"] .hero-emblem { display: block; width: 172px; margin: 0 auto 22px; }
[data-theme="3"] .section-kicker { background: var(--ink); color: var(--bg); padding: 4px 11px; letter-spacing: .14em; }
[data-theme="3"] h2 { text-transform: uppercase; font-weight: 400; }
[data-theme="3"] .stop-index {
  border-radius: 2px; border: 0; background: var(--accent); color: var(--on-accent);
  width: 46px; height: 46px; font-weight: 400;
}
[data-theme="3"] .stop-rail::after { background: var(--teal); width: 3px; }
[data-theme="3"] .stop-card {
  border: 2px solid var(--ink); border-radius: 2px; box-shadow: var(--shadow);
}
[data-theme="3"] .stop-time { color: var(--accent); }
[data-theme="3"] .stop-title { text-transform: uppercase; font-weight: 400; letter-spacing: .005em; }
[data-theme="3"] .stop-icon { color: var(--teal); }
[data-theme="3"] .walk-note { font-style: normal; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-family: var(--body-font); font-weight: 600; color: var(--teal); }
[data-theme="3"] .faq-item { border: 2px solid var(--ink); border-radius: 2px; }
[data-theme="3"] .faq-item.open { box-shadow: var(--shadow); }
[data-theme="3"] .faq-q { font-family: var(--body-font); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: 16px; }
[data-theme="3"] .dl-btn { border-radius: 2px; border: 2px solid var(--ink); box-shadow: var(--shadow); }
[data-theme="3"] .foot-line, [data-theme="3"] .foot-sign { text-transform: uppercase; }
[data-theme="3"] .switcher { border-radius: 4px; border: 2px solid var(--ink); }
[data-theme="3"] .switcher-btn { border-radius: 2px; }

/* ============================================================
   STOP LINKS (maps) + IN-CARD MOCKTAIL MENU + WEATHER
   (single committed style: Vintage)
   ============================================================ */
.stop-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.map-link {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; color: var(--teal);
  font-family: var(--body-font); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
  border: 1.5px solid var(--teal); border-radius: 2px;
  padding: 7px 11px;
  transition: background .15s ease, color .15s ease;
}
.map-link svg { width: 14px; height: 14px; }
.map-link:hover { background: var(--teal); color: var(--card); }

.menu-toggle-wrap { margin-top: 16px; border-top: 1.5px dashed var(--line); padding-top: 12px; }
.menu-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: 0; padding: 3px 0;
  font-family: var(--body-font); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em; color: var(--accent);
}
.menu-toggle .chev { color: var(--accent); }
.menu-toggle-wrap.open .chev::after { transform: translate(-50%, -50%) rotate(0); }
.menu-panel { display: grid; grid-template-rows: 0fr; }
.menu-toggle-wrap.open .menu-panel { grid-template-rows: 1fr; }
.menu-panel-inner { overflow: hidden; }
.mocktails { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.mocktails li { border-top: 1px solid var(--line); padding-top: 11px; }
.mocktails li:first-child { border-top: 0; padding-top: 0; }
.mk-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.mk-name { font-family: var(--body-font); font-weight: 700; font-size: 14.5px; color: var(--ink); text-transform: uppercase; letter-spacing: .02em; }
.mk-price { font-family: var(--body-font); font-weight: 700; font-size: 13px; color: var(--accent); flex: none; }
.mk-desc { color: var(--muted); font-size: 14px; margin-top: 3px; }
.reg-note { color: var(--muted); font-size: 13px; margin-top: 12px; }
/* smooth recolor when the palette shuffles every 20s */
.stop-card, .faq-item, .stop-index, .section-kicker, .weather, .pp-menu, .fb-card, .mocktails li, body { transition: background-color .45s ease, border-color .45s ease, color .45s ease; }

.weather {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 20px 18px;
  background: var(--bg); border: 1.5px solid var(--ink); border-radius: 3px;
  padding: 11px 14px;
}
.weather-icon { flex: none; width: 36px; height: 36px; }
.weather-icon svg { width: 100%; height: 100%; }
.weather-line { font-family: var(--body-font); font-weight: 700; font-size: 14px; color: var(--ink); text-transform: uppercase; letter-spacing: .03em; }
.weather-meta { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ============================================================
   FEEDBACK FOR BRIAN — sticky button + modal
   ============================================================ */
.fb-btn {
  position: fixed; top: 14px; right: 14px; z-index: 70;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--on-accent);
  border: 2px solid var(--ink); border-radius: 3px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 9px 13px;
  font-family: "Archivo", system-ui, sans-serif; font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .06em;
  transition: transform .12s ease, box-shadow .12s ease;
}
.fb-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.fb-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.fb-btn svg { width: 15px; height: 15px; }

.fb-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(20,22,24,.55); display: grid; place-items: center; padding: 20px; }
.fb-overlay[hidden] { display: none; }
.fb-card {
  position: relative; width: 100%; max-width: 392px;
  background: var(--card); border: 2px solid var(--ink); border-radius: 3px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 26px 24px 24px;
}
.fb-close { position: absolute; top: 8px; right: 12px; background: none; border: 0; font-size: 28px; line-height: 1; color: var(--ink); cursor: pointer; }
.fb-kicker { font-family: "Archivo", system-ui, sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.fb-title { font-family: "Anton", system-ui, sans-serif; font-weight: 400; text-transform: uppercase; font-size: 30px; margin-top: 4px; color: var(--ink); }
.fb-sub { color: var(--muted); font-size: 14px; margin-top: 6px; }
.fb-moods { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 12px; }
.fb-moods button {
  background: var(--card); color: var(--ink); border: 1.5px solid var(--ink); border-radius: 999px;
  padding: 6px 13px; font-family: "Archivo", system-ui, sans-serif; font-size: 13px; font-weight: 600; cursor: pointer;
}
.fb-moods button.sel { background: var(--ink); color: var(--card); }
.fb-text {
  width: 100%; box-sizing: border-box; resize: vertical; min-height: 86px;
  border: 1.5px solid var(--ink); border-radius: 3px; background: var(--card);
  padding: 11px 12px; font-family: "Archivo", system-ui, sans-serif; font-size: 14px; color: var(--ink);
}
.fb-text:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.fb-send {
  margin-top: 14px; width: 100%; cursor: pointer;
  background: var(--accent); color: var(--on-accent);
  border: 2px solid var(--ink); border-radius: 3px; box-shadow: 3px 3px 0 var(--ink);
  padding: 12px; font-family: "Archivo", system-ui, sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .05em;
}
.fb-send:hover { filter: brightness(1.05); }

/* ============================================================
   COLOR PALETTES — data-palette overrides (layout stays Vintage)
   Default (sunset) lives in [data-theme="3"] above.
   ============================================================ */
[data-palette="lake"] {
  --bg:#E7EFEF; --card:#FBFCFB; --ink:#1E3A40; --muted:#5E727A;
  --accent:#E0823C; --gold:#E0B23C; --teal:#2E8090; --on-accent:#FBFCFB; --line:#C7D9D8;
  --em-boot:#1E3A40; --em-blade:#2E8090; --em-pick:#E0823C; --em-lace:#E7EFEF;
}
[data-palette="mint"] {
  --bg:#E8F2EC; --card:#FBFEFB; --ink:#21302A; --muted:#5C6B61;
  --accent:#E2674F; --gold:#E2B14F; --teal:#2F8A6A; --on-accent:#FBFEFB; --line:#C8DDD1;
  --em-boot:#21302A; --em-blade:#2F8A6A; --em-pick:#E2674F; --em-lace:#E8F2EC;
}
[data-palette="blush"] {
  --bg:#F6E9E2; --card:#FFF7F1; --ink:#3A2730; --muted:#7E6068;
  --accent:#C24E64; --gold:#CFA24A; --teal:#6E8E7E; --on-accent:#FFF7F1; --line:#E4CDC2;
  --em-boot:#3A2730; --em-blade:#6E8E7E; --em-pick:#C24E64; --em-lace:#F6E9E2;
}
[data-palette="midnight"] {
  --bg:#16202A; --card:#1E2C38; --ink:#EDE3CE; --muted:#9FB0BC;
  --accent:#E0913C; --gold:#E0B23C; --teal:#4FB0A6; --on-accent:#16202A; --line:#33485A;
  --em-boot:#EDE3CE; --em-blade:#4FB0A6; --em-pick:#E0913C; --em-lace:#16202A;
}
[data-palette="neon"] {
  --bg:#141229; --card:#1F1B3C; --ink:#ECE8FF; --muted:#A09CC4;
  --accent:#FF5DA2; --gold:#F2C14E; --teal:#3FD0D8; --on-accent:#141229; --line:#2F2A55;
  --em-boot:#ECE8FF; --em-blade:#3FD0D8; --em-pick:#FF5DA2; --em-lace:#141229;
}
[data-palette="cocoa"] {
  --bg:#211712; --card:#2E221A; --ink:#F0E5D6; --muted:#B3A18F;
  --accent:#E0913C; --gold:#D8A24A; --teal:#7FA98C; --on-accent:#211712; --line:#43321F;
  --em-boot:#F0E5D6; --em-blade:#7FA98C; --em-pick:#E0913C; --em-lace:#211712;
}

/* ============================================================
   COLOR SCHEME PICKER — dropdown
   ============================================================ */
.palette-picker { position: fixed; top: 14px; left: 14px; z-index: 70; }
.pp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 3px; box-shadow: 3px 3px 0 var(--ink);
  padding: 8px 10px; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.pp-btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.pp-btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }
.pp-swatches { display: inline-flex; gap: 3px; }
.pp-swatches i { width: 12px; height: 16px; border-radius: 2px; display: block; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); }
.pp-caret { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--ink); }
.pp-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 250px; max-height: 72vh; overflow-y: auto;
  background: var(--card); border: 2px solid var(--ink); border-radius: 4px; box-shadow: 6px 6px 0 var(--ink);
  padding: 8px;
}
.pp-menu[hidden] { display: none; }
.pp-group { font-family:"Archivo",system-ui,sans-serif; font-size:10px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); padding: 8px 8px 4px; }
.pp-group + .pp-opt { margin-top: 0; }
.pp-opt {
  width: 100%; display: flex; align-items: center; gap: 10px;
  background: none; border: 0; border-radius: 3px; padding: 8px; cursor: pointer; text-align: left;
}
.pp-opt:hover { background: color-mix(in srgb, var(--ink) 9%, transparent); }
.pp-opt.sel { background: color-mix(in srgb, var(--ink) 14%, transparent); }
.pp-opt .pp-swatches i { width: 13px; height: 18px; }
.pp-opt-name { font-family:"Archivo",system-ui,sans-serif; font-weight:600; font-size:14px; color: var(--ink); flex:1; }
.pp-opt-check { color: var(--accent); font-weight: 700; font-size: 14px; opacity: 0; }
.pp-opt.sel .pp-opt-check { opacity: 1; }
.pp-tag { font-family:"Archivo",system-ui,sans-serif; font-size:9px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--on-accent); background: var(--accent); padding:2px 6px; border-radius:999px; white-space:nowrap; }
.pp-foot { border-top: 1.5px solid var(--line); margin-top: 6px; padding-top: 8px; }
.pp-default {
  width:100%; cursor:pointer; background: var(--accent); color: var(--on-accent);
  border:2px solid var(--ink); border-radius:3px; box-shadow:2px 2px 0 var(--ink);
  padding:9px; font-family:"Archivo",system-ui,sans-serif; font-weight:700; font-size:12px;
  text-transform:uppercase; letter-spacing:.05em;
}
.pp-default[disabled] { opacity:.6; cursor:default; box-shadow:none; background: var(--card); color: var(--muted); }
.pp-default:not([disabled]):hover { filter: brightness(1.05); }
.pp-cycle {
  width:100%; margin-top:10px; display:flex; align-items:center; gap:10px; cursor:pointer;
  background:none; border:0; padding:4px 2px;
  font-family:"Archivo",system-ui,sans-serif; font-weight:600; font-size:13px; color: var(--ink);
}
.pp-switch { flex:none; width:34px; height:20px; border:2px solid var(--ink); border-radius:999px; background: var(--card); position:relative; transition: background .2s ease; }
.pp-knob { position:absolute; top:1px; left:1px; width:14px; height:14px; border-radius:50%; background: var(--ink); transition: left .2s ease, background .2s ease; }
.pp-cycle.on .pp-switch { background: var(--accent); }
.pp-cycle.on .pp-knob { left:15px; background: var(--on-accent); }
