/* ─────────────────────────────────────────────────────────────────────────
   VILLA SUN — SECTIONS STYLES
   ───────────────────────────────────────────────────────────────────────── */

/* ─── HEADER ────────────────────────────────────────────────────────────── */

.vs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color var(--vs-dur-3) var(--vs-ease),
              border-color var(--vs-dur-3) var(--vs-ease),
              backdrop-filter var(--vs-dur-3) var(--vs-ease);
  border-bottom: 1px solid transparent;
  color: var(--vs-pearl);
}
.vs-header.is-scrolled {
  background: rgba(246, 240, 228, 0.88);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--vs-line-soft);
  color: var(--vs-fg);
}
.vs-hero--inline ~ .vs-header { color: var(--vs-fg); }

.vs-header-inner {
  max-width: var(--vs-container);
  margin: 0 auto;
  padding: 18px var(--vs-gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .vs-header-inner { padding: 20px var(--vs-gutter-lg); }
}

.vs-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.vs-logo-mark {
  display: inline-flex;
  align-items: center;
}
.vs-logo-img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}
.vs-logo-mark--footer .vs-logo-img {
  height: 54px;
}
@media (min-width: 1024px) {
  .vs-logo-img { height: 50px; }
  .vs-logo-mark--footer .vs-logo-img { height: 64px; }
}

.vs-nav-main {
  display: none;
  justify-content: center;
  gap: 36px;
}
@media (min-width: 1024px) { .vs-nav-main { display: flex; } }

.vs-nav-link {
  font-family: var(--vs-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-wider);
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  opacity: 0.92;
  transition: opacity var(--vs-dur-1) var(--vs-ease);
}
.vs-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: all var(--vs-dur-2) var(--vs-ease);
}
.vs-nav-link:hover { opacity: 1; }
.vs-nav-link:hover::after { opacity: 0.6; transform: scaleX(1); }

.vs-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.vs-header-cta {
  display: none;
  padding: 12px 22px;
  font-size: 11px;
}
@media (min-width: 768px) { .vs-header-cta { display: inline-flex; } }

.vs-burger {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) { .vs-burger { display: none; } }

/* Lang switcher */
.vs-lang { position: relative; }
.vs-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: inherit;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-wider);
  cursor: pointer;
  padding: 6px 8px;
  opacity: 0.9;
}
.vs-lang-btn:hover { opacity: 1; }
.vs-lang-flag { font-size: 13px; line-height: 1; }
.vs-lang-code { font-feature-settings: "tnum"; }

.vs-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 180px;
  background: var(--vs-pearl);
  border: 0.5px solid var(--vs-line);
  box-shadow: var(--vs-shadow);
  z-index: 50;
  color: var(--vs-fg);
}
[dir="rtl"] .vs-lang-menu { right: auto; left: 0; }

.vs-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 10px 12px;
  font-family: var(--vs-sans);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  color: var(--vs-fg);
  transition: background var(--vs-dur-1) var(--vs-ease);
}
[dir="rtl"] .vs-lang-item { text-align: right; }
.vs-lang-item:hover { background: var(--vs-bg); }
.vs-lang-item.is-active { color: var(--vs-accent-deep); }

/* Mobile menu */
.vs-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--vs-bg);
  color: var(--vs-fg);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform var(--vs-dur-3) var(--vs-ease);
  visibility: hidden;
}
.vs-mobile-menu.is-open { transform: translateY(0); visibility: visible; }

.vs-mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--vs-gutter);
  border-bottom: 0.5px solid var(--vs-line-soft);
}

.vs-mobile-nav {
  flex: 1;
  padding: 32px var(--vs-gutter);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.vs-mobile-nav a {
  font-family: var(--vs-serif);
  font-weight: 300;
  font-size: clamp(40px, 9vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--vs-fg);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--vs-ease), transform 500ms var(--vs-ease), color 200ms;
}
.vs-mobile-menu.is-open .vs-mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}
.vs-mobile-nav a:hover { color: var(--vs-accent-deep); }
.vs-mobile-nav a em { font-style: italic; }
.vs-mobile-num {
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-wider);
  color: var(--vs-fg-muted);
}

.vs-mobile-foot {
  padding: 24px var(--vs-gutter) 32px;
  border-top: 0.5px solid var(--vs-line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vs-mobile-langs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vs-mobile-lang {
  border: 0.5px solid var(--vs-line);
  background: transparent;
  color: var(--vs-fg-soft);
  padding: 8px 14px;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-wider);
  cursor: pointer;
  border-radius: var(--vs-radius-pill);
}
.vs-mobile-lang.is-active {
  background: var(--vs-fg);
  color: var(--vs-bg);
  border-color: var(--vs-fg);
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */

.vs-hero {
  position: relative;
  isolation: isolate;
}

.vs-hero--full,
.vs-hero--video {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 220px;
  color: var(--vs-pearl);
}

.vs-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #2A241D, #1F4651, #B47A5E);
}
.vs-hero-media image-slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,13,0.35) 0%, transparent 30%, transparent 60%, rgba(20,17,13,0.65) 100%);
  pointer-events: none;
}

.vs-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--vs-container);
  padding-inline: var(--vs-gutter);
}
@media (min-width: 1024px) { .vs-hero-content { padding-inline: var(--vs-gutter-lg); } }
.vs-hero-content--center {
  text-align: center;
}

.vs-hero-eyebrow {
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-widest);
  text-transform: uppercase;
  color: var(--vs-gold-300);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.vs-hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.vs-hero-title {
  font-family: var(--vs-serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 12ch;
  color: inherit;
}
.vs-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--vs-gold-300);
}

.vs-hero-content--center .vs-hero-title {
  max-width: 18ch;
  margin-inline: auto;
}

.vs-hero-lead {
  font-family: var(--vs-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  max-width: 460px;
  margin: 0;
  opacity: 0.88;
  color: inherit;
}

.vs-hero-scroll {
  position: absolute;
  bottom: 80px;
  right: var(--vs-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--vs-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-widest);
  text-transform: uppercase;
  opacity: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (min-width: 1024px) { .vs-hero-scroll { right: var(--vs-gutter-lg); } }
.vs-hero-scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, currentColor);
  animation: vs-scroll-anim 2.4s ease-in-out infinite;
}
@keyframes vs-scroll-anim {
  0% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.vs-hero-video-badge {
  position: absolute;
  top: 110px;
  right: var(--vs-gutter);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: var(--vs-tracking-wider);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 0.5px solid rgba(255,255,255,.3);
  border-radius: var(--vs-radius-pill);
  backdrop-filter: blur(8px);
  color: var(--vs-pearl);
}
@media (min-width: 1024px) { .vs-hero-video-badge { right: var(--vs-gutter-lg); } }
.vs-hero-video-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vs-warm);
  animation: vs-pulse 1.6s ease-in-out infinite;
}
@keyframes vs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* Hero split */
.vs-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}
@media (min-width: 900px) {
  .vs-hero-split { grid-template-columns: 1.05fr 1fr; }
}
.vs-hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 140px 80px;
  padding-inline: var(--vs-gutter);
  color: var(--vs-fg);
}
@media (min-width: 1024px) {
  .vs-hero-split-text { padding-inline: var(--vs-gutter-lg); }
}
.vs-hero-split-text .vs-hero-eyebrow { color: var(--vs-accent-deep); }
.vs-hero-split-text .vs-hero-title em { color: var(--vs-accent-deep); }
.vs-hero-split-text .vs-hero-lead { color: var(--vs-fg-soft); margin-bottom: 32px; }
.vs-hero-split-media {
  background: var(--vs-bg-deep);
  min-height: 56vh;
}
.vs-hero-split-media image-slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── BOOKING ──────────────────────────────────────────────────────────── */

.vs-booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.vs-booking-title {
  font-family: var(--vs-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--vs-fg);
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.vs-booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
@media (min-width: 700px) {
  .vs-booking-fields { grid-template-columns: 1fr 1fr 0.7fr 0.7fr; }
}

.vs-booking-cta {
  grid-column: 1 / -1;
  width: 100%;
}
.vs-booking-cta.is-submitted { background: var(--vs-cool); border-color: var(--vs-cool); }

.vs-booking-note {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--vs-fg-muted);
  letter-spacing: var(--vs-tracking-wide);
  text-align: center;
}

/* Floating variant — sticky-bottom over hero */
.vs-booking--floating {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: calc(100% - 2 * var(--vs-gutter));
  max-width: 980px;
  padding: 28px 32px;
  z-index: 5;
}
@media (min-width: 1024px) {
  .vs-booking--floating { bottom: 56px; }
}
@media (max-width: 700px) {
  .vs-booking--floating { padding: 22px; }
  .vs-booking--floating .vs-booking-form { gap: 14px; }
}

/* Inline variant */
.vs-booking-inline-wrap {
  background: var(--vs-bg);
  padding-block: 64px;
}
.vs-booking--inline {
  background: var(--vs-bg-elev);
  border: 0.5px solid var(--vs-line);
  padding: 40px;
}

/* Sticky variant */
.vs-booking--sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(250, 247, 242, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 0.5px solid var(--vs-line);
  z-index: 50;
  padding: 12px 0;
  box-shadow: 0 -8px 30px rgba(31, 26, 20, 0.06);
}
.vs-booking-sticky-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}
@media (min-width: 900px) {
  .vs-booking-sticky-row { grid-template-columns: auto 1fr; gap: 32px; }
}
.vs-booking--sticky .vs-booking-form {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
}
.vs-booking--sticky .vs-booking-title { display: none; }
.vs-booking--sticky .vs-booking-fields {
  display: contents;
}
.vs-booking--sticky .vs-booking-note { display: none; }
.vs-booking--sticky .vs-booking-cta {
  grid-column: auto;
  width: auto;
  padding: 14px 20px;
  font-size: 11px;
}
.vs-booking-sticky-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vs-booking-sticky-from {
  font-family: var(--vs-serif);
  font-size: 22px;
  color: var(--vs-fg);
}
.vs-booking-sticky-from strong { font-weight: 500; }
.vs-booking-sticky-tagline {
  font-size: 11px;
  letter-spacing: var(--vs-tracking-wide);
  color: var(--vs-fg-muted);
}
@media (max-width: 900px) {
  .vs-booking--sticky .vs-booking-form { grid-template-columns: 1fr 1fr; }
  .vs-booking--sticky .vs-booking-cta { grid-column: 1 / -1; }
}

/* ─── INTRO ────────────────────────────────────────────────────────────── */

.vs-intro {
  background: var(--vs-bg);
}
.vs-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 96px;
}
@media (min-width: 900px) {
  .vs-intro-grid { grid-template-columns: 6fr 4fr; gap: 96px; }
}

.vs-intro-text .vs-eyebrow { margin-bottom: 24px; display: inline-block; }
.vs-intro-title { margin-bottom: 40px; max-width: 14ch; }
.vs-intro-text p { margin-bottom: 20px; }

.vs-intro-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 0.5px solid var(--vs-line);
}
.vs-intro-meta > div {
  display: flex;
  flex-direction: column;
  font-family: var(--vs-sans);
  font-size: 10.5px;
  letter-spacing: var(--vs-tracking-wider);
  text-transform: uppercase;
  color: var(--vs-fg-muted);
}
.vs-intro-meta span {
  font-family: var(--vs-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--vs-fg);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.vs-intro-quote {
  position: relative;
  padding: 32px;
  background: var(--vs-bg-elev);
  border-left: 1px solid var(--vs-accent);
}
[dir="rtl"] .vs-intro-quote {
  border-left: 0;
  border-right: 1px solid var(--vs-accent);
}
.vs-quote-mark {
  position: absolute;
  top: -24px;
  left: 24px;
  font-family: var(--vs-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--vs-accent);
  opacity: 0.35;
}
[dir="rtl"] .vs-quote-mark { left: auto; right: 24px; }
.vs-quote-foot {
  margin-top: 24px;
  font-family: var(--vs-sans);
  font-size: 11px;
  letter-spacing: var(--vs-tracking-wider);
  text-transform: uppercase;
  color: var(--vs-fg-muted);
}

.vs-intro-image {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--vs-bg-deep);
}
.vs-intro-image image-slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SECTION HEAD ─────────────────────────────────────────────────────── */

.vs-section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
.vs-section-head .vs-eyebrow { display: inline-block; }
.vs-section-head .vs-h2 { max-width: 16ch; }

.vs-section-head--row {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}
.vs-section-head--center {
  align-items: center;
  text-align: center;
}
.vs-section-head--center .vs-h2 { max-width: none; }

/* ─── FEATURES ─────────────────────────────────────────────────────────── */

.vs-features { background: var(--vs-bg); }

.vs-features-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--vs-line-soft);
  border: 0.5px solid var(--vs-line-soft);
}
@media (min-width: 700px) { .vs-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vs-features-grid { grid-template-columns: repeat(3, 1fr); } }

.vs-feature-card {
  background: var(--vs-bg-elev);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--vs-dur-3) var(--vs-ease);
  position: relative;
}
.vs-feature-card:hover { background: var(--vs-bg); }
.vs-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--vs-warm);
  transition: width var(--vs-dur-3) var(--vs-ease);
}
.vs-feature-card:hover::after { width: 100%; }

.vs-feature-icon {
  color: var(--vs-accent-deep);
  margin-bottom: 8px;
}
.vs-feature-t {
  font-family: var(--vs-serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--vs-fg);
}
.vs-feature-d {
  font-family: var(--vs-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--vs-fg-soft);
  margin: 0;
}

/* ─── GALLERY ──────────────────────────────────────────────────────────── */

.vs-gallery { background: var(--vs-bg); }

.vs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
@media (max-width: 700px) {
  .vs-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: 8px;
  }
  .vs-gallery-cell { grid-column: span 6 !important; grid-row: span 1 !important; aspect-ratio: 4/3 !important; }
  .vs-gallery-cell:nth-child(3n) { grid-column: span 3 !important; }
  .vs-gallery-cell:nth-child(3n+2) { grid-column: span 3 !important; }
}

.vs-gallery-cell {
  position: relative;
  overflow: hidden;
  background: var(--vs-bg-deep);
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--vs-pearl);
}
.vs-gallery-cell image-slot {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 1s var(--vs-ease-out);
}
.vs-gallery-cell:hover image-slot { transform: scale(1.05); }
.vs-gallery-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,17,13,0.5));
  opacity: 0;
  transition: opacity var(--vs-dur-3) var(--vs-ease);
  pointer-events: none;
}
.vs-gallery-cell:hover::after { opacity: 1; }

.vs-gallery-label {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--vs-dur-3) var(--vs-ease);
  z-index: 1;
}
[dir="rtl"] .vs-gallery-label { left: auto; right: 16px; text-align: right; }
.vs-gallery-cell:hover .vs-gallery-label { opacity: 1; transform: translateY(0); }
.vs-gallery-num {
  font-family: var(--vs-sans);
  font-size: 10px;
  letter-spacing: var(--vs-tracking-widest);
  text-transform: uppercase;
  opacity: 0.7;
  font-feature-settings: "tnum";
}

/* Lightbox */
.vs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 9, 7, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 100px;
  animation: vs-fade 300ms var(--vs-ease);
  color: var(--vs-pearl);
}
@media (max-width: 700px) { .vs-lightbox { padding: 60px 16px 80px; } }
@keyframes vs-fade { from { opacity: 0; } to { opacity: 1; } }

.vs-lightbox-inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.vs-lightbox-stage {
  flex: 1;
  background: var(--vs-ink-800);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vs-lightbox-stage image-slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vs-lightbox-caption {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--vs-sans);
  font-size: 13px;
  letter-spacing: var(--vs-tracking-wide);
}
.vs-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,.3);
  color: var(--vs-pearl);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--vs-dur-2);
}
.vs-lightbox-close:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.vs-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,.3);
  color: var(--vs-pearl);
  border-radius: 50%;
  font-family: var(--vs-serif);
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--vs-dur-2);
}
.vs-lightbox-nav:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.vs-lightbox-prev { left: -80px; }
.vs-lightbox-next { right: -80px; }
@media (max-width: 1100px) {
  .vs-lightbox-prev { left: 16px; }
  .vs-lightbox-next { right: 16px; }
}

/* ─── LOCATION ─────────────────────────────────────────────────────────── */

.vs-location { background: var(--vs-bg); }

.vs-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .vs-location-grid { grid-template-columns: 5fr 6fr; gap: 80px; }
}

.vs-location-text .vs-h2 { margin-bottom: 16px; }
.vs-location-text .vs-lead { margin-bottom: 32px; max-width: 28ch; }

.vs-poi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 0.5px solid var(--vs-line);
}
.vs-poi {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--vs-line);
  transition: padding var(--vs-dur-2) var(--vs-ease);
}
.vs-poi:hover { padding-inline: 8px; }
.vs-poi-icon { color: var(--vs-accent); flex-shrink: 0; }
.vs-poi-t {
  font-family: var(--vs-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--vs-fg);
  letter-spacing: -0.01em;
}
.vs-poi-d {
  font-family: var(--vs-sans);
  font-size: 12.5px;
  color: var(--vs-fg-muted);
  letter-spacing: var(--vs-tracking-wide);
  margin-top: 2px;
}
.vs-poi-num {
  font-family: var(--vs-sans);
  font-size: 10px;
  letter-spacing: var(--vs-tracking-widest);
  color: var(--vs-fg-muted);
  font-feature-settings: "tnum";
}

.vs-location-map {
  position: relative;
  background: var(--vs-bg-deep);
  min-height: 480px;
  overflow: hidden;
}
.vs-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vs-location-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-wider);
  text-transform: uppercase;
  color: var(--vs-fg);
}
[dir="rtl"] .vs-location-badge { left: auto; right: 24px; }

/* ─── REVIEWS ──────────────────────────────────────────────────────────── */

.vs-reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--vs-sans);
  font-size: 13px;
  color: var(--vs-fg-soft);
  letter-spacing: var(--vs-tracking-wide);
  margin-top: 12px;
}
.vs-reviews-stars { display: inline-flex; gap: 2px; }
.vs-star-gold { color: var(--vs-accent); }

.vs-reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.vs-reviews-track {
  display: flex;
  transition: transform 700ms var(--vs-ease);
}
.vs-review-card {
  flex: 0 0 100%;
  padding: 56px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.vs-review-stars { display: flex; gap: 4px; }
.vs-review-quote {
  font-family: var(--vs-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--vs-fg);
  max-width: 28ch;
  margin: 0;
}
.vs-review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.vs-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--vs-bg);
  border: 0.5px solid var(--vs-line);
}
.vs-review-avatar image-slot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-review-meta {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
[dir="rtl"] .vs-review-meta { text-align: right; }
.vs-review-name {
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--vs-fg);
}
.vs-review-flag { margin-inline-start: 4px; }
.vs-review-sub {
  font-family: var(--vs-sans);
  font-size: 11px;
  letter-spacing: var(--vs-tracking-wide);
  color: var(--vs-fg-muted);
}
.vs-review-verified { color: var(--vs-accent-deep); font-weight: 600; margin-inline-start: 4px; }

.vs-reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.vs-reviews-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--vs-line);
  background: transparent;
  color: var(--vs-fg);
  font-family: var(--vs-serif);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--vs-dur-2) var(--vs-ease);
}
.vs-reviews-nav:hover { border-color: var(--vs-accent); color: var(--vs-accent-deep); }

.vs-reviews-dots {
  display: flex;
  gap: 8px;
}
.vs-reviews-dot {
  width: 24px;
  height: 1px;
  background: var(--vs-line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all var(--vs-dur-2) var(--vs-ease);
}
.vs-reviews-dot.is-active {
  background: var(--vs-accent);
  width: 40px;
}

.vs-reviews-sources {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 0.5px solid var(--vs-line);
  flex-wrap: wrap;
  font-family: var(--vs-sans);
  font-size: 11px;
  letter-spacing: var(--vs-tracking-widest);
  text-transform: uppercase;
  color: var(--vs-fg-muted);
}
.vs-src-logo {
  font-family: var(--vs-serif);
  font-style: italic;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--vs-fg-soft);
}
.vs-src-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--vs-line);
}

/* ─── FAQ ──────────────────────────────────────────────────────────────── */

.vs-faq { background: var(--vs-bg); }

.vs-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .vs-faq-grid { grid-template-columns: 4fr 7fr; gap: 96px; }
}

.vs-faq-head { position: sticky; top: 120px; }
.vs-faq-head .vs-h2 { margin-top: 16px; }

.vs-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 0.5px solid var(--vs-line);
}
.vs-faq-item { border-bottom: 0.5px solid var(--vs-line); }

.vs-faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--vs-fg);
  transition: color var(--vs-dur-2);
}
[dir="rtl"] .vs-faq-q { text-align: right; }
.vs-faq-q:hover { color: var(--vs-accent-deep); }

.vs-faq-num {
  font-family: var(--vs-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-widest);
  color: var(--vs-fg-muted);
  font-feature-settings: "tnum";
}
.vs-faq-q-text {
  font-family: var(--vs-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.vs-faq-toggle {
  color: var(--vs-accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--vs-dur-3) var(--vs-ease);
}
.vs-faq-item.is-open .vs-faq-a { max-height: 240px; }
.vs-faq-a p {
  font-family: var(--vs-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--vs-fg-soft);
  margin: 0 0 24px;
  max-width: 60ch;
  padding-left: calc(10px + 24px); /* num width + gap */
}
[dir="rtl"] .vs-faq-a p { padding-left: 0; padding-right: calc(10px + 24px); }

/* ─── FOOTER ───────────────────────────────────────────────────────────── */

.vs-footer {
  background: var(--vs-ink-700);
  color: var(--vs-pearl);
  padding: 96px 0 32px;
}

.vs-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid rgba(250, 247, 242, 0.15);
}
@media (min-width: 900px) {
  .vs-footer-top { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.vs-footer-brand { display: flex; flex-direction: column; gap: 24px; }
.vs-footer-tagline {
  color: rgba(250, 247, 242, 0.7);
  max-width: 28ch;
  margin: 0;
}

.vs-footer-newsletter { display: flex; flex-direction: column; gap: 16px; }
.vs-footer-nl-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-bottom: 0.5px solid rgba(250, 247, 242, 0.3);
  padding: 6px 0;
}
.vs-footer-nl-input {
  background: transparent;
  border: 0;
  color: var(--vs-pearl);
  padding: 8px 0;
  font-size: 14px;
}
.vs-footer-nl-input::placeholder { color: rgba(250, 247, 242, 0.45); }
.vs-footer-nl-input:focus { outline: none; }
.vs-footer-nl-cta {
  background: transparent;
  border: 0;
  color: var(--vs-accent);
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-wider);
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 14px;
  transition: color var(--vs-dur-1);
}
.vs-footer-nl-cta:hover { color: var(--vs-pearl); }

.vs-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 64px 0;
  border-bottom: 0.5px solid rgba(250, 247, 242, 0.15);
}
@media (min-width: 700px) { .vs-footer-cols { grid-template-columns: repeat(4, 1fr); } }

.vs-footer-h {
  font-family: var(--vs-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--vs-tracking-widest);
  text-transform: uppercase;
  color: var(--vs-accent);
  margin-bottom: 20px;
}
.vs-footer-cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vs-footer-cols li, .vs-footer-cols a {
  font-family: var(--vs-sans);
  font-size: 13px;
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--vs-dur-1);
}
.vs-footer-cols a:hover { color: var(--vs-pearl); }

.vs-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--vs-sans);
  font-size: 11px;
  letter-spacing: var(--vs-tracking-wide);
  color: rgba(250, 247, 242, 0.5);
}
.vs-footer-mark {
  color: var(--vs-accent);
  font-size: 14px;
}

/* ─── PRELOADER ────────────────────────────────────────────────────────── */

.vs-preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--vs-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 600ms var(--vs-ease), visibility 600ms;
}
.vs-preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.vs-preloader-mark {
  font-family: var(--vs-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--vs-fg);
  letter-spacing: -0.01em;
}
.vs-preloader-line {
  width: 200px;
  height: 1px;
  background: var(--vs-line);
  position: relative;
  overflow: hidden;
}
.vs-preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vs-accent);
  transform: translateX(-100%);
  animation: vs-load 1.6s var(--vs-ease) forwards;
}
@keyframes vs-load {
  to { transform: translateX(0); }
}
