:root {
  color-scheme: dark;
  --bg: #050406;
  --surface: #0c0b0f;
  --surface-2: #14131a;
  --text: #fcfbfd;
  --muted: #a19fad;
  --primary: #d4af37;       /* Champagne Gold */
  --primary-strong: #ffd700;/* Bright Gold */
  --primary-soft: rgba(212, 175, 55, 0.12);
  --accent: #ff2a5f;        /* Hot Neon Seductive Crimson */
  --border: rgba(212, 175, 55, 0.08); /* Sophisticated thin gold borders */
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  --font-display: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-display);
  color: var(--text);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.06), transparent 50%),
              linear-gradient(180deg, var(--bg) 0%, #0d0c11 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(5, 4, 6, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--primary-strong) 0%, #e5c060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Button UI system */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #050406;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.button-primary:hover {
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, var(--primary-strong), #ffe066);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: var(--primary);
  background: rgba(212, 175, 55, 0.08);
  color: var(--primary-strong);
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-toggle:hover {
  border-color: var(--primary);
  background: rgba(212, 175, 55, 0.05);
}

.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .header-inner {
  flex-direction: row-reverse;
}

.rtl .main-nav {
  direction: rtl;
}

.rtl .booking-list {
  padding-left: 0;
  padding-right: 1.25rem;
}

.mobile-toggle {
  display: none;
  border: none;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.04);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Sections */
.section {
  padding: 6.5rem 0;
  position: relative;
}

/* Redesigned alternation to premium dark modes rather than blue background */
.section-light {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-dark {
  background: var(--bg);
}

.section-gallery {
  background: var(--surface-2);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Hero Section */
.hero-section {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--muted);
  margin-top: 0.8rem;
  font-weight: 600;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.2rem;
  margin-top: 1.75rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-rating span:first-of-type {
  color: var(--primary-strong);
  letter-spacing: 0.1em;
}

.hero-rating strong {
  color: var(--text);
  font-weight: 700;
}

.hero-rating span:last-of-type {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.hero-actions .button {
  min-width: 175px;
}

.hero-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.hero-feature-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
}

.hero-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--primary);
}

.hero-feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.hero-feature-card-action {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-feature-card-action .button {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Hero Media Panel */
.hero-media {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(480px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card:hover {
  transform: scale(1.02) translateY(-2px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card:hover img {
  transform: scale(1.05);
}

.hero-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 4, 6, 0.9) 80%);
  color: var(--text);
  backdrop-filter: blur(4px);
}

.hero-card-info span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-strong);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-card-info strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

/* Grids Setup */
.feature-grid,
.events-grid,
.testimonial-grid,
.gallery-grid,
.booking-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

/* Feature Section */
.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card h3::before {
  content: '✨';
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

/* Events Grid */
.events-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
}

.event-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-copy {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.event-copy .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.event-copy h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.event-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.event-copy .button {
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}

/* Gallery Grid */
.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-grid img {
  border-radius: 1.25rem;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-grid img:hover {
  transform: scale(1.04);
  filter: brightness(1.15) contrast(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Booking Section */
.booking-grid {
  grid-template-columns: 1.11fr 0.89fr;
  align-items: center;
  gap: 4.5rem;
}

.booking-list {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding-left: 1.25rem;
  list-style-type: decimal;
}

.booking-list li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.booking-list li::marker {
  color: var(--primary);
  font-weight: 800;
}

.booking-list li strong {
  color: var(--text);
  font-weight: 700;
  margin-right: 0.5rem;
  display: inline-block;
}

.booking-info {
  display: grid;
  gap: 1.25rem;
}

.booking-card,
.contact-card {
  padding: 2.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.booking-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.15);
}

.booking-card span,
.contact-card span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.booking-card strong,
.contact-card strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.booking-card strong a,
.contact-card strong a {
  color: var(--primary-strong);
  transition: text-shadow 0.2s ease;
}

.booking-card strong a:hover,
.contact-card strong a:hover {
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.booking-card p,
.contact-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonials Grid */
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0 0 1.5rem;
  position: relative;
}

.testimonial-card p::before {
  content: '“';
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.12);
  position: absolute;
  top: -1.75rem;
  left: -1rem;
  font-family: serif;
}

.testimonial-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact Section */
.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 1.25rem;
  margin: 2.25rem 0 2.5rem;
}

.contact-map {
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: var(--shadow);
}

/* Footer Section */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #050406;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
  flex-wrap: wrap;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-social span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background 0.25s ease, 
              border-color 0.25s ease, 
              box-shadow 0.25s ease,
              color 0.25s ease;
  position: relative;
  overflow: hidden;
  color: var(--muted);
}

.social-btn .social-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.25s ease, fill 0.25s ease;
  display: inline-block;
  vertical-align: middle;
}

/* Hover effects with authentic brand colors and shadows */

/* Instagram */
.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(214, 36, 159, 0.4);
}

/* TikTok */
.social-btn.tiktok:hover {
  background: #010101;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 242, 254, 0.3),
              -2px -2px 0px rgba(254, 9, 121, 0.6),
              2px 2px 0px rgba(0, 242, 254, 0.6);
}

/* Snapchat */
.social-btn.snapchat:hover {
  background: #fffc00;
  border-color: transparent;
  color: #000000;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 252, 0, 0.35);
}

/* WhatsApp */
.social-btn.whatsapp:hover {
  background: #25d366;
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Header Socials Layout */
.header-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-socials .social-btn {
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.05);
}

.header-socials .social-btn .social-svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 1100px) {
  .header-socials {
    display: none;
  }
}

/* Mobile Socials Layout in Drawer */
.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.mobile-socials .social-btn {
  width: 44px;
  height: 44px;
}

/* Floating Social Dock on the Down Corner */
.floating-social-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.75rem;
}

/* RTL orientation for Floating Dock */
.rtl .floating-social-dock {
  right: auto;
  left: 24px;
}

.dock-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd700 0%, #b8973a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #000000;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35),
              0 0 15px rgba(212, 175, 55, 0.15);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.3s ease,
              background 0.3s ease,
              color 0.3s ease;
}

.dock-toggle:hover {
  transform: scale(1.08) rotate(10deg);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5),
              0 0 25px rgba(212, 175, 55, 0.3);
}

.dock-toggle .pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulseRing 2s infinite ease-out;
  pointer-events: none;
  transform-origin: center;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.dock-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-social-dock.active .dock-buttons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-social-dock.active .dock-toggle {
  background: #110f14;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--primary-strong);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.floating-social-dock.active .dock-toggle .pulse-ring {
  animation: none;
  opacity: 0;
  display: none;
}

.floating-social-dock.active .dock-toggle .dock-icon {
  transform: rotate(180deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Stagger transitions for a playful entrance */
.floating-social-dock.active .dock-buttons .social-btn:nth-child(1) { transition-delay: 0.03s; }
.floating-social-dock.active .dock-buttons .social-btn:nth-child(2) { transition-delay: 0.06s; }
.floating-social-dock.active .dock-buttons .social-btn:nth-child(3) { transition-delay: 0.09s; }
.floating-social-dock.active .dock-buttons .social-btn:nth-child(4) { transition-delay: 0.12s; }


.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-strong);
}

/* Mobile & Touch Responsiveness */
@media (max-width: 1024px) {
  .hero-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-rating {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .feature-grid,
  .events-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(12, 11, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .mobile-toggle {
    display: flex;
  }

  .booking-list {
    margin: 1.5rem 0;
  }

  .contact-map {
    min-height: 320px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.25rem 0;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-feature-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-actions .button {
    width: 100%;
  }

  .booking-card,
  .contact-card,
  .testimonial-card,
  .feature-card {
    padding: 1.75rem;
  }
}

/* ==========================================
   Focus element compatibility selectors
   Highly readable, brand-cohesive stylings
   ========================================== */
main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > p:nth-of-type(2) {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-top: 0.8rem;
}

main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > p:nth-of-type(3) {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(3) > article:nth-of-type(1) > h3:nth-of-type(1) {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(3) > article:nth-of-type(1) > p:nth-of-type(1) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(3) > article:nth-of-type(2) {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(1) > h3:nth-of-type(1) {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(1) > p:nth-of-type(1) {
  color: var(--muted);
  line-height: 1.75;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(2) > h3:nth-of-type(1) {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(2) > p:nth-of-type(1) {
  color: var(--muted);
  line-height: 1.75;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(3) > h3:nth-of-type(1) {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(3) > p:nth-of-type(1) {
  color: var(--muted);
  line-height: 1.75;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(4) > h3:nth-of-type(1) {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

main:nth-of-type(1) > section#services:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(4) > p:nth-of-type(1) {
  color: var(--muted);
  line-height: 1.75;
}

main:nth-of-type(1) > section#events:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(1) > div:nth-of-type(1) > h3:nth-of-type(1) {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
}

main:nth-of-type(1) > section#events:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(1) > div:nth-of-type(1) > p:nth-of-type(1) {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

main:nth-of-type(1) > section#events:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(2) > div:nth-of-type(1) > p:nth-of-type(1) {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

main:nth-of-type(1) > section#events:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(2) > div:nth-of-type(1) > h3:nth-of-type(1) {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
}

main:nth-of-type(1) > section#events:nth-of-type(3) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(2) > div:nth-of-type(1) > p:nth-of-type(2) {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > h2:nth-of-type(1) {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > p:nth-of-type(2) {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > p:nth-of-type(1) {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > ol:nth-of-type(1) > li:nth-of-type(1) > span:nth-of-type(1) {
  color: var(--muted);
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > ol:nth-of-type(1) > li:nth-of-type(1) > strong:nth-of-type(1) {
  color: var(--text);
  font-weight: 700;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > ol:nth-of-type(1) > li:nth-of-type(2) > strong:nth-of-type(1) {
  color: var(--text);
  font-weight: 700;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > ol:nth-of-type(1) > li:nth-of-type(2) > span:nth-of-type(1) {
  color: var(--muted);
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > ol:nth-of-type(1) > li:nth-of-type(3) > strong:nth-of-type(1) {
  color: var(--text);
  font-weight: 700;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(1) > ol:nth-of-type(1) > li:nth-of-type(3) > span:nth-of-type(1) {
  color: var(--muted);
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > strong:nth-of-type(1) {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > span:nth-of-type(1) {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(3) > strong:nth-of-type(1) > a:nth-of-type(1) {
  color: var(--primary-strong);
  font-weight: 800;
}

main:nth-of-type(1) > section:nth-of-type(6) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(1) > p:nth-of-type(1) {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

main:nth-of-type(1) > section:nth-of-type(6) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(2) > p:nth-of-type(1) {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

main:nth-of-type(1) > section:nth-of-type(6) > div:nth-of-type(1) > div:nth-of-type(2) > article:nth-of-type(3) > p:nth-of-type(1) {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

main:nth-of-type(1) > section#contact:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) {
  padding: 2.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

main:nth-of-type(1) > section#contact:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) {
  padding: 2.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

main:nth-of-type(1) > section#contact:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > strong:nth-of-type(1) {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

main:nth-of-type(1) > section#contact:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > span:nth-of-type(1) {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
}

main:nth-of-type(1) > section#contact:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(3) > span:nth-of-type(1) {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
}

main:nth-of-type(1) > section#contact:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(3) > strong:nth-of-type(1) {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(1) > strong:nth-of-type(1) {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

main:nth-of-type(1) > section#home:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) {
  display: flex;
  justify-content: center;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(2) > p:nth-of-type(1) {
  color: var(--muted);
  line-height: 1.6;
}

main:nth-of-type(1) > section:nth-of-type(5) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(3) > p:nth-of-type(1) {
  color: var(--muted);
  line-height: 1.6;
}
