/**
 * BlogVIP — bugunnereye.com editorial theme
 * Warm paper, Fraunces headlines, orange VIP accent.
 */

:root {
  --bv-accent: #FF6A1A;
  --bv-accent-hover: #E85D12;
  --bv-accent-soft: #FFF1E8;
  --bv-gold: #C4A574;
  --bv-ink: #161412;
  --bv-text: #2A2622;
  --bv-muted: #6F675F;
  --bv-paper: #F6F1EA;
  --bv-surface: #FFFCF8;
  --bv-border: #E6DFD6;
  --bv-overlay: rgba(22, 20, 18, 0.42);
  --bv-success: #1F7A4D;
  --bv-font: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --bv-display: "Fraunces", "Times New Roman", Georgia, serif;
  --bv-wrap: 1240px;
  --bv-article: 740px;
  --bv-gutter: 1.25rem;
  --bv-radius: 18px;
  --bv-radius-sm: 10px;
  --bv-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bv-header: 72px;
  --bv-shadow: 0 18px 40px rgba(22, 20, 18, 0.08);
}

@media (min-width: 900px) {
  :root { --bv-gutter: 1.75rem; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--bv-font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--bv-text);
  background: var(--bv-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--bv-accent); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--bv-accent);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--bv-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--bv-ink);
  margin: 0 0 0.6rem;
}

p { margin: 0 0 1rem; }

button, input { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

.bv-wrap {
  width: min(100% - (var(--bv-gutter) * 2), var(--bv-wrap));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.bv-skip {
  position: absolute;
  left: -9999px;
}
.bv-skip:focus {
  left: 12px; top: 12px; z-index: 9999;
  background: var(--bv-ink); color: #fff;
  padding: 10px 14px; border-radius: 8px;
}

.bv-kicker {
  margin: 0 0 0.45rem;
  color: var(--bv-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bv-cat {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bv-accent);
}
.bv-cat--solid {
  background: var(--bv-accent);
  color: #fff;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
}

.bv-meta {
  color: var(--bv-muted);
  font-size: 0.86rem;
}

.bv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 0.18s var(--bv-ease), color 0.18s, border-color 0.18s;
}
.bv-btn--primary { background: var(--bv-accent); color: #fff; }
.bv-btn--primary:hover { background: var(--bv-accent-hover); color: #fff; }
.bv-btn--ghost {
  border: 1px solid var(--bv-border);
  background: var(--bv-surface);
  color: var(--bv-ink);
}
.bv-btn--ghost:hover { border-color: var(--bv-accent); color: var(--bv-accent); }

.bv-icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--bv-ink);
}
.bv-icon-btn:hover { background: var(--bv-accent-soft); color: var(--bv-accent); }

.bv-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.bv-section-head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.bv-section-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bv-accent);
  white-space: nowrap;
}

/* Ticker */
.bv-ticker {
  background: var(--bv-ink);
  color: #f4eee6;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.bv-ticker__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
}
.bv-ticker__tag { margin: 0; font-weight: 600; }
.bv-ticker__meta { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.bv-ticker__chip {
  opacity: 0.88;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
}
.bv-ticker__menu { display: flex; gap: 0.9rem; list-style: none; margin: 0; padding: 0; }
.bv-ticker__menu a { color: #f4eee6; opacity: 0.8; }
.bv-ticker__menu a:hover { opacity: 1; color: #fff; }

/* Header */
.bv-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--bv-surface) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--bv-border);
}
.bv-header.is-scrolled { box-shadow: 0 10px 28px rgba(22,20,18,0.06); }
.bv-header__inner {
  display: flex;
  align-items: center;
  min-height: var(--bv-header);
  gap: 1.2rem;
}
.bv-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  font-family: var(--bv-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--bv-ink);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.bv-logo img { max-height: 42px; width: auto; }
.bv-logo__today { font-weight: 500; }
.bv-logo__where { font-style: italic; }
.bv-logo__mark { color: var(--bv-accent); font-style: italic; }

.bv-header__nav { flex: 1; display: none; }
.bv-nav {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.94rem;
}
.bv-nav ul {
  position: absolute;
  min-width: 200px;
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 12px;
  box-shadow: var(--bv-shadow);
  padding: 0.4rem;
  list-style: none;
  display: none;
}
.bv-nav li { position: relative; }
.bv-nav li:hover > ul { display: block; }
.bv-nav ul a { display: block; padding: 0.5rem 0.7rem; border-radius: 8px; }
.bv-nav ul a:hover { background: var(--bv-accent-soft); }

.bv-header__actions { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; }
.bv-header__link { font-weight: 700; font-size: 0.9rem; color: var(--bv-ink); }
.bv-header__account { display: none; }
.bv-header__menu { display: inline-flex; }

@media (min-width: 980px) {
  .bv-header__nav { display: block; }
  .bv-header__menu { display: none; }
  .bv-header__account { display: inline-flex; }
}

.bv-search-panel {
  border-top: 1px solid var(--bv-border);
  padding: 1rem 0 1.2rem;
  background: var(--bv-surface);
}
.bv-search, .bv-hero__search, .bv-news__form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.bv-search input, .bv-hero__search input, .bv-news__form input {
  flex: 1;
  min-width: 180px;
  min-height: 52px;
  border: 1px solid var(--bv-border);
  border-radius: 999px;
  padding: 0 1.1rem;
  background: var(--bv-surface);
}

/* Drawer */
.bv-drawer-overlay {
  position: fixed; inset: 0;
  background: var(--bv-overlay);
  z-index: 110;
}
.bv-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  background: var(--bv-surface);
  z-index: 120;
  padding: 1rem 1.2rem 2rem;
  overflow: auto;
  box-shadow: var(--bv-shadow);
}
.bv-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.bv-drawer__menu { list-style: none; margin: 0; padding: 0; }
.bv-drawer__menu a { display: block; padding: 0.7rem 0; font-weight: 650; border-bottom: 1px solid var(--bv-border); }
.bv-drawer__links { display: grid; gap: 0.5rem; margin-top: 1.4rem; }
html.nav-open { overflow: hidden; }

body.admin-bar .bv-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .bv-header { top: 46px; }
}

/* Hero */
.bv-hero {
  padding: 3.2rem 0 2.4rem;
  background:
    radial-gradient(1200px 420px at 80% -10%, rgba(255,106,26,0.16), transparent 55%),
    linear-gradient(180deg, var(--bv-surface), var(--bv-paper));
}
.bv-hero__title {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  max-width: 16ch;
  margin-bottom: 0.8rem;
}
.bv-hero__lead {
  max-width: 38rem;
  color: var(--bv-muted);
  font-size: 1.12rem;
}
.bv-hero__search { max-width: 920px; margin: 1.5rem 0 1.8rem; position: relative; }
.bv-hero__search select {
  min-height: 52px;
  border: 1px solid var(--bv-border);
  border-radius: 999px;
  padding: 0 1rem;
  background: var(--bv-surface);
  color: var(--bv-ink);
}

.bv-intents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.bv-intent {
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius);
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.15rem;
  min-height: 96px;
  transition: transform 0.2s var(--bv-ease), border-color 0.2s;
}
.bv-intent:hover { transform: translateY(-2px); border-color: var(--bv-accent); color: inherit; }
.bv-intent strong { font-family: var(--bv-display); font-size: 1.15rem; }
.bv-intent small { color: var(--bv-muted); }

@media (min-width: 760px) {
  .bv-intents { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .bv-intents { grid-template-columns: repeat(6, 1fr); }
}

/* Featured */
.bv-featured, .bv-places, .bv-popular, .bv-cities, .bv-moods, .bv-cats, .bv-weekend, .bv-latest, .bv-news, .bv-route, .bv-nearby, .bv-related-places {
  padding: 3rem 0;
}
.bv-featured__grid {
  display: grid;
  gap: 1.25rem;
}
.bv-lead {
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 24px;
  overflow: hidden;
}
.bv-lead__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.bv-lead__body { padding: 1.3rem 1.35rem 1.5rem; }
.bv-lead__title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.bv-lead__title a { color: var(--bv-ink); }
.bv-featured__side { display: grid; gap: 0.9rem; }
.bv-mini {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0.85rem;
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 16px;
  padding: 0.55rem;
}
.bv-mini__media img, .bv-mini__media { width: 108px; height: 86px; object-fit: cover; border-radius: 12px; }
.bv-mini h3 { font-size: 1.02rem; margin: 0.15rem 0; }

@media (min-width: 980px) {
  .bv-featured__grid { grid-template-columns: 1.35fr 0.85fr; align-items: stretch; }
  .bv-lead { display: flex; flex-direction: column; }
  .bv-lead__media { flex: 1; }
  .bv-lead__media img { height: 100%; aspect-ratio: auto; min-height: 360px; }
}

/* Cards */
.bv-cards { display: grid; gap: 1.1rem; }
.bv-cards--3 { grid-template-columns: 1fr; }
.bv-cards--4 { grid-template-columns: 1fr; }
.bv-card {
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bv-card__media img, .bv-card__ph { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.bv-card__ph, .bv-place__ph, .bv-city__ph {
  display: block;
  background: linear-gradient(135deg, #efe6da, #e2c8b0);
}
.bv-card__body { padding: 1rem 1.05rem 1.15rem; }
.bv-card__title { font-size: 1.18rem; }
.bv-card__title a { color: var(--bv-ink); }
.bv-card p { color: var(--bv-muted); font-size: 0.94rem; }

@media (min-width: 700px) {
  .bv-cards--3 { grid-template-columns: repeat(3, 1fr); }
  .bv-cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .bv-cards--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Places */
.bv-places__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bv-place {
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.bv-place__media { position: relative; display: block; }
.bv-place__media img, .bv-place__ph { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bv-place__ph { display: grid; place-items: center; font-family: var(--bv-display); font-size: 2.4rem; color: var(--bv-accent); }
.bv-place__open {
  position: absolute; left: 10px; top: 10px;
  background: var(--bv-success); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.22rem 0.5rem; border-radius: 999px;
}
.bv-place__body { padding: 0.9rem 1rem 1.1rem; }
.bv-place h3 { font-size: 1.12rem; margin: 0.2rem 0; }
.bv-place p { margin: 0; color: var(--bv-muted); font-size: 0.88rem; }

@media (min-width: 700px) {
  .bv-places__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Popular */
.bv-popular__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.bv-popular__list li {
  display: grid;
  grid-template-columns: auto 1fr 92px;
  gap: 0.9rem;
  align-items: center;
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 16px;
  padding: 0.7rem;
}
.bv-popular__rank {
  font-family: var(--bv-display);
  font-size: 1.5rem;
  color: var(--bv-gold);
  width: 2rem;
  text-align: center;
}
.bv-popular__list h3 { font-size: 1.05rem; margin: 0.15rem 0; }
.bv-popular__thumb img { width: 92px; height: 70px; object-fit: cover; border-radius: 10px; }

@media (min-width: 860px) {
  .bv-popular__list { grid-template-columns: 1fr 1fr; }
}

/* Cities */
.bv-cities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bv-city {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 160px;
  color: #fff;
}
.bv-city--lead { grid-column: 1 / -1; min-height: 240px; }
.bv-city__img, .bv-city__ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bv-city__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 30%, rgba(22,20,18,0.78));
}
.bv-city strong { font-family: var(--bv-display); font-size: 1.35rem; }
.bv-city small { opacity: 0.85; }
.bv-city:hover { color: #fff; }
.bv-cities__grid--dir { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.bv-cities__grid--dir .bv-city { min-height: 140px; }

@media (min-width: 900px) {
  .bv-cities__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .bv-city--lead { grid-row: 1 / span 2; grid-column: 1; min-height: 420px; }
}

/* Moods / cats */
.bv-moods__track { display: flex; gap: 0.6rem; overflow: auto; padding-bottom: 0.3rem; }
.bv-mood {
  flex: 0 0 auto;
  border: 1px solid var(--bv-border);
  background: var(--bv-surface);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 650;
}
.bv-mood:hover { border-color: var(--bv-accent); }
.bv-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.bv-cat-card {
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bv-cat-card strong { font-family: var(--bv-display); font-size: 1.2rem; }
.bv-cat-card span { color: var(--bv-muted); }
@media (min-width: 800px) {
  .bv-cats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Newsletter */
.bv-news { padding-bottom: 4rem; }
.bv-news__inner {
  display: grid;
  gap: 1.4rem;
  background: var(--bv-ink);
  color: #f6efe6;
  border-radius: 28px;
  padding: 2rem 1.4rem;
}
.bv-news__inner h2, .bv-news__inner .bv-kicker { color: #fff; }
.bv-news__inner .bv-kicker { color: var(--bv-gold); }
.bv-news__inner p { color: rgba(246,239,230,0.78); }
.bv-news__hint { font-size: 0.78rem; margin: 0.4rem 0 0; width: 100%; }
@media (min-width: 860px) {
  .bv-news__inner { grid-template-columns: 1fr 1fr; align-items: center; padding: 2.4rem 2.2rem; }
}

/* Article */
.bv-progress {
  position: sticky; top: 0; z-index: 70;
  height: 3px; background: transparent;
}
.bv-progress span {
  display: block; height: 100%; width: 0;
  background: var(--bv-accent);
}
.bv-article__hero { padding: 2rem 0 1.2rem; }
.bv-article__hero-grid { display: grid; gap: 1.4rem; }
.bv-article__copy h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.bv-article__dek { font-size: 1.15rem; color: var(--bv-muted); max-width: 40rem; }
.bv-article__media img { width: 100%; border-radius: 22px; aspect-ratio: 16/10; object-fit: cover; }
.bv-byline { display: flex; gap: 0.8rem; align-items: center; margin: 1.1rem 0; }
.bv-byline img { border-radius: 50%; }
.bv-byline__name { font-weight: 700; color: var(--bv-ink); }
.bv-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.bv-chip {
  border: 1px solid var(--bv-border);
  background: var(--bv-surface);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.82rem;
}
.bv-share { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.bv-share a, .bv-share button {
  border: 1px solid var(--bv-border);
  background: var(--bv-surface);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 650;
}
.bv-article__layout {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 0 3rem;
}
.bv-toc {
  border: 1px solid var(--bv-border);
  background: var(--bv-surface);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.bv-toc p { font-weight: 700; margin: 0 0 0.6rem; }
.bv-toc ol { margin: 0; padding-left: 1.1rem; }
.bv-toc a { color: var(--bv-muted); }
.bv-toc a.is-active { color: var(--bv-accent); font-weight: 700; }

.entry-content {
  font-size: 1.08rem;
  line-height: 1.8;
}
.entry-content h2, .entry-content h3 { margin-top: 1.8rem; }
.entry-content a { color: var(--bv-accent); text-decoration: underline; text-underline-offset: 0.16em; }
.entry-content img { border-radius: 14px; }
.entry-content blockquote {
  margin: 1.4rem 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 3px solid var(--bv-accent);
  font-family: var(--bv-display);
  font-size: 1.25rem;
  color: var(--bv-ink);
}
.bv-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.6rem; }
.bv-tags a {
  background: var(--bv-accent-soft);
  color: var(--bv-accent);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 650;
}

@media (min-width: 980px) {
  .bv-article__hero-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .bv-article__layout { grid-template-columns: 220px minmax(0, var(--bv-article)); justify-content: center; }
  .bv-toc { position: sticky; top: 92px; }
}

.bv-related, .bv-author, .bv-comments { padding: 2.2rem 0; }
.bv-author { background: var(--bv-surface); border-block: 1px solid var(--bv-border); }
.bv-author__inner { display: flex; gap: 1.1rem; align-items: flex-start; }
.bv-author img { border-radius: 50%; }

/* Archive / page / 404 */
.bv-archive, .bv-page, .bv-404 { padding: 2.2rem 0 3.5rem; }
.bv-archive__head { margin-bottom: 1.8rem; max-width: 46rem; }
.bv-archive__head h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.bv-archive__desc { color: var(--bv-muted); }
.bv-author-head { display: flex; gap: 1rem; align-items: center; }
.bv-author-head img { border-radius: 50%; }
.bv-page__inner { max-width: 760px; }
.bv-404 h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.bv-404__links { display: flex; gap: 0.6rem; margin-top: 1.2rem; flex-wrap: wrap; }

.bv-crumb ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; margin: 0 0 0.9rem; padding: 0; color: var(--bv-muted); font-size: 0.84rem; }
.bv-crumb li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; opacity: 0.5; }

.nav-links, .page-numbers {
  display: flex; gap: 0.4rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap;
}
.page-numbers {
  min-width: 42px; min-height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--bv-border);
  background: var(--bv-surface);
}
.page-numbers.current, .page-numbers:hover { background: var(--bv-accent); color: #fff; border-color: var(--bv-accent); }

/* Footer */
.bv-footer {
  background: #12110F;
  color: #ece4d8;
  padding-top: 3rem;
}
.bv-footer__grid {
  display: grid;
  gap: 1.6rem;
  padding-bottom: 2rem;
}
.bv-footer h2 { color: #fff; font-size: 1.05rem; }
.bv-footer ul { list-style: none; margin: 0; padding: 0; }
.bv-footer li { margin: 0.35rem 0; }
.bv-footer a { color: #ece4d8; opacity: 0.85; }
.bv-footer a:hover { opacity: 1; color: #fff; }
.bv-footer .bv-logo { color: #fff; }
.bv-footer .bv-logo__mark { color: var(--bv-accent); }
.bv-social { display: flex; gap: 0.8rem; margin-top: 0.8rem; }
.bv-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.bv-footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0 1.3rem; font-size: 0.84rem; opacity: 0.8;
}
.bv-footer__legal { display: flex; gap: 0.9rem; list-style: none; margin: 0; padding: 0; }

@media (min-width: 860px) {
  .bv-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* Ads / widgets / comments */
.bv-ad { margin: 1.2rem auto; width: min(100% - 2rem, var(--bv-wrap)); }
.bv-ad__placeholder {
  border: 1px dashed var(--bv-border);
  background: var(--bv-surface);
  color: var(--bv-muted);
  text-align: center;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 0.85rem;
}
.bv-widget { margin-bottom: 1.4rem; }
.bv-widget__title { font-size: 1.05rem; }
.bv-comments { background: var(--bv-surface); border-top: 1px solid var(--bv-border); }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-body { padding: 1rem 0; border-bottom: 1px solid var(--bv-border); }
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--bv-border);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: var(--bv-paper);
}

body.has-lunqra-header .bv-main { padding-top: 0; }
body.lunqra-header-hide-theme .bv-header,
body.lunqra-header-hide-theme .bv-drawer,
body.lunqra-header-hide-theme .bv-drawer-overlay,
body.lunqra-header-hide-theme .bv-search-panel,
body.lunqra-header-active .bv-header,
body.lunqra-header-active .bv-drawer,
body.lunqra-header-active .bv-drawer-overlay,
body.has-lunqra-header .bv-header,
body.bv-header-suppressed .bv-header {
  display: none !important;
}

.bv-ticker--under-header {
  position: relative;
  z-index: 5;
  display: block !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.has-lunqra-header .bv-ticker,
body.lunqra-header-hide-theme .bv-ticker,
body.lunqra-header-active .bv-ticker,
body.bv-header-suppressed .bv-ticker {
  display: block !important;
}

.bv-search-drop {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 8px);
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 16px;
  box-shadow: var(--bv-shadow);
  z-index: 40;
  padding: 0.6rem;
  max-height: 380px;
  overflow: auto;
}
.bv-search-drop[hidden] { display: none; }
.bv-search-drop__group { margin: 0.35rem 0 0.7rem; }
.bv-search-drop__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bv-muted);
  margin: 0.2rem 0.4rem;
}
.bv-search-drop a {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.5rem 0.55rem;
  border-radius: 12px;
  color: inherit;
}
.bv-search-drop a:hover { background: var(--bv-accent-soft); }
.bv-search-drop img {
  width: 48px; height: 36px; object-fit: cover; border-radius: 8px;
}

.bv-route__reason { margin: 0.35rem 0 0; color: var(--bv-muted); }
.bv-route__meta { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }
.bv-route__open { display: inline-flex; gap: 0.4rem; align-items: center; font-size: 0.9rem; }
.bv-route__article {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  background: var(--bv-surface);
  border: 1px solid var(--bv-border);
  border-radius: 18px;
  overflow: hidden;
}
.bv-route__article-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 800px) {
  .bv-route__article { grid-template-columns: 280px 1fr; }
}
.bv-route__article h3 { margin: 0.2rem 0; }
.bv-route__article > div { padding: 1rem 1.2rem 1.2rem; }

.bv-nearby__hint { color: var(--bv-muted); margin: 0 0 1rem; }

.bv-fav {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,252,248,0.92);
  color: var(--bv-ink);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(22,20,18,0.12);
}
.bv-fav.is-on { color: var(--bv-accent); }
.bv-article .bv-fav { position: static; }

.bv-city-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  margin-bottom: 1.5rem;
}
.bv-city-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.bv-city-hero__copy {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(22,20,18,0.72));
}
.bv-city-hero h1 { color: #fff; }
.bv-city-hero .bv-archive__desc { color: rgba(255,255,255,0.86); }
.bv-city-block { padding: 1.6rem 0 2.4rem; }

.bv-bottomnav {
  display: none;
}
@media (max-width: 820px) {
  .bv-has-bottomnav .bv-footer { padding-bottom: 5.2rem; }
  .bv-bottomnav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: var(--bv-surface);
    border-top: 1px solid var(--bv-border);
    padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom));
  }
  .bv-bottomnav__item {
    display: grid;
    justify-items: center;
    gap: 0.15rem;
    font-size: 0.7rem;
    font-weight: 650;
    color: var(--bv-muted);
    padding: 0.35rem 0;
  }
  .bv-bottomnav__item.is-active,
  .bv-bottomnav__item:hover { color: var(--bv-accent); }
}

html[data-bv-resolved="dark"] {
  --bv-ink: #F4EEE6;
  --bv-text: #E8E0D6;
  --bv-paper: #161412;
  --bv-surface: #1E1B18;
  --bv-border: #322C27;
  --bv-muted: #A39A90;
  --bv-accent-soft: #3A2418;
  --bv-shadow: 0 18px 40px rgba(0,0,0,0.28);
  color-scheme: dark;
}
html[data-bv-resolved="dark"] .bv-hero {
  background:
    radial-gradient(1200px 420px at 80% -10%, rgba(255,106,26,0.2), transparent 55%),
    linear-gradient(180deg, var(--bv-surface), var(--bv-paper));
}
html[data-bv-resolved="dark"] .bv-news__inner {
  background: #241c16;
}
html[data-bv-resolved="dark"] img { opacity: 0.96; }

.bv-empty { color: var(--bv-muted); }
