/* ═══════════════════════════════════════════
   THE MAJESTIC MANOR — STYLE.CSS
   Theme: Soma Darjeeling inspired
   Dark Navy | Warm Cream | Antique Gold
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:       #6f5638;
  --navy-deep:  #6f5638;
  --navy-mid:   #7f948d;
  --cream:      #faf6ef;
  --cream-warm: #f2ebe0;
  --cream-dark: #e8ddd0;
  --gold:       #c9a84c;
  --gold-light: #dfc070;
  --gold-muted: #a88a3c;
  --text-dark:  #1a2e35;
  --text-mid:   #4a5a62;
  --text-light: #8a9aa2;
  --white:      #ffffff;
  --surface:    #f5f0e8;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm: 0 2px 12px rgba(26,46,53,0.08);
  --shadow-md: 0 8px 32px rgba(26,46,53,0.14);
  --shadow-lg: 0 20px 60px rgba(26,46,53,0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::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(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  stroke-width: 1.9;
  flex-shrink: 0;
}
.icon.fill {
  fill: currentColor;
}

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 9999;
  background: var(--gold); color: var(--navy); padding: 8px 16px;
  border-radius: 4px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

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

.section-pad { padding: 90px 0; }

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-muted); font-weight: 400; }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }

.section-header {
  text-align: center;
  margin: 0 auto 56px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 8px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-link {
  display: inline-block;
  color: var(--gold-muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gold-muted);
  padding-bottom: 2px;
  transition: var(--transition);
  margin-top: 24px;
}
.btn-link:hover { color: var(--navy); border-color: var(--navy); }

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.about-cta-row .btn-link { margin-top: 0; }

#annexeBookBtn { display: inline-block; margin-top: 24px; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0,0,0,0.54), rgba(00,0,0,0.34), rgba(0,0,0,0));
}
.header.scrolled {
  background: rgba(250,246,239,0.96);
  box-shadow: 0 2px 24px rgba(66,88,82,0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1360px;
  margin: 0 auto;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-book {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }

.btn-book-dropdown { position: relative; }
.btn-book-dropdown .btn-book {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.btn-book-dropdown .btn-book .icon { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn-book-dropdown.open .btn-book .icon { transform: rotate(180deg); }
.btn-book-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.btn-book-dropdown.open .btn-book-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-book-menu a {
  display: block;
  padding: 13px 18px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.btn-book-menu a:last-child { border-bottom: none; }
.btn-book-menu a:hover { background: var(--cream-dark); color: var(--gold-muted, var(--navy)); }

.btn-primary-dropdown { position: relative; display: inline-block; }
.btn-primary-dropdown .btn-primary {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.btn-primary-dropdown .btn-primary .icon { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn-primary-dropdown.open .btn-primary .icon { transform: rotate(180deg); }
.btn-primary-dropdown .btn-book-menu { left: 50%; right: auto; transform: translate(-50%, -8px); }
.btn-primary-dropdown.open .btn-book-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

.header.scrolled .logo-name { color: var(--navy-deep); text-shadow: none; }
.header.scrolled .logo-sub { color: rgba(66,88,82,0.7); text-shadow: none; }
.header.scrolled .nav-link { color: rgba(66,88,82,0.82); }
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active { color: var(--navy-deep); }
.header.scrolled .hamburger span { background: var(--navy-deep); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy-deep);
  z-index: 1001;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.mobile-nav.open { right: 0; }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--cream); font-size: 1.5rem; cursor: pointer;
  display: grid; place-items: center;
  min-width: 44px; min-height: 44px;
}
.mobile-link {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  font-weight: 400;
}
.mobile-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-book { margin-top: 24px; text-align: center; border-radius: 4px; border-bottom: none; font-weight: 700; }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 800;
}
.nav-overlay.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide.active.zoom-in {
  animation: heroZoomIn 7s ease-in-out forwards;
}
.hero-slide.active.zoom-out {
  animation: heroZoomOut 7s ease-in-out forwards;
}
@keyframes heroZoomIn {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.14) translate(-1%, -1%); }
}
@keyframes heroZoomOut {
  from { transform: scale(1.14) translate(-1%, -1%); }
  to   { transform: scale(1.04) translate(0,0); }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.38) 35%, rgba(0,0,0,0.42) 100%);
  z-index: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.25);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

@media (max-width: 768px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
  .hero-dots { bottom: 16px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 620px; */
  padding: 90px 32px 90px;
  margin: 0 auto;
  text-align: center;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  white-space: normal;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  position: absolute;
  bottom: 48px;
  right: max(5vw, 32px);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 24px 32px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero-card-item { text-align: center; }
.hc-icon { font-size: 1.5rem; display: block; margin: 0 auto 4px; color: var(--gold-light); }
.hc-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
}
.hc-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-top: 2px;
}
.hero-card-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.2);
}

/* Hero features table */
.hero-features {
  position: absolute;
  bottom: 48px;
  left: max(4vw, 32px);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 280px;
}

.hero-features-title {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-light);
    padding: 16px 20px 8px;
    /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); */
    background-color: #6f5638b5;
}
.hero-features-table { border-collapse: collapse; width: 100%; }
.hero-features-table td {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-features-table tr:last-child td { border-bottom: none; }
.hf-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-light); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--navy-deep);
  padding: 0;
  border-top: 3px solid var(--gold);
}
.booking-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1;
  min-width: 160px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.booking-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.booking-field input {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.booking-field input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); cursor: pointer; }
.nights-count {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}
.booking-map-link { text-decoration: none; cursor: pointer; transition: var(--transition); }
.booking-map-link:hover { background: rgba(255,255,255,0.05); }
.booking-map-value {
  display: flex; align-items: center; gap: 6px;
  color: var(--cream); font-size: 0.95rem; font-weight: 400;
}
.booking-map-value img { width: 14px; height: 14px; object-fit: contain; }
.booking-divider { display: none; }
.btn-book-now {
  background: var(--gold);
  color: var(--navy);
  padding: 20px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-book-now:hover { background: var(--gold-light); }
.booking-field input[readonly] { cursor: pointer; }

.btn-book-now-dropdown { position: relative; flex-shrink: 0; }
.btn-book-now-dropdown .btn-book-now .icon { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn-book-now-dropdown.open .btn-book-now .icon { transform: rotate(180deg); }
.btn-book-now-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.btn-book-now-dropdown.open .btn-book-now-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-book-now-menu a {
  display: block;
  padding: 13px 18px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.btn-book-now-menu a:last-child { border-bottom: none; }
.btn-book-now-menu a:hover { background: var(--cream-dark); color: var(--gold-muted, var(--navy)); }

/* jQuery UI datepicker — restyled to match theme */
.ui-datepicker {
  font-family: var(--font-body);
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm, 6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  padding: 10px;
  z-index: 20 !important;
}
.ui-datepicker .ui-datepicker-header {
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  padding: 6px 0;
}
.ui-datepicker .ui-datepicker-title { color: var(--cream); font-weight: 600; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  top: 6px;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { filter: invert(1); }
.ui-datepicker table { font-size: 0.82rem; }
.ui-datepicker th { color: var(--gold-muted); }
.ui-datepicker td a, .ui-datepicker td span {
  text-align: center;
  color: var(--text-dark);
  border-radius: 4px;
}
.ui-datepicker td a.ui-state-default:hover { background: var(--gold-light); color: var(--navy); }
.ui-datepicker td a.ui-state-active { background: var(--gold); color: var(--navy); font-weight: 700; }
.ui-datepicker .ui-state-disabled span { color: var(--text-light); }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  max-width: 100px;
}
.about-text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}
.af-icon { font-size: 1.1rem; color: var(--gold-muted); }
.annexe-strip .about-img-wrap { order: 2; }
.annexe-strip .about-content { order: 1; }
@media (max-width: 1024px) {
  .annexe-strip .about-img-wrap, .annexe-strip .about-content { order: initial; }
}

/* ── HIGHLIGHTS BAR ── */
.highlights-bar {
  background: var(--navy);
  padding: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.hl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.hl-item:last-child { border-right: none; }
.hl-item:hover { background: rgba(255,255,255,0.04); }
.hl-icon { font-size: 1.8rem; flex-shrink: 0; color: var(--gold); }
.hl-text { display: flex; flex-direction: column; gap: 2px; }
.hl-text strong { color: var(--cream); font-size: 0.9rem; font-weight: 600; }
.hl-text span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ── ROOMS GRID ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.room-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.room-img-wrap { position: relative; overflow: hidden; }
.room-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img { transform: scale(1.05); }
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.room-badge.featured { background: var(--navy); color: var(--cream); }
.room-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.room-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.room-amenities span {
  font-size: 0.75rem;
  background: var(--surface);
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-room {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 11px 24px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-room:hover { background: var(--navy); color: var(--cream); }

/* ── BUDGET CATEGORY ── */
.room-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.room-price span { font-family: var(--font-body); font-size: 0.75rem; font-weight: 400; color: var(--text-mid); text-transform: none; letter-spacing: 0; }
.budget-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.budget-toggle-btn {
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--cream-dark);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
}
.budget-toggle-btn:hover { border-color: var(--gold); color: var(--navy); }
.budget-toggle-btn.active { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.budget-panel { display: none; }
.budget-panel.active { display: block; }

/* Reusable image carousel (also used on the banquets venue cards) */
.venue-carousel { position: relative; overflow: hidden; min-height: 260px; }
.venue-carousel-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; z-index: 0; transition: opacity 0.7s ease, transform 0.8s ease; }
.venue-carousel-slide.active { opacity: 1; z-index: 1; }
.venue-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(0,0,0,0.28); color: var(--white);
  display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(4px);
  opacity: 0; transition: var(--transition);
}
.venue-carousel:hover .venue-carousel-arrow { opacity: 1; }
.venue-carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.venue-carousel-arrow.prev { left: 16px; }
.venue-carousel-arrow.next { right: 16px; }
.venue-carousel-dots {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 2;
  display: flex; gap: 8px;
}
.venue-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5);
  border: none; padding: 0; cursor: pointer; transition: var(--transition);
}
.venue-carousel-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }
@media (max-width: 768px) { .venue-carousel-arrow { opacity: 1; } }

/* ── SPECIAL OFFERS ── */
.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.offer-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  flex: 1 1 calc(33.333% - 24px);
  max-width: calc(33.333% - 24px);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.offer-icon { font-size: 2.4rem; margin: 0 auto 16px; display: block; color: var(--gold-muted); }
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.offer-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; }

/* ── BANQUETS DARK SECTION ── */
.bg-dark { background: var(--navy); }
.bg-surface { background: var(--surface); }
.bg-dark .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.bg-dark .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.bq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.bq-text { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75; margin-bottom: 28px; }
.bq-list { display: flex; flex-direction: column; gap: 14px; }
.bq-content .btn-outline-light { margin-top: 36px; }
.bq-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.bq-item strong { color: var(--cream); }
.annexe-note-row { margin-top: 20px; color: var(--text-mid); }
.annexe-note-row strong { color: var(--navy); }
.bq-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; color: var(--gold-light); }
.bq-img-wrap { overflow: hidden; border-radius: var(--r-lg); }
.bq-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-lg); transition: transform 0.8s ease; }
.bq-img-wrap:hover .bq-img { transform: scale(1.03); }

/* ── EXPERIENCES ── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.exp-card { border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.exp-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-img { transform: scale(1.03); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,26,0.9) 0%, rgba(10,20,26,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.exp-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.exp-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.exp-meta { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: flex; align-items: center; gap: 7px; }

/* ── TESTIMONIALS ── */
.testi-slider { overflow: hidden; position: relative; }
.testi-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  transition: var(--transition);
}
.testi-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
}
.testi-text {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  margin-top: 24px;
  font-style: italic;
}
.testi-author { border-top: 1px solid var(--cream-dark); padding-top: 16px; }
.testi-author strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.testi-author span { color: var(--text-light); font-size: 0.8rem; }
.testi-stars { color: var(--gold); font-size: 0.95rem; margin-top: 6px; display: flex; gap: 3px; }
.testi-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testi-prev, .testi-next {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--cream-dark);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
}
.testi-prev:hover, .testi-next:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream-dark); cursor: pointer; transition: var(--transition);
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── LOCATION ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.loc-address {
  font-style: normal;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin: 20px 0 24px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 4px solid var(--gold);
}
.loc-contacts { display: flex; flex-direction: column; gap: 12px; }
.loc-contact-item {
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-contact-item:hover { color: var(--gold-muted); }
.loc-map iframe { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }

/* ── FOOTER ── */
.footer { background: var(--navy-deep); color: var(--cream); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-name { font-size: 1.1rem; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--navy); }

.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a, .footer-contact a, .footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.9;
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--cream); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 2px; }
.footer-contact p { margin-bottom: 8px; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom p a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom p a:hover { color: var(--cream); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--cream); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 999;
  background: var(--navy);
  color: var(--cream);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 100px 0 80px;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./img/bread-crumb.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  white-space: normal;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-card { display: none; }
  .hero-features { display: none; }
  .about-grid, .bq-grid, .loc-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card { flex-basis: calc(50% - 24px); max-width: calc(50% - 24px); }
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 18px 24px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .header-inner { padding: 14px 16px; gap: 12px; }
  .logo-sub { display: none; }
  .btn-book { padding: 9px 16px; font-size: 0.72rem; }
  /* Hero: comfortable fixed height instead of 100vh, enough room for title+tagline+buttons */
  .hero { min-height: 78vh; aspect-ratio: unset; }
  .hero-content { padding: 32px 20px; }
  .hero-tagline { font-size: 1rem; }
  .hero-desc { display: none; }
  .hero-location { font-size: 0.7rem; margin-bottom: 12px; }
  .hero-scroll { display: none; }
  /* Stacking card scroll on mobile */
  .rooms-grid { display: flex; flex-direction: column; gap: 0; }
  .budget-panel .rooms-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
  .rooms-section .room-card {
    position: sticky;
    top: 70px;
    transform-origin: top center;
    will-change: transform;
    margin-bottom: 12px;
  }
  .rooms-section .room-card:nth-child(1) { z-index: 1; }
  .rooms-section .room-card:nth-child(2) { z-index: 2; }
  .rooms-section .room-card:nth-child(3) { z-index: 3; }
  .rooms-section .room-card:nth-child(4) { z-index: 4; }
  /* Stacking card scroll — Explore section */
  .exp-grid { display: flex; flex-direction: column; gap: 0; }
  .experiences-section .exp-card {
    position: sticky;
    top: 70px;
    transform-origin: top center;
    will-change: transform;
    margin-bottom: 12px;
  }
  .experiences-section .exp-card:nth-child(1) { z-index: 1; }
  .experiences-section .exp-card:nth-child(2) { z-index: 2; }
  .experiences-section .exp-card:nth-child(3) { z-index: 3; }
  .experiences-section .exp-card:nth-child(4) { z-index: 4; }
  .testi-track { grid-template-columns: 1fr; }
  .testi-controls { display: flex; }
  .footer-top { padding: 36px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-desc { font-size: 0.82rem; margin-bottom: 14px; }
  .footer-links h4, .footer-contact h4 { margin-bottom: 10px; }
  .footer-links a, .footer-contact a, .footer-contact p { font-size: 0.8rem; line-height: 1.65; }
  .footer-bottom { padding: 14px 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { gap: 16px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .offer-card { flex-basis: 100%; max-width: 100%; }
  .about-badge { right: 10px; bottom: -10px; }
  .bq-img { height: 300px; }

  /* Booking bar: usable stacked layout instead of hidden */
  .booking-inner { flex-direction: column; align-items: stretch; gap: 0; }
  .booking-field {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2px 12px;
  }
  .booking-field label { flex: 0 0 100%; }
  .booking-map-link { flex-direction: row; }
  .btn-book-now-dropdown { width: 100%; }
  .btn-book-now { width: 100%; justify-content: center; padding: 16px 24px; }
  .btn-book-now-menu { left: 0; right: 0; width: 100%; min-width: 0; }

  /* jQuery UI datepicker: fit small screens */
  .ui-datepicker { width: min(300px, 92vw) !important; }

  /* Enlarge touch hit-areas for small decorative dots without growing them visually or overlapping neighbours */
  .hero-dot, .testi-dot, .venue-carousel-dot { position: relative; }
  .hero-dot::after, .testi-dot::after, .venue-carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 32px; height: 32px;
  }

  /* Header "Book Now" dropdown: full-width menu on small screens */
  .btn-book-menu { left: 0; right: 0; width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .logo-mark { height: 34px; width: auto; }
  .logo-name { font-size: 0.95rem; }
  .btn-book { padding: 8px 12px; font-size: 0.66rem; letter-spacing: 0.06em; }
}

/* ── LANDSCAPE PHONES ── */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero { aspect-ratio: unset; min-height: 100svh; }
  .hero-content { padding: 16px 20px; }
  .hero-scroll { display: none; }
  .rooms-section .room-card,
  .experiences-section .exp-card { position: relative; top: 0; }
  .page-hero { padding: 70px 0 40px; }
  .mobile-nav { padding: 60px 32px 24px; overflow-y: auto; }
  .mobile-link { padding: 8px 0; font-size: 1rem; }
}

/* ── TOUCH TARGETS ── */
@media (max-width: 1100px) {
  .nav-link, .mobile-link { min-height: 44px; display: flex; align-items: center; }
}
@media (max-width: 768px) {
  .venue-carousel-arrow, .lightbox-close, .lightbox-prev, .lightbox-next {
    min-width: 40px;
    min-height: 40px;
  }
  .venue-carousel-arrow { width: 40px; height: 40px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide.active.zoom-in,
  .hero-slide.active.zoom-out {
    animation: none;
  }
  .scroll-line { animation: none; }
}
