/* ==========================================================================
   vibezena — global stylesheet
   Premium dark theme: deep pine-teal ink + warm copper/gold accents.
   Custom classes follow a BEM-ish convention (.block, .block__el, .block--mod).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Design tokens ---------- */
:root,
[data-bs-theme="dark"] {
  --vz-ink: #0a1f22;          /* page background — deep teal, not black */
  --vz-ink-2: #0d2a2e;        /* raised surface */
  --vz-ink-3: #12363b;        /* cards */
  --vz-ink-4: #17424a;        /* hover surface */
  --vz-gold: #d9a441;         /* primary accent */
  --vz-copper: #b06a2c;       /* accent shadow tone */
  --vz-teal: #3f9c8e;         /* secondary accent */
  --vz-cream: #f2ead9;        /* main text */
  --vz-muted: rgba(242, 234, 217, 0.62);
  --vz-line: rgba(242, 234, 217, 0.12);
  --vz-gold-line: rgba(217, 164, 65, 0.28);

  /* feed Bootstrap our palette */
  --bs-body-bg: var(--vz-ink);
  --bs-body-color: var(--vz-cream);
  --bs-body-font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  --bs-border-color: var(--vz-line);
  --bs-link-color: var(--vz-gold);
  --bs-link-hover-color: #eab957;
  --bs-heading-color: var(--vz-cream);
}

body,html {
  background-color: var(--vz-ink);
  color: var(--vz-cream);
  font-family: 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--vz-cream);
}

::selection { background: var(--vz-gold); color: var(--vz-ink); }

img { max-width: 100%; }

a { text-decoration: none; }
a:hover { color: var(--vz-gold); }

/* ---------- Shared layout bits ---------- */
.vz-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.vz-section--tight { padding: 64px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vz-gold);
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--vz-gold);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--vz-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
}

/* photo background helpers — url(../images/vibezena_e876e963ba9b4.71854990.jpg) stays empty, build script fills it */
.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Decorative elements ---------- */
.ghost-text {
  position: absolute;
  top: 4%;
  right: -2%;
  font-family: 'Fraunces', serif;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 164, 65, 0.14);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.orb--gold { background: radial-gradient(circle, rgba(217, 164, 65, 0.5), transparent 70%); }
.orb--teal { background: radial-gradient(circle, rgba(63, 156, 142, 0.45), transparent 70%); }
.orb--sm { width: 260px; height: 260px; }
.orb--lg { width: 480px; height: 480px; }

.dot-grid {
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(242, 234, 217, 0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.btn-gold {
  --bs-btn-font-weight: 700;
  background: linear-gradient(135deg, var(--vz-gold), var(--vz-copper));
  border: none;
  color: #14211a;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(217, 164, 65, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, #e8b654, var(--vz-gold));
  color: #14211a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217, 164, 65, 0.4);
}

.btn-outline-cream {
  border: 1px solid rgba(242, 234, 217, 0.35);
  color: var(--vz-cream);
  border-radius: 50px;
  padding: 0.8rem 1.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-outline-cream:hover {
  border-color: var(--vz-gold);
  color: var(--vz-gold);
  background: rgba(217, 164, 65, 0.08);
}

/* ---------- Cards ---------- */
.vz-card {
  background: var(--vz-ink-3);
  border: 1px solid var(--vz-line);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vz-card:hover {
  transform: translateY(-6px);
  border-color: var(--vz-gold-line);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.vz-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vz-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vz-card:hover .vz-card__img img { transform: scale(1.06); }

.vz-card__body { padding: 26px; }

.vz-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vz-ink);
  background: var(--vz-gold);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--vz-muted);
  font-size: 0.86rem;
}

.card-meta i { color: var(--vz-gold); margin-right: 6px; }

.price-chip {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--vz-gold);
}

.price-chip small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--vz-muted);
  font-weight: 500;
}

/* feature / step / review / team cards */
.feature-card {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover { border-color: var(--vz-gold-line); transform: translateY(-4px); }

.feature-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.35rem;
  color: var(--vz-gold);
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid var(--vz-gold-line);
  margin-bottom: 20px;
}

.step-card__num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--vz-gold);
}

.review-card {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}

.review-card__stars { color: var(--vz-gold); letter-spacing: 3px; }

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vz-gold-line);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45); }

.topbar {
  background: var(--vz-ink-2);
  border-bottom: 1px solid var(--vz-line);
  font-size: 0.82rem;
  padding: 8px 0;
  color: var(--vz-muted);
}

.topbar__item { color: var(--vz-muted); }
.topbar__item i { color: var(--vz-gold); margin-right: 7px; }
.topbar__link:hover { color: var(--vz-gold); }

.site-header .navbar {
  background: rgba(10, 31, 34, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vz-line);
  padding: 14px 0;
}

.site-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--vz-gold-line);
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vz-cream);
  letter-spacing: 0.02em;
}

.site-header .nav-link {
  color: var(--vz-cream);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--vz-gold); }

.vz-toggler {
  border: 1px solid var(--vz-gold-line);
  color: var(--vz-gold);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
}

.vz-toggler:focus { box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2); }

.vz-offcanvas {
  background: var(--vz-ink-2);
  color: var(--vz-cream);
  border-left: 1px solid var(--vz-line);
}

.vz-offcanvas .nav-link {
  color: var(--vz-cream);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--vz-line);
}

.vz-offcanvas .nav-link:hover { color: var(--vz-gold); }

.offcanvas-contacts {
  background: var(--vz-ink-3);
  border: 1px solid var(--vz-line);
  border-radius: 16px;
  padding: 18px;
  font-size: 0.9rem;
  color: var(--vz-muted);
}

.offcanvas-contacts i { color: var(--vz-gold); width: 20px; }
.offcanvas-contacts a { color: var(--vz-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--vz-ink-2);
  border-top: 1px solid var(--vz-line);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vz-gold);
  margin-bottom: 20px;
}

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: var(--vz-muted); font-size: 0.94rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-menu a:hover { color: var(--vz-gold); padding-left: 6px; }

.footer-contact { color: var(--vz-muted); font-size: 0.94rem; }
.footer-contact i { color: var(--vz-gold); width: 20px; margin-right: 6px; }
.footer-contact a { color: var(--vz-muted); }
.footer-contact a:hover { color: var(--vz-gold); }

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--vz-line);
  color: var(--vz-muted);
  margin-right: 8px;
  transition: all 0.25s ease;
}

.footer-social a:hover { border-color: var(--vz-gold); color: var(--vz-gold); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid var(--vz-line);
  margin-top: 48px;
  padding: 24px 0;
  font-size: 0.84rem;
  color: var(--vz-muted);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  font-weight: 600;
}

.hero__title em {
  font-style: italic;
  color: var(--vz-gold);
}

.hero__lead {
  font-size: 1.15rem;
  color: rgba(242, 234, 217, 0.82);
  line-height: 1.7;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid var(--vz-gold-line);
  color: var(--vz-gold);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--vz-line);
  padding-top: 30px;
  margin-top: 44px;
}

.stat__num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vz-gold);
  line-height: 1;
}

.stat__label { color: var(--vz-muted); font-size: 0.85rem; margin-top: 6px; }

/* inner pages hero (shorter) */
.page-hero {
  position: relative;
  padding: 110px 0 80px;
}

.page-hero .hero__title { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--vz-line);
  border-bottom: 1px solid var(--vz-line);
  padding: 18px 0;
  background: var(--vz-ink-2);
}

.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: vz-scroll 30s linear infinite;
}

.marquee__item {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--vz-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
}

.marquee__item i { color: var(--vz-gold); font-size: 0.7rem; }

@keyframes vz-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Accordion / FAQ ---------- */
.vz-accordion .accordion-item {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.vz-accordion .accordion-button {
  background: var(--vz-ink-2);
  color: var(--vz-cream);
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  padding: 20px 24px;
  box-shadow: none;
}

.vz-accordion .accordion-button:not(.collapsed) {
  background: var(--vz-ink-3);
  color: var(--vz-gold);
}

.vz-accordion .accordion-button:focus { box-shadow: none; border: none; }
.vz-accordion .accordion-body { color: var(--vz-muted); padding: 0 24px 22px; line-height: 1.7; }
.vz-accordion .accordion-button::after { filter: invert(0.8) sepia(0.6) saturate(3) hue-rotate(10deg); }

/* ---------- Forms ---------- */
.vz-form .form-control,
.vz-form .form-select {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  color: var(--vz-cream);
  border-radius: 12px;
  padding: 14px 18px;
}

.vz-form .form-control::placeholder { color: rgba(242, 234, 217, 0.4); }

.vz-form .form-control:focus,
.vz-form .form-select:focus {
  background: var(--vz-ink-2);
  border-color: var(--vz-gold);
  color: var(--vz-cream);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.12);
}

.vz-form .form-label { font-weight: 700; font-size: 0.88rem; color: var(--vz-cream); }

.form-check-input { background-color: var(--vz-ink-3); border-color: var(--vz-line); }
.form-check-input:checked { background-color: var(--vz-gold); border-color: var(--vz-gold); }

/* ---------- Toast notification ---------- */
.vz-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  background: var(--vz-ink-3);
  border: 1px solid var(--vz-gold-line);
  border-left: 4px solid var(--vz-gold);
  border-radius: 14px;
  padding: 16px 22px;
  color: var(--vz-cream);
  font-weight: 600;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  max-width: 360px;
}

.vz-toast.is-visible { transform: translateY(0); opacity: 1; }
.vz-toast i { color: var(--vz-gold); font-size: 1.2rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1900;
  max-width: 520px;
  background: var(--vz-ink-3);
  border: 1px solid var(--vz-gold-line);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(160%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible { transform: translateY(0); }

@media (min-width: 768px) { .cookie-banner { right: auto; } }

/* ---------- Booking modal ---------- */
.booking-modal .modal-content {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-gold-line);
  border-radius: 22px;
  color: var(--vz-cream);
}

.booking-modal .modal-header { border-bottom: 1px solid var(--vz-line); }
.booking-modal .modal-title { font-family: 'Fraunces', serif; }
.booking-modal .btn-close { filter: invert(1); }

.booking-modal__success {
  text-align: center;
  padding: 30px 10px;
}

.booking-modal__success i {
  font-size: 3rem;
  color: var(--vz-gold);
  margin-bottom: 16px;
}

/* ---------- Disclaimer (18+) ---------- */
.disclaimer {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  border-radius: 22px;
  padding: 40px;
}

.disclaimer h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; }

.disclaimer .age-badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--vz-gold);
  color: var(--vz-gold);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.disclaimer ul { color: var(--vz-muted); line-height: 1.9; padding-left: 20px; }

.harm-warning {
  background: rgba(176, 106, 44, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 28px;
}

.harm-warning h4 { color: var(--vz-gold); font-size: 1.15rem; }

/* ---------- Gallery strip ---------- */
.gallery-strip .vz-card__img { aspect-ratio: 4 / 3; border-radius: 16px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--vz-gold), transparent);
}

.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--vz-gold);
  box-shadow: 0 0 0 5px rgba(217, 164, 65, 0.15);
}

.timeline__year {
  font-family: 'Fraunces', serif;
  color: var(--vz-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- Split feature rows ---------- */
.img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--vz-line);
}

.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-frame--tall { aspect-ratio: 4 / 5; }
.img-frame--wide { aspect-ratio: 16 / 11; }

.float-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(10, 31, 34, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--vz-gold-line);
  border-radius: 14px;
  padding: 14px 20px;
  color: var(--vz-cream);
  font-size: 0.85rem;
}

.float-badge strong { display: block; color: var(--vz-gold); font-size: 1rem; }

/* ---------- Contact / info cards ---------- */
.info-card {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
}

.info-card i { color: var(--vz-gold); font-size: 1.4rem; margin-bottom: 14px; display: inline-block; }

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--vz-line);
  filter: grayscale(0.4) sepia(0.12);
}

.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Page hero crumbs ---------- */
.crumbs { font-size: 0.85rem; color: var(--vz-muted); margin-bottom: 18px; }
.crumbs a { color: var(--vz-muted); }
.crumbs a:hover { color: var(--vz-gold); }
.crumbs i { font-size: 0.65rem; margin: 0 8px; color: var(--vz-gold); }

/* ---------- Legal pages ---------- */
.legal-section {
  background: var(--vz-ink-2);
  border: 1px solid var(--vz-line);
  border-radius: 20px;
  padding: 34px;
  margin-bottom: 24px;
}

.legal-section h2 { font-size: 1.45rem; margin-bottom: 14px; }
.legal-section p, .legal-section li { color: var(--vz-muted); line-height: 1.8; }

/* ---------- Utilities ---------- */
.text-gold { color: var(--vz-gold) !important; }
.text-muted-vz { color: var(--vz-muted) !important; }
.bg-ink-2 { background: var(--vz-ink-2); }
.bg-ink-3 { background: var(--vz-ink-3); }
.rounded-vz { border-radius: 20px; }
.border-vz { border: 1px solid var(--vz-line); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .vz-section { padding: 72px 0; }
  .hero { min-height: auto; padding: 100px 0 70px; }
  .stats-strip { gap: 26px; }
  .ghost-text { font-size: 4.5rem; }
}

@media (max-width: 575.98px) {
  .vz-section { padding: 56px 0; }
  .stats-strip { gap: 20px; }
  .stat__num { font-size: 1.7rem; }
  .disclaimer { padding: 26px; }
}
