/* ═══════════════════════════════════════════════════════════════
   venue-bliss — Bridal Editorial Magazine Theme
   Complete design system: tokens, layout, animation, responsive
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design tokens ──────────────────────────────────────────── */
:root {
  --brand:          #B08D6A;
  --brand-deep:     #8B6D4E;
  --brand-bright:   #E8D9C4;
  --bg-page:        #FDFBF7;
  --bg-muted:       #F7F2EB;
  --bg-soft:        #F0E8DB;
  --bg-footer:      #F5F0E8;
  --surface:        rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-white:  #ffffff;
  --border-soft:    #E5D7C5;
  --border-muted:   #DCCFBB;
  --border-subtle:  #EFE6D9;
  --text-strong:    #1C1610;
  --text-body:      #5C4F42;
  --text-muted:     #8A7A6B;
  --text-dim:       #7A6B5A;
  --font-display:   "Cormorant Garamond", "Georgia", serif;
  --font-body:      "Montserrat", sans-serif;
  --font-editorial: "Cormorant Garamond", serif;
  --radius-card:    2px;
  --radius-tile:    2px;
  --radius-chip:    2px;
  --radius-pill:    2px;
  --shadow-search:  0 20px 40px -8px rgba(176, 141, 106, 0.15),
                    0 8px 16px -4px rgba(176, 141, 106, 0.08);
}

/* ─── Base overrides ─────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-strong);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--brand);
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* scroll reveal — vb-reveal is observed by theme.js, not common.js */
.vb-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.vb-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .vb-reveal { opacity: 1; transform: none; transition: none; }
}

/* Simple CSS-only fade-in (no JS observer needed) */
.vb-fadein {
  animation: fadeInUp 0.6s ease both;
}
.vb-fadein:nth-child(2) { animation-delay: 0.1s; }
.vb-fadein:nth-child(3) { animation-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
  .vb-fadein { animation: none; }
}


/* ═══════════════════════════════════════════════════════════════
   HEADER — transparent on home, solid elsewhere
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-soft);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Home page: transparent header floating over hero */
body[data-nav="home"] .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
body[data-nav="home"] .site-brand {
  color: #fff;
  transition: color 0.4s ease;
}
body[data-nav="home"] .site-nav a {
  color: rgba(255, 248, 238, 0.8);
  transition: color 0.4s ease;
}
body[data-nav="home"] .site-nav a:hover {
  color: #fff;
}
body[data-nav="home"] .site-nav a.is-active {
  color: #fff;
}
body[data-nav="home"] .site-nav a.is-active::after {
  background: rgba(255, 255, 255, 0.6);
}
body[data-nav="home"] .header-search input {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
body[data-nav="home"] .header-search input::placeholder {
  color: rgba(255, 248, 238, 0.5);
}

/* Scrolled state: revert to solid */
body[data-nav="home"] .site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-soft);
}
body[data-nav="home"] .site-header.is-scrolled .site-brand {
  color: var(--text-strong);
}
body[data-nav="home"] .site-header.is-scrolled .site-nav a {
  color: var(--text-muted);
}
body[data-nav="home"] .site-header.is-scrolled .site-nav a.is-active {
  color: var(--brand);
}
body[data-nav="home"] .site-header.is-scrolled .site-nav a.is-active::after {
  background: var(--brand);
}

/* Brand + nav typography */
.site-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}
.site-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.site-nav a:hover { color: var(--text-strong); }
.site-nav a.is-active { color: var(--brand); }
.site-nav a.is-active::after { background: var(--brand); height: 1px; }


/* ═══════════════════════════════════════════════════════════════
   HOME — HERO (full-viewport, centered)
   ═══════════════════════════════════════════════════════════════ */
.vb-home { padding-bottom: 0; }

.vb-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.vb-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(20, 12, 6, 0.35) 0%, rgba(20, 12, 6, 0.65) 100%),
    linear-gradient(0deg, rgba(20, 12, 6, 0.5) 0%, transparent 50%);
}
.vb-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--shell-pad);
  max-width: 52rem;
  animation: fadeIn 1.2s ease both;
}
.vb-hero__eyebrow {
  margin: 0 0 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 217, 196, 0.85);
}
.vb-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: #fff;
}
.vb-hero__title span {
  display: block;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 248, 238, 0.78);
}
.vb-hero__desc {
  margin: 1.8rem auto 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(255, 248, 238, 0.8);
}
.vb-hero__cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 3rem;
  border: 1px solid rgba(232, 217, 196, 0.5);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.vb-hero__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}
.vb-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(232, 217, 196, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  animation: floatBounce 2.5s ease-in-out infinite;
  transition: color 0.3s ease;
  padding: 0.5rem;
}
.vb-hero__scroll-hint:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   SECTION HEADS (shared across all home sections)
   ═══════════════════════════════════════════════════════════════ */
.vb-section-head {
  margin-bottom: 2.5rem;
}
.vb-section__eyebrow {
  margin: 0 0 0.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
}
.vb-section__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}
.vb-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--text-strong);
}
.vb-section__link {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}
.vb-section__link:hover { color: var(--brand-deep); }
.vb-section__link svg { width: 14px; height: 14px; }
.vb-section__intro {
  margin: 0.6rem 0 0;
  max-width: 42rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════
   DESTINATIONS — horizontal scroll gallery
   ═══════════════════════════════════════════════════════════════ */
.vb-destinations {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

/* Grid: first card spans 2 cols, rest fill naturally */
.vb-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 14rem;
  gap: 1rem;
}

.vb-dest-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 0.75rem;
}
.vb-dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.vb-dest-card:hover img { transform: scale(1.06); }
.vb-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 12, 6, 0.65) 0%, rgba(20, 12, 6, 0.08) 50%, transparent 100%);
  transition: background 0.3s ease;
}
.vb-dest-card:hover .vb-dest-card__overlay {
  background: linear-gradient(0deg, rgba(20, 12, 6, 0.75) 0%, rgba(20, 12, 6, 0.15) 55%, transparent 100%);
}
.vb-dest-card__copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem 1.3rem;
  z-index: 1;
  color: #fff;
}
.vb-dest-card__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
}
.vb-dest-card__meta {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 238, 0.6);
}
.vb-dest-card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.vb-dest-card:hover .vb-dest-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hero card: first item spans 2 cols */
.vb-dest-card--hero {
  grid-column: span 2;
}
.vb-dest-card--hero .vb-dest-card__copy h3 {
  font-size: 2rem;
}
.vb-dest-card--hero .vb-dest-card__meta {
  font-size: 0.72rem;
}


/* ═══════════════════════════════════════════════════════════════
   FEATURED VENUES — alternating image/text rows
   ═══════════════════════════════════════════════════════════════ */
.vb-featured {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-muted);
}
.vb-featured__list {
  display: grid;
  gap: clamp(3rem, 5vw, 5rem);
}
.vb-venue-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.vb-venue-row--reversed {
  grid-template-columns: 1fr 1.15fr;
}
.vb-venue-row--reversed .vb-venue-row__media { order: 2; }
.vb-venue-row--reversed .vb-venue-row__content { order: 1; }

.vb-venue-row__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.vb-venue-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.vb-venue-row:hover .vb-venue-row__media img {
  transform: scale(1.04);
}

.vb-venue-row__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.vb-venue-row__kicker {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}
.vb-venue-row__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.12;
}
.vb-venue-row__content h3 a {
  color: var(--text-strong);
  transition: color 0.3s ease;
}
.vb-venue-row__content h3 a:hover { color: var(--brand); }

.vb-venue-row__summary {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-body);
}
.vb-venue-row__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.vb-venue-row__rating {
  font-weight: 500;
  color: var(--brand-deep);
}
.vb-venue-row__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--brand-bright);
  transition: text-decoration-color 0.3s ease;
}
.vb-venue-row__link:hover {
  text-decoration-color: var(--brand);
}


/* ═══════════════════════════════════════════════════════════════
   JOURNAL — feature post + grid
   ═══════════════════════════════════════════════════════════════ */
.vb-journal {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
}

/* Feature post: large split layout */
.vb-journal__feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--border-soft);
}
.vb-journal__feature-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.vb-journal__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.vb-journal__feature:hover .vb-journal__feature-media img {
  transform: scale(1.03);
}
.vb-journal__feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vb-journal__meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}
.vb-journal__feature-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  color: var(--text-strong);
  transition: color 0.3s ease;
}
.vb-journal__feature-title:hover { color: var(--brand); }
.vb-journal__feature-excerpt {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-body);
}
.vb-journal__feature-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--brand-bright);
}

/* Journal grid: smaller cards */
.vb-journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vb-journal__card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.vb-journal__card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.vb-journal__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.vb-journal__card:hover .vb-journal__card-media img {
  transform: scale(1.04);
}
.vb-journal__card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vb-journal__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--text-strong);
  transition: color 0.3s ease;
}
.vb-journal__card-title:hover { color: var(--brand); }


/* ═══════════════════════════════════════════════════════════════
   NON-HOME PAGES — CSS-only visual overrides
   (HTML comes from shared render functions, no structural changes)
   ═══════════════════════════════════════════════════════════════ */

/* ── Listing page (destinations.php) ───────────────────────── */
.listing-hero-panel--editorial .listing-hero-copy h1,
.listing-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}
.listing-hero-copy .eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--brand);
}
.listing-card, .hotel-card { border-radius: 0; }
.listing-card-badge, .hotel-card-badge {
  background: var(--brand); color: #fff; border-radius: 0;
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.12em;
}
.listing-card-name, .hotel-card-name {
  font-family: var(--font-display); font-style: italic; letter-spacing: 0.01em;
}
/* card hover */
.directory-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.directory-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(176, 141, 106, 0.12); }
.directory-card-photo { transition: transform 0.5s ease; }
.directory-card:hover .directory-card-photo { transform: scale(1.03); }

/* toolbar */
.listing-toolbar { border-radius: 0; }
.listing-search-bar { border-radius: 0; }

/* ── Detail page (hotel.php) ───────────────────────────────── */
.detail-name, .detail-hero-copy h1, .detail-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}
.detail-badge {
  background: var(--bg-soft); color: var(--brand-deep); border-radius: 0;
  font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.14em;
}
.detail-top-chip {
  border-color: var(--brand-bright); color: var(--brand-deep); border-radius: 0;
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.1em;
}
.detail-section-title {
  font-family: var(--font-display); font-weight: 400;
}
/* gallery */
.detail-gallery { border-radius: 0; }
.gallery-main img, .gallery-card img { border-radius: 0; }

/* booking card */
.booking-card { border-radius: 0; }
.booking-primary {
  background: var(--brand); border-radius: 0;
  font-family: var(--font-body); font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem;
}
.booking-primary:hover { background: var(--brand-deep); }
.pill-button { background: var(--brand); border-radius: 0; }
.pill-button:hover { background: var(--brand-deep); }

/* ── Blog list page overrides ──────────────────────────────── */
.article-title, .blog-detail-title, .blog-feature-title {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
}
.blog-card-title {
  font-family: var(--font-display); font-style: italic; letter-spacing: 0.01em;
}
.blog-chip { border-radius: 0; }
.blog-card { transition: transform 0.3s ease; border-radius: 0.75rem; overflow: hidden; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-media img { transition: transform 0.5s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.03); }

/* ═══════════════════════════════════════════════════════════════
   VB ARTICLE DETAIL — full-bleed hero, clean editorial layout
   ═══════════════════════════════════════════════════════════════ */
.vb-article { background: var(--bg-page); }

/* Hero — full-bleed image with overlay */
.vb-article-hero {
  position: relative;
  min-height: clamp(22rem, 50vw, 34rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vb-article-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.vb-article-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 12, 6, 0.85) 0%, rgba(20, 12, 6, 0.4) 50%, rgba(20, 12, 6, 0.15) 100%);
}
.vb-article-hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-top: 6rem;
  color: #fff;
}
.vb-article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 248, 238, 0.5);
  margin-bottom: 1.5rem;
}
.vb-article-breadcrumb a { color: rgba(255, 248, 238, 0.6); transition: color 0.2s; }
.vb-article-breadcrumb a:hover { color: #fff; }
.vb-article-hero__content { max-width: 42rem; }
.vb-article-tag {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.8rem;
}
.vb-article-hero__content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}
.vb-article-hero__excerpt {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 248, 238, 0.75);
  max-width: 36rem;
}
.vb-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.vb-article-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vb-article-author__avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 600;
}
.vb-article-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vb-article-author__avatar--lg { width: 3.2rem; height: 3.2rem; font-size: 0.85rem; }
.vb-article-author strong { font-size: 0.85rem; display: block; }
.vb-article-author span { font-size: 0.72rem; color: rgba(255, 248, 238, 0.55); display: block; }
.vb-article-hero__facts {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: rgba(255, 248, 238, 0.5);
}
.vb-article-hero__facts span + span::before {
  content: "·";
  margin-right: 1rem;
}

/* Content layout */
.vb-article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  max-width: 48rem;
}
.vb-article-layout--with-side {
  max-width: none;
  grid-template-columns: 1fr 20rem;
}

/* Article body */
.vb-article-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}
/* ── Rich content — full editorial typography ── */
.vb-article-content {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body, #4a3f35);
}
.vb-article-content > * + * {
  margin-top: 1.5rem;
}

/* Headings */
.vb-article-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.65rem;
  line-height: 1.25;
  color: var(--text-strong);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}
.vb-article-content > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.vb-article-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--text-strong);
  margin-top: 2rem;
}
.vb-article-content h2 + h3 {
  margin-top: 1rem;
  padding-top: 0;
}

/* Paragraphs */
.vb-article-content p {
  margin: 0;
}

/* Links */
.vb-article-content a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-color: var(--brand-bright);
  text-underline-offset: 0.15em;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.vb-article-content a:hover {
  color: var(--brand);
  text-decoration-color: var(--brand);
}

/* Images */
.vb-article-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 2rem 0;
  object-fit: cover;
  max-height: 28rem;
}
.vb-article-content p > img:only-child {
  margin: 2.5rem 0;
}
.vb-article-content figure {
  margin: 2.5rem 0;
}
.vb-article-content figure img {
  margin: 0;
}
.vb-article-content figcaption {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Blockquote */
.vb-article-content blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  background: var(--bg-muted);
  border-left: 3px solid var(--brand);
  border-radius: 0 0.5rem 0.5rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-strong);
}
.vb-article-content blockquote p {
  margin: 0;
}

/* Lists */
.vb-article-content ul,
.vb-article-content ol {
  padding-left: 1.4rem;
  margin: 1.5rem 0;
}
.vb-article-content li {
  margin-top: 0.6rem;
  padding-left: 0.3rem;
}
.vb-article-content li::marker {
  color: var(--brand);
}
.vb-article-content li strong {
  color: var(--text-strong);
}

/* Horizontal rules */
.vb-article-content hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 3rem 0;
}

/* Tables */
.vb-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.vb-article-content th,
.vb-article-content td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.vb-article-content th {
  font-weight: 600;
  color: var(--text-strong);
  background: var(--bg-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Code */
.vb-article-content code {
  font-size: 0.88em;
  padding: 0.15em 0.4em;
  background: var(--bg-muted);
  border-radius: 0.25rem;
  color: var(--brand-deep);
}
.vb-article-content pre {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  background: #2A1D12;
  color: #E8D9C4;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.65;
}
.vb-article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  border-radius: 0;
}

/* Author card at end of article */
.vb-article-author-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-muted);
  border-radius: 0.75rem;
}
.vb-article-author-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}
.vb-article-author-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0.1rem 0 0;
}
.vb-article-author-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Pagination */
.vb-article-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}
.vb-article-pagination__item {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-soft);
  border-radius: 0.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.vb-article-pagination__item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.vb-article-pagination__item--next { text-align: right; }
.vb-article-pagination__dir {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.3rem;
}
.vb-article-pagination__item strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-strong);
}

/* Sidebar — venue promo card */
.vb-article-sidebar { position: sticky; top: 5rem; align-self: start; }
.vb-article-promo {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.vb-article-promo__media { aspect-ratio: 4/3; overflow: hidden; }
.vb-article-promo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vb-article-promo:hover .vb-article-promo__media img { transform: scale(1.04); }
.vb-article-promo__body { padding: 1.2rem; }
.vb-article-promo__meta {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.4rem;
}
.vb-article-promo h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-strong);
}
.vb-article-promo__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0.4rem 0 0;
}
.vb-article-promo__btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.vb-article-promo__btn:hover { background: var(--brand-deep); }

/* Related posts */
.vb-article-related {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border-soft);
}
.vb-article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.vb-related-card {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vb-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.vb-related-card__media { aspect-ratio: 16/10; overflow: hidden; }
.vb-related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vb-related-card:hover .vb-related-card__media img { transform: scale(1.04); }
.vb-related-card__copy { padding: 1rem 1.2rem; }
.vb-related-card__cat {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.3rem;
}
.vb-related-card__copy h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0;
  color: var(--text-strong);
}
.vb-related-card__copy p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0.4rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   VB CONTACT PAGE — clean editorial design
   ═══════════════════════════════════════════════════════════════ */
.vb-contact-page { background: var(--bg-page); }

/* Hero */
.vb-contact-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.vb-contact-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0.6rem 0 0;
  color: var(--text-strong);
}
.vb-contact-hero__desc {
  max-width: 34rem;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Services grid */
.vb-contact-services {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.vb-contact-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vb-contact-service {
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vb-contact-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.vb-contact-service__icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--brand);
}
.vb-contact-service h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.vb-contact-service p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Form + info layout */
.vb-contact-main { padding-bottom: clamp(4rem, 7vw, 6rem); }
.vb-contact-layout {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 2rem;
  align-items: start;
}

/* Form */
.vb-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  padding: 2.5rem;
}
.vb-contact-form-wrap h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0;
}
.vb-contact-form-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.3rem 0 1.5rem;
}
.vb-contact-form { display: grid; gap: 1rem; }
.vb-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.vb-contact-field { display: grid; gap: 0.3rem; }
.vb-contact-field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-strong);
}
.vb-contact-field input,
.vb-contact-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border-soft);
  background: var(--bg-page);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-strong);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vb-contact-field input:focus,
.vb-contact-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(176, 141, 106, 0.1);
}
.vb-contact-field__error { color: #8c1d18; font-size: 0.75rem; }
.vb-contact-alert {
  padding: 0.9rem 1.1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.vb-contact-alert--success {
  background: rgba(32, 102, 84, 0.08);
  border: 1px solid rgba(32, 102, 84, 0.16);
  color: #17473a;
}
.vb-contact-alert--error {
  background: rgba(166, 46, 46, 0.08);
  border: 1px solid rgba(166, 46, 46, 0.16);
  color: #8c1d18;
}
.vb-contact-submit {
  padding: 0.8rem 2rem;
  background: var(--brand);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.vb-contact-submit:hover { background: var(--brand-deep); }

/* Info sidebar */
.vb-contact-info { display: grid; gap: 1rem; }
.vb-contact-info__card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
}
.vb-contact-info__card--warm {
  background: var(--bg-muted);
}
.vb-contact-info__card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}
.vb-contact-info__card > p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.vb-contact-info__list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.vb-contact-info__item { display: grid; gap: 0.15rem; }
.vb-contact-info__label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.vb-contact-info__item a,
.vb-contact-info__item span {
  font-size: 0.85rem;
  color: var(--text-strong);
}
.vb-contact-info__item a:hover { color: var(--brand); }

/* Responsive */
@media (max-width: 900px) {
  .vb-article-layout--with-side { grid-template-columns: 1fr; }
  .vb-article-sidebar { position: static; }
  .vb-article-related__grid { grid-template-columns: 1fr 1fr; }
  .vb-contact-layout { grid-template-columns: 1fr; }
  .vb-contact-services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vb-article-hero { min-height: 20rem; }
  .vb-article-hero__content h1 { font-size: 1.8rem; }
  .vb-article-pagination { grid-template-columns: 1fr; }
  .vb-article-related__grid { grid-template-columns: 1fr; }
  .vb-contact-services__grid { grid-template-columns: 1fr; }
  .vb-contact-form__row { grid-template-columns: 1fr; }
  .vb-contact-form-wrap { padding: 1.5rem; }
}

/* ── Featured stay cards (used by render_featured_hotel_card) ── */
.featured-stay-card { border-bottom: 1px solid var(--border-soft); }
.featured-stay-kicker, .directory-card-kicker {
  font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.22em; color: var(--brand);
}
.featured-stay-head h3, .featured-stay-head h3 a {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem); letter-spacing: 0.01em; line-height: 1.08;
}
.featured-stay-tag, .directory-card-tag { border-radius: 0; }
.featured-stay-rating { border-radius: 0; background: rgba(253, 251, 247, 0.94); }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-footer);
  padding: 4rem 0;
}
.footer-brand h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.45rem; letter-spacing: 0.02em; color: var(--text-strong);
}
.footer-brand p, .footer-links a {
  font-family: var(--font-body); font-weight: 300;
  font-size: 0.65rem; letter-spacing: 0.18em; color: var(--text-muted);
}
.footer-links a:hover { color: var(--brand); }


/* ═══════════════════════════════════════════════════════════════
   MISC
   ═══════════════════════════════════════════════════════════════ */
.header-search input, .mobile-nav-search input {
  border-radius: 0; font-family: var(--font-body); font-weight: 300;
}
.mobile-nav-links a {
  font-family: var(--font-body); font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-body);
}

/* hide old home-page specific layout when using vb-home */
.vb-home .home-page,
.vb-home .home-hero,
.vb-home .home-section { display: none; }


/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB (all inner pages)
   ═══════════════════════════════════════════════════════════════ */
.vb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.vb-breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.vb-breadcrumb a:hover { color: var(--brand); }
.vb-breadcrumb span[aria-hidden] { color: var(--border-muted); }
.vb-breadcrumb > span:last-child { color: var(--text-strong); }


/* ═══════════════════════════════════════════════════════════════
   LISTING PAGE (destinations.php) — new design
   ═══════════════════════════════════════════════════════════════ */
.vb-listing { padding-bottom: 4rem; }

.vb-listing__hero {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--border-soft);
}
.vb-listing__hero .site-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.vb-listing__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-strong);
}
.vb-listing__intro {
  margin: 0.6rem 0 0;
  max-width: 38rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.vb-listing__stats {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}
.vb-listing__stat {
  text-align: center;
}
.vb-listing__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-strong);
}
.vb-listing__stat span {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Filter bar */
.vb-listing__toolbar {
  padding: 1.5rem 0;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border-soft);
}
.vb-filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.vb-filter-bar__fields {
  display: flex;
  flex: 1;
  gap: 0.8rem;
}
.vb-filter-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.vb-filter-field--search { flex: 1.5; }
.vb-filter-field span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vb-filter-field input,
.vb-filter-field select {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-soft);
  background: var(--surface-white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--text-strong);
  appearance: none;
}
.vb-filter-field input:focus,
.vb-filter-field select:focus {
  outline: none;
  border-color: var(--brand);
}
.vb-filter-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.vb-filter-btn {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.vb-filter-btn:hover { background: var(--brand-deep); }
.vb-filter-btn--outline {
  background: transparent;
  color: var(--brand);
}
.vb-filter-btn--outline:hover {
  background: var(--brand);
  color: #fff;
}

/* Active filter chips */
.vb-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
}
.vb-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-body);
  transition: border-color 0.3s;
}
.vb-filter-chip:hover { border-color: var(--brand); }

/* Results */
.vb-listing__results {
  padding-top: 2rem;
}
.vb-results-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.vb-results-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text-strong);
}
.vb-results-count {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Venue grid — poster-style cards (image fills, text overlaid) ── */
.vb-venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vb-venue-grid .directory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: #1C1610; /* JS will override with sampled color */
  border: none;
  box-shadow: none;
}

/* Image area — takes ~65% height, bottom fades into card background via mask */
.vb-venue-grid .directory-card-media {
  position: relative;
  flex: 0 0 auto;
  height: 0;
  padding-bottom: 68%; /* image aspect ratio */
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}
.vb-venue-grid .directory-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0;
}
.vb-venue-grid .directory-card:hover .directory-card-photo {
  transform: scale(1.04);
}

/* No overlay needed — the mask-image handles the fade */
.vb-venue-grid .directory-card-media::after { display: none; }

/* Badge stays at top-left */
.vb-venue-grid .directory-card-media-top {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.vb-venue-grid .directory-card-badge {
  background: #fff;
  color: #333;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.3rem 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.vb-venue-grid .directory-card-count {
  background: none;
  border: none;
  box-shadow: none;
  min-height: 0;
  padding: 0;
  color: rgba(255, 248, 238, 0.6);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: none;
}

/* Text overlay — minimal, just floats at bottom edge */
/* Text sits below image, on the sampled bg color. Negative margin overlaps faded zone */
.vb-venue-grid .directory-card-copy {
  position: relative;
  z-index: 2;
  padding: 0 1rem 0.8rem;
  margin-top: -2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: none;
  border: none;
  box-shadow: none;
}
.vb-venue-grid .directory-card-kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.vb-venue-grid .directory-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
}
.vb-venue-grid .directory-card-summary {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vb-venue-grid .directory-card-meta {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.vb-venue-grid .directory-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
/* Default tag style — JS will override with sampled image colors */
.vb-venue-grid .directory-card-tag {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.vb-venue-grid .directory-card-footer { display: none; }

/* Empty state */
.vb-empty-state {
  text-align: center;
  padding: 4rem 0;
}
.vb-empty-state h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-strong);
}
.vb-empty-state p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Pagination */
.vb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}
.vb-pagination__btn,
.vb-pagination__page {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s;
}
.vb-pagination__page:hover { color: var(--brand); }
.vb-pagination__page.is-active {
  background: var(--brand);
  color: #fff;
}
.vb-pagination__btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   DETAIL PAGE (hotel.php) — new design
   ═══════════════════════════════════════════════════════════════ */
.vb-detail { padding-bottom: 4rem; }

/* Gallery overrides */
.vb-detail .detail-gallery { border-radius: 0; }
.vb-detail .gallery-main img,
.vb-detail .gallery-card img { border-radius: 0; }

/* Header */
.vb-detail__header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 2.5rem;
}
.vb-detail__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.vb-detail__badge {
  padding: 0.25rem 0.75rem;
  background: var(--bg-soft);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.vb-detail__rating {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.vb-detail__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--text-strong);
}
.vb-detail__subtitle {
  margin: 0.5rem 0 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--text-body);
}
.vb-detail__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
.vb-detail__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-body);
  transition: color 0.3s;
}
.vb-detail__contact:hover { color: var(--brand); }
.vb-detail__contact img { width: 16px; height: 16px; opacity: 0.5; }

.vb-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.vb-detail__chip {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--brand-bright);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
}

/* Sections */
.vb-detail__section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.vb-detail__section:last-child { border-bottom: none; }
.vb-detail__section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 1.2rem;
  color: var(--text-strong);
}
.vb-detail__section h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}
.vb-detail__section p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-body);
  margin: 0 0 0.8rem;
}
.vb-detail__lead {
  font-size: 1rem;
  line-height: 2;
}
.vb-detail__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.vb-detail__section-head h2 { margin: 0; }
.vb-detail__section-head a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Highlight grid */
.vb-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.vb-highlight-card {
  padding: 1.2rem;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.vb-highlight-card__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vb-highlight-card__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-strong);
}
.vb-highlight-card__meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Amenity groups */
.vb-amenity-group {
  margin-bottom: 1.5rem;
}
.vb-amenity-group__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
}
.vb-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.vb-amenity-chip {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-body);
}

/* Map */
.vb-detail__map {
  position: relative;
  padding-bottom: 45%;
  overflow: hidden;
}
.vb-detail__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Review grid */
.vb-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vb-review-stats {
  display: grid;
  gap: 1rem;
}
.vb-review-stat {
  display: grid;
  gap: 0.2rem;
}
.vb-review-stat__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vb-review-stat__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-strong);
}
.vb-review-stat__meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.vb-review-quote {
  padding: 1.5rem;
  background: var(--bg-muted);
  border: none;
  margin: 0;
}
.vb-review-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-strong);
  margin: 0 0 1rem;
}
.vb-review-quote footer {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Booking channels */
.vb-booking-channels {
  display: grid;
  gap: 0.8rem;
}
.vb-booking-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-soft);
  transition: border-color 0.3s;
}
.vb-booking-channel:hover { border-color: var(--brand); }
.vb-booking-channel strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-strong);
}
.vb-booking-channel span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.vb-booking-channel__cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Sidebar */
/* Push sidebar down so it doesn't stick to the gallery */
.vb-detail .detail-aside {
  padding-top: 2rem;
}
.vb-sidebar-card {
  position: sticky;
  top: 90px;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  background: var(--surface-white);
}
.vb-sidebar-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
}
.vb-sidebar-card__location {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}
.vb-sidebar-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-body);
}
.vb-sidebar-card__actions {
  display: grid;
  gap: 0.6rem;
}
.vb-sidebar-card__primary {
  display: block;
  text-align: center;
  padding: 0.8rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.vb-sidebar-card__primary:hover { background: var(--brand-deep); }
.vb-sidebar-card__secondary {
  display: block;
  text-align: center;
  padding: 0.7rem;
  border: 1px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: border-color 0.3s;
}
.vb-sidebar-card__secondary:hover { border-color: var(--brand); }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vb-hero { min-height: 500px; height: 85vh; }
  .vb-hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .vb-hero__desc { font-size: 0.85rem; max-width: 28rem; }
  .vb-hero__cta { padding: 0.75rem 2rem; }

  .vb-dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 11rem; }
  .vb-dest-card--hero { grid-column: 1 / -1; grid-row: auto; }

  .vb-venue-row,
  .vb-venue-row--reversed {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vb-venue-row--reversed .vb-venue-row__media { order: 0; }
  .vb-venue-row--reversed .vb-venue-row__content { order: 0; }
  .vb-venue-row__media { aspect-ratio: 16 / 10; }

  .vb-journal__feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vb-journal__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vb-section__row { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

@media (max-width: 600px) {
  .vb-hero { height: 75vh; min-height: 420px; }
  .vb-hero__eyebrow { font-size: 0.58rem; letter-spacing: 0.25em; }
  .vb-hero__title { font-size: 2.2rem; }
  .vb-hero__desc { display: none; }
  .vb-hero__scroll-hint { bottom: 1.5rem; }

  .vb-dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 10rem; }
  .vb-dest-card--hero .vb-dest-card__copy h3 { font-size: 1.5rem; }

  .vb-venue-row__content h3 { font-size: 1.5rem; }

  .vb-journal__feature-title { font-size: 1.4rem; }
  .vb-journal__feature-excerpt { display: none; }

  /* non-home pages mobile */
  .site-brand { font-size: 1.15rem; }

  /* listing page */
  .vb-listing__hero .site-shell { flex-direction: column; align-items: flex-start; }
  .vb-listing__stats { gap: 1.5rem; }
  .vb-filter-bar { flex-direction: column; }
  .vb-filter-bar__fields { flex-direction: column; }
  .vb-venue-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .vb-venue-grid .directory-card-title { font-size: 1rem; }
  .vb-venue-grid .directory-card-summary { display: none; }
  .vb-listing__title { font-size: 1.8rem; }

  /* detail page */
  .vb-detail__title { font-size: 1.8rem; }
  .vb-detail__contacts { flex-direction: column; gap: 0.8rem; }
  .vb-highlight-grid { grid-template-columns: 1fr; }
  .vb-review-grid { grid-template-columns: 1fr; }
  .vb-breadcrumb { font-size: 0.6rem; }
  /* contact */ .vb-contact-hero__title { font-size: 2rem; }
  .vb-contact-services__grid { grid-template-columns: 1fr; }
  .vb-contact-layout { grid-template-columns: 1fr; }
  .vb-contact-form__row { grid-template-columns: 1fr; }
  /* article */ .vb-article-hero h1 { font-size: 1.8rem; }
  .vb-article-layout { grid-template-columns: 1fr; }
  .vb-article-related__grid { grid-template-columns: 1fr; }
  .vb-article-pagination { flex-direction: column; }
  /* blog */ .blog-feature-card--editorial { grid-template-columns: 1fr; }
  .blog-article-grid--editorial { grid-template-columns: 1fr; }
}

/* ═══ CONTACT PAGE ═══ */
.vb-contact-page { padding-bottom: 4rem; }
.vb-contact-hero { padding: clamp(3rem, 6vw, 5rem) 0; text-align: center; border-bottom: 1px solid var(--border-soft); }
.vb-contact-hero__title { margin: 0; font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; }
.vb-contact-hero__desc { max-width: 34rem; margin: 1rem auto 0; font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; line-height: 1.9; color: var(--text-muted); }
.vb-contact-services { padding: clamp(2.5rem, 4vw, 3.5rem) 0; border-bottom: 1px solid var(--border-soft); }
.vb-contact-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.vb-contact-service { text-align: center; }
.vb-contact-service__icon { display: block; font-size: 1.4rem; color: var(--brand); margin-bottom: 0.8rem; }
.vb-contact-service h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; margin: 0 0 0.4rem; }
.vb-contact-service p { font-family: var(--font-body); font-weight: 300; font-size: 0.82rem; line-height: 1.8; color: var(--text-muted); margin: 0; }
.vb-contact-main { padding: clamp(3rem, 5vw, 4rem) 0; }
.vb-contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.vb-contact-form-wrap h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; margin: 0 0 0.4rem; }
.vb-contact-form-desc { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1.5rem; }
.vb-contact-form { display: grid; gap: 1rem; }
.vb-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.vb-contact-field { display: flex; flex-direction: column; gap: 0.3rem; }
.vb-contact-field span { font-family: var(--font-body); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.vb-contact-field input, .vb-contact-field textarea { padding: 0.65rem 0.8rem; border: 1px solid var(--border-soft); background: var(--surface-white); font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--text-strong); resize: vertical; }
.vb-contact-field input:focus, .vb-contact-field textarea:focus { outline: none; border-color: var(--brand); }
.vb-contact-field__error { font-size: 0.72rem; color: #c44; }
.vb-contact-submit { padding: 0.8rem 2rem; background: var(--brand); border: none; color: #fff; font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; justify-self: start; }
.vb-contact-submit:hover { background: var(--brand-deep); }
.vb-contact-alert { padding: 0.8rem 1rem; font-family: var(--font-body); font-size: 0.85rem; margin-bottom: 1rem; }
.vb-contact-alert--success { background: #f0f7f0; color: #2d6a2e; border: 1px solid #c8e6c9; }
.vb-contact-alert--error { background: #fef0f0; color: #a33; border: 1px solid #f5c6c6; }
.vb-contact-info { display: grid; gap: 1.2rem; }
.vb-contact-info__card { padding: 1.5rem; border: 1px solid var(--border-soft); }
.vb-contact-info__card--warm { background: var(--bg-muted); border-color: transparent; }
.vb-contact-info__card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; margin: 0 0 0.3rem; }
.vb-contact-info__card p { font-family: var(--font-body); font-weight: 300; font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); margin: 0; }
.vb-contact-info__list { display: grid; gap: 0.8rem; margin-top: 1rem; }
.vb-contact-info__item { display: flex; flex-direction: column; gap: 0.15rem; }
.vb-contact-info__label { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.vb-contact-info__item a { font-family: var(--font-body); font-size: 0.85rem; color: var(--brand); }

/* ═══ ARTICLE DETAIL ═══ */
.vb-article { padding-bottom: 0; }
.vb-article-hero { position: relative; min-height: clamp(22rem, 50vh, 32rem); display: flex; align-items: flex-end; overflow: hidden; }
.vb-article-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vb-article-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,6,2,0.82) 0%, rgba(10,6,2,0.45) 40%, rgba(10,6,2,0.12) 70%, transparent 100%); }
.vb-article-hero__inner { position: relative; z-index: 1; padding: 2.5rem 0; color: #fff; width: 100%; }
.vb-article-breadcrumb { display: flex; gap: 0.5rem; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(255,248,238,0.5); margin-bottom: 1.5rem; }
.vb-article-breadcrumb a { color: rgba(255,248,238,0.6); }
.vb-article-breadcrumb a:hover { color: #fff; }
.vb-article-hero__content { max-width: 42rem; }
.vb-article-hero__tags { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.vb-article-tag { padding: 0.2rem 0.6rem; border: 1px solid rgba(255,255,255,0.25); font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,248,238,0.7); }
.vb-article-hero h1 { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.12; margin: 0; }
.vb-article-hero__excerpt { margin: 0.8rem 0 0; font-family: var(--font-body); font-weight: 300; font-size: 0.92rem; line-height: 1.8; color: rgba(255,248,238,0.75); }
.vb-article-hero__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); }
.vb-article-author { display: flex; align-items: center; gap: 0.6rem; }
.vb-article-author__avatar { width: 2.2rem; height: 2.2rem; border-radius: 50%; overflow: hidden; background: var(--brand); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: #fff; }
.vb-article-author__avatar--lg { width: 3rem; height: 3rem; font-size: 0.9rem; }
.vb-article-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vb-article-author strong { font-family: var(--font-body); font-weight: 500; font-size: 0.82rem; display: block; }
.vb-article-author span { font-family: var(--font-body); font-size: 0.68rem; color: rgba(255,248,238,0.5); }
.vb-article-hero__facts { display: flex; gap: 1.2rem; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(255,248,238,0.5); }
.vb-article-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; max-width: 48rem; }
.vb-article-layout--with-side { grid-template-columns: 1fr 280px; max-width: none; }
.vb-article-body { min-width: 0; }
.vb-article-lead { font-family: var(--font-body); font-weight: 300; font-size: 1.05rem; line-height: 2; color: var(--text-body); margin: 0 0 2rem; }
.vb-article-content { font-family: var(--font-body); font-weight: 300; font-size: 0.92rem; line-height: 2; color: var(--text-body); }
.vb-article-content h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: 2.5rem 0 0.8rem; color: var(--text-strong); }
.vb-article-content h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; margin: 2rem 0 0.5rem; }
.vb-article-content img { width: 100%; margin: 1.5rem 0; }
.vb-article-author-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border: 1px solid var(--border-soft); margin-top: 2.5rem; }
.vb-article-author-card__label { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin: 0; }
.vb-article-author-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0.2rem 0 0; }
.vb-article-author-card__role { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-muted); margin: 0.2rem 0 0; }
.vb-article-pagination { display: flex; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.vb-article-pagination__item { flex: 1; padding: 1rem; border: 1px solid var(--border-soft); transition: border-color 0.3s; }
.vb-article-pagination__item:hover { border-color: var(--brand); }
.vb-article-pagination__item--next { text-align: right; }
.vb-article-pagination__dir { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.vb-article-pagination__item strong { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1rem; color: var(--text-strong); }
.vb-article-sidebar { position: sticky; top: 90px; }
.vb-article-promo { border: 1px solid var(--border-soft); overflow: hidden; }
.vb-article-promo__media { aspect-ratio: 4 / 3; overflow: hidden; }
.vb-article-promo__media img { width: 100%; height: 100%; object-fit: cover; }
.vb-article-promo__body { padding: 1.2rem; }
.vb-article-promo__meta { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand); margin: 0 0 0.4rem; }
.vb-article-promo__body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; margin: 0 0 0.3rem; }
.vb-article-promo__desc { font-family: var(--font-body); font-weight: 300; font-size: 0.78rem; line-height: 1.7; color: var(--text-muted); margin: 0 0 0.8rem; }
.vb-article-promo__btn { display: inline-block; padding: 0.5rem 1.2rem; background: var(--brand); color: #fff; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }
.vb-article-related { padding: clamp(3rem, 5vw, 4rem) 0; background: var(--bg-muted); }
.vb-article-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.vb-related-card { display: block; overflow: hidden; border: 1px solid var(--border-soft); background: var(--surface-white); transition: transform 0.3s, box-shadow 0.3s; }
.vb-related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(176,141,106,0.1); }
.vb-related-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.vb-related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vb-related-card:hover .vb-related-card__media img { transform: scale(1.04); }
.vb-related-card__copy { padding: 1rem; }
.vb-related-card__cat { display: block; font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.3rem; }
.vb-related-card__copy h3 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.1rem; margin: 0 0 0.3rem; color: var(--text-strong); }
.vb-related-card__copy p { font-family: var(--font-body); font-weight: 300; font-size: 0.78rem; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ═══ BLOG INDEX ═══ */
.blog-index-page--editorial .blog-shell { max-width: var(--shell-max); margin-inline: auto; padding-inline: var(--shell-pad); }
.blog-index-page--editorial .blog-index-hero { padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--border-soft); }
.blog-index-page--editorial .blog-index-hero h1 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(2rem, 4vw, 3rem); }
.blog-index-page--editorial .blog-index-intro { font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; color: var(--text-muted); }
.blog-index-page--editorial .blog-index-hero-meta article strong { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; }
.blog-index-page--editorial .blog-index-hero-meta article span { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.blog-index-page--editorial .blog-chip { border-radius: 0; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.1em; }
.blog-index-page--editorial .blog-chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.blog-index-page--editorial .blog-feature-card--editorial { border-radius: 0; }
.blog-index-page--editorial .blog-feature-title { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.blog-index-page--editorial .blog-feature-button { background: var(--brand); border-radius: 0; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; }
.blog-index-page--editorial .blog-card--editorial { border-radius: 0; transition: transform 0.3s ease; }
.blog-index-page--editorial .blog-card--editorial:hover { transform: translateY(-3px); }
.blog-index-page--editorial .blog-card-title { font-family: var(--font-display); font-style: italic; letter-spacing: 0.01em; }
.blog-index-page--editorial .blog-card-media img { transition: transform 0.5s ease; }
.blog-index-page--editorial .blog-card--editorial:hover .blog-card-media img { transform: scale(1.03); }
.blog-index-page--editorial .blog-empty-state h2 { font-family: var(--font-display); font-style: italic; }

/* ═══ POLICY / LEGAL ═══ */
.policy-page--editorial .article-hero--editorial { border-bottom: 1px solid var(--border-soft); }
.policy-page--editorial .article-hero-heading h1 { font-family: var(--font-display); font-weight: 400; font-style: italic; }
.policy-page--editorial .article-hero-tag { border-radius: 0; font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.16em; }
.policy-page--editorial .article-meta-card--editorial, .policy-page--editorial .article-toc-card--editorial { border-radius: 0; border: 1px solid var(--border-soft); }
.policy-page--editorial .article-toc-link { font-family: var(--font-body); font-size: 0.78rem; }
.policy-page--editorial .article-booking-card--editorial { border-radius: 0; background: var(--bg-muted); }
.policy-page--editorial .article-booking-button { background: var(--brand); border-radius: 0; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; }
.policy-page--editorial .article-rich-content h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; }
.policy-page--editorial .article-author-card--editorial { border-radius: 0; border: 1px solid var(--border-soft); }
.policy-page--editorial .article-end-tag { border-radius: 0; }

/* ═══ 404 ═══ */
.vb-404 { text-align: center; padding: clamp(5rem, 12vw, 10rem) 0; }
.vb-404 .eyebrow { font-size: 0.8rem; letter-spacing: 0.35em; }
.vb-404 h1 { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(2.5rem, 6vw, 4rem); margin: 0.5rem 0; }
.vb-404 p { max-width: 28rem; margin: 0.8rem auto 2rem; font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; line-height: 1.8; color: var(--text-muted); }
.vb-404 .pill-button { background: var(--brand); border-radius: 0; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; }


/* ═══ JOURNAL INDEX (travel-tips.php) — fully independent ═══ */
.vb-journal-index { padding-bottom: 4rem; }
.vb-journal-index__hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--border-soft); }
.vb-journal-index__hero h1 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.vb-journal-index__intro { font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; line-height: 1.9; color: var(--text-muted); margin: 0.5rem 0 0; max-width: 38rem; }
.vb-journal-index__stats { display: flex; gap: 2.5rem; flex-shrink: 0; }
.vb-journal-index__stat { text-align: center; }
.vb-journal-index__stat strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; line-height: 1; }
.vb-journal-index__stat span { display: block; margin-top: 0.25rem; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

/* Chips */
.vb-journal-index__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border-soft); }
.vb-chip { padding: 0.35rem 1rem; border: 1px solid var(--border-soft); font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-body); transition: border-color 0.3s, background 0.3s, color 0.3s; }
.vb-chip:hover { border-color: var(--brand); }
.vb-chip--active { background: var(--brand); border-color: var(--brand); color: #fff; }
.vb-chip span { opacity: 0.6; margin-left: 0.2rem; }

/* Feature post */
.vb-journal-feature { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 3.5vw, 3.5rem); align-items: center; padding: clamp(2.5rem, 4vw, 3.5rem) 0; border-bottom: 1px solid var(--border-soft); }
.vb-journal-feature__media { display: block; overflow: hidden; aspect-ratio: 16 / 11; }
.vb-journal-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.vb-journal-feature:hover .vb-journal-feature__media img { transform: scale(1.03); }
.vb-journal-feature__copy { display: flex; flex-direction: column; gap: 0.8rem; }
.vb-journal-feature__meta { display: flex; gap: 0.8rem; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand); }
.vb-journal-feature__title { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.25; color: var(--text-strong); transition: color 0.3s; }
.vb-journal-feature__title:hover { color: var(--brand); }
.vb-journal-feature__excerpt { font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; line-height: 1.9; color: var(--text-body); margin: 0; }
.vb-journal-feature__btn { display: inline-block; padding: 0.6rem 1.5rem; background: var(--brand); color: #fff; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.3s; align-self: flex-start; }
.vb-journal-feature__btn:hover { background: var(--brand-deep); }

/* Journal grid */
.vb-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-top: clamp(2rem, 3vw, 3rem); }
.vb-journal-card { display: flex; flex-direction: column; gap: 0.8rem; }
.vb-journal-card__media { display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.vb-journal-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.vb-journal-card:hover .vb-journal-card__media img { transform: scale(1.04); }
.vb-journal-card__copy { display: flex; flex-direction: column; gap: 0.4rem; }
.vb-journal-card__meta { display: flex; gap: 0.6rem; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand); }
.vb-journal-card__title { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.15rem; line-height: 1.3; color: var(--text-strong); transition: color 0.3s; }
.vb-journal-card__title:hover { color: var(--brand); }
.vb-journal-card__excerpt { font-family: var(--font-body); font-weight: 300; font-size: 0.78rem; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* Empty state */
.vb-empty-state { text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; }
.vb-empty-state h2 { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; margin: 0.5rem 0; }
.vb-empty-state p { font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; color: var(--text-muted); margin: 0 auto 1.5rem; max-width: 30rem; }
.vb-empty-state__btn { display: inline-block; padding: 0.7rem 2rem; background: var(--brand); color: #fff; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }


/* ═══ POLICY PAGE — fully independent ═══ */
.vb-policy { padding-bottom: 4rem; }
.vb-policy__header { padding: clamp(2rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--border-soft); }
.vb-policy__tags { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.vb-policy__tag { padding: 0.2rem 0.6rem; border: 1px solid var(--border-soft); font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.vb-policy__header h1 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0; }
.vb-policy__intro { font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; line-height: 1.8; color: var(--text-muted); margin: 0.5rem 0 0; max-width: 38rem; }
.vb-policy__meta { display: flex; gap: 1.5rem; margin-top: 1rem; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--text-muted); }

/* Layout */
.vb-policy__layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 4vw, 4rem); padding-top: 2.5rem; align-items: start; }

/* Sidebar */
.vb-policy__sidebar { position: sticky; top: 90px; display: grid; gap: 1.2rem; }
.vb-policy__sidebar-card { padding: 1.2rem; border: 1px solid var(--border-soft); }
.vb-policy__sidebar-card--warm { background: var(--bg-muted); border-color: transparent; }
.vb-policy__sidebar-label { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 0.3rem; }
.vb-policy__sidebar-value { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-strong); margin: 0; }
.vb-policy__toc { padding: 1.2rem; border: 1px solid var(--border-soft); display: grid; gap: 0.4rem; }
.vb-policy__toc-link { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-body); transition: color 0.3s; padding: 0.2rem 0; }
.vb-policy__toc-link:hover { color: var(--brand); }
.vb-policy__sidebar-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; margin: 0 0 0.3rem; }
.vb-policy__sidebar-card p { font-family: var(--font-body); font-weight: 300; font-size: 0.78rem; line-height: 1.7; color: var(--text-muted); margin: 0 0 0.8rem; }
.vb-policy__sidebar-btn { display: inline-block; padding: 0.5rem 1.2rem; background: var(--brand); color: #fff; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* Content */
.vb-policy__content { min-width: 0; }
.vb-policy__lead { font-family: var(--font-body); font-weight: 300; font-size: 1rem; line-height: 2; color: var(--text-body); margin: 0 0 2rem; }
.vb-policy__content h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; margin: 2.5rem 0 0.8rem; color: var(--text-strong); }
.vb-policy__content p { font-family: var(--font-body); font-weight: 300; font-size: 0.88rem; line-height: 2; color: var(--text-body); margin: 0 0 0.6rem; }
.vb-policy__content ul { padding-left: 1.2rem; margin: 0.5rem 0 1rem; }
.vb-policy__content li { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; line-height: 1.9; color: var(--text-body); margin-bottom: 0.3rem; }

/* Footer */
.vb-policy__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.vb-policy__end-tags { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.vb-policy__author-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; border: 1px solid var(--border-soft); }
.vb-policy__author-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; color: #fff; flex-shrink: 0; }
.vb-policy__author-label { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin: 0; }
.vb-policy__author-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0.15rem 0 0; }
.vb-policy__author-email { font-family: var(--font-body); font-size: 0.78rem; color: var(--brand); margin: 0.1rem 0 0; }

/* Responsive */
@media (max-width: 600px) {
  .vb-journal-index__hero { flex-direction: column; align-items: flex-start; }
  .vb-journal-feature { grid-template-columns: 1fr; }
  .vb-journal-grid { grid-template-columns: 1fr; }
  .vb-policy__layout { grid-template-columns: 1fr; }
  .vb-policy__sidebar { position: static; }
}


/* ═══ GALLERY MODAL — venue-bliss exclusive (no shared classes) ═══ */
.vb-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-gallery-modal[hidden] { display: none; }

.vb-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vb-gallery-modal__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
}

/* Header bar */
.vb-gallery-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  flex-shrink: 0;
}
.vb-gallery-modal__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vb-gallery-modal__counter {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 248, 238, 0.5);
}
.vb-gallery-modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 248, 238, 0.85);
}
.vb-gallery-modal__close {
  background: none;
  border: none;
  color: rgba(255, 248, 238, 0.6);
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
}
.vb-gallery-modal__close:hover { color: #fff; }

/* Stage — main image area */
.vb-gallery-modal__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
  padding: 0 3.5rem;
}
.vb-gallery-modal__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

/* Arrows */
.vb-gallery-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 238, 0.7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.vb-gallery-modal__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vb-gallery-modal__arrow--prev { left: 0.8rem; }
.vb-gallery-modal__arrow--next { right: 0.8rem; }

/* Thumbnail strip */
.vb-gallery-modal__thumbs {
  display: flex;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  overflow-x: auto;
  flex-shrink: 0;
  justify-content: center;
  scrollbar-width: none;
}
.vb-gallery-modal__thumbs::-webkit-scrollbar { display: none; }

.vb-gallery-modal__thumb {
  flex: 0 0 auto;
  width: 3.5rem;
  height: 2.5rem;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
  background: none;
  padding: 0;
}
.vb-gallery-modal__thumb:hover { opacity: 0.75; }
.vb-gallery-modal__thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}
.vb-gallery-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 600px) {
  .vb-gallery-modal__stage { padding: 0 2.5rem; }
  .vb-gallery-modal__arrow { width: 2rem; height: 2rem; }
  .vb-gallery-modal__arrow--prev { left: 0.3rem; }
  .vb-gallery-modal__arrow--next { right: 0.3rem; }
  .vb-gallery-modal__thumb { width: 2.5rem; height: 1.8rem; }
  .vb-gallery-modal__title { display: none; }
}

/* ── Linked story (location detail → related blog post) ─────────── */
.vb-linked-story {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 1.6rem;
  padding: 1.4rem;
  border: 1px solid var(--border-soft);
  background: var(--surface-strong);
  text-decoration: none;
}

.vb-linked-story__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vb-linked-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.vb-linked-story:hover .vb-linked-story__media img {
  transform: scale(1.04);
}

.vb-linked-story__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
}

.vb-linked-story__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vb-linked-story__tag {
  color: var(--brand);
  font-weight: 500;
}

.vb-linked-story__time::before {
  content: "·";
  margin-right: 0.6rem;
  color: var(--border-muted);
}

.vb-linked-story__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.3;
  color: var(--text-strong);
  text-decoration: none;
}

.vb-linked-story__title:hover {
  color: var(--brand);
}

.vb-linked-story__excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0;
}

.vb-linked-story__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.vb-linked-story__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.vb-linked-story__cta:hover {
  background: transparent;
  color: var(--brand);
}

.vb-linked-story__more {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
}

.vb-linked-story__more:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .vb-linked-story {
    grid-template-columns: 1fr;
  }
}

/* ── Related venues on detail page ──────────────────────────────────── */
.vb-related-venues {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(176, 141, 106, 0.25);
}

.vb-related-venues__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.vb-related-venues__eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  color: var(--color-accent, #B08D6A);
}

.vb-related-venues__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0.4rem 0 0;
  color: #fff;
}

@media (max-width: 720px) {
  .vb-related-venues__title {
    font-size: 1.4rem;
  }
}
