/* ===========================================================
   High Dive · The Vault — moody tiki QR menu
   Dark teak + warm lamp glow + brand red/cream/gold
   =========================================================== */

:root, :root[data-theme="dark"] {
  --bg:        #150E09;
  --bg-1:      #1C140D;
  --bg-2:      #241910;
  --bg-3:      #2E2015;
  --bg-4:      #3A291B;
  --line:      rgba(242,231,205,0.10);
  --line-2:    rgba(242,231,205,0.18);

  --cream:     #F2E7CD;
  --dim:       rgba(242,231,205,0.66);
  --faint:     rgba(242,231,205,0.42);
  --ghost:     rgba(242,231,205,0.26);

  --red:       #E5342B;
  --red-deep:  #B7271F;
  --gold:      #E2A748;
  --gold-soft: #EFC982;

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      980px;

  --serif: "Newsreader", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "Roboto Mono", ui-monospace, monospace;
}

:root[data-theme="light"] {
  --bg:        #F4ECDC;
  --bg-1:      #FBF5EA;
  --bg-2:      #FFFFFF;
  --bg-3:      #F2E9D7;
  --bg-4:      #E9DCC4;
  --line:      rgba(58,38,18,0.12);
  --line-2:    rgba(58,38,18,0.20);

  --cream:     #3D2A1C;
  --dim:       rgba(61,42,28,0.74);
  --faint:     rgba(61,42,28,0.52);
  --ghost:     rgba(61,42,28,0.34);

  --red:       #C4201C;
  --red-deep:  #7A1212;
  --gold:      #B0832C;
  --gold-soft: #946C1B;
  --green:     #2E7D32;
  --head:      #B31C1C;   /* brand red for display headings & names */

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      980px;

  --serif: "Newsreader", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "Roboto Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
body::before {
  /* warm lamp glow from top */
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 60% at 50% -8%, rgba(226,167,72,0.16), transparent 60%),
    radial-gradient(90% 50% at 90% 110%, rgba(229,52,43,0.10), transparent 60%);
}
body::after {
  /* fine grain */
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: var(--cream); }

#app { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding-bottom: 5rem; }

.mono { font-family: var(--mono); }

/* fade in — transform only, never animate opacity (capture engines freeze
   paused animations at 0%, which would hide opacity-based entrances) */
.view { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .view { animation: rise .34s ease; }
}
@keyframes rise { from { transform: translateY(10px); } to { transform: none; } }

/* ── Top bar ───────────────────────────────────────────── */
#topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1.1rem;
  background: linear-gradient(180deg, rgba(21,14,9,0.96), rgba(21,14,9,0.78));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
#topbar .brand { display: flex; align-items: center; gap: .55rem; cursor: pointer; }
#topbar .brand img { height: 30px; width: auto; }
#topbar .brand .vlabel {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); padding-top: 2px;
}
#topbar .spacer { flex: 1; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-3); border: 1px solid var(--line-2);
  transition: background .15s, transform .15s;
}
.icon-btn:active { transform: scale(.92); }
.icon-btn svg { width: 19px; height: 19px; stroke: var(--cream); }

/* ── Hero (home) ───────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 2.4rem 1.25rem 1.6rem;
  position: relative;
}
.hero .logo { height: 120px; width: auto; margin: 0 auto .9rem; filter: drop-shadow(0 8px 22px rgba(0,0,0,.5)); }
.hero .eyebrow {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
}
.hero .lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.12rem, 4.6vw, 1.5rem); line-height: 1.4;
  color: var(--cream); max-width: 30ch; margin: 0 auto .35rem;
  font-weight: 400;
}
.hero .sub { color: var(--dim); font-size: .92rem; max-width: 34ch; margin: 0 auto 1.2rem; }
.hero .stats {
  display: inline-flex; gap: 0; align-items: stretch;
  border: 1px solid var(--line-2); border-radius: 100px;
  background: rgba(0,0,0,.25); overflow: hidden;
}
.hero .stats .st { padding: .5rem 1.25rem; text-align: center; }
.hero .stats .st + .st { border-left: 1px solid var(--line); }
.hero .stats .n { font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: var(--gold-soft); }
.hero .stats .l { font-family: var(--mono); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }

/* ── Search trigger ────────────────────────────────────── */
.search-trigger {
  display: flex; align-items: center; gap: .7rem;
  width: calc(100% - 2.2rem); max-width: 520px; margin: 1.4rem auto 0;
  padding: .85rem 1.1rem; border-radius: 100px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  color: var(--faint); font-size: .95rem;
  transition: border-color .15s, background .15s;
}
.search-trigger:hover { border-color: var(--gold); }
.search-trigger svg { width: 18px; height: 18px; stroke: var(--gold); flex: none; }

/* ── Section heading ───────────────────────────────────── */
.section { padding: 1.6rem 1.1rem .2rem; }
.sec-head { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1rem; }
.sec-head .k {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
}
.sec-head .line { flex: 1; height: 1px; background: var(--line); }
.sec-title { font-family: var(--serif); font-size: 1.6rem; line-height: 1.1; }

/* ── Favorites strip ───────────────────────────────────── */
.fav-strip {
  display: flex; gap: .7rem; overflow-x: auto; padding: .2rem 1.1rem 1rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fav-strip::-webkit-scrollbar { display: none; }
.fav-card {
  scroll-snap-align: start; flex: 0 0 76%; max-width: 280px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 1rem 1.05rem 1.05rem;
  border-top: 3px solid var(--accent, var(--gold));
  display: flex; flex-direction: column; gap: .5rem;
  transition: transform .14s;
}
.fav-card:active { transform: scale(.98); }
.fav-card .ftop { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: .6rem; }
.fav-card .fname { font-family: var(--serif); font-size: 1.12rem; line-height: 1.15; }
.fav-card .fprice { font-family: var(--mono); color: var(--gold-soft); font-size: .9rem; font-weight: 500; white-space: nowrap; }
.fav-card .fstyle { font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, var(--gold)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fav-card .fbest { font-size: .82rem; color: var(--dim); }
.fav-card .fbest b { color: var(--cream); font-weight: 600; }

/* ── Shelf grid (home) ─────────────────────────────────── */
.feature-grid { display: grid; gap: .8rem; padding: 0 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: repeat(3,1fr); } }

.feat-card {
  position: relative; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 1.3rem 1.2rem;
  min-height: 132px; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .15s, border-color .15s;
}
.feat-card:active { transform: scale(.985); }
.feat-card::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: .22; pointer-events: none;
}
.feat-card .glyph { font-size: 1.7rem; line-height: 1; }
.feat-card .fc-name { font-family: var(--serif); font-size: 1.5rem; line-height: 1.05; margin-top: .4rem; }
.feat-card .fc-meta { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.feat-card .fc-count { font-family: var(--mono); font-size: .78rem; color: var(--accent); }
.feat-card .fc-arrow { color: var(--faint); margin-left: auto; transition: transform .15s; }
.feat-card:hover .fc-arrow { transform: translateX(3px); color: var(--cream); }

.shelf-grid { display: grid; gap: .65rem; padding: .8rem 1.1rem 0; grid-template-columns: repeat(2,1fr); }
@media (min-width: 620px) { .shelf-grid { grid-template-columns: repeat(4,1fr); } }

.shelf-card {
  position: relative; background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .9rem .9rem;
  border-left: 3px solid var(--accent, var(--gold));
  display: flex; flex-direction: column; justify-content: flex-end; gap: .2rem; min-height: 96px;
  transition: transform .14s, background .14s;
}
.shelf-card:active { transform: scale(.97); }
.shelf-card:hover { background: var(--bg-2); }
.shelf-card .sc-glyph { font-size: 1.15rem; }
.shelf-card .sc-name { font-weight: 600; font-size: .92rem; line-height: 1.2; }
.shelf-card .sc-count { font-family: var(--mono); font-size: .68rem; color: var(--faint); letter-spacing: .04em; }

/* ── Breadcrumb / shelf hero ───────────────────────────── */
.back-row { padding: 1rem 1.1rem .2rem; }
.back-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); padding: .35rem 0;
}
.back-btn svg { width: 14px; height: 14px; stroke: var(--gold); }

.shelf-hero { padding: .3rem 1.1rem 1.3rem; position: relative; }
.shelf-hero .sh-eyebrow { font-family: var(--mono); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent, var(--gold)); margin-bottom: .45rem; }
.shelf-hero h1 { font-family: var(--serif); font-size: clamp(1.9rem, 8vw, 2.9rem); line-height: 1.02; }
.shelf-hero .sh-count { font-family: var(--mono); font-size: .82rem; color: var(--gold-soft); margin-top: .3rem; }
.shelf-hero .sh-desc {
  font-family: var(--serif); font-style: italic; font-size: 1.02rem; line-height: 1.5;
  color: var(--dim); max-width: 56ch; margin-top: .85rem;
}

/* ── Filter chips ──────────────────────────────────────── */
.chips { display: flex; gap: .45rem; overflow-x: auto; padding: .2rem 1.1rem 1.1rem; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; font-family: var(--mono); font-size: .7rem; letter-spacing: .03em;
  padding: .42rem .8rem; border-radius: 100px; white-space: nowrap;
  background: var(--bg-2); border: 1px solid var(--line-2); color: var(--dim);
  transition: all .14s;
}
.chip:active { transform: scale(.95); }
.chip.active { background: var(--accent, var(--gold)); border-color: var(--accent, var(--gold)); color: #1a120b; font-weight: 600; }

/* ── Bottle list ───────────────────────────────────────── */
.bottle-list { display: flex; flex-direction: column; gap: .6rem; padding: 0 1.1rem; }
@media (min-width: 720px) { .bottle-list { display: grid; grid-template-columns: 1fr 1fr; } }

.bottle {
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--gold));
  border-radius: var(--radius-sm); padding: .95rem 1.05rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: background .14s, transform .12s;
}
.bottle:hover { background: var(--bg-3); }
.bottle .b-top { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: .7rem; }
.b-name {
  font-family: var(--serif); font-size: 1.18rem; line-height: 1.12;
  text-align: left; flex: 1;
}
.b-name:hover { color: var(--gold-soft); }
.b-price { font-family: var(--mono); font-size: .95rem; font-weight: 500; color: var(--gold-soft); white-space: nowrap; padding-top: 2px; }
.b-price.tbd { color: var(--ghost); font-size: .72rem; }
.b-style { font-family: var(--mono); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; color: var(--accent, var(--gold)); }
.b-desc { font-size: .87rem; color: var(--dim); line-height: 1.5; }
.b-best { font-size: .82rem; color: var(--dim); }
.b-best b { color: var(--cream); font-weight: 600; }
.b-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .01em;
  padding: .2rem .55rem; border-radius: 100px;
  background: rgba(242,231,205,0.07); border: 1px solid var(--line);
  color: var(--dim); transition: all .13s;
}
.tag:active { transform: scale(.94); }
.tag:hover { border-color: var(--gold); color: var(--cream); }
.tag .h { color: var(--gold); }
.b-cta { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); align-self: flex-start; }
.b-cta:hover { color: var(--gold); }

.empty { text-align: center; color: var(--faint); padding: 3rem 1rem; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }

/* ── Detail sheet ──────────────────────────────────────── */
#scrim {
  position: fixed; inset: 0; z-index: 80; background: rgba(8,5,3,0.72);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .26s;
}
#scrim.open { opacity: 1; pointer-events: auto; }
#sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  max-width: var(--maxw); margin: 0 auto;
  background: var(--bg-1); border: 1px solid var(--line-2);
  border-bottom: none; border-radius: 24px 24px 0 0;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(101%); transition: transform .3s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,.6);
}
#sheet.open { transform: none; }
#sheet::-webkit-scrollbar { width: 0; }
.sheet-grab { position: sticky; top: 0; padding: .7rem 0 .3rem; display: flex; justify-content: center; background: var(--bg-1); z-index: 2; }
.sheet-grab span { width: 42px; height: 4px; border-radius: 4px; background: var(--line-2); }
.sheet-close {
  position: sticky; top: .6rem; float: right; margin: -1.6rem 1rem 0 0; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2);
  display: grid; place-items: center;
}
.sheet-close svg { width: 16px; height: 16px; stroke: var(--cream); }
.sheet-body { padding: .4rem 1.3rem 2.4rem; }
.sheet-accent { height: 4px; border-radius: 4px; background: var(--accent, var(--gold)); width: 54px; margin-bottom: 1rem; }
.sheet-style { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent, var(--gold)); }
.sheet-name { font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 2.5rem); line-height: 1.04; margin: .3rem 0 .1rem; }
.sheet-label { font-family: var(--mono); font-size: .72rem; color: var(--faint); }
.sheet-pricerow { display: flex; align-items: baseline; gap: .5rem; margin: 1rem 0 1.3rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.sheet-price { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); line-height: 1; }
.sheet-price-l { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.sheet-h { font-family: var(--mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 1.5rem 0 .6rem; }
.sheet-desc { font-size: 1rem; line-height: 1.72; color: var(--cream); }
.sheet-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.sheet-tags .tag { font-size: .72rem; padding: .3rem .7rem; }
.best-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.best-pill {
  font-size: .85rem; font-weight: 600; color: var(--cream);
  background: var(--bg-3); border: 1px solid var(--line-2);
  padding: .4rem .85rem; border-radius: 100px;
}
.related { display: flex; flex-direction: column; gap: .45rem; }
.rel-item {
  display: flex; align-items: center; gap: .6rem; text-align: left; width: 100%;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem .85rem; transition: background .13s;
}
.rel-item:hover { background: var(--bg-3); }
.rel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent, var(--gold)); flex: none; }
.rel-name { font-weight: 600; font-size: .9rem; flex: 1; }
.rel-style { font-family: var(--mono); font-size: .6rem; color: var(--faint); text-transform: uppercase; letter-spacing: .05em; }
.rel-price { font-family: var(--mono); font-size: .8rem; color: var(--gold-soft); }
.tbd-note { font-size: .84rem; color: var(--faint); font-style: italic; font-family: var(--serif); }

/* ── Search overlay ────────────────────────────────────── */
#search-view {
  position: fixed; inset: 0; z-index: 100; background: var(--bg);
  display: none; flex-direction: column;
}
#search-view.open { display: flex; }
#search-view::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 50% at 50% 0%, rgba(226,167,72,0.12), transparent 60%); pointer-events: none; }
.search-head { display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.search-head svg.s-ico { width: 19px; height: 19px; stroke: var(--gold); flex: none; }
#search-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--sans); font-size: 1.1rem; color: var(--cream);
}
#search-input::placeholder { color: var(--faint); }
.search-cancel { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding: .4rem; }
.search-scroll { flex: 1; overflow-y: auto; position: relative; z-index: 1; padding-bottom: 2rem; }
.search-meta { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); padding: 1rem 1.1rem .4rem; }
.surprise {
  display: inline-flex; align-items: center; gap: .5rem; margin: .4rem 1.1rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream); background: var(--bg-3); border: 1px solid var(--line-2);
  padding: .55rem 1rem; border-radius: 100px;
}
.surprise:hover { border-color: var(--gold); }

/* result rows reuse .bottle within .bottle-list */


/* ===========================================================
   Auto / Light / Dark theme control
   =========================================================== */
:root { color-scheme: light dark; }
:root[data-theme="light"] { color-scheme: light; }
:root[data-theme="dark"] { color-scheme: dark; }
.theme-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--bg-2);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.theme-choice {
  min-width: 44px;
  padding: .38rem .48rem .34rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .56rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.theme-choice:active { transform: scale(.94); }
.theme-choice.active {
  background: var(--gold);
  color: #1A120B;
  border-color: var(--gold-soft);
  font-weight: 700;
}
@media (max-width: 390px) {
  #topbar { gap: .45rem; padding-left: .75rem; padding-right: .75rem; }
  #topbar .brand .vlabel { display: none; }
  .theme-choice { min-width: 38px; padding-left: .38rem; padding-right: .38rem; font-size: .52rem; }
  .icon-btn { width: 38px; height: 38px; }
}

/* Light theme refinements copied from the standalone light build */
:root[data-theme="light"] body::before {
  background:
    radial-gradient(120% 60% at 50% -8%, rgba(176,131,44,0.14), transparent 60%),
    radial-gradient(90% 50% at 90% 110%, rgba(196,32,28,0.08), transparent 60%);
}
:root[data-theme="light"] body::after { opacity: 0.04; mix-blend-mode: multiply; }
:root[data-theme="light"] ::selection { background: var(--red); color: #FBF5EA; }
:root[data-theme="light"] #topbar {
  background: linear-gradient(180deg, rgba(248,242,230,0.96), rgba(248,242,230,0.78));
}
:root[data-theme="light"] .hero .logo { filter: drop-shadow(0 6px 16px rgba(58,38,18,.18)); }
:root[data-theme="light"] .hero .stats {
  background: var(--bg-2);
  box-shadow: 0 2px 10px rgba(58,38,18,.06);
}
:root[data-theme="light"] .chip.active {
  background: var(--accent, var(--gold));
  border-color: var(--accent, var(--gold));
  color: #1A120B;
  font-weight: 600;
}
:root[data-theme="light"] .tag { background: rgba(58,38,18,0.05); border: 1px solid var(--line); }
:root[data-theme="light"] #scrim { background: rgba(40,27,15,0.42); }
:root[data-theme="light"] #sheet { box-shadow: 0 -20px 60px rgba(58,38,18,.22); }
:root[data-theme="light"] .sec-title,
:root[data-theme="light"] .feat-card .fc-name,
:root[data-theme="light"] .shelf-card .sc-name,
:root[data-theme="light"] .fav-card .fname,
:root[data-theme="light"] .b-name,
:root[data-theme="light"] .shelf-hero h1,
:root[data-theme="light"] .sheet-name,
:root[data-theme="light"] .rel-name { color: var(--head); }
:root[data-theme="light"] .b-name:hover { color: var(--red-deep); }
:root[data-theme="light"] .b-best b,
:root[data-theme="light"] .fav-card .fbest b,
:root[data-theme="light"] .sheet-desc b { color: var(--green); }
:root[data-theme="light"] .best-pill { color: var(--green); border-color: rgba(46,125,50,0.30); }
:root[data-theme="light"] .hero .lede { color: var(--cream); }
:root[data-theme="light"] .hero .lede em { color: var(--head); font-style: italic; }
:root[data-theme="light"] .icon-btn svg { stroke: var(--cream); }
:root[data-theme="light"] .theme-switcher { box-shadow: 0 2px 10px rgba(58,38,18,.06); }
