:root[data-theme="dark"] {
  --bg: #141210;
  --bg-elev: #1c1916;
  --fg: #f2ece2;
  --fg-muted: #a89e91;
  --accent: #b08d57;
  --accent2: #a9776c;
  --stone: #7a726a;
  --border: rgba(242, 236, 226, .14);
  --accent-ink: #161310;
  --accent2-ink: #1c1310;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #f5f1ea;
  --bg-elev: #ffffff;
  --fg: #171512;
  --fg-muted: #6b6459;
  --accent: #96733f;
  --accent2: #9c6b5e;
  --stone: #8f887c;
  --border: rgba(23, 21, 18, .12);
  --accent-ink: #ffffff;
  --accent2-ink: #ffffff;
  color-scheme: light;
}

:root { --font-body: 'Manrope', system-ui, sans-serif; --font-display: 'Fraunces', Georgia, 'Iowan Old Style', serif; --font-accent: 'Miama Nueva', var(--font-display); }

@font-face {
  font-family: 'Miama Nueva';
  src: url('../fonts/MiamaNueva.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Sale = bronze (ownership/investment), Rent = dusty rose (lifestyle) — same system, different mood */
:root { --deal-accent: var(--accent); --deal-accent-ink: var(--accent-ink); --deal-accent-soft: color-mix(in srgb, var(--accent) 14%, transparent); }
:root[data-deal="rent"] { --deal-accent: var(--accent2); --deal-accent-ink: var(--accent2-ink); --deal-accent-soft: color-mix(in srgb, var(--accent2) 16%, transparent); }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.vb-container { max-width: 1180px; margin: 0 auto; padding: 0 44px; }

@media (max-width: 720px) {
  .vb-container { padding: 0 20px; }
}

/* ---------- Header ---------- */

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--deal-accent);
  transition: border-color .25s ease;
}

.vb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 44px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.vb-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vb-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--fg);
  white-space: nowrap;
}

.vb-header-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--deal-accent);
  white-space: nowrap;
  transition: color .25s ease;
}

.vb-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.vb-navlink {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.vb-navlink:hover, .vb-navlink.is-current { color: var(--fg); }

.vb-nav-controls { display: flex; align-items: center; gap: 14px; flex: none; }

.vb-deal-pill {
  display: flex;
  gap: 6px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.vb-pill-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 700;
  background: transparent;
  color: var(--fg-muted);
}
.vb-pill-btn.is-active {
  background: var(--deal-accent);
  color: var(--deal-accent-ink);
  border-color: var(--deal-accent);
  transition: background .25s ease, border-color .25s ease;
}
.vb-pill-btn:disabled { opacity: .5; cursor: not-allowed; }

.vb-langbox {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.vb-langbox-sep { width: 1px; height: 14px; background: var(--border); flex: none; }

.vb-lang-btn, .vb-currency-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--fg);
  font-size: 11px;
  letter-spacing: .06em;
  cursor: pointer;
  text-transform: uppercase;
}
.vb-caret { font-size: 9px; color: var(--fg-muted); }

.vb-langmenu, .vb-currency-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 170px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  z-index: 50;
  padding: 6px;
  gap: 2px;
}
.vb-langmenu.is-open, .vb-currency-menu.is-open { display: flex; }
.vb-langmenu button, .vb-currency-menu button {
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12.5px;
  cursor: pointer;
  background: transparent;
  color: var(--fg-muted);
  font-weight: 600;
}
.vb-langmenu button.is-active, .vb-currency-menu button.is-active { background: var(--accent); color: var(--accent-ink); font-weight: 700; }

.vb-theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex: none;
}
.vb-theme-toggle input { display: none; }
.vb-theme-toggle div {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  box-shadow: inset 11px -11px 0 0 var(--fg);
  transform: scale(1) rotate(-2deg);
  transition: box-shadow .5s ease 0s, transform .4s ease .1s;
}
.vb-theme-toggle div::before {
  content: '';
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: background .3s ease;
}
.vb-theme-toggle div::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: -2.5px 0 0 -2.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow:
    0 -15px 0 var(--deal-accent), 0 15px 0 var(--deal-accent),
    15px 0 0 var(--deal-accent), -15px 0 0 var(--deal-accent),
    10px 10px 0 var(--deal-accent), -10px 10px 0 var(--deal-accent),
    10px -10px 0 var(--deal-accent), -10px -10px 0 var(--deal-accent);
  transform: scale(0);
  transition: all .3s ease;
}
.vb-theme-toggle input:checked + div {
  box-shadow: inset 21px -21px 0 0 var(--fg);
  transform: scale(.55) rotate(0deg);
  transition: transform .3s ease .1s, box-shadow .2s ease 0s;
}
.vb-theme-toggle input:checked + div::before { background: var(--deal-accent); transition: background .3s ease .1s; }
.vb-theme-toggle input:checked + div::after { transform: scale(1.3); transition: transform .5s ease .15s; }

.vb-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.vb-burger span { display: block; height: 1px; background: var(--fg); }

@media (max-width: 900px) {
  .vb-burger { display: flex; }
  .vb-header-inner { padding: 18px 20px; }
  .vb-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px 28px;
  }
  .vb-nav.is-open { display: flex; }
  .vb-nav-controls { width: 100%; flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */

.vb-btn {
  padding: 14px 26px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  border: 1px solid transparent;
}
.vb-btn-primary { background: var(--deal-accent); color: var(--deal-accent-ink); transition: background .25s ease; }
.vb-btn-secondary { background: transparent; color: var(--fg); border-color: var(--border); }
.vb-btn-accent2 { background: var(--accent2); color: var(--accent2-ink); }
.vb-btn-large { padding: 18px 40px; font-size: 13px; letter-spacing: .07em; }

.vb-btn-shine { overflow: hidden; transition: filter .25s ease, box-shadow .25s ease; }
.vb-btn-shine:hover { filter: brightness(1.15); box-shadow: 0 10px 28px color-mix(in srgb, var(--deal-accent) 45%, transparent); }
.vb-btn-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, .75) 48%, rgba(255, 255, 255, .95) 50%, rgba(255, 255, 255, .75) 52%, transparent 75%);
  background-size: 220% 100%;
  background-position: 160% 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.vb-btn-shine:hover::after { opacity: 1; animation: vb-btn-shine-sweep 1s ease; }
@keyframes vb-btn-shine-sweep {
  from { background-position: 160% 0; }
  to { background-position: -60% 0; }
}

/* ---------- Image placeholders ---------- */

.vb-imgslot {
  background: repeating-linear-gradient(135deg, var(--bg-elev) 0 18px, var(--bg) 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 12px;
  border: 1px solid var(--border);
}
.vb-imgslot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vb-imgslot:has(img) { padding: 0; border: 0; background: none; }

/* ---------- Hero ---------- */

.vb-hero {
  position: relative;
  height: 560px;
  background: var(--bg-elev);
  overflow: hidden;
}
.vb-hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vb-hero-media { position: absolute; inset: 0; overflow: hidden; }
.vb-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.vb-hero-video.is-active { opacity: 1; }
.vb-hero-daylight { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.8s ease; }
:root[data-theme="light"] .vb-hero.is-frozen .vb-hero-daylight { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .vb-hero-media { display: none; }
}
.vb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 10, .38) 0%, rgba(14, 12, 10, .32) 32%, rgba(14, 12, 10, .78) 75%, rgba(14, 12, 10, .94) 100%);
  pointer-events: none;
}
.vb-hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 56px 44px;
}
.vb-hero-kicker { font-size: 11px; letter-spacing: .18em; color: #f2ece2; font-weight: 700; margin-bottom: 18px; text-shadow: 0 1px 6px rgba(0, 0, 0, .55); }
.vb-hero-headline { margin: 0; font-family: var(--font-display); font-size: 54px; line-height: 1.08; font-weight: 500; color: #f2ece2; max-width: 640px; letter-spacing: -.01em; text-wrap: balance; text-shadow: 0 2px 12px rgba(0, 0, 0, .4); }
.vb-hero-sub { font-size: 15px; line-height: 1.6; color: rgba(242, 236, 226, .88); max-width: 480px; margin-top: 20px; text-shadow: 0 1px 6px rgba(0, 0, 0, .4); }
.vb-hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.vb-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242, 236, 226, .4);
  background: rgba(20, 18, 16, .35);
  color: #f2ece2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 15px;
  animation: vb-bob 2.6s ease-in-out infinite;
}
@keyframes vb-bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

@media (max-width: 720px) {
  .vb-hero { height: 480px; }
  .vb-hero-content { padding: 32px 20px; }
  .vb-hero-headline { font-size: 36px; }
  .vb-scrollcue { display: none; }
}

/* ---------- Hero-embedded 3D shape (sale/rent conceptual) ---------- */

@keyframes vb-spin { 100% { transform: rotateY(360deg); } }

.vb-hero-shape {
  position: absolute;
  top: 60px;
  right: 48px;
  width: 230px;
  height: 230px;
  perspective: 900px;
  pointer-events: none;
  z-index: 2;
}
.vb-hero-shape-anchor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: rotateX(14deg);
}
.vb-hero-shape-ring {
  position: relative;
  transform-style: preserve-3d;
  animation: vb-spin 26s linear infinite;
  transition: opacity .4s ease;
}
.vb-hero-shape-caption {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242, 236, 226, .55);
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 900px) {
  .vb-hero-shape { display: none; }
}

/* ---------- Stats ---------- */

.vb-stats { display: flex; background: var(--bg); flex-wrap: wrap; }
.vb-stat { flex: 1; min-width: 140px; padding: 36px 44px; border-right: 1px solid var(--border); }
.vb-stat:last-child { border-right: none; }
.vb-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--deal-accent); transition: color .25s ease; font-variant-numeric: tabular-nums; }
.vb-stat-label { font-size: 11px; letter-spacing: .04em; color: var(--fg-muted); margin-top: 6px; max-width: 180px; text-transform: uppercase; }

@media (max-width: 720px) {
  .vb-stat { padding: 24px 20px; border-right: none; border-bottom: 1px solid var(--border); flex: 1 1 100%; }
}

/* ---------- Collection / carousel ---------- */

.vb-section { background: var(--bg); padding: 64px 44px 56px; }
.vb-section-head { margin-bottom: 32px; }
.vb-section-kicker { font-size: 11px; letter-spacing: .14em; color: var(--stone); text-transform: uppercase; margin-bottom: 10px; }
.vb-section-title { margin: 0; font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--fg); }

@media (max-width: 720px) {
  .vb-section { padding: 44px 20px; }
  .vb-section-title { font-size: 21px; }
}

.vb-carousel-wrap { position: relative; }
.vb-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  cursor: grab;
  scrollbar-width: none;
}
.vb-carousel::-webkit-scrollbar { display: none; }
.vb-carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.vb-vcard { flex: 0 0 260px; display: flex; flex-direction: column; gap: 12px; }
.vb-vcard-media { position: relative; }
.vb-vcard-media .vb-imgslot { width: 260px; height: 320px; border-radius: 2px; transition: filter .25s ease; }
.vb-vcard:hover .vb-vcard-media .vb-imgslot { filter: brightness(1.08); }
.vb-deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--deal-accent);
  color: var(--deal-accent-ink);
  transition: background .25s ease;
}
.vb-vcard-location { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--fg); }
.vb-vcard-meta { font-size: 12px; color: var(--fg-muted); }
.vb-vcard-price { font-size: 13px; font-weight: 700; color: var(--deal-accent); transition: color .25s ease; }
.vb-vcard-cta {
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease, color .25s ease;
}
.vb-vcard:hover .vb-vcard-cta { opacity: 1; transform: translateY(0); color: var(--deal-accent); }

.vb-drag-cursor {
  position: absolute;
  left: 0; top: 0;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  transition: opacity .15s ease;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(242, 236, 226, .5);
  background: rgba(20, 18, 16, .5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
}
.vb-drag-cursor .vb-arrows { display: flex; gap: 6px; font-size: 13px; color: #f2ece2; }
.vb-drag-cursor .vb-hint { font-size: 8px; letter-spacing: .15em; color: #f2ece2; font-weight: 700; }

@media (max-width: 900px) {
  .vb-drag-cursor { display: none; }
}

/* ---------- Privacy / two-column ---------- */

.vb-split {
  background: var(--bg-elev);
  padding: 64px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vb-split-title { margin: 0 0 16px; font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--fg); }
.vb-split-body { font-size: 14px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 24px; }
.vb-point-list { display: flex; flex-direction: column; gap: 14px; }
.vb-point { display: flex; gap: 12px; align-items: flex-start; }
.vb-point-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }
.vb-point-text { font-size: 13px; color: var(--fg); }
.vb-split-media { height: 340px; position: relative; overflow: hidden; }
.vb-split-media .vb-imgslot { width: 100%; height: 100%; border: none; }
.vb-split-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 1.2s ease; }
.vb-split-photo-dark { opacity: 1; }
.vb-split-photo-light { opacity: 0; }
:root[data-theme="light"] .vb-split-photo-dark { opacity: 0; }
:root[data-theme="light"] .vb-split-photo-light { opacity: 1; }

.vb-split-media-fade {
  height: auto;
  min-height: 440px;
  align-self: stretch;
  border: none;
}
.vb-split-media-fade::before {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  width: 42%;
  background: linear-gradient(to right,
    var(--bg-elev) 0%,
    color-mix(in srgb, var(--bg-elev) 98%, transparent) 12%,
    color-mix(in srgb, var(--bg-elev) 90%, transparent) 24%,
    color-mix(in srgb, var(--bg-elev) 76%, transparent) 36%,
    color-mix(in srgb, var(--bg-elev) 58%, transparent) 48%,
    color-mix(in srgb, var(--bg-elev) 38%, transparent) 62%,
    color-mix(in srgb, var(--bg-elev) 20%, transparent) 76%,
    color-mix(in srgb, var(--bg-elev) 8%, transparent) 88%,
    transparent 100%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .vb-split { grid-template-columns: 1fr; padding: 44px 20px; }
  .vb-split-media { height: 260px; }
  .vb-split-media-fade { height: 260px; min-height: 0; align-self: auto; border: none; }
  .vb-split-media-fade::before { display: none; }
}

/* ---------- Advantages (privacy) — hover-expand cards ---------- */

.vb-adv-section { background: var(--bg-elev); padding: 64px 44px 72px; }
.vb-adv-intro { max-width: 660px; margin-bottom: 40px; }
.vb-adv-kicker { font-size: 11px; letter-spacing: .14em; color: var(--stone); text-transform: uppercase; margin-bottom: 10px; }
.vb-adv-title { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--fg); margin-bottom: 14px; }
.vb-adv-body { font-size: 14px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 20px; }
.vb-adv-points { display: flex; flex-wrap: wrap; gap: 10px; }
.vb-adv-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--fg);
}
.vb-adv-point-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--deal-accent); flex-shrink: 0; }

.vb-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vb-adv-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: visible;
  transform: scale(1);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease, border-color .4s ease;
}
.vb-adv-card-img { height: 130px; overflow: hidden; border-radius: 4px 4px 0 0; }
.vb-adv-card-img .vb-imgslot { width: 100%; height: 100%; border: none; }
.vb-adv-card-body { padding: 18px 20px 20px; }
.vb-adv-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--fg); margin-bottom: 6px; }
.vb-adv-card-short { font-size: 12.5px; line-height: 1.5; color: var(--fg-muted); }
.vb-adv-card-more {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 100%;
  z-index: 6;
  background: var(--bg);
  border: 1px solid var(--deal-accent);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  box-shadow: 0 24px 40px rgba(0, 0, 0, .3);
  pointer-events: none;
  transition: max-height .45s ease, opacity .3s ease, padding .45s ease;
}
.vb-adv-card:hover {
  transform: scale(1.07);
  z-index: 5;
  border-color: var(--deal-accent);
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.vb-adv-card:hover .vb-adv-card-more { max-height: 220px; opacity: 1; padding: 14px 20px 18px; pointer-events: auto; }

.vb-adv-card-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 22px;
  background: var(--deal-accent-soft, var(--bg));
  color: inherit;
  text-decoration: none;
}
.vb-adv-card-link .vb-adv-card-title { color: var(--deal-accent); }
.vb-adv-card-link .vb-adv-card-short { color: var(--fg-muted); }

.vb-adv-cta-wrap { text-align: center; margin-top: 40px; }
.vb-adv-cta-wrap .vb-btn { padding: 16px 40px; }

@media (max-width: 900px) {
  .vb-adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vb-adv-section { padding: 44px 20px 56px; }
  .vb-adv-grid { grid-template-columns: 1fr; }
  .vb-adv-card:hover { transform: scale(1.03); }
}

/* ---------- About Bodrum facts row ---------- */

.vb-about-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 24px; margin-top: 26px; }
.vb-about-fact-num { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--deal-accent); font-variant-numeric: tabular-nums; }
.vb-about-fact-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .04em; margin-top: 4px; max-width: 130px; }

/* ---------- Accent quote block ---------- */

.vb-quote-block-text {
  font-family: var(--font-accent);
  font-size: 42px;
  line-height: 1.35;
  color: var(--deal-accent);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .vb-quote-block-text { font-size: 28px; }
}

.vb-quote-block-text-inline { font-size: 20px; line-height: 1.5; max-width: none; margin: 20px 0 0; text-align: left; }
@media (max-width: 720px) {
  .vb-quote-block-text-inline { font-size: 17px; }
}

.vb-menu-sub-oneline { white-space: nowrap; }
@media (max-width: 900px) {
  .vb-menu-sub-oneline { white-space: normal; max-width: 560px; }
}

/* ---------- Site footer ---------- */

#site-footer { background: var(--bg-elev); border-top: 1px solid var(--border); }
.vb-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 44px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.vb-footer-col { display: flex; flex-direction: column; gap: 10px; }
.vb-footer-col a, .vb-footer-col span { font-size: 13px; color: var(--fg-muted); }
.vb-footer-col a:hover { color: var(--fg); }
.vb-footer-logo { margin-bottom: 4px; }
.vb-footer-tagline { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin: 0; max-width: 320px; }
.vb-footer-heading { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.vb-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 44px 32px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--fg-muted);
}

@media (max-width: 720px) {
  .vb-footer-inner { grid-template-columns: 1fr; padding: 40px 20px 24px; }
  .vb-footer-bottom { padding: 16px 20px 28px; }
}

/* ---------- Page hero (secondary pages) ---------- */

.vb-pagehero { background: var(--bg-elev); padding: 72px 44px 48px; }
.vb-pagehero-kicker { font-size: 11px; letter-spacing: .16em; color: var(--deal-accent); font-weight: 700; margin-bottom: 16px; transition: color .25s ease; }
.vb-pagehero-title { margin: 0; font-family: var(--font-display); font-size: 42px; font-weight: 500; color: var(--fg); letter-spacing: -.01em; max-width: 720px; text-wrap: balance; }
.vb-pagehero-sub { font-size: 15px; line-height: 1.6; color: var(--fg-muted); max-width: 560px; margin-top: 18px; }
.vb-pagehero-sub-wide { max-width: 680px; }
.vb-pagehero-3d { position: relative; }

@media (max-width: 720px) {
  .vb-pagehero { padding: 48px 20px 36px; }
  .vb-pagehero-title { font-size: 28px; }
}

/* ---------- Filters ---------- */

.vb-filters {
  background: var(--bg);
  padding: 28px 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
}
.vb-field { display: flex; flex-direction: column; gap: 6px; }
.vb-field label { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted); }
.vb-field select, .vb-field input {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 10px 12px;
  border-radius: 3px;
  font-size: 13px;
  font-family: inherit;
  min-width: 150px;
}
.vb-filters .vb-btn { padding: 11px 20px; }
.vb-filters-reset {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 720px) {
  .vb-filters { padding: 20px; }
  .vb-field select, .vb-field input { min-width: 120px; }
}

/* ---------- Grid & cards ---------- */

.vb-grid-section { padding: 40px 44px 64px; background: var(--bg); }
.vb-results-count { font-size: 12px; color: var(--fg-muted); margin-bottom: 20px; }
.vb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.vb-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.vb-card:hover { transform: translateY(-3px); border-color: var(--deal-accent); }
.vb-card-media { position: relative; }
.vb-card .vb-imgslot { height: 220px; border: none; border-bottom: 1px solid var(--border); transition: filter .25s ease; }
.vb-card:hover .vb-imgslot { filter: brightness(1.06); }
.vb-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.vb-card-location-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.vb-card-location { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--fg); }
.vb-card-cta {
  font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease, color .25s ease;
  white-space: nowrap;
}
.vb-card:hover .vb-card-cta { opacity: 1; transform: translateX(0); color: var(--deal-accent); }
.vb-card-meta { font-size: 12px; color: var(--fg-muted); }
.vb-card-price { font-size: 14px; font-weight: 700; color: var(--deal-accent); transition: color .25s ease; }
.vb-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.vb-tag {
  font-size: 10px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}
.vb-no-results { padding: 60px 20px; text-align: center; color: var(--fg-muted); font-size: 14px; }

@media (max-width: 720px) {
  .vb-grid-section { padding: 32px 20px 48px; }
}

/* ---------- Villa / yacht detail ---------- */

.vb-detail-hero { padding: 0; background: var(--bg-elev); position: relative; }
.vb-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 480px; }
.vb-gallery-frame { position: relative; overflow: hidden; cursor: pointer; border: none; padding: 0; background: none; display: block; width: 100%; height: 100%; }
.vb-gallery-frame:nth-child(1) { grid-row: 1 / 3; }
.vb-gallery-frame .vb-imgslot { width: 100%; height: 100%; border: none; border-radius: 0; transition: transform .5s ease; }
.vb-gallery-frame:hover .vb-imgslot { transform: scale(1.08); }
.vb-gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, .6);
  color: #f2ece2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}
.vb-gallery-more-count { font-family: var(--font-display); font-size: 26px; }
.vb-gallery-more-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(242, 236, 226, .75); }
.vb-listing-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 7px 15px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vb-listing-badge.is-hot { background: #b5432f; color: #fff; }
.vb-listing-badge.is-new { background: var(--fg); color: var(--bg); }
.vb-listing-badge.is-exclusive { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.vb-card-media .vb-listing-badge, .vb-vcard-media .vb-listing-badge {
  top: 12px;
  left: auto;
  right: 12px;
  padding: 5px 10px;
  font-size: 9.5px;
}

@media (max-width: 900px) {
  .vb-gallery { grid-template-columns: 1fr; grid-template-rows: 240px 76px; height: auto; gap: 4px; }
  .vb-gallery-frame:nth-child(2), .vb-gallery-frame:nth-child(3), .vb-gallery-frame:nth-child(4) { display: none; }
  .vb-gallery-frame:nth-child(1) { grid-row: 1; }
  .vb-gallery-frame:nth-child(5) { display: block; grid-row: 2; }
  .vb-gallery-more-count { font-size: 18px; }
  .vb-gallery-more-label { font-size: 9px; }
}

/* ---------- Lightbox ---------- */

.vb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 9, 8, .95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
}
.vb-lightbox.is-open { display: flex; }
.vb-lightbox-stage { position: relative; width: 100%; max-width: 980px; height: 58vh; display: flex; align-items: center; justify-content: center; }
.vb-lightbox-stage .vb-imgslot { width: 100%; height: 100%; border: 1px solid rgba(242, 236, 226, .16); }
.vb-lightbox-caption { margin-top: 20px; font-size: 13.5px; color: rgba(242, 236, 226, .85); text-align: center; }
.vb-lightbox-counter { margin-top: 6px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(242, 236, 226, .45); }
.vb-lightbox-close, .vb-lightbox-arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 236, 226, .5);
  background: rgba(28, 25, 22, .9);
  color: #f2ece2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: transform .2s ease, border-color .2s ease;
}
.vb-lightbox-close:hover, .vb-lightbox-arrow:hover { border-color: var(--deal-accent); transform: scale(1.06); }
.vb-lightbox-arrow:active { transform: scale(.96); }
.vb-lightbox-close { top: 24px; right: 28px; }
.vb-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.vb-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.vb-lightbox-prev:hover, .vb-lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 720px) {
  .vb-lightbox { padding: 16px; }
  .vb-lightbox-stage { height: 44vh; }
  .vb-lightbox-prev, .vb-lightbox-next {
    top: auto;
    bottom: 24px;
    right: auto;
    transform: none;
  }
  .vb-lightbox-prev { left: calc(50% - 56px); }
  .vb-lightbox-next { left: calc(50% + 8px); }
  .vb-lightbox-prev:hover, .vb-lightbox-next:hover { transform: scale(1.06); }
}

/* ---------- Nearby graph (compact, in sidebar) ---------- */

.vb-nearby-card { padding-bottom: 12px; }
.vb-nearby-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; gap: 10px; flex-wrap: wrap; }
.vb-nearby-toggle-mini { display: flex; gap: 4px; padding: 2px; border: 1px solid var(--border); border-radius: 100px; flex: none; }
.vb-nearby-toggle-mini .vb-pill-btn { padding: 5px 11px; font-size: 9.5px; }
.vb-nearby-graph { position: relative; aspect-ratio: 1; border: 1px solid var(--border); background: var(--bg); border-radius: 4px; overflow: visible; z-index: 1; }
.vb-nearby-graph svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vb-nearby-node-house circle { fill: var(--deal-accent); stroke: var(--bg-elev); stroke-width: 2.5px; transition: fill .25s ease; cursor: default; }
.vb-nearby-house-icon { fill: var(--deal-accent-ink); pointer-events: none; }
.vb-nearby-node-poi circle { fill: var(--bg-elev); stroke: var(--border); stroke-width: 1.5px; cursor: grab; transition: stroke .2s ease; }
.vb-nearby-node-poi:hover circle { stroke: var(--deal-accent); }
.vb-nearby-node-poi.is-dragging circle { cursor: grabbing; }
.vb-nearby-node-poi text.vb-nearby-poi-label { fill: var(--fg); font-size: 10.5px; font-weight: 600; text-anchor: middle; pointer-events: none; }
.vb-nearby-link { stroke: var(--border); stroke-width: 1px; }
.vb-nearby-edge-label-bg { fill: var(--bg); opacity: .82; }
.vb-nearby-edge-label { fill: var(--deal-accent); font-size: 9.5px; font-weight: 700; text-anchor: middle; dominant-baseline: middle; pointer-events: none; transition: fill .25s ease; }

.vb-nearby-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--fg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
  z-index: 99999;
  opacity: 0;
  white-space: nowrap;
  transition: opacity .15s ease;
  transform: translate(-50%, -128%);
}
.vb-nearby-tooltip.is-visible { opacity: 1; }
.vb-nearby-tooltip strong { color: var(--deal-accent); display: block; margin-bottom: 4px; }
.vb-nearby-tooltip-img {
  width: 140px;
  height: 72px;
  margin-top: 6px;
  border-radius: 3px;
  background: repeating-linear-gradient(135deg, var(--bg-elev) 0 10px, var(--bg) 10px 20px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  padding: 4px;
  white-space: normal;
}
.vb-nearby-tooltip-img:has(img) { padding: 0; background: none; }
.vb-nearby-tooltip-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px; }

.vb-detail-body { padding: 48px 44px; display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.vb-detail-main { display: flex; flex-direction: column; gap: 20px; }
.vb-detail-titlerow { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.vb-detail-title { margin: 0; font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--fg); }
.vb-detail-subtitle { margin-top: 10px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; max-width: 460px; }
.vb-detail-district { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--fg); }
.vb-detail-subdesc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.vb-detail-more-btn { background: none; border: none; padding: 0; font-size: 12px; font-weight: 700; color: var(--deal-accent); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.vb-guest-capacity { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex: none; }
.vb-guest-icons { display: flex; gap: 3px; color: var(--deal-accent); }
.vb-guest-icons svg { width: 15px; height: 15px; fill: currentColor; }
.vb-guest-caption { font-size: 11px; color: var(--fg-muted); white-space: nowrap; }
.vb-detail-price { font-size: 18px; font-weight: 700; color: var(--deal-accent); transition: color .25s ease; }
.vb-detail-tags { margin-top: 2px; margin-left: 2px; }
.vb-detail-tags .vb-tag { padding-left: 10px; }
.vb-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vb-spec-box { border: 1px solid var(--border); padding: 18px; border-radius: 3px; }
.vb-spec-num { font-size: 22px; font-weight: 800; color: var(--fg); }
.vb-spec-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }
.vb-detail-desc { font-size: 14px; line-height: 1.7; color: var(--fg-muted); }

.vb-richtext-content p { margin: 0 0 14px; }
.vb-richtext-content p:last-child { margin-bottom: 0; }
.vb-richtext-content ul, .vb-richtext-content ol { margin: 0 0 14px 20px; padding: 0; }
.vb-richtext-content a { color: var(--deal-accent); text-decoration: underline; }


.vb-detail-video { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.vb-detail-video video { width: 100%; border-radius: 4px; display: block; background: var(--bg-elev); }

.vb-amenities-section { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.vb-amenity-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 14px; }
.vb-amenity-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--fg); }
.vb-amenity-icon { flex: none; width: 22px; height: 22px; color: var(--fg-muted); display: flex; }
.vb-amenity-icon svg { width: 100%; height: 100%; }
.vb-amenity-item.is-no { color: var(--fg-muted); }
.vb-amenity-item.is-no .vb-amenity-label { text-decoration: line-through; }
.vb-amenity-item.is-no .vb-amenity-icon { opacity: .55; }
.vb-amenities-full { margin-top: 4px; }
.vb-amenity-group { margin-top: 24px; }
.vb-amenity-group:first-child { margin-top: 0; }
.vb-amenity-group-title { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--fg); margin-bottom: 14px; }
.vb-amenities-toggle-btn {
  margin-top: 22px;
  padding: 11px 20px;
  border: 1px solid var(--fg);
  border-radius: 3px;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
}
.vb-amenities-toggle-btn:hover { border-color: var(--deal-accent); color: var(--deal-accent); }
@media (max-width: 720px) {
  .vb-amenity-grid { grid-template-columns: 1fr; }
}

.vb-detail-sidebar { display: flex; flex-direction: column; gap: 20px; }
.vb-sidebar-card { border: 1px solid var(--border); background: var(--bg-elev); padding: 24px; border-radius: 3px; }

.vb-datepicker { margin: 14px 0; }
.vb-date-chip-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vb-date-chip { border: 1px solid var(--border); border-radius: 3px; padding: 9px 10px; cursor: pointer; transition: border-color .2s ease; }
.vb-date-chip.is-active { border-color: var(--deal-accent); }
.vb-date-chip-label { display: block; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 3px; }
.vb-date-chip-value { font-size: 13px; color: var(--fg); font-weight: 600; text-transform: capitalize; }

.vb-date-calendar { margin-top: 10px; border: 1px solid var(--border); border-radius: 4px; padding: 12px; background: var(--bg); }
.vb-date-cal-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.vb-date-cal-month { font-size: 12.5px; font-weight: 700; color: var(--fg); text-transform: capitalize; }
.vb-date-cal-nav {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border);
  background: transparent; color: var(--fg); cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.vb-date-cal-nav:hover { border-color: var(--deal-accent); }
.vb-date-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.vb-date-cal-weekday { font-size: 9px; text-align: center; color: var(--fg-muted); text-transform: uppercase; padding-bottom: 4px; }
.vb-date-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; border-radius: 50%; border: none; cursor: pointer; color: var(--fg); background: transparent; font-family: inherit;
}
.vb-date-cal-day:hover:not(.is-disabled) { background: var(--bg-elev); }
.vb-date-cal-day.is-outside { color: var(--stone); opacity: .5; }
.vb-date-cal-day.is-disabled { color: var(--stone); opacity: .3; cursor: default; }
.vb-date-cal-day.is-today { box-shadow: inset 0 0 0 1px var(--deal-accent); }
.vb-date-cal-day.is-inrange { background: var(--deal-accent-soft, var(--bg-elev)); border-radius: 0; }
.vb-date-cal-day.is-selected { background: var(--deal-accent); color: var(--deal-accent-ink); font-weight: 700; }


.vb-booking-breakdown { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; display: flex; flex-direction: column; gap: 8px; }
.vb-booking-line { display: flex; align-items: baseline; gap: 6px; font-size: 12.5px; color: var(--fg-muted); }
.vb-booking-line > span:first-child { white-space: nowrap; }
.vb-booking-dots { flex: 1; border-bottom: 1px dotted var(--border); margin-bottom: 3px; min-width: 10px; }
.vb-booking-line > span:last-child { color: var(--fg); font-weight: 600; white-space: nowrap; }
.vb-booking-line.is-discount > span:last-child { color: var(--deal-accent); }
.vb-booking-line.is-total { border-top: 1px solid var(--border); padding-top: 8px; margin-top: 2px; }
.vb-booking-line.is-total span { font-weight: 800; color: var(--fg); font-size: 14px; }

@media (max-width: 380px) {
  .vb-date-chip-row { grid-template-columns: 1fr; }
}

.vb-service-cta { border: 1px solid var(--border); background: var(--bg-elev); padding: 18px 22px; border-radius: 4px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.vb-service-cta-text { flex: 1; min-width: 200px; }
.vb-service-cta-title { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--fg); margin-bottom: 3px; }
.vb-service-cta-body { font-size: 12.5px; line-height: 1.5; color: var(--fg-muted); }
.vb-service-cta .vb-btn { padding: 11px 20px; flex: none; }

@media (max-width: 600px) {
  .vb-service-cta { padding: 16px; }
}
@media (max-width: 900px) {
  .vb-detail-body { grid-template-columns: 1fr; padding: 32px 20px; }
  .vb-specs { grid-template-columns: repeat(2, 1fr); }
  .vb-guest-capacity { align-items: flex-start; }
}

.vb-notfound { padding: 100px 20px; text-align: center; }
.vb-notfound h1 { font-family: var(--font-display); font-weight: 500; font-size: 30px; margin-bottom: 12px; }
.vb-notfound p { color: var(--fg-muted); margin-bottom: 20px; }

/* ---------- Services (concierge) ---------- */

.vb-service-included {
  margin: 0 44px 12px;
  padding: 40px 44px;
  border-radius: 6px;
  background: var(--deal-accent-soft);
  border: 1px solid var(--deal-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.vb-service-included-text { max-width: 800px; }
.vb-service-included-kicker { font-size: 11px; letter-spacing: .14em; font-weight: 700; color: var(--deal-accent); margin-bottom: 12px; }
.vb-service-included-title { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--fg); letter-spacing: -.01em; margin-bottom: 10px; text-wrap: balance; }
.vb-service-included-body { font-size: 14px; line-height: 1.65; color: var(--fg-muted); }
.vb-service-included .vb-btn { padding: 15px 30px; flex: none; }

.vb-service-final-cta { padding: 8px 44px 64px; }
.vb-service-final-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 40px;
  font-size: 15px;
  letter-spacing: .09em;
  border-radius: 6px;
}

@media (max-width: 720px) {
  .vb-service-final-cta { padding: 4px 20px 48px; }
  .vb-service-final-cta-btn { padding: 22px 24px; font-size: 13px; }
  .vb-service-included { margin: 0 20px 12px; padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .vb-service-included .vb-btn { width: 100%; text-align: center; }
}

.vb-adv-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .vb-adv-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vb-adv-grid-4 { grid-template-columns: 1fr; }
}

.vb-adv-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) {
  .vb-adv-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .vb-adv-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .vb-adv-grid-5 { grid-template-columns: 1fr; }
}

.vb-adv-card-iconbox { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--deal-accent-soft); color: var(--deal-accent); }
.vb-adv-card-iconbox svg { width: 44px; height: 44px; }
.vb-adv-card-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Contact ---------- */

.vb-contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; padding: 48px 44px 72px; }
.vb-form { display: flex; flex-direction: column; gap: 18px; }
.vb-form label { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 6px; display: block; }
.vb-form input, .vb-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  padding: 10px 0;
}
.vb-form input:focus, .vb-form textarea:focus { outline: none; border-color: var(--accent); }
.vb-form textarea { resize: vertical; min-height: 90px; }
.vb-form-success { display: none; border: 1px solid var(--accent); padding: 24px; border-radius: 3px; }
.vb-form-success.is-visible { display: block; }
.vb-form.is-hidden { display: none; }
.vb-contact-info { display: flex; flex-direction: column; gap: 20px; }
.vb-info-row { border-top: 1px solid var(--border); padding-top: 14px; }
.vb-info-label { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.vb-info-value { font-size: 14px; color: var(--fg); }

@media (max-width: 900px) {
  .vb-contact-grid { grid-template-columns: 1fr; padding: 32px 20px 56px; gap: 36px; }
}

/* ---------- Preloader ---------- */

.vb-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity .5s ease;
}
.vb-preloader.is-done { opacity: 0; pointer-events: none; }
.vb-preloader-kicker { font: 700 11px var(--font-body); letter-spacing: .18em; color: var(--accent); text-transform: uppercase; }
.vb-preloader-welcome { font-family: var(--font-display); font-weight: 500; font-size: 34px; color: var(--fg); text-align: center; padding: 0 20px; text-wrap: balance; }
.vb-preloader-pct { font: 600 12px ui-monospace, 'SFMono-Regular', Menlo, monospace; color: var(--fg-muted); letter-spacing: .04em; font-variant-numeric: tabular-nums; }

/* ---------- Locations carousel (embedded on homepage) ---------- */

.vb-loc-home { position: relative; background: var(--bg); padding: 64px 44px 72px; overflow: hidden; }
.vb-loc-home-head { margin-bottom: 32px; }
.vb-loc-slide { display: none; }
.vb-loc-slide.is-active { display: block; }

.vb-loc-visual { position: relative; height: 420px; overflow: hidden; }
.vb-loc-visual .vb-imgslot { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vb-loc-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 16, .05) 0%, rgba(20, 18, 16, .6) 48%, rgba(20, 18, 16, .9) 100%);
  pointer-events: none;
}
.vb-loc-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  perspective: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vb-loc-ring-anchor { position: absolute; top: 50%; left: 50%; width: 0; height: 0; transform-style: preserve-3d; transform: rotateX(14deg); }
.vb-loc-ring { position: relative; transform-style: preserve-3d; animation: vb-spin 24s linear infinite; }

.vb-loc-info { margin-top: 28px; }
.vb-loc-kicker { font-size: 11px; letter-spacing: .16em; color: var(--stone); text-transform: uppercase; margin-bottom: 10px; }
.vb-loc-name { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--fg); margin-bottom: 12px; text-wrap: balance; }
.vb-loc-desc { font-size: 14.5px; line-height: 1.7; color: var(--fg-muted); max-width: 620px; }
.vb-loc-meta { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.vb-loc-count { font-size: 12px; color: var(--fg-muted); }
.vb-loc-count strong { color: var(--deal-accent); font-weight: 700; }

.vb-loc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
.vb-loc-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: none;
}
.vb-loc-arrow:hover { border-color: var(--deal-accent); color: var(--deal-accent); }
.vb-loc-dots { display: flex; gap: 8px; }
.vb-loc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; }
.vb-loc-dot.is-active { background: var(--deal-accent); width: 20px; border-radius: 4px; }

@media (max-width: 900px) {
  .vb-loc-visual { height: 320px; }
}
@media (max-width: 640px) {
  .vb-loc-visual { height: 260px; }
  .vb-loc-shape { width: 72%; }
}
@media (max-width: 720px) {
  .vb-loc-home { padding: 44px 20px 56px; }
  .vb-loc-name { font-size: 27px; }
}

/* ---------- Fleet (service page) ---------- */

.vb-fleet-section { padding: 0 44px 64px; background: var(--bg); }

@media (max-width: 720px) {
  .vb-fleet-section { padding: 0 20px 48px; }
}

/* ---------- Partners ---------- */

.vb-partners-group { padding: 0 44px 48px; }
.vb-partners-group-title { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.vb-partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.vb-partner-card {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 22px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  min-height: 84px;
}
.vb-partner-name { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--fg); }

@media (max-width: 720px) {
  .vb-partners-group { padding: 0 20px 36px; }
}

/* ---------- Morph buttons (gentle outline on hover — no spin) ---------- */
/* Applied automatically to every .vb-btn, plus anything manually tagged .vb-morph (circular CTAs, arrows) */

.vb-morph, .vb-btn { position: relative; isolation: isolate; }
.vb-morph::before, .vb-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid var(--deal-accent);
  opacity: 0;
  transform: scale(.94);
  transition: opacity .35s ease, transform .35s ease;
  z-index: -1;
  pointer-events: none;
}
.vb-morph:hover::before, .vb-btn:hover::before { opacity: .5; transform: scale(1); }

/* .vb-scrollcue must stay absolutely positioned even though .vb-morph sets position:relative — this two-class
   selector always wins on specificity, so it's safe regardless of rule order in this file. */
.vb-scrollcue.vb-morph, .vb-lightbox-close.vb-morph, .vb-lightbox-arrow.vb-morph { position: absolute; }

/* ---------- Partners marquee ---------- */

.vb-marquee-section { background: var(--bg-elev); padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.vb-marquee-head { max-width: 1180px; margin: 0 auto 18px; padding: 0 44px; font-size: 11px; letter-spacing: .14em; color: var(--stone); text-transform: uppercase; }
.vb-marquee-viewport { overflow: hidden; }
.vb-marquee-track { display: flex; gap: 20px; width: max-content; animation: vb-marquee 34s linear infinite; }
.vb-marquee-item {
  flex: none;
  padding: 12px 26px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--fg-muted);
  white-space: nowrap;
}
@keyframes vb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 720px) {
  .vb-marquee-head { padding: 0 20px; }
}

/* ---------- Motion & contrast preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  .vb-preloader { display: none !important; }
  .vb-scrollcue, .vb-loc-ring, .vb-hero-shape-ring, .vb-marquee-track { animation: none !important; }
}

/* ---------- Admin panel ---------- */

.vb-admin { max-width: 1180px; margin: 0 auto; padding: 32px 44px 80px; }
.vb-admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.vb-admin-title { font-family: var(--font-display); font-size: 24px; color: var(--fg); }
.vb-admin-back { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-muted); }
.vb-admin-back:hover { color: var(--fg); }
.vb-admin-header-right { display: flex; align-items: center; gap: 16px; }
.vb-admin-user { font-size: 11px; letter-spacing: .04em; color: var(--fg-muted); display: flex; align-items: center; gap: 6px; }
.vb-admin-user strong { color: var(--fg); font-weight: 600; }
.vb-admin-role-tag { font-size: 8.5px; text-transform: uppercase; letter-spacing: .05em; border: 1px solid var(--border); border-radius: 100px; padding: 1px 7px; color: var(--fg-muted); }
.vb-admin-logout { background: none; border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-muted); cursor: pointer; }
.vb-admin-logout:hover { border-color: #b5432f; color: #b5432f; }

.vb-admin-tabs { display: flex; gap: 6px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.vb-admin-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 4px 12px;
  margin-right: 22px;
  font-size: 13px;
  font-family: inherit;
  color: var(--fg-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vb-admin-tab:hover { color: var(--fg); }
.vb-admin-tab.is-active { color: var(--fg); border-bottom-color: var(--deal-accent); font-weight: 600; }
.vb-admin-tab-count {
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vb-admin-tab-count.is-new { background: var(--deal-accent); border-color: var(--deal-accent); color: var(--deal-accent-ink); font-weight: 700; }
.vb-admin-tabpanel { display: none; }
.vb-admin-tabpanel.is-active { display: block; }

.vb-admin-notice {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-left: 3px solid var(--deal-accent);
  padding: 16px 20px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.vb-admin-notice strong { color: var(--fg); }

.vb-admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.vb-admin-toolbar-right { display: flex; gap: 12px; align-items: center; }
.vb-admin-link-btn { background: none; border: none; color: var(--fg-muted); font-size: 12px; text-decoration: underline; cursor: pointer; }

.vb-admin-search { margin-bottom: 14px; }
.vb-admin-search input {
  width: 100%;
  max-width: 340px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--fg);
  font-family: inherit;
  font-size: 13px;
  padding: 10px 12px;
}
.vb-admin-search input:focus { outline: none; border-color: var(--deal-accent); }

.vb-admin-table-wrap { border: 1px solid var(--border); border-radius: 4px; overflow-x: auto; }
.vb-admin-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.vb-admin-table th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.vb-admin-table td { padding: 12px 14px; font-size: 13px; color: var(--fg); border-bottom: 1px solid var(--border); vertical-align: middle; }
.vb-admin-table tr:last-child td { border-bottom: none; }
.vb-admin-table tr:hover td { background: var(--bg-elev); }
.vb-admin-tag-new { font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--deal-accent); border: 1px solid var(--deal-accent); border-radius: 100px; padding: 2px 7px; margin-left: 6px; }
.vb-admin-row-actions { display: flex; gap: 8px; }
.vb-admin-row-actions button {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
}
.vb-admin-row-actions button:hover { border-color: var(--deal-accent); color: var(--deal-accent); }
.vb-admin-row-actions button.is-danger:hover { border-color: #b5432f; color: #b5432f; }
.vb-admin-badge-select { font-size: 12px; }

.vb-leads-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.vb-leads-table th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.vb-leads-table td { padding: 12px 14px; font-size: 13px; color: var(--fg); border-bottom: 1px solid var(--border); vertical-align: top; }
.vb-leads-table tr:last-child td { border-bottom: none; }
.vb-leads-table tr.is-new td { background: color-mix(in srgb, var(--deal-accent) 6%, transparent); }
.vb-lead-name { font-weight: 600; color: var(--fg); }
.vb-lead-contact { font-size: 11.5px; color: var(--fg-muted); margin-top: 2px; }
.vb-lead-message { font-size: 12.5px; color: var(--fg-muted); max-width: 320px; line-height: 1.5; }
.vb-lead-source { font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--fg-muted); border: 1px solid var(--border); border-radius: 100px; padding: 2px 8px; white-space: nowrap; }
.vb-lead-date { font-size: 11.5px; color: var(--fg-muted); white-space: nowrap; }
.vb-lead-status-select {
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--fg);
  cursor: pointer;
}
.vb-lead-status-select.status-new { border-color: var(--deal-accent); color: var(--deal-accent); }
.vb-lead-status-select.status-contacted { border-color: #8a8577; color: var(--fg); }
.vb-lead-status-select.status-closed { border-color: var(--border); color: var(--fg-muted); }
.vb-admin-empty { padding: 40px 20px; text-align: center; font-size: 13px; color: var(--fg-muted); }

.vb-admin-panel {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, .7);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  z-index: 400;
  overflow-y: auto;
}
.vb-admin-panel.is-open { display: flex; }
.vb-admin-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  width: 100%;
  max-width: 620px;
}
.vb-admin-form h2 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin: 0 0 20px; color: var(--fg); }
.vb-admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vb-admin-field { display: flex; flex-direction: column; gap: 5px; }
.vb-admin-field.full { grid-column: 1 / -1; }
.vb-admin-field label { font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--fg-muted); }
.vb-admin-field input, .vb-admin-field select, .vb-admin-field textarea {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 9px 11px;
  border-radius: 3px;
  font-size: 13px;
  font-family: inherit;
}
.vb-admin-section-title {
  grid-column: 1 / -1;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--deal-accent);
  font-weight: 700;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.vb-admin-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.vb-admin-photo-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vb-admin-photo-cell { display: flex; flex-direction: column; gap: 8px; }
.vb-admin-photo-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-elev);
}
.vb-admin-photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vb-admin-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  padding: 6px;
  background: repeating-linear-gradient(135deg, var(--bg-elev) 0 10px, var(--bg) 10px 20px);
}
.vb-admin-photo-label {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(10, 9, 8, .7);
  color: #f2ece2;
  font-size: 8.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 100px;
  pointer-events: none;
}
.vb-admin-photo-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.vb-admin-photo-tile.is-uploading { opacity: .5; }
.vb-admin-photo-caption {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 12.5px;
  font-family: inherit;
  width: 100%;
}

.vb-richtext { border: 1px solid var(--border); border-radius: 3px; overflow: hidden; background: var(--bg); }
.vb-richtext-toolbar { display: flex; gap: 2px; padding: 5px; background: var(--bg-elev); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.vb-richtext-toolbar button {
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.vb-richtext-toolbar button:hover { border-color: var(--border); color: var(--fg); }
.vb-richtext-body {
  min-height: 84px;
  max-height: 240px;
  overflow-y: auto;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg);
}
.vb-richtext-body:focus { outline: none; }
.vb-richtext-body:empty::before { content: attr(data-placeholder); color: var(--fg-muted); }
.vb-richtext-body p { margin: 0 0 8px; }
.vb-richtext-body p:last-child { margin-bottom: 0; }
.vb-richtext-body ul, .vb-richtext-body ol { margin: 0 0 8px 20px; padding: 0; }
.vb-richtext-body a { color: var(--deal-accent); }

.vb-admin-video-tile {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-elev);
}
.vb-admin-video-tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vb-admin-video-tile.is-uploading { opacity: .5; }
.vb-admin-video-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.vb-admin-video-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 100px;
  background: rgba(10, 9, 8, .75);
  color: #f2ece2;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.vb-admin-amenity-group { margin-bottom: 16px; }
.vb-admin-amenity-group-title { font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.vb-admin-amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.vb-admin-amenity-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--fg-muted);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 12px;
}
.vb-admin-amenity-icon { flex: none; width: 17px; height: 17px; display: flex; }
.vb-admin-amenity-icon svg { width: 100%; height: 100%; }
.vb-admin-amenity-label { flex: 1; line-height: 1.3; }
.vb-admin-amenity-state {
  flex: none;
  font-size: 9.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
}
.vb-admin-amenity-toggle.is-yes { border-color: var(--deal-accent); color: var(--fg); }
.vb-admin-amenity-toggle.is-yes .vb-admin-amenity-state { background: var(--deal-accent); border-color: var(--deal-accent); color: var(--deal-accent-ink); font-weight: 700; }
.vb-admin-amenity-toggle.is-no { opacity: .6; }
.vb-admin-amenity-toggle.is-no .vb-admin-amenity-label { text-decoration: line-through; }
.vb-admin-amenity-toggle.is-no .vb-admin-amenity-state { border-color: #b5432f; color: #b5432f; }

.vb-admin-form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.vb-admin-form-actions button { padding: 10px 22px; border-radius: 3px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; }
.vb-admin-form-actions .is-cancel { background: transparent; border: 1px solid var(--border); color: var(--fg-muted); }
.vb-admin-form-actions .is-save { background: var(--deal-accent); border: 1px solid var(--deal-accent); color: var(--deal-accent-ink); font-weight: 700; }

@media (max-width: 720px) {
  .vb-admin { padding: 24px 20px 56px; }
  .vb-admin-form-grid { grid-template-columns: 1fr; }
  .vb-admin-header-right { width: 100%; justify-content: space-between; }
}

.vb-adminlogin { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.vb-adminlogin-card {
  width: 100%;
  max-width: 360px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vb-adminlogin-title { font-family: var(--font-display); font-size: 22px; color: var(--fg); text-align: center; letter-spacing: .02em; }
.vb-adminlogin-sub { font-size: 12px; color: var(--fg-muted); text-align: center; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.vb-adminlogin-error { display: none; font-size: 12px; color: #b5432f; line-height: 1.5; }
.vb-adminlogin-error.is-visible { display: block; }
.vb-adminlogin-card .vb-btn { width: 100%; justify-content: center; text-align: center; margin-top: 4px; }
.vb-portal-divider { height: 1px; background: var(--border); margin: 4px 0; }

.vb-portal-page { min-height: 100vh; display: flex; flex-direction: column; }
.vb-portal-topbar { display: flex; justify-content: flex-end; align-items: center; gap: 12px; padding: 20px 20px 0; }
.vb-portal-page .vb-adminlogin { flex: 1; min-height: 0; }

.vb-dash-wrap { max-width: 460px; margin: 0 auto; width: 100%; padding: 8px 20px 56px; }
.vb-dash-welcome { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--fg); margin: 8px 0 20px; }
.vb-dash-booking {
  background: var(--deal-accent-soft);
  border: 1px solid var(--deal-accent);
  border-radius: 14px;
  padding: 20px 22px;
}
.vb-dash-booking-kicker { font-size: 10.5px; letter-spacing: .12em; font-weight: 700; color: var(--deal-accent); margin-bottom: 10px; }
.vb-dash-booking-villa { font-family: var(--font-display); font-size: 19px; color: var(--fg); margin-bottom: 6px; }
.vb-dash-booking-meta { font-size: 13px; color: var(--fg-muted); }
.vb-dash-booking-status { display: inline-block; margin-top: 12px; padding: 5px 12px; border-radius: 100px; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--deal-accent); color: var(--deal-accent-ink); }

.vb-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "hero hero"
    "tall sq1"
    "tall sq2";
  gap: 14px;
  margin-top: 28px;
}
.vb-dash-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 14px;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease;
}
.vb-dash-tile:hover { transform: translateY(-3px); border-color: var(--deal-accent); }
.vb-dash-tile-icon { width: 40px; height: 40px; color: var(--deal-accent); }
.vb-dash-tile-icon svg { width: 100%; height: 100%; }
.vb-dash-tile-label { font-size: 13px; font-weight: 600; color: var(--fg); line-height: 1.3; }

.vb-dash-tile-hero {
  grid-area: hero;
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
  padding: 24px 26px;
  gap: 20px;
}
.vb-dash-tile-hero .vb-dash-tile-icon { width: 50px; height: 50px; flex: none; }
.vb-dash-tile-hero .vb-dash-tile-label { font-size: 15px; }
.vb-dash-tile-tall { grid-area: tall; padding: 32px 16px; }
.vb-dash-tile-sq1 { grid-area: sq1; }
.vb-dash-tile-sq2 { grid-area: sq2; }

.vb-dash-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  padding: 18px;
  border-radius: 14px;
  font-size: 13px;
}

@media (max-width: 480px) {
  .vb-dash-wrap { padding: 4px 16px 48px; }
  .vb-dash-tile { padding: 20px 10px; }
  .vb-dash-tile-hero { padding: 20px 18px; }
  .vb-dash-tile-tall { padding: 24px 12px; }
}
