/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A67C35;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  --bg-dark: #0D0D0D;
  --bg-deep: #080808;
  --bg-card: #141414;
  --bg-card2: #1A1A1A;
  --text-white: #F5F0E8;
  --text-light: #C8BEA8;
  --text-muted: #7A7060;
  --border-gold: rgba(201,168,76,0.3);
  --border-subtle: rgba(255,255,255,0.06);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
select, input, textarea { font-family: var(--font-sans); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header .section-desc { margin: 16px auto 0; }
.gold-divider {
  width: 60px; height: 1px;
  background: var(--gold-gradient);
  margin: 24px 0;
  position: relative;
}
.gold-divider::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  color: var(--gold);
  font-size: 0.6rem;
  padding: 0 6px;
}
.gold-divider.centered { margin: 24px auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}
.btn-book {
  display: inline-flex; align-items: center;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== SECTION SPACING ===== */
.section { padding: 100px 0; }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 20px 32px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; color: var(--gold); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: var(--transition);
  position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: var(--transition); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-white);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-book { margin-top: 16px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--text-muted);
  transition: color 0.3s;
}
.mobile-nav-close:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.7) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.reveal-hero > * { opacity: 0; transform: translateY(30px); }
.reveal-hero.active .hero-eyebrow { animation: fadeUp 0.8s 0.2s forwards; }
.reveal-hero.active .hero-title { animation: fadeUp 0.9s 0.4s forwards; }
.reveal-hero.active .hero-tagline { animation: fadeUp 0.8s 0.6s forwards; }
.reveal-hero.active .hero-subtitle { animation: fadeUp 0.8s 0.75s forwards; }
.reveal-hero.active .hero-actions { animation: fadeUp 0.8s 0.9s forwards; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  font-style: italic;
}
.hero-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1px solid rgba(201,168,76,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.6);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about { background: var(--bg-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  padding-bottom: 60px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}
.about-img-main img {
  width: 100%; height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute;
  bottom: 0; right: -30px;
  width: 200px; height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--bg-dark);
  box-shadow: var(--shadow-card);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.badge-num { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.badge-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  border-top: 1px solid var(--border-gold);
  padding-top: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 500;
  color: var(--gold-light);
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  font-weight: 600; margin-top: 6px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-deep);
  position: relative; overflow: hidden;
}
.services-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  animation-delay: var(--delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.service-title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--text-white);
  margin-bottom: 12px;
}
.service-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  transition: width 0.4s ease;
}
.service-card:hover .service-divider { width: 70px; }
.service-list li {
  font-size: 0.85rem; color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
}
.service-list li::before {
  content: '✦'; font-size: 0.45rem; color: var(--gold); flex-shrink: 0;
}
.service-list li:last-child { border-bottom: none; }

/* ===== VENUE FEATURES ===== */
.features { background: var(--bg-dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.feature-item:hover {
  border-color: var(--border-gold);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PARALLAX BANNER ===== */
.parallax-banner {
  position: relative; overflow: hidden;
  height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.parallax-bg {
  position: absolute; inset: -100px;
  background-image: url('https://images.unsplash.com/photo-1478146059778-26028b07395a?w=1800&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(13,13,13,0.7) 100%);
}
.parallax-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
}
.parallax-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
}
.parallax-title em { color: var(--gold-light); font-style: italic; }
.parallax-text {
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  font-style: italic; font-family: var(--font-serif);
}

/* ===== GALLERY ===== */
.gallery { background: var(--bg-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}
.gallery-item.large {
  grid-column: span 1;
  grid-row: span 2;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px;
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 0.95rem; color: var(--gold-light);
  font-style: italic;
}
.gallery-zoom {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300;
  flex-shrink: 0;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 85vh;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none; border: 1px solid var(--border-gold);
  color: var(--gold-light);
  cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold); color: var(--bg-dark); border-color: var(--gold);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; overflow: hidden;
  padding: 120px 0; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1800&q=80');
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(8,8,8,0.8) 100%);
}
.cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; color: #fff; line-height: 1.15;
  margin-bottom: 20px;
}
.cta-title em { color: var(--gold-light); font-style: italic; }
.cta-text { color: rgba(255,255,255,0.65); font-size: 0.93rem; margin-bottom: 40px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PRICING NOTICE ===== */
.pricing-notice { padding: 60px 0; background: var(--bg-dark); }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 680px; margin: 0 auto;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.pricing-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-icon {
  font-size: 2rem; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 400;
  color: var(--text-white); margin-bottom: 16px;
}
.pricing-card p {
  color: var(--text-light); font-size: 0.9rem;
  line-height: 1.8; margin-bottom: 20px;
}
.pricing-note {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 16px 24px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1rem; font-style: italic;
  margin-bottom: 32px;
}
.pricing-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--bg-deep); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 500;
  color: var(--gold-light); margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  color: var(--text-light); font-size: 0.88rem; line-height: 1.7;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }
.map-container { margin-top: 8px; border: 1px solid var(--border-gold); border-radius: var(--radius-lg); overflow: hidden; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text-white);
  font-size: 0.88rem;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--text-white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; margin-top: 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--gold-light);
  font-size: 0.85rem; text-align: center;
}

/* ===== FOOTER ===== */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border-gold); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-tagline {
  color: var(--text-muted); font-size: 0.82rem;
  line-height: 1.7; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold); color: var(--bg-dark);
  border-color: var(--gold); transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted); font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li {
  color: var(--text-muted); font-size: 0.83rem;
  margin-bottom: 12px; line-height: 1.7;
}
.footer-contact a { color: var(--text-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.05em; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  80%, 100% { transform: scale(1.3); opacity: 0; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .btn-book { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { padding-bottom: 40px; }
  .about-img-accent { right: 0; }
  .about-badge { left: -10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pricing-actions { flex-direction: column; align-items: center; }
  .pricing-card { padding: 40px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .stat-num { font-size: 1.5rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .about-badge { display: none; }
  .about-img-accent { width: 150px; height: 120px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
