@font-face {
  font-family: 'Medino';
  src: url('../fonts/Medino-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --primary: #C9A96E;
  --primary-dark: #A67C52;
  --primary-light: #E5D4B0;
  --primary-glow: rgba(201,169,110,0.12);
  --bg-dark: #FAF8F5;
  --bg-card: #FDFCFA;
  --bg-surface: #F5F0E8;
  --bg-surface-alt: #F4EFE6;
  --bg-surface-hover: #EDE5D6;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --border: #E8E2D9;
  --border-light: #F0EBE2;
  --success: #059669;
  --warning: #D97706;
  --danger: #DC2626;
  --info: #2563EB;
  --glass: #FDFCFA;
  --glass-border: #E8E2D9;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Medino', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-cursive-title: 'Playball', cursive;
  --font-cursive-subtitle: 'Dancing Script', cursive;
  --nav-height: 130px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }
input, textarea, select {
  font-family: var(--font-body);
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.section-subtitle {
  font-family: var(--font-body);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-description { color: var(--text-secondary); max-width: 600px; margin: 0 auto 3rem; font-size: 1.05rem; }
.text-gold { color: var(--primary); }
.text-center { text-align: center; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px;
  transition: var(--transition); border: 2px solid transparent; cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--bg-dark); border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light); border-color: var(--primary-light);
  transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--bg-dark);
}
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--bg-dark); transform: translateY(-2px);
}
.btn-white { background: #fff; color: var(--bg-dark); border-color: #fff; }
.btn-white:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 3rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.8rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); transition: var(--transition);
  display: flex; align-items: center;
}
.navbar.scrolled {
  background: rgba(253,252,250,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
/* Homepage Transparent Navbar over Dark Hero */
.page-home .navbar:not(.scrolled) .nav-links-row a { color: rgba(255,255,255,0.88); }
.page-home .navbar:not(.scrolled) .nav-links-row a:hover,
.page-home .navbar:not(.scrolled) .nav-links-row a.active { color: var(--primary); }
.page-home .navbar:not(.scrolled) .nav-toggle span { background: #ffffff; }

/* Centred two-row layout: logo on top, links below */
.navbar-container-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
  padding: 0.6rem 2rem;
  position: relative;
}
.nav-logo-centered-only {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.logo-img-large {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  transition: height 0.35s ease;
}
.navbar.scrolled .logo-img-large { height: 54px; }

/* Desktop nav links */
.nav-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  width: 100%;
}
.nav-links-row a {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}
.nav-links-row a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary); transition: width 0.3s ease;
}
.nav-links-row a:hover { color: var(--primary-dark); }
.nav-links-row a:hover::after, .nav-links-row a.active::after { width: 100%; }
.nav-links-row a.active { color: var(--primary-dark); }

/* Mobile Nav Drawer */
.nav-links-mobile { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slant-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(24px, 2.5vw, 40px);
  background: var(--bg-dark);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 10;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 2s ease-in-out, transform 8s ease-out;
  transform: scale(1.05); z-index: 1;
}
.hero-slide.active {
  opacity: 1; transform: scale(1); z-index: 2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 3;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 2rem;
  animation: heroFadeIn 1.2s ease-out;
}
.hero-content .section-subtitle { color: #ffffff; font-size: 0.9rem; letter-spacing: 5px; margin-bottom: 1.5rem; }
.hero-content h1 { color: #ffffff; font-size: clamp(2.4rem, 4.5vw, 3.8rem); margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block; width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px; position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  transform: translateX(-50%); background: var(--primary); border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 24px; } }

/* ── Glass Card ── */
.glass-card {
  background: #FDFCFA; border: 1px solid #E8E2D9;
  border-radius: var(--radius-md);
  padding: 2rem; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.glass-card:hover { background: #FFFFFF; border-color: rgba(201,169,110,0.4); transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── Room Cards ── */
.room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 2rem; }
.room-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition); position: relative;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,0.3); }
.room-card-image {
  position: relative; height: 280px; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card-image img { transform: scale(1.08); }
.room-card-badge {
  position: absolute; top: 1rem; right: 1rem; background: var(--primary);
  color: var(--bg-dark); padding: 0.4rem 1rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.room-card-body { padding: 1.8rem; }
.room-card-body h3 { margin-bottom: 0.6rem; font-size: 1.4rem; }
.room-card-body p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.6; }
.room-card-meta { display: flex; gap: 1.2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.room-card-meta span { display: flex; align-items: center; gap: 0.4rem; color: var(--text-muted); font-size: 0.85rem; }
.room-card-meta i { color: var(--primary); font-size: 0.9rem; }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price { font-family: var(--font-heading); }
.room-price .amount { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.room-price .period { font-size: 0.8rem; color: var(--text-muted); }

/* ── Experience Cards ── */
.experience-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.experience-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2.5rem; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.experience-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0; transition: var(--transition);
}
.experience-card:hover { transform: translateY(-6px); border-color: rgba(201,169,110,0.3); }
.experience-card:hover::before { opacity: 1; }
.experience-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--primary-glow); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.experience-card:hover .experience-icon { background: var(--primary); color: var(--bg-dark); }
.experience-card h3 { margin-bottom: 0.8rem; }
.experience-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem; position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-3px); }
.testimonial-quote { position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; color: var(--primary-glow); font-family: var(--font-heading); line-height: 1; }
.testimonial-stars { color: var(--primary); margin-bottom: 1rem; font-size: 0.9rem; display: flex; gap: 3px; }
.testimonial-content { font-style: italic; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-dark); font-weight: 700; font-size: 1.1rem;
}
.testimonial-author-info h4 { font-family: var(--font-body); font-size: 0.95rem; }
.testimonial-author-info p { color: var(--text-muted); font-size: 0.8rem; }

/* ── Offers ── */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.offer-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: var(--transition);
}
.offer-card::after {
  content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  opacity: 0; transition: var(--transition);
}
.offer-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-4px); }
.offer-card:hover::after { opacity: 1; }
.offer-badge {
  display: inline-block; background: var(--primary); color: var(--bg-dark);
  padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.75rem;
  font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 1;
}
.offer-card h3 { position: relative; z-index: 1; margin-bottom: 0.8rem; }
.offer-card p { position: relative; z-index: 1; color: var(--text-secondary); }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  background: var(--bg-surface);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1rem; }

/* ── Contact Section ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary-glow); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-info-item p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; margin-bottom: 0.5rem; font-weight: 500;
  font-size: 0.9rem; color: var(--text-secondary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea { min-height: 140px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239A9A9A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ── Footer ── */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }
.footer h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; color: var(--primary); }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ── Dividers ── */
.divider-gold { width: 60px; height: 3px; background: var(--primary); margin: 1rem auto; border-radius: 2px; }

/* ── Page Header ── */
.page-header {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  opacity: 0.5;
}
.page-header h1 { position: relative; z-index: 1; }
.page-header p { position: relative; z-index: 1; color: var(--text-secondary); margin-top: 0.5rem; }

/* ── Alerts/Flash ── */
.alert {
  padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem;
}
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: var(--success); }
.alert-danger { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: var(--danger); }
.alert-warning { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); color: var(--warning); }

/* ── Map ── */
.map-container { border-radius: var(--radius-md); overflow: hidden; height: 350px; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.8) brightness(0.8); }

/* ── Split Row Layout (Alternating Grid) ── */
.split-row {
  display: flex;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 6rem;
}
.split-row:nth-child(even) {
  flex-direction: row-reverse;
}
.split-col {
  flex: 1;
  min-width: 0;
}
.split-media-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.split-media-container img, .split-media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.split-media-container:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .split-row {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 4rem !important;
  }
}

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .navbar-container-centered {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 1.5rem !important;
    gap: 0 !important;
  }
  .nav-links-row {
    display: none !important;
  }
  .nav-logo-centered-only {
    justify-content: flex-start;
  }
  .logo-img-large {
    height: 38px !important;
  }
  .nav-links-mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
  .nav-links-mobile.active { display: flex; }
  .nav-links-mobile a { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-content h1 { font-size: 3rem; }
  .section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Ensure select dropdown options have high contrast dark backgrounds on all platforms */
select option {
  background-color: #FFFFFF !important;
  color: #111827 !important;
}

/* ── Room Showcase Section (Featured Room) ── */
.room-showcase {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  width: 100%;
}
.room-showcase-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.room-showcase-info .section-subtitle {
  margin-bottom: 0.5rem;
}
.room-showcase-info h3 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.room-showcase-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}
.room-showcase-image {
  flex: 3.2;
  min-width: 0;
  height: clamp(450px, 58vh, 600px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.35);
  position: relative;
}
.room-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurnsZoom 16s ease-in-out infinite alternate;
}
.room-showcase-image:hover img {
  transform: scale(1.06);
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

/* ── Premium CTA Button ── */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
  z-index: -1;
}
.btn-premium:hover {
  color: var(--bg-dark);
}
.btn-premium:hover::before {
  width: 100%;
}
.btn-premium i {
  transition: transform 0.3s ease;
  font-size: 0.95rem;
}
.btn-premium:hover i {
  transform: translateX(6px);
}

@media (max-width: 992px) {
  .room-showcase {
    gap: 2.5rem;
  }
  .room-showcase-image {
    flex: 2;
  }
}

@media (max-width: 768px) {
  .room-showcase {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .room-showcase-info, 
  .room-showcase-image {
    width: 100%;
    flex: none;
  }
  .room-showcase-image {
    height: 300px;
  }
  .room-showcase-info {
    text-align: center;
  }
  .room-showcase-info h3 {
    font-size: 2.2rem;
  }
  .btn-premium {
    width: 100%;
    justify-content: center;
  }
}

/* ── Global Lightbox Image Modal ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 25px rgba(201, 169, 110, 0.35);
  border: 1px solid rgba(251, 248, 245, 0.2);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: -10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.15);
}
.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-align: center;
}

/* ── Section Alt & Luxury Divider ── */
.section-alt {
  background: var(--bg-surface-alt) !important;
}

.luxury-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.luxury-section-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
}
.luxury-section-divider i {
  color: var(--primary);
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ── Stage Carousel (Rooms Slideshow) ── */
.stage-carousel-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 4rem;
}

.stage-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    min-height: 520px;
}

.stage-slide {
    position: absolute;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.55s ease,
                scale 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(160%) scale(0.72);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    width: 32%;
    max-width: 410px;
}

.stage-slide.is-prev {
    transform: translateX(-125%) scale(0.82);
    opacity: 0.5;
    z-index: 2;
    pointer-events: auto;
}

.stage-slide.is-active {
    transform: translateX(0) scale(1.04);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    position: relative;
}

.stage-slide.is-next {
    transform: translateX(125%) scale(0.82);
    opacity: 0.5;
    z-index: 2;
    pointer-events: auto;
}

.stage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
}

.stage-slide.is-active .stage-card {
    box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,169,110,0.3);
}

.stage-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-surface);
}

.stage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stage-slide.is-active .stage-card:hover .stage-card-image img {
    transform: scale(1.04);
}

.stage-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-light);
}

.stage-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.stage-card-body {
    padding: 1.8rem 1.5rem 1.6rem;
    text-align: center;
}

.stage-room-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.stage-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.stage-action-btn {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}
.stage-action-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.stage-action-btn:hover::after { width: 100%; }
.stage-action-btn:hover { color: var(--primary); }

.stage-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--border);
    display: inline-block;
}

.stage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: #3D3530;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.stage-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}
.stage-prev { left: 0; }
.stage-next { right: 0; }

.stage-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.stage-dot-indicator {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.stage-dot-indicator.active {
    background: var(--primary);
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .stage-slide { width: 85%; max-width: 340px; }
    .stage-arrow { display: none; }
}

/* ── Location Section & Slideshow ── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.location-slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.location-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.location-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.location-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.location-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.location-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.location-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.location-arrow:hover {
    background: var(--primary);
    color: #fff;
}

.location-prev { left: 1rem; }
.location-next { right: 1rem; }

.location-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.location-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.location-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-feature-item i {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-feature-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.location-feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location-slideshow-container {
        height: 320px;
    }
}

/* ── Contact WhatsApp Direct Link ── */
.contact-whatsapp-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.contact-whatsapp-link:hover {
    transform: translateY(-2px);
}
.contact-whatsapp-link:hover .contact-icon {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* ── Meetings & Events Asymmetrical Collage Grid ── */
.events-collage-container {
    max-width: 1240px;
    margin: 2.5rem auto 0;
}

.events-collage-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.collage-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    background: var(--bg-surface);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.collage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(201, 169, 110, 0.25);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-item-tall {
    min-height: 480px;
}

.collage-item-wide {
    min-height: 480px;
}

.collage-col-stacked {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.collage-item-stacked {
    flex: 1;
    min-height: 230px;
}

.collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0.85;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #ffffff;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.collage-badge {
    align-self: flex-start;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.collage-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.collage-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.btn-learn-more-link {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 4px;
    margin-top: 0.75rem;
    transition: color 0.3s ease;
}

.btn-learn-more-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 1.5px;
    background: var(--primary);
    transition: width 0.3s ease, background 0.3s ease;
}

.btn-learn-more-link:hover {
    color: var(--primary);
}

.btn-learn-more-link:hover::after {
    width: 70px;
}

@media (max-width: 992px) {
    .events-collage-grid {
        grid-template-columns: 1fr;
    }
    .collage-item-tall, .collage-item-wide {
        min-height: 320px;
    }
}

/* ── Experiences Page Hero Banner & Floating Contact Bar ── */
.events-hero {
    position: relative;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 6rem 1rem 8rem;
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 20, 28, 0.65), rgba(15, 20, 28, 0.82));
}

.events-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.events-hero-logo {
    max-width: 140px;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.events-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.events-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Floating Contact Box anchored at bottom of hero */
.hero-contact-floating-box {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    border: 1px solid var(--border);
    padding: 1.2rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 90%;
    max-width: 780px;
    color: var(--text-primary);
}

.floating-contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.floating-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.floating-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.floating-contact-item a {
    color: var(--text-primary);
    font-weight: 500;
}

.floating-contact-item a:hover {
    color: var(--primary-dark);
}

.btn-floating-send {
    background: #967246;
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.btn-floating-send:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-contact-floating-box {
        flex-direction: column;
        gap: 1rem;
        bottom: -70px;
        padding: 1.25rem 1.5rem;
    }
    .floating-contact-info {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ── Venue Environment Section & Slideshows ── */
.venue-environment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}

.venue-grid-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.venue-slideshow-wrap {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: var(--bg-surface);
}

.venue-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.venue-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
}

.venue-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.venue-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.venue-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #ffffff;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.venue-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.venue-arrow:hover {
    background: var(--primary);
    color: #ffffff;
}

.venue-prev { left: 1rem; }
.venue-next { right: 1rem; }

.venue-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.venue-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.venue-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.venue-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.venue-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.venue-tag {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
}

@media (max-width: 992px) {
    .venue-grid, .venue-grid-reverse {
        grid-template-columns: 1fr;
    }
    .venue-slideshow-wrap {
        min-height: 300px;
    }
    .venue-info {
        padding: 2rem 1.5rem;
    }
}


