/* ============================================================
   DIVINE PEARL — STYLES.CSS
   Complete Ground-Up Build
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────── */
:root {
  --deep-purple: #1B1035;
  --gold: #D4AF37;
  --gold-light: rgba(212, 175, 55, 0.15);
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --near-black: #111111;
  --mid-grey: #666666;
  --text-light: rgba(255, 255, 255, 0.75);

  --font-serif: 'Playfair Display', serif;
    --font: 'Inter', sans-serif;
  --label-size: 11px;
  --label-spacing: 0.22em;
  --body-size: 16px;
  --body-line: 1.75;
}


/* ── TYPOGRAPHY UTILITIES ─────────────────────────── */
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

.sans {
  font-family: var(--font);
}


/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--near-black);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  position: relative;
  z-index: 1;
}

nav, footer {
  position: relative;
  z-index: 1;
}

/* ── PEARL AMBIENT CANVAS ─────────────────────────────── */
#pearl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9;
  opacity: 0;
  transition: opacity 1s ease;
}

#pearl-canvas.visible {
  opacity: 1;
}

/* ── SHARED UTILITIES ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}


.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}


.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--near-black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

/* Fade up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold divider */
.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto;
}

/* Gold filled button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--near-black);
  border: 1px solid var(--gold);
  border-radius: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font);
}

.btn-gold:hover {
  background: #C4A133;
  color: var(--near-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Gold link */
.link-gold {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.link-gold:hover {
  border-color: var(--gold);
}

/* Dark gold link */
.link-gold-dark {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--near-black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.3s ease;
  margin-top: 12px;
}

.link-gold-dark:hover {
  color: var(--gold);
}

/* ── NAVIGATION ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(27, 16, 53, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.7);
  padding: 10px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--near-black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10, 8, 20, 0.85) 0%, rgba(10, 8, 20, 0.5) 45%, rgba(10, 8, 20, 0.1) 100%),
    linear-gradient(to top, rgba(10, 8, 20, 0.6) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 7%;
  max-width: 620px;
}

.hero-headline {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Pearl necklace decorative element */
.hero-pearl-necklace {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 90px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-pearl-necklace svg {
  width: 100%;
  height: 100%;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  left: 7%;
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-section {
  background: var(--deep-purple);
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 28px;
  letter-spacing: -0.02em;
}

.about-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 52ch;
}

.about-image {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  z-index: -1;
  pointer-events: none;
}

/* ── FEATURES ────────────────────────────────────────── */
.features-section {
  background: var(--off-white);
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 72px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.7;
  max-width: 24ch;
  margin: 0 auto;
}

/* ── VENUE SPACES ────────────────────────────────────── */
.venue-section {
  background: var(--white);
}

.venue-block {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 580px;
}

.venue-block.reverse {
  grid-template-columns: 45% 55%;
}

.venue-block.reverse .venue-img {
  order: 2;
}

.venue-block.reverse .venue-text {
  order: 1;
}

.venue-img {
  overflow: hidden;
}

.venue-img img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.venue-block:hover .venue-img img {
  transform: scale(1.04);
}

.venue-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FAFAFA;
}

.venue-block.reverse .venue-text {
  background: var(--off-white);
}

.venue-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--near-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}

.venue-text p {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 32px;
}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-section {
  background: #1B1035;
  padding: 120px 0;
}

.gallery-header {
  margin-bottom: 56px;
}

.gallery-header h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 16, 53, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item-overlay span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(27, 16, 53, 0.45);
}

.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 20, 0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 1001;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #D4AF37;
  color: #111111;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ── PACKAGES ────────────────────────────────────────── */
.packages-section {
  position: relative;
  padding: 120px 0;
  background: var(--deep-purple);
  overflow: hidden;
}

.packages-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/packages-background.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.packages-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.packages-intro h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.packages-intro p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 40ch;
}

.packages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pkg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(212, 175, 55, 0.5);
  padding: 40px 32px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.pkg-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}

.pkg-card.featured {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-top: 2px solid var(--gold);
}

.pkg-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 16px;
}

.pkg-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pkg-list {
  list-style: none;
  margin-bottom: 32px;
}

.pkg-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  line-height: 1.4;
}

.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.pkg-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 3px;
  display: inline-block;
  transition: border-color 0.3s ease;
}

.pkg-cta:hover {
  border-color: var(--gold);
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 120px 0;
  background: var(--deep-purple);
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/contact-cta.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.15;
}

.contact-cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.contact-cta-block h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
}

.contact-cta-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-bottom {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-detail a,
.contact-detail address {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.6;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  font-family: var(--font);
  margin-bottom: 14px;
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form select option {
  background: var(--deep-purple);
  color: var(--white);
}

.contact-form select {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .form-row input,
.contact-form .form-row select {
  margin-bottom: 0;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--deep-purple);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col > p,
.footer-col address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-style: normal;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  color: rgba(212, 175, 55, 0.6);
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--gold);
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-col nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-layout {
    grid-template-columns: 1fr;
  }

  .packages-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  #hero {
    height: 100svh;
    align-items: center; justify-content: flex-end; flex-direction: column;
    
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(10, 8, 20, 0.95) 0%, rgba(10, 8, 20, 0.75) 25%, transparent 60%);
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-headline {
    margin-bottom: 24px;
  }

  .hero-sub {
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-image {
    margin-top: 0;
  }

  .about-image img {
    height: 55vw;
    min-height: unset;
  }

  .about-image::before {
    display: none;
  }

  .features-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
  }

  .venue-block,
  .venue-block.reverse {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .venue-block.reverse .venue-img,
  .venue-block.reverse .venue-text {
    order: unset;
  }

  .venue-img img {
    min-height: unset;
    height: 60vw;
  }

  .venue-text {
    padding: 48px 24px;
  }

  .gallery-section {
    padding: 80px 0 60px;
  }

  .gallery-item {
    flex: 0 0 280px;
  }

  .packages-section {
    padding: 80px 0;
  }

  .packages-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .packages-cards {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  footer {
    padding: 60px 0 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  
  .nav-close {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-bottom: 32px;
    align-self: flex-end;
  }

  .nav-close span {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
  }

  .nav-close span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: rgba(27, 16, 53, 0.98);
    backdrop-filter: blur(16px);
    padding: 80px 40px 48px;
    gap: 0;
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 14px;
  }

  .nav-links a:hover {
    color: #D4AF37;
  }

  .nav-links::after {
    content: 'Schedule A Tour →';
    display: inline-flex;
    align-items: center;
    margin-top: 32px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: #D4AF37;
    color: #111111;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    justify-content: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }


  
    to { opacity: 1; transform: translateY(0); }
  }

  

  #navbar {
    padding: 0 24px;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .packages-cards {
    grid-template-columns: 1fr;
  }
}

.nav-close {
  display: none;
}

/* ── TYPOGRAPHY FIXES ────────────────────────────────── */
body {
  font-size: 17px;
  line-height: 1.8;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.nav-cta {
  font-size: 13px;
  padding: 12px 28px;
}

.label {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.section-header h2,
.about-content h2,
.gallery-header h2,
.packages-intro h2,
.contact-cta-block h2 {
  font-size: clamp(38px, 5vw, 60px);
}

.venue-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

p, li, address, .contact-detail a {
  font-size: 16px;
  line-height: 1.8;
}

.feature-item p {
  font-size: 15px;
  max-width: 26ch;
}

.feature-item h3 {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.pkg-card > p {
  font-size: 15px;
}

.pkg-list li {
  font-size: 14px;
  padding: 9px 0 9px 18px;
}

.footer-col > p,
.footer-col nav a {
  font-size: 15px;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 13px;
}

.btn-gold,
.btn-outline,
.nav-cta,
.pkg-cta,
.link-gold,
.link-gold-dark {
  font-size: 12px;
  letter-spacing: 0.16em;
}

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-section {
  background: #FFFFFF;
  padding: 120px 0;
  overflow: hidden;
}

.reviews-section .section-header {
  margin-bottom: 56px;
}

.reviews-section .section-header h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  color: #111111;
  margin-top: 14px;
}

.reviews-track-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 7% 32px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: #F8F7F5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 2px solid #D4AF37;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.review-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.review-stars {
  color: #D4AF37;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 16px;
  font-weight: 300;
  color: #444444;
  line-height: 1.75;
  flex: 1;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1B1035;
  color: #D4AF37;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  letter-spacing: 0.01em;
}

.review-author span {
  display: block;
  font-size: 13px;
  color: #888888;
  margin-top: 2px;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.reviews-arrow:hover {
  background: #D4AF37;
  color: #111111;
}

.reviews-arrow.left { left: 8px; }
.reviews-arrow.right { right: 8px; }

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 300px;
    padding: 32px 28px;
  }
}

/* ── FOOTER ──────────────────────────────────────────── */
#footer {
  background: #1B1035;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Top editorial block */
.footer-top {
  padding: 80px 0 72px;
}

.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center; justify-content: flex-end; flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.footer-big-text {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: flex-end; flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
}

.footer-social-row {
  display: flex;
  gap: 16px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
}

/* Gold divider */
.footer-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
}

/* Middle info row */
.footer-mid {
  padding: 64px 0;
}

.footer-mid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 44ch;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links nav a:hover { color: #D4AF37; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a,
.footer-contact address {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover { color: #D4AF37; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 48px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.6); }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-mid-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
  }

  .footer-top-right {
    align-items: flex-start;
  }

  .footer-big-text {
    font-size: clamp(40px, 12vw, 72px);
  }

  .footer-mid-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px;
  }

  .footer-divider {
    padding: 0 24px;
  }
}


/* ── NAV ACTIONS ─────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-call:hover {
  color: #D4AF37;
  border-color: rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
  .nav-call {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-actions { display: none !important; }
}

/* ── HERO BUTTON & HEADLINE FIXES ────────────────────── */
.btn-gold,
.btn-outline {
  border-radius: 0 !important;
}

.nav-cta {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.7) !important;
  border-radius: 0 !important;
}

.nav-cta:hover {
  background: #D4AF37 !important;
  color: #111111 !important;
}

.hero-headline,
.hero-headline em,
.hero-headline i,
.hero-headline span {
  font-style: normal !important;
  font-weight: 300 !important;
}

/* ── REVIEWS QUOTES FIX ──────────────────────────────── */
.review-text::before,
.review-text::after {
  content: none !important;
  display: none !important;
}

.review-text {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none !important;
}


/* ── MOBILE SPECIFIC OVERRIDES ───────────────────────── */
.nav-close {
  display: none;
}

.nav-call-block {
  display: none;
}

@media (max-width: 768px) {
  #hero {
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center; justify-content: flex-end; flex-direction: column;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: 0;
    bottom: 0;
    transform: none;
    padding: 0 28px 80px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
  }

  .hero-label {
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(36px, 10vw, 52px);
    text-align: center;
    font-style: normal !important;
  }

  .hero-sub {
    font-size: 16px;
    text-align: center;
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    margin-top: 32px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 12px;
    border-radius: 0 !important;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-pearl-necklace {
    width: 80%;
    height: 70px;
  }

  /* Drawer slides in from right — 75% width */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: #1B1035;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0;
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    list-style: none;
    margin: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li,
  .nav-links > a {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 20px 36px;
    font-size: 16px !important;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
    line-height: 1;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.05);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 8px;
  }

  .nav-close span {
    position: absolute;
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transition: background 0.3s ease;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-close:hover span {
    background: #D4AF37;
  }

  .nav-call-block {
    display: flex;
    flex-direction: column;
    padding: 32px 36px;
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .nav-call-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
  }

  .nav-call-number:hover,
  .nav-call-number:active {
    color: #D4AF37;
  }
}

@media (max-width: 768px) {

  /* ── LUXURY FULL-SCREEN MOBILE MENU ────────────────── */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #1B1035;
    padding: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  /* Top Bar with Close Button */
  .nav-menu-top {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 24px 28px;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
  }

  .nav-close span {
    position: absolute;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: background 0.3s ease;
  }

  .nav-close span:first-child { transform: rotate(45deg); }
  .nav-close span:last-child { transform: rotate(-45deg); }

  /* Navigation Links Grid */
  .nav-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 20px 0 auto;
    gap: 32px;
  }

  .nav-menu-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .nav-links.open .nav-menu-list li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open .nav-menu-list li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open .nav-menu-list li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open .nav-menu-list li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open .nav-menu-list li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open .nav-menu-list li:nth-child(5) { transition-delay: 0.3s; }

  .nav-menu-list a {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(32px, 8vw, 44px) !important;
    font-weight: 400;
    font-style: italic;
    color: #FFFFFF !important;
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
  }

  .nav-menu-list a:hover,
  .nav-menu-list a:active {
    color: #D4AF37 !important;
  }

  /* Bottom Area */
  .nav-menu-bottom {
    width: 100%;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(10, 8, 20, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  }

  .nav-links.open .nav-menu-bottom {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 12px;
    margin-bottom: 32px;
  }

  .nav-menu-actions .btn-gold,
  .nav-menu-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .nav-menu-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
  }

  .nav-menu-contact .nav-call-number {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 300;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.05em;
  }

  .nav-menu-socials {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-menu-socials a {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-menu-socials a:hover {
    color: #D4AF37;
  }
}

}

@media (max-width: 768px) {

  /* ── MOBILE HERO REDESIGN ──────────────────────────── */
  .desktop-only {
    display: none !important;
  }
  
  h1.mobile-only,
  p.mobile-only,
  span.mobile-only,
  div.mobile-only {
    display: block !important;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(27, 16, 53, 0) 0%, rgba(27, 16, 53, 0) 45%, rgba(27, 16, 53, 0.6) 70%, rgba(27, 16, 53, 0.95) 90%, rgba(27, 16, 53, 1) 100%) !important;
  }

  .hero-content {
    padding: 0 24px 50px !important;
  }

  h1.hero-headline.mobile-only {
    font-family: var(--font-serif, 'Playfair Display', serif) !important;
    font-size: clamp(34px, 10vw, 46px) !important;
    font-style: italic !important;
    line-height: 1.15;
    margin: 12px 0 16px !important;
    letter-spacing: 0.02em;
    font-weight: 400;
  }

  p.hero-sub.mobile-only {
    font-size: 15px;
    line-height: 1.6;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px !important;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero-actions .btn-gold {
    max-width: 260px;
    margin: 0 auto;
    padding: 16px 20px !important;
    border-radius: 40px !important; /* Adding back some rounded luxury feel to the button, or keeping it sharp if user prefers. User asked for pill shape earlier, then we removed it. Let's keep it sharp as we did in the previous iteration, or actually just leave border-radius alone to inherit. */
  }

}

/* Visibility Utilities */
.mobile-only { display: none !important; }

/* ── HERO V2 (LUXURY EDITORIAL) ─────────────────────── */
.hero-v2 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, transparent 30%, rgba(27, 16, 53, 0.4) 70%, rgba(10, 8, 20, 0.8) 100%);
  pointer-events: none;
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(27, 16, 53, 0.95) 0%, rgba(27, 16, 53, 0.5) 30%, transparent 60%);
  pointer-events: none;
}

.hero-pearl-glow {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 50vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(245, 240, 232, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 900px;
  text-align: left;
}

.hero-label-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, #D4AF37, transparent);
}

.luxury-label {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 0;
}

.luxury-headline {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 28px;
  font-weight: 300;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D4AF37;
}

.luxury-sub {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 45ch;
  line-height: 1.6;
}

.luxury-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-luxury:hover::before {
  transform: translateX(0);
}

.btn-luxury-primary {
  background: #D4AF37;
  color: #1B1035;
  border: 1px solid #D4AF37;
}

.btn-luxury-primary:hover {
  background: transparent;
  color: #D4AF37;
}

.btn-luxury-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-luxury-secondary:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

@media (max-width: 768px) {
  .hero-v2 {
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .hero-vignette {
    background: radial-gradient(circle at top, transparent 40%, rgba(27, 16, 53, 0.6) 80%, rgba(10, 8, 20, 0.9) 100%);
  }

  .hero-overlay-bottom {
    background: linear-gradient(to top, rgba(27, 16, 53, 1) 0%, rgba(27, 16, 53, 0.8) 25%, rgba(27, 16, 53, 0) 60%);
  }

  .hero-content-v2 {
    margin-top: auto;
    padding: 0 28px 40px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-label-wrapper {
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .gold-line { display: none; }

  .luxury-headline {
    font-family: var(--font-serif, 'Playfair Display', serif) !important;
    font-size: clamp(34px, 10vw, 44px) !important;
    font-style: italic !important;
    line-height: 1.15;
    margin: 8px 0 16px !important;
    letter-spacing: 0.02em;
    font-weight: 400;
  }

  .luxury-sub {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 14px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px !important;
  }

  .luxury-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-luxury {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}


/* ── NAVBAR V3 (INSET FLOATING GLASS) ───────────────── */
.navbar-v3 {
  position: fixed !important;
  top: 24px !important;
  left: 5% !important;
  right: 5% !important;
  width: 90% !important;
  height: 72px;
  background: rgba(15, 10, 28, 0.45) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.4s ease;
}

/* On scroll down, could make it thinner, but static floating is fine */

@media (max-width: 768px) {
  .navbar-v3 {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background: rgba(15, 10, 28, 0.6) !important;
  }
}

/* ── HERO V3 (RESTRAINED LUXURY) ─────────────────────── */
.hero-v3 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(to right, rgba(15, 10, 28, 0.85) 0%, rgba(15, 10, 28, 0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(15, 10, 28, 0.95) 0%, rgba(15, 10, 28, 0) 30%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* A soft warm light to bring out gold accents in the image */
.hero-v3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-content-v3 {
  position: relative;
  z-index: 2;
  padding: 0 10%;
  max-width: 800px;
  text-align: left;
}

.hero-label-wrapper-v3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.gold-line-v3 {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, #D4AF37, transparent);
}

.luxury-label-v3 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 0;
}

.luxury-headline-v3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(52px, 6.5vw, 84px);
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 32px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
}

.luxury-sub-v3 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 56px;
  max-width: 48ch;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.luxury-actions-v3 {
  display: flex;
  align-items: center;
}

.btn-luxury-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 50px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05); /* Subtle pearl/gold reflection */
}

.btn-luxury-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #D4AF37;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 50px;
}

.btn-luxury-v3:hover {
  color: #1B1035;
  border-color: #D4AF37;
  box-shadow: inset 0 0 0 rgba(212, 175, 55, 0);
}

.btn-luxury-v3:hover::before {
  transform: translateY(0);
}

/* Section Transitions */
.section-divider-luxury {
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(27, 16, 53, 0.2) 50%, transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -90px;
  margin-bottom: -90px;
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.section-divider-luxury::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}


@media (max-width: 768px) {
  .hero-v3 {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5vh;
  }
  
  .hero-cinematic-overlay {
    background: 
      linear-gradient(to top, rgba(10, 8, 20, 1) 0%, rgba(10, 8, 20, 0.9) 15%, rgba(15, 10, 28, 0.4) 45%, rgba(15, 10, 28, 0) 70%);
  }

  .hero-content-v3 {
    padding: 0 24px 24px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-label-wrapper-v3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    gap: 12px;
  }
  
  .gold-line-v3 {
    display: block;
    width: 40px;
    height: 1px;
    background: #D4AF37;
  }

  .luxury-headline-v3 {
    font-size: clamp(32px, 10vw, 44px);
    margin-bottom: 24px;
    font-style: normal !important;
  }

  .luxury-sub-v3 {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 40ch;
  }

  .luxury-actions-v3 {
    width: 100%;
    justify-content: center;
  }

  .btn-luxury-v3 {
    width: 100%;
    max-width: 320px;
    background: rgba(10, 8, 20, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.6);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    line-height: 1.2;
  }
}



/* ── HERO V4 (PREMIUM EDITORIAL) ───────────────────── */
.hero-v4 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-cinematic-overlay-v4 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(15, 10, 28, 0.95) 0%, rgba(15, 10, 28, 0.8) 35%, rgba(15, 10, 28, 0.2) 100%),
              linear-gradient(to top, rgba(15, 10, 28, 1) 0%, rgba(15, 10, 28, 0) 40%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-nebula-v4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-nebula-v4 svg {
  width: 100%;
  height: 100%;
}

.hero-content-v4 {
  position: relative;
  z-index: 3;
  padding: 0 8%;
  max-width: 900px;
  text-align: left;
  margin-top: auto;
  margin-bottom: auto;
  /* removed transform */ padding-top: 100px;
}

.hero-label-wrapper-v4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.gold-line-v4 {
  width: 40px;
  height: 1px;
  background: #D4AF37;
}

.luxury-label-v4 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #D4AF37;
}

.luxury-headline-v4 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  line-height: 1.1;
  margin-bottom: 24px;
}

.headline-serif {
  font-size: clamp(36px, 4.5vw, 56px);
  color: #FFFFFF;
  font-weight: 300;
}

.headline-italic {
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 400;
  font-style: italic;
  display: inline-block;
}

.text-gold-gradient-v4 {
  background: linear-gradient(135deg, #F5F0E8 0%, #D4AF37 50%, #B89624 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D4AF37;
}

.headline-divider-v4 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
  width: 100%;
  max-width: 400px;
}

.headline-divider-v4 .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5));
}
.headline-divider-v4 .divider-line.right {
  background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.5));
}

.luxury-sub-v4 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 45ch;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.luxury-actions-v4 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary-v4, .btn-secondary-v4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s ease;
}

.btn-primary-v4 {
  background: linear-gradient(135deg, #E6C875, #D4AF37, #B89624);
  color: #1B1035;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-primary-v4:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

.btn-secondary-v4 {
  background: rgba(10, 8, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.btn-secondary-v4:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
  color: #D4AF37;
}
.badges-section-v4 {
  background: #0f0a1c;
}
.hero-badges-v4 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
  z-index: 10;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.badge-item-v4 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}
.badge-item-v4:last-child {
  border-right: none;
}

.badge-item-v4 span {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .luxury-actions-v4 { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .hero-v4 {
    height: 100svh;
    min-height: 600px;
    padding-top: 0;
    justify-content: flex-end;
  }

  .hero-cinematic-overlay-v4 {
    background: linear-gradient(to top, rgba(15, 10, 28, 1) 0%, rgba(15, 10, 28, 0.95) 30%, rgba(15, 10, 28, 0) 75%);
  }

  .hero-nebula-v4 {
    height: 300px;
  }

  .hero-content-v4 {
    padding: 0 24px 8vh !important;
    text-align: center;
    margin-bottom: 0; 
    margin-top: 0;
    transform: none;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-label-wrapper-v4 {
    align-items: center;
  }

  .headline-divider-v4 {
    margin: 24px auto;
  }

  .luxury-sub-v4 {
    margin-left: auto;
    margin-right: auto;
  }

  .luxury-actions-v4 {
    width: 100%;
    align-items: center;
  }

  .btn-primary-v4, .btn-secondary-v4 {
    width: 100%;
    max-width: 320px;
  }

  .hero-badges-v4 {
    position: relative;
    flex-wrap: wrap;
    padding: 40px 0;
    background: transparent;
  }

  .badge-item-v4 {
    flex: 0 0 50%;
    margin-bottom: 32px;
    border-right: none;
    padding: 0 10px;
  }

  .badge-item-v4:nth-child(odd) {
    border-right: 1px solid rgba(212, 175, 55, 0.2);
  }

  .badge-item-v4:nth-child(3), .badge-item-v4:nth-child(4) {
    margin-bottom: 0;
  }
}


/* ── LUXURY MOBILE MENU ────────────────────────────── */
@media (max-width: 768px) {
.nav-links-luxury {
  background: radial-gradient(circle at top right, rgba(27, 16, 53, 0.98), #120A24);
  backdrop-filter: blur(20px);
  padding: 0;
  display: flex !important;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
}

/* Redefine open transition to be a fade (Mobile Only) */
@media (max-width: 768px) {
  .nav-links {
    opacity: 0;
    visibility: hidden;
    transform: none !important; /* Override old slide */
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  /* Stagger animations inside menu */
  .nav-links.active .fade-up-stagger > * {
  animation: fadeUpMenu 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeUpMenu {
  to { opacity: 1; transform: translateY(0); }
}
.nav-links.active .fade-up-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.nav-links.active .fade-up-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.nav-links.active .fade-up-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.nav-links.active .fade-up-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.nav-links.active .fade-up-stagger > *:nth-child(5) { animation-delay: 0.5s; }
}


.nav-edge-glow {
  position: absolute;
  top: 0; left: 0; width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.8), transparent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  pointer-events: none;
}

.luxury-nav-top {
  padding: 24px 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.nav-internal-logo {
  height: 48px;
  width: auto;
}
.luxury-close {
  background: rgba(15, 10, 28, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  width: 44px; height: 44px;
  display: flex; justify-content: center; align-items: center;
}
.luxury-close span { display: none; } /* Hide old lines */

.nav-menu-luxury-list {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
}

.nav-card {
  display: flex;
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  group: hover;
  transition: all 0.3s ease;
}

.nav-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; justify-content: center; align-items: center;
  margin-right: 20px;
  background: rgba(212, 175, 55, 0.05);
  flex-shrink: 0;
}

.nav-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nav-card-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.nav-card-sub {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.nav-card-arrow {
  color: #D4AF37;
  font-size: 18px;
  opacity: 0.7;
}

.nav-card-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.15), transparent);
}

.luxury-nav-bottom {
  margin-top: auto;
  padding: 40px 32px 48px;
  display: flex;
  flex-direction: column;
}

.luxury-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.w-full { width: 100%; max-width: 100%; }

.luxury-contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-divider {
  display: flex; align-items: center; gap: 12px;
  width: 100%; margin-bottom: 24px;
}
.contact-divider .line {
  flex: 1; height: 1px;
  background: rgba(212, 175, 55, 0.2);
}

.contact-label {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #D4AF37;
  margin-bottom: 8px;
}

.contact-number {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 24px;
}

.nav-socials-circle {
  display: flex;
  gap: 16px;
}
.nav-socials-circle a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; justify-content: center; align-items: center;
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
}
.nav-socials-circle a:hover {
  background: rgba(212, 175, 55, 0.15);
}

/* Hide luxury mobile elements on desktop */
@media (min-width: 769px) {
  .nav-edge-glow, .nav-menu-top.luxury-nav-top, .nav-card-icon, .nav-card-sub, .nav-card-arrow, .nav-card-divider, .nav-menu-bottom.luxury-nav-bottom {
    display: none !important;
  }
  .nav-menu-luxury-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
  .nav-card {
    text-decoration: none;
  }
  .nav-card-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
  }
}

/* FINAL MENU FIXES */
@media (max-width: 1024px) {
  .nav-actions {
    display: none !important;
  }
}

.nav-hamburger span {
  background-color: #FFFFFF !important;
  height: 2px !important; /* Slightly thicker for visibility */
  box-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Contrast against background */
}

.luxury-close {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.luxury-close svg {
  stroke: #FFFFFF !important;
  stroke-width: 2px !important;
}


/* FINAL MENU CSS REFINEMENTS */
.nav-hamburger span {
  background-color: #FFFFFF !important;
  height: 2px !important; 
  box-shadow: none !important;
}

.luxury-close {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.luxury-close svg {
  stroke: #FFFFFF !important;
  stroke-width: 1.5px !important;
}

.nav-card-icon {
  border: none !important;
  background: transparent !important;
  margin-right: 24px !important;
  width: auto !important;
  height: auto !important;
}

.nav-socials-clean {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding-top: 8px;
}
.nav-socials-clean a {
  display: flex; justify-content: center; align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-socials-clean a:hover svg {
  stroke: #FFFFFF;
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
.contact-direct-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-label {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #D4AF37;
  margin-bottom: 4px;
}
.contact-number {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.contact-divider {
  display: flex; align-items: center; gap: 12px;
  width: 100%; margin-bottom: 24px;
}
.contact-divider .line {
  flex: 1; height: 1px;
  background: rgba(212, 175, 55, 0.2);
}


/* REMOVE GHOST BUTTON */
.nav-links::after, .nav-links-luxury::after {
  content: none !important;
  display: none !important;
}


/* CTA STANDARDIZATION & CONTACT INFO REDESIGN */
button.btn-primary-v4, a.btn-primary-v4, input.btn-primary-v4 {
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #111111 !important;
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%) !important;
  padding: 16px 32px !important;
  border-radius: 40px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer;
}
button.btn-primary-v4:hover, a.btn-primary-v4:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

button.btn-secondary-v4, a.btn-secondary-v4 {
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 16px 32px !important;
  border-radius: 40px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  backdrop-filter: blur(10px) !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
  cursor: pointer;
}
button.btn-secondary-v4:hover, a.btn-secondary-v4:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: rgba(212, 175, 55, 0.8) !important;
}

/* Redesigned Contact Info */
.contact-info-luxury {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item-luxury {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-icon-luxury {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-text-luxury {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.contact-label-luxury {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-value-luxury {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-style: normal;
  line-height: 1.4;
  transition: color 0.3s ease;
}
a.contact-value-luxury:hover {
  color: #D4AF37;
}

.contact-divider-luxury {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.3), transparent);
}


/* DESKTOP HERO LEFT ALIGNMENT FIX */
@media (min-width: 1025px) {
  .hero-content-v4 {
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: 8% !important;
  }
  .hero-label-wrapper-v4 {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .headline-divider-v4 {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .luxury-sub-v4 {
    margin-left: 0 !important;
    text-align: left !important;
  }
  .hero-actions-v4 {
    justify-content: flex-start !important;
  }
}

/* SOCIAL LINK HOVER STATES */
.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #D4AF37;
  text-decoration: none;
}
.social-link-icon:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}
.social-link-icon svg {
  stroke: currentColor;
}
.footer-social-btn.social-link-icon {
  gap: 8px;
  color: #FFFFFF;
}
.footer-social-btn.social-link-icon:hover {
  color: #D4AF37;
}
.nav-socials-clean .social-link-icon {
  color: #D4AF37;
}
.nav-socials-clean .social-link-icon:hover {
  color: #FFFFFF;
}


/* FINAL DESKTOP HERO POSITIONING FIX */
@media (min-width: 1025px) {
  .hero-content.hero-content-v4 {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
}


/* GALLERY VIDEO STYLES */
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover video {
  transform: scale(1.05);
}
#lightboxVid {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
