/* Velvet Aura International Spa — production theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --wine: #4a0e18;
  --maroon: #6b1524;
  --maroon-light: #8b1e32;
  --espresso: #0e0809;
  --surface: #1a1012;
  --surface-2: #241618;
  --accent: #e8d5d0;
  --accent-soft: #f3e8e4;
  --accent-deep: #c9a8a0;
  --champagne: #e8d5d0;
  --champagne-soft: #f3e8e4;
  --ink: #f7f0ee;
  --muted: #c4b4b0;
  --border: rgba(232, 213, 208, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
  --top-bar-h: 38px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--espresso);
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 8% 12%, rgba(107, 21, 36, 0.45), transparent),
    radial-gradient(ellipse 45% 35% at 92% 78%, rgba(74, 14, 24, 0.35), transparent),
    linear-gradient(180deg, #0e0809 0%, #140a0c 50%, #0e0809 100%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

em {
  font-style: italic;
  color: var(--champagne-soft);
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--champagne);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  color: var(--ink);
  margin: 14px 0 22px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 10px 0 0;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: gold;
  margin: 22px 0 28px;
}

.about-h-p{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  line-height: 1.4;
  color: var(--champagne-soft);
  text-align: justify;
}

.text-gold {
  color: var(--champagne);
}

/* ——— Loader ——— */
#loader {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}

.loader-mark {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-top-color: var(--champagne);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ——— Navigation ——— */
.navbar {
  padding: 10px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s;
  background: rgba(14, 8, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  margin-top: 0;
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(14, 8, 9, 0.96);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 !important;
  margin: 0;
  line-height: 1;
}

.brand-logo {
  /* Large, unshrinking logo on desktop to convey premium presence */
  width: 100%;
  max-width: 500px;
  height: 52px;
  object-fit: contain;
  display: block;
  padding: 0;
}

footer .brand-logo {
  height: 48px;
  max-width: 170px;
}


.nav-link {
  color: rgba(245, 240, 235, 0.78) !important;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 4px;
  padding: 8px 10px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--border) !important;
  border-radius: 0;
  padding: 8px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
  width: 1.1em;
  height: 1.1em;
}

.nav-cta {
  margin-left: 18px;
  padding: 10px 20px !important;
  border: 1px solid var(--maroon-light);
  color: var(--ink) !important;
  background: var(--maroon);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--maroon-light);
  color: var(--ink) !important;
}

/* --- Custom three-column navbar layout overrides --- */
.custom-navbar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1180px; /* reduce navbar overall width for a tighter, premium layout */
}

.custom-navbar {
  height: 70px;
  overflow: visible;
  align-items: center;
  transition: height 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s, transform 0.35s;
  background: rgba(18,10,10,0.92);
  backdrop-filter: blur(6px);
}

/* Top Header Bar component */
.top-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1045;

  min-height: 38px;
  height: 38px;

  /* Glass Effect */
 background: rgb(14, 8, 9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(5, 99, 0, 0.301);

  transition:
    padding 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.top-header-bar__inner {
  min-height: 38px;
  align-items: center;
}

.top-header-bar__time {
  color: #fffcfc;
  font-size: 14px;
  font-weight: 500;
}

.top-header-bar__icon {
  margin-right: 8px;
  font-size: 16px;
  color: #f2f2f2;
}

.top-header-bar__text {
  color: #f7f5f5;
}

.top-header-bar__social {
  align-items: center;
}

.top-header-bar__divider {
  width: 1px;
  height: 18px;
  background: #dee2e6;
  margin-right: 14px;
}

.top-header-bar__links {
  gap: 14px;
}

.top-header-bar__link {
  color: #eee6e6;
  font-size: 16px;
  transition: all .3s ease;
  display: inline-flex;
}

.top-header-bar__link:hover {
  transform: translateY(-2px);
  color: var(--champagne);
}

.top-header-bar__link:focus-visible {
  outline: 2px solid rgba(232, 213, 208, 0.45);
  outline-offset: 2px;
}

.top-header-bar__link i {
  width: 16px;
  height: 16px;
}

.navbar.fixed-top {
  top: var(--top-bar-h) !important;
}

@media (max-width: 767.98px) {
  .top-header-bar {
    position: fixed;
    height: auto;
    min-height: 38px;
    padding: 6px 0;
  }

  .top-header-bar__inner {
    flex-direction: column;
    gap: 6px;
    align-items: center;
    min-height: 0;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .top-header-bar__time {
    font-size: 12px;
  }

  .top-header-bar__text {
    font-size: 12px;
  }

  .top-header-bar__social {
    width: 100%;
    justify-content: center;
    margin-top: 0 !important;
  }

  .top-header-bar__divider {
    display: none;
  }

  .custom-navbar > .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.custom-navbar .nav-left {
  flex: 0 0 auto;
  max-width: 320px;
  display: flex;
  align-items: center;
}

.custom-navbar .m {
  flex: 1 1 auto;
  min-width: 0;
}

.custom-navbar .nav-cta-wrap {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-left: 16px;
}

.custom-navbar .navbar-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

/* Elegant uppercase typography for nav links */
.custom-navbar .nav-link {
  font-family: Outfit, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 8px 6px !important;
  color: rgba(245,240,235,0.82) !important;
  white-space: nowrap;
}

/* Underline animation */
.custom-navbar .nav-link {
  position: relative;
}
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  bottom: -6px;
  width: 48%;
  height: 2px;
  background: transparent;
  transform-origin: center;
  transition: transform 0.32s var(--ease), background 0.32s var(--ease);
  border-radius: 2px;
}
.custom-navbar .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--champagne);
}
.custom-navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: #D4AF37; /* gold underline for active page */
}

/* Book Now CTA - luxury maroon rounded pill with subtle lift */
.custom-navbar .nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  width: max-content;
  max-width: none;
  flex-shrink: 0;
  padding: 10px 22px !important;
  line-height: 1.2;
  border-radius: 28px !important;
  background: linear-gradient(180deg, var(--maroon) 0%, var(--wine) 100%);
  color: var(--ink) !important;
  box-shadow: 0 6px 18px rgba(107,21,36,0.28);
  transition: transform 0.28s var(--ease), box-shadow 0.28s, background 0.28s;
}
.custom-navbar .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(107,21,36,0.35);
  background: linear-gradient(180deg, var(--maroon-light) 0%, var(--wine) 100%);
}

/* Mobile & tablet responsive behaviour */
@media (max-width: 991.98px) {
  .brand-logo {
    /* width: 180px;
    min-width: auto; */
  }

  .custom-navbar .m {
    position: static;
  }

  .custom-navbar > .container-fluid {
    position: relative;
  }

  /* Collapsed menu opens full-width under the navbar */
  .custom-navbar .navbar-collapse.collapse:not(.show) {
    display: none;
  }

  .custom-navbar .navbar-collapse.collapsing,
  .custom-navbar .navbar-collapse.collapse.show {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(18, 10, 10, 0.98);
    padding: 18px 22px 28px;
    backdrop-filter: blur(8px);
    z-index: 1000;
  }

  .custom-navbar .navbar-collapse .navbar-nav {
    flex-direction: column;
    gap: 14px;
    padding: 8px 0;
    align-items: flex-end;
  }

  .custom-navbar .nav-link::after {
    display: none;
  }

  .custom-navbar .navbar-collapse .nav-link {
    width: 100%;
    text-align: right;
    padding-right: 8px !important;
  }
}

@media (max-width: 575.98px) {
  /* .brand-logo { width: 260px !important; } */
}

/* Slight transparency + transition on scroll (JS toggles .scrolled) */
.custom-navbar.scrolled {
  background: rgba(18, 10, 10, 0.525);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}

/* ——— Buttons ——— */
.btn-luxury,
.btn-outline-luxury {
  border-radius: 0;
  padding: 15px 30px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, color 0.35s;
}

.btn-luxury {
  background: linear-gradient(135deg, var(--maroon-light), var(--wine));
  color: var(--ink);
  border: 0;
}

.btn-outline-luxury {
  border: 1px solid var(--accent-deep);
  color: var(--accent);
  background: transparent;
}

.btn-luxury:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107, 21, 36, 0.45);
}

.btn-outline-luxury:hover {
  background: var(--maroon);
  color: var(--ink);
  border-color: var(--maroon-light);
}

.ripple::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: scale(0) translate(-50%, -50%);
  animation: ripple 0.7s linear;
}

@keyframes ripple {
  to {
    transform: scale(30) translate(-50%, -50%);
    opacity: 0;
  }
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: calc(var(--nav-h) + var(--top-bar-h) + 24px) 0 100px;
  overflow: hidden;
  background: #0e0809;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  animation: heroZoom 22s var(--ease) infinite alternate;
}

.hero-media .hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero-media .hero-fallback.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(12, 8, 8, 0.82) 0%, rgba(12, 8, 8, 0.42) 50%, rgba(12, 8, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(12, 8, 8, 0.7) 0%, transparent 52%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-video {
    animation: none;
    display: none;
  }

  .hero-media .hero-fallback {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin: 0 0 8px;
  animation: fadeUp 1s var(--ease) both;
}

.hero-brand span {
  display: block;
  color: var(--champagne);
  font-size: 0.22em;
  letter-spacing: 0.42em;
  font-family: Outfit, sans-serif;
  font-weight: 400;
  margin-top: 14px;
  text-transform: uppercase;
}

.hero .title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 28px 0 16px;
  max-width: 520px;
  animation: fadeUp 1s 0.15s var(--ease) both;
}

.hero p {
  max-width: 440px;
  font-size: 1.02rem;
  color: rgba(245, 240, 235, 0.72);
  margin: 0;
  animation: fadeUp 1s 0.28s var(--ease) both;
}

.hero .cta-row {
  margin-top: 36px;
  animation: fadeUp 1s 0.4s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-down i {
  color: var(--champagne);
  animation: float 1.8s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(7px); }
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--top-bar-h) + 40px) 0 80px;
  overflow: hidden;
  background: #0e0809;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(12, 8, 8, 0.9) 0%, rgba(61, 12, 20, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 8, 8, 0.5), transparent 40%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 700px;
}

/* ——— Image frame ——— */
.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  min-height: 480px;
  height: 100%;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--champagne);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

/* ——— Surfaces (quiet, not card-heavy) ——— */
.surface {
  background: linear-gradient(160deg, rgba(30, 20, 20, 0.95), rgba(22, 16, 16, 0.85));
  border: 1px solid var(--border-soft);
  border-top: 1px solid var(--border);
}

.feature-card,
.plan-card,
.testimonial {
  height: 100%;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
}

.feature-card {
  padding: 36px 32px;
}

.feature-icon {
  font-size: 1.35rem;
  color: var(--champagne);
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature-card p,
.service-body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ——— Services ——— */
.service-img {
  overflow: hidden;
  position: relative;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 8, 8, 0.35));
  pointer-events: none;
}

.service-body {
  padding: 28px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body .small-link {
  margin-top: auto;
}

.price {
  color: var(--champagne);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.small-link {
  color: var(--champagne);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.small-link i {
  transition: transform 0.3s var(--ease);
  font-size: 0.65rem;
}

.small-link:hover {
  color: var(--champagne-soft);
}

.small-link:hover i {
  transform: translateX(5px);
}

/* ——— Gallery ——— */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
}

.filter-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--champagne);
}

.filter-btn.active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 4px;
  height: 1px;
  background: var(--champagne);
}

.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  transition: transform 0.7s var(--ease), filter 0.7s;
  filter: brightness(0.78);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.4);
}

.gallery-item span {
  opacity: 0;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--ink);
  transition: opacity 0.4s var(--ease);
  letter-spacing: 0.04em;
}

.gallery-item:hover span {
  opacity: 1;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  place-items: center;
  padding: 4%;
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
  border: 1px solid var(--border);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 30px;
  border: 0;
  background: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ——— Membership ——— */
.plan-card {
  padding: 44px 32px;
  position: relative;
}

.plan-card.popular {
  border-color: var(--champagne);
  background: linear-gradient(160deg, rgba(61, 12, 20, 0.55), rgba(22, 16, 16, 0.95));
}

.plan-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--champagne);
  margin: 16px 0 0;
}

.plan-price small {
  font-family: Outfit, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
}

.plan-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.plan-card li i {
  color: var(--champagne);
  margin-right: 10px;
  font-size: 0.75rem;
}

.badge-popular {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--maroon);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ——— Testimonials ——— */
.testimonial {
  padding: 48px 40px;
}

.stars {
  color: var(--champagne);
  font-size: 0.75rem;
  letter-spacing: 4px;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 20px 0 28px;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.client img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.client h6 {
  margin: 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.client small {
  font-size: 0.68rem;
  color: var(--champagne);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-indicators {
  margin-bottom: -12px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--champagne);
  opacity: 0.35;
  border: 0;
}

.carousel-indicators .active {
  opacity: 1;
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-band-media {
  position: absolute;
  inset: 0;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 8, 0.82), rgba(61, 12, 20, 0.75));
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band .section-title {
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 420px;
  margin: 0 auto 32px;
  color: rgba(245, 240, 235, 0.75);
}

/* ——— Contact ——— */
.contact-info i {
  color: var(--champagne);
  font-size: 1rem;
  width: 24px;
  margin-right: 8px;
}

.contact-info h6 {
  color: var(--ink);
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-info p {
  font-size: 0.95rem;
  margin: 0 0 28px;
  padding-left: 32px;
}

.contact-info a:hover {
  color: var(--champagne);
}

.form-panel {
  padding: 40px 36px;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink);
  border-radius: 0;
  padding: 14px 16px;
  font-weight: 300;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: var(--champagne);
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(184, 174, 166, 0.7);
}

.form-select option {
  background: #1e1414;
  color: var(--ink);
}
/* 
.map-placeholder {
  min-height: 340px;
  background:
    linear-gradient(rgba(12, 8, 8, 0.72), rgba(12, 8, 8, 0.72)),
    url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1400&q=80') center / cover;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--border-soft);
}

.map-placeholder h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 8px;
} */



.map-placeholder {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-soft);
}

/* Google Map */
.map-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Dark overlay */
.map-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(12, 8, 8, 0.72); */

background: linear-gradient(
    rgba(12,8,8,.45),
    rgba(12,8,8,.45)
);

    z-index: 1;
}

/* Text above map */
.map-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 700px;
}

.map-placeholder h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #F8F3EA;
    margin-bottom: 8px;
}





/* ——— Footer ——— */
footer {
  background: #080505;
  border-top: 1px solid var(--border);
  padding: 8px 0 28px;
}

footer h5 {
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

footer li {
  margin-bottom: 10px;
  color: var(--muted);
}

footer li a:hover {
  color: var(--champagne);
}

.social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  color: var(--champagne);
  margin-right: 8px;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}

.social a:hover {
  background: var(--maroon);
  color: var(--ink);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid var(--border-soft);
  margin-top: 52px;
  padding-top: 22px;
  font-size: 0.72rem;
  color: rgba(184, 174, 166, 0.7);
  letter-spacing: 0.04em;
}

/* ——— Back to top ——— */
#backTop {
  position: fixed;
  bottom: 24px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--maroon);
  color: var(--ink);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  cursor: pointer;
}

#backTop.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

#backTop:hover {
  background: var(--maroon-light);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Pillars ——— */
.pillars-band {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(22, 16, 16, 0.55);
}

.pillar {
  padding: 28px 16px;
  text-align: center;
  height: 100%;
}

@media (min-width: 992px) {
  .pillars-band .col-lg-3:not(:last-child) .pillar,
  .pillars-band .col-md-4:not(:last-child) .pillar {
    border-right: 1px solid var(--border-soft);
  }
}

.pillar-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--champagne);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 240px;
}

/* ——— Home gallery preview ——— */
.preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 520px;
}

.preview-grid a {
  position: relative;
  overflow: hidden;
  display: block;
}

.preview-grid a:first-child {
  grid-row: 1 / 3;
}

.preview-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 0.7s var(--ease), filter 0.7s;
}

.preview-grid a:hover img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.preview-grid span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.preview-grid a:hover span {
  opacity: 1;
  transform: none;
}

/* ——— Visit strip ——— */
.visit-strip {
  background: linear-gradient(95deg, #12080a, var(--wine) 60%, #1a0a0e);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.visit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-item i {
  color: var(--champagne);
  font-size: 1.15rem;
  margin-top: 4px;
  width: 24px;
}

.visit-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 6px;
  font-weight: 600;
}

.visit-item p {
  margin: 0;
  font-size: 0.9rem;
}

.visit-item a:hover {
  color: var(--champagne);
}
