/* =============================================
   N Convention – Premium CSS
   Color Palette:
   --rose-gold: #C8907A  (Warm Rose Gold)
   --wine: #5C2030 / #7A3040 / #A04458  (Deep Wine Rose)
   --dark: #180E10  (Warm Near-Black)
   ============================================= */

:root {
  --gold: #C8907A;
  --gold-light: #E4B8A8;
  --gold-dark: #906858;
  --gold-pale: #FAF0EC;
  --maroon: #5C2030;
  --maroon-dark: #2C1018;
  --maroon-mid: #7A3040;
  --maroon-light: #A04458;
  --dark: #180E10;
  --dark-card: #221420;
  --cream: #FAF0EC;
  --text-light: #F0DEDE;
  --text-muted: #C0948A;
  --white: #FFFFFF;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 32px rgba(200, 144, 122, 0.3);
  --shadow-maroon: 0 8px 32px rgba(92, 32, 48, 0.5);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 100px 0; }

.bg-dark { background: var(--dark); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.pre-logo {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  animation: pulse-gold 1.2s ease-in-out infinite alternate;
  text-shadow: 0 0 40px rgba(200,144,122,0.7);
}

.pre-dots { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.pre-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  animation: bounce-dot 0.9s ease-in-out infinite;
}
.pre-dots span:nth-child(2) { animation-delay: 0.2s; }
.pre-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-10px); opacity: 1; }
}
@keyframes pulse-gold {
  from { text-shadow: 0 0 20px rgba(200,144,122,0.5); }
  to { text-shadow: 0 0 60px rgba(200,144,122,0.95), 0 0 120px rgba(200,144,122,0.4); }
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(24, 14, 16, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,144,122,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  width: 90%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.logo-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(200,144,122,0.6);
  line-height: 1;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--text-light);
  letter-spacing: 4px; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links li a {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--maroon-dark) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    url('facade.jpg') center center / cover no-repeat;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(24,14,16,0.75) 0%,
      rgba(44,16,24,0.68) 40%,
      rgba(24,14,16,0.85) 100%
    );
  pointer-events: none;
}

.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 20px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300;
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0; animation: fade-up 0.8s ease 0.5s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0; animation: fade-up 0.8s ease 0.8s forwards;
}
.title-n {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(200,144,122,0.7), 0 4px 20px rgba(0,0,0,0.5);
}
.title-convention {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 20px auto;
  opacity: 0; animation: fade-up 0.8s ease 1s forwards;
}
.divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-icon { color: var(--gold); font-size: 1rem; }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300; letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 40px;
  opacity: 0; animation: fade-up 0.8s ease 1.2s forwards;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.8s ease 1.4s forwards;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase;
  animation: fade-in 1s ease 2s both;
  z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}

/* ===== COMING SOON PILL ===== */
.coming-soon-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(200,144,122,0.5);
  animation: pulse-pill 2.5s ease-in-out infinite;
  opacity: 0; animation: fade-up 0.8s ease 0.3s forwards, pulse-pill 2.5s ease-in-out 1.5s infinite;
}
@keyframes pulse-pill {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,144,122,0.5); }
  50% { box-shadow: 0 4px 40px rgba(200,144,122,0.9); }
}

/* ===== SINGLE VENUE ===== */
.single-venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark-card);
  border: 1px solid rgba(200,144,122,0.25);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.single-venue-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.single-venue-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.single-venue:hover .single-venue-photo img { transform: scale(1.04); }

.single-venue-cs-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(24,14,16,0.88);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(6px);
}
.cs-icon { color: var(--gold); font-size: 0.8rem; }
.cs-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}

.single-venue-body {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px;
}
.single-venue-top {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.single-venue-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold);
}
.single-venue-status {
  background: rgba(200,144,122,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
}
.single-venue-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--text-muted);
}
.single-venue-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.8;
}
.single-venue-specs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; border-top: 1px solid rgba(200,144,122,0.15);
  border-bottom: 1px solid rgba(200,144,122,0.15);
  padding: 18px 0;
}
.spec-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; text-align: center;
}
.spec-icon { font-size: 1.4rem; }
.spec-val {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--gold);
}
.spec-label { font-size: 0.68rem; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }

.single-venue-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.single-venue-features li {
  font-size: 0.85rem; color: var(--text-muted);
}

/* ===== COMING SOON DISPLAY ===== */
.coming-soon-section { background: var(--cream); }
.coming-soon-section .section-title { color: var(--maroon-dark); }

.coming-soon-display {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px;
}
.cs-motif {
  font-size: 1.4rem; color: var(--gold);
  letter-spacing: 20px;
  text-shadow: 0 0 20px rgba(200,144,122,0.6);
}
.cs-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: #2C1018;
  line-height: 1.9; font-style: italic;
}
.cs-divider {
  display: flex; align-items: center; gap: 16px;
  width: 100%; justify-content: center;
}
.cs-line {
  flex: 1; max-width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cs-flower { color: var(--gold); font-size: 1.5rem; }
.cs-date-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--maroon);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 22px 56px;
  box-shadow: var(--shadow-maroon);
  gap: 6px;
}
.cs-date-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted);
}
.cs-date-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}

/* ===== FORM COMING SOON NOTE ===== */
.form-coming-soon-note {
  background: rgba(200,144,122,0.12);
  border: 1px solid rgba(200,144,122,0.35);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
}
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-dark);
  box-shadow: 0 4px 20px rgba(200,144,122,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(200,144,122,0.12);
  transform: translateY(-3px);
}
.btn.full { width: 100%; text-align: center; }
.btn.large { padding: 18px 44px; font-size: 1rem; }

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--maroon-dark);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--maroon-dark);
  margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }
.section-title em { color: var(--gold); font-style: italic; }

.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin-bottom: 24px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto;
}
.section-intro.light { color: var(--text-muted); }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-frame {
  position: relative;
  padding: 16px 16px 0 0;
}
.about-img-frame::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: calc(100% - 32px);
  height: calc(100% - 16px);
  border: 2px solid var(--gold);
  z-index: 0;
  border-radius: 2px;
}
.about-img-inner {
  position: relative; z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-inner img {
  width: 100%; height: 380px;
  object-fit: cover;
}
.about-img-inner.img-fallback .img-fallback-content { display: flex; }
.img-fallback-content {
  display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 40px;
  display: none;
}
.fallback-icon { font-size: 4rem; }
.img-fallback-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--gold); letter-spacing: 3px;
}

.about-badge {
  position: absolute; bottom: -20px; left: -20px; z-index: 2;
  background: var(--maroon);
  border: 2px solid var(--gold);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-maroon);
}
.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.badge-txt {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
}

.about-text { padding-left: 20px; }

.about-text .section-title { color: var(--maroon-dark); }
.about-text .gold-rule { margin-bottom: 24px; }

.about-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: #2C1018;
  margin-bottom: 20px; line-height: 1.8;
}

.about-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 36px;
  background: var(--maroon);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-maroon);
}
.stat-item {
  flex: 1; text-align: center; padding: 24px 16px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.stat-num sup { font-size: 1rem; }
.stat-label {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  display: block; margin-top: 6px;
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(200,144,122,0.35);
}

/* =============================================
   VENUES
   ============================================= */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.venue-card {
  background: var(--dark-card);
  border: 1px solid rgba(200,144,122,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.venue-card:hover {
  border-color: rgba(200,144,122,0.5);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.venue-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(200,144,122,0.3), var(--shadow-gold);
}

.venue-badge-ribbon {
  position: absolute; top: 20px; right: -30px;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  z-index: 10;
}

.venue-img { position: relative; height: 220px; overflow: hidden; }
.venue-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.venue-img-placeholder[style*="--hue: 1"] {
  background: linear-gradient(135deg, #2C1018, #5C2030, #3A1824);
}
.venue-img-placeholder[style*="--hue: 2"] {
  background: linear-gradient(135deg, #3A1824, #7A3040, #5C2030);
}
.venue-img-placeholder[style*="--hue: 3"] {
  background: linear-gradient(135deg, #180E10, #2C1018, #5C2030);
}
.venue-img-placeholder[style*="--hue: 3"] {
  background: linear-gradient(135deg, #1A3020, #2A5035, #1E3A28);
}

.venue-icon { font-size: 3.5rem; opacity: 0.8; }
.g-label { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; }

.venue-overlay {
  position: absolute; inset: 0;
  background: rgba(24,14,16,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.venue-card:hover .venue-overlay { opacity: 1; }

.venue-book-btn {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 12px 28px;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.venue-book-btn:hover { background: var(--gold-light); }

.venue-body { padding: 24px; }
.venue-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 8px;
}
.venue-cap {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.venue-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--text-muted);
  margin-bottom: 16px; line-height: 1.7;
}
.venue-features { display: flex; flex-direction: column; gap: 6px; }
.venue-features li {
  font-size: 0.82rem; color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(200,144,122,0.15);
  border-bottom: 3px solid var(--gold);
  padding: 36px 28px;
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(200,144,122,0.18);
  border-bottom-color: var(--maroon);
}
.service-icon-wrap {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-maroon);
}
.service-icon { font-size: 2rem; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--maroon-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: #2C1018; line-height: 1.7;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.5s ease;
}
.g1 { background: linear-gradient(135deg, #2C1018, #5C2030, #C8907A40); }
.g2 { background: linear-gradient(135deg, #180E10, #5C2030); }
.g3 { background: linear-gradient(135deg, #120810, #2A1020); }
.g4 { background: linear-gradient(135deg, #18101C, #2E1C34); }
.g5 { background: linear-gradient(135deg, #5C2030, #2C1018, #180E10); min-height: 100%; }
.g6 { background: linear-gradient(135deg, #181020, #2C1838); }

.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }

.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(92,32,48,0.88);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.g-icon { font-size: 2rem; color: var(--gold); }
.gallery-hover p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--cream);
  letter-spacing: 3px; text-transform: uppercase;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--cream); }

.testimonials-carousel {
  max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.testi-track {
  display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid rgba(200,144,122,0.15);
  border-top: 3px solid var(--gold);
  padding: 48px 40px;
  border-radius: 4px;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.testi-card.active { opacity: 1; }

.testi-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 4px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: #2C1018; line-height: 1.8;
  margin-bottom: 28px;
}
.testi-quote::before { content: '\201C'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -1rem; }
.testi-quote::after { content: '\201D'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -1rem; }

.testi-author {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--maroon);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--maroon-dark); font-size: 1rem;
}
.testi-author span {
  font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px;
}

.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 28px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-size: 1.2rem; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--gold); color: var(--maroon-dark); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(200,144,122,0.3);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-mid) 100%);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(200,144,122,0.15) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg, transparent, transparent 40px,
      rgba(200,144,122,0.04) 40px, rgba(200,144,122,0.04) 41px
    );
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream); margin-bottom: 16px;
}
.cta-content h2 em { color: var(--gold); font-style: italic; }
.cta-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--text-muted);
  margin-bottom: 36px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--dark-card);
  border: 1px solid rgba(200,144,122,0.15);
  border-left: 3px solid var(--gold);
  padding: 20px;
  border-radius: 2px;
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(200,144,122,0.4); transform: translateX(4px); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 0.9rem; margin-bottom: 4px;
  letter-spacing: 1px;
}
.info-card p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid rgba(200,144,122,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); color: var(--maroon-dark); }
.social-btn:hover svg { fill: var(--maroon-dark); }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid rgba(200,144,122,0.2);
  border-top: 3px solid var(--gold);
  padding: 40px;
  border-radius: 4px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { position: relative; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,144,122,0.2);
  border-radius: 2px;
  padding: 16px 14px 8px;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group select { padding: 14px; cursor: pointer; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group input option,
.form-group select option {
  background: var(--dark-card); color: var(--text-light);
}

.form-group label {
  position: absolute; left: 14px; top: 12px;
  font-size: 0.85rem; color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}
.select-label { position: static; display: block; margin-bottom: 6px; top: unset; }
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 4px; font-size: 0.7rem; color: var(--gold); letter-spacing: 1px;
}

.form-success {
  display: none; text-align: center;
  padding: 16px; margin-top: 16px;
  background: rgba(200,144,122,0.1);
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.form-success.visible { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--maroon-dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
}
.footer-divider {
  width: 50px; height: 1px;
  background: var(--gold-dark); margin-top: 24px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gold);
  margin-bottom: 20px; letter-spacing: 1px;
  position: relative; padding-bottom: 12px;
}
.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 30px; height: 1px;
  background: var(--gold);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.875rem; color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.footer-links-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-links-col ul li a { transition: color var(--transition), padding-left var(--transition); }

.footer-contact-col p {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(200,144,122,0.15);
  padding: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  border: none; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-4px); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="zoom-in"] { transform: scale(0.9); }
[data-animate].animated { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .single-venue { grid-template-columns: 1fr; }
  .single-venue-photo { min-height: 400px; }
  .single-venue-specs { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--dark);
    flex-direction: column; justify-content: center;
    gap: 28px; padding: 40px;
    transition: right var(--transition);
    border-left: 1px solid rgba(200,144,122,0.2);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-left: 0; }
  .about-badge { left: 10px; }

  .single-venue { grid-template-columns: 1fr; }
  .single-venue-photo { min-height: 300px; }
  .single-venue-body { padding: 28px 24px; }
  .single-venue-features { grid-template-columns: 1fr; }
  .single-venue-specs { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

  .countdown-wrap { gap: 8px; }
  .countdown-unit { padding: 20px 20px; min-width: 80px; }
  .cd-num { font-size: 2rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
  .about-stats { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .single-venue-specs { grid-template-columns: repeat(2, 1fr); }
  .single-venue-top { flex-direction: column; align-items: flex-start; }
  .cs-date-badge { padding: 18px 32px; }
  .service-card { padding: 28px 20px; }
  .testi-card { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-content { padding: 80px 16px 20px; }
  .hero-tagline { font-size: 1rem; letter-spacing: 4px; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-subtitle { font-size: 0.95rem; }
}
