/* ========== SELF-HOSTED FONTS (faster in Iran) ========== */
@font-face {
  font-family: 'Vazirmatn';
  src: url('../assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../assets/fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../assets/fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  right: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary, #00b4d8);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link img {
  display: block;
  width: 18px;
  height: 18px;
}
.skip-link-text {
  margin-inline-start: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.skip-link {
  display: inline-flex;
  align-items: center;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
html[dir="ltr"] .skip-link {
  right: auto;
  left: 1rem;
}

/* ========================================
   پارک آبی الماس — Style Sheet
   Exact Atlantis The Royal inspired layout
   Full-screen sandwich menu + minimal header
   ======================================== */

:root {
  /* Super-luxury palette — champagne gold on deep obsidian */
  --color-bg: #06060a;
  --color-bg-alt: #0c0c12;
  --color-surface: #14141c;
  --color-surface-hover: #1c1c28;
  --color-primary: #c4a574;
  --color-primary-dark: #9a7f52;
  --color-accent: #d4af37;
  --color-accent-light: #e8d9a8;
  --color-text: #f5f1e9;
  --color-text-muted: #9b9589;
  --color-white: #faf8f4;
  --color-overlay: rgba(6, 6, 10, 0.72);
  --color-gold-glow: rgba(196, 165, 116, 0.4);
  --color-border-gold: rgba(196, 165, 116, 0.28);

  --font-main: 'Vazirmatn', system-ui, -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --radius: 12px;
  --radius-lg: 20px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Keep wheel/touch scrolling native; scripted navigation still uses smooth behavior. */
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

/* ========== CUSTOM SCROLLBAR (desktop / devices that show it) ========== */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-bg-alt);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) rgba(12, 12, 18, 0.9);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
  border-left: 1px solid rgba(196, 165, 116, 0.08);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, #c4a574 45%, #9a7f52 100%);
  border-radius: 999px;
  border: 2px solid var(--color-bg-alt);
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e8d9a8 0%, #d4af37 40%, #c4a574 100%);
}

::-webkit-scrollbar-thumb:active {
  background: var(--color-primary-dark);
}

::-webkit-scrollbar-corner {
  background: var(--color-bg-alt);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}

/* ========== TYPOGRAPHY ========== */
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--color-primary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.55s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #e8d9a8 0%, #c4a574 40%, #9a7f52 100%);
  color: #1a1814;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(196, 165, 116, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: btnPulse 2.8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(196, 165, 116, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: none;
  filter: brightness(1.06);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--color-white);
  background: rgba(10, 22, 40, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(196, 165, 116, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(196, 165, 116, 0.55), 0 0 0 6px rgba(196, 165, 116, 0.12);
  }
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.12);
}

.lang-btn {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border-radius: 50px;
  transition: all 0.25s ease;
  min-width: 36px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  line-height: 1;
}

a.lang-btn:hover {
  color: var(--color-white);
  text-decoration: none;
}

.lang-btn:hover {
  color: var(--color-white);
}

.lang-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

a.lang-btn.active {
  color: var(--color-white);
}

/* LTR adjustments */
html[dir="ltr"] .about-list li {
  padding-right: 0;
  padding-left: 1.5rem;
}

html[dir="ltr"] .about-list li::before {
  right: auto;
  left: 0;
}

html[dir="ltr"] body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

html[dir="rtl"] body {
  font-family: var(--font-main);
}



/* ========== HEADER (Minimal Atlantis style) ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  transition: all var(--transition);
  /* Glass (like sandwich menu) when at top */
  background: rgba(6, 6, 10, 0.45);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header.scrolled {
  background: rgba(6, 6, 10, 0.94);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  direction: ltr; /* always: menu left, book right */
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  max-width: 42%;
  pointer-events: auto;
}

.logo-img {
  height: clamp(56px, 5.5vw, 72px);
  width: auto;
  max-width: 100%;
  transition: height var(--transition);
}

.header.scrolled .logo-img {
  height: clamp(46px, 4.5vw, 56px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 1002;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  z-index: 1003;
  flex-shrink: 0;
}

.btn-book:hover {
  background: var(--color-white);
  color: var(--color-bg);
  border-color: var(--color-white);
}

/* ========== HAMBURGER / SANDWICH MENU BUTTON ========== */
.menu-toggle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1003;
  border-radius: 50%;
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: transparent;
}

/* Two-line hamburger → X (longer + thinner = rectangular) */
.menu-toggle-box {
  width: 34px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.menu-toggle-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
  /* center line hidden — only 2 lines */
  background-color: transparent !important;
}

.menu-toggle-inner,
.menu-toggle-inner::before,
.menu-toggle-inner::after {
  width: 34px;
  height: 1px;
  background-color: var(--color-white);
  border-radius: 1px;
  position: absolute;
  left: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              top 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

.menu-toggle-inner::before,
.menu-toggle-inner::after {
  content: '';
  display: block;
  background-color: var(--color-white);
}

/* Top line */
.menu-toggle-inner::before {
  top: -5px;
}

/* Bottom line */
.menu-toggle-inner::after {
  bottom: -5px;
  top: auto;
}

/* Active: two lines morph into X */
.menu-toggle.active .menu-toggle-inner {
  background-color: transparent !important;
}

.menu-toggle.active .menu-toggle-inner::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-inner::after {
  bottom: 0;
  top: 0;
  transform: rotate(-45deg);
}

/* ========== FULL SCREEN MENU OVERLAY ========== */
/* Side menu panel (~1/3 width) */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1250;
  visibility: hidden;
  pointer-events: none;
}

.menu-overlay.open {
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 10, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.header.scrolled ~ .menu-overlay .menu-overlay-bg {
  background: rgba(6, 6, 10, 0.55);
}

.menu-overlay.open .menu-overlay-bg {
  opacity: 1;
}

.menu-content {
  position: absolute;
  /* Stick just below fixed header — never slide under it */
  top: var(--header-h, 80px);
  bottom: 0;
  left: 0;
  right: auto;
  width: min(340px, 33.33vw);
  min-width: 260px;
  max-width: 380px;
  height: auto; /* top+bottom pin height */
  padding-top: 0.5rem;
  background: rgba(6, 6, 10, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-bottom: 2.5rem;
  opacity: 1;
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease, top 0.25s ease;
  z-index: 1101;
  overflow: hidden; /* fit in viewport — no menu scrollbar */
  overscroll-behavior: none;
  border-top: none;
}

/* When header is scrolled (solid), menu becomes solid too */
.header.scrolled ~ .menu-overlay .menu-content {
  background: rgba(6, 6, 10, 0.97);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
}

html[dir="ltr"] .header.scrolled ~ .menu-overlay .menu-content {
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

/* LTR: hamburger is on the right → panel from right */
html[dir="ltr"] .menu-content {
  left: 0;
  right: auto;
  transform: translateX(-105%);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
}

.menu-overlay.open .menu-content {
  transform: translateX(0);
}

.fullscreen-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.fullscreen-nav-list {
  text-align: center;
  margin: 0;
  padding: 0;
}

html[dir="ltr"] .fullscreen-nav-list {
  text-align: center;
}

.fullscreen-nav-list li {
  margin-bottom: 0.35rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: calc(0.05s * var(--i));
}

html[dir="ltr"] .fullscreen-nav-list li {
  transform: translateX(12px);
}

.menu-overlay.open .fullscreen-nav-list li {
  opacity: 1;
  transform: translateX(0);
}

.fullscreen-link {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
  padding: 0.55rem 0.4rem;
  position: relative;
  transition: color 0.25s ease, padding 0.25s ease;
}

.fullscreen-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.fullscreen-link:hover {
  color: var(--color-white);
}

.fullscreen-link:hover::after {
  width: 32px;
}

.menu-footer {
  margin-top: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease 0.25s;
}

.menu-overlay.open .menu-footer {
  opacity: 1;
}

/* Hamburger ticket CTA — compact luxury pill, balanced with nav links */
.menu-footer .btn,
.menu-footer .btn.btn-primary,
.menu-footer .btn-lg,
.menu-footer a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  padding: 0.7rem 1.55rem;
  border-radius: 999px;
  min-height: 0;
  height: auto;
  gap: 0.4rem;
  white-space: nowrap;
  color: #1a1814;
  background: linear-gradient(135deg, #f0e4c0 0%, #d4af37 42%, #b8923e 78%, #9a7f52 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 18px rgba(196, 165, 116, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset;
  animation: none;
  filter: none;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.menu-footer .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: 0;
  pointer-events: none;
}

.menu-footer .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 8px 26px rgba(196, 165, 116, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  animation: none;
}

.menu-footer .btn:hover::before {
  transform: translateX(120%);
}

.menu-footer .btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.menu-contact {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.menu-contact a:hover {
  color: var(--color-primary);
}

.header {
  z-index: 1300;
}

.menu-toggle {
  z-index: 1301;
}

@media (max-width: 900px) {
  .menu-content {
    width: min(320px, 88vw);
    min-width: 240px;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* stable when mobile URL bar hides */
  min-height: 560px;
  max-height: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: contents;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(6, 6, 10, 0.25) 0%, rgba(6, 6, 10, 0.55) 70%, rgba(6, 6, 10, 0.75) 100%),
    linear-gradient(
      to bottom,
      rgba(6, 6, 10, 0.45) 0%,
      rgba(6, 6, 10, 0.2) 35%,
      rgba(6, 6, 10, 0.35) 65%,
      rgba(6, 6, 10, 0.7) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 5.5rem clamp(1.1rem, 4vw, 2rem) 4.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8d9a8;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(232, 217, 168, 0.4);
  border-radius: 50px;
  background: rgba(6, 6, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Title block */
.hero-title {
  margin: 0 0 1.15rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-title-main {
  display: block;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #faf8f4;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 8px 40px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #d4af37;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(212, 175, 55, 0.2);
}

/* Keep legacy highlight class working elsewhere */
.hero-title span.highlight,
.section-title span.highlight,
.hero-title .highlight {
  color: var(--color-primary);
  display: inline-block;
}

/* Gold divider line */
.hero-divider {
  width: 56px;
  height: 2px;
  margin: 0 auto 1.35rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #e8d9a8, #d4af37, transparent);
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245, 241, 233, 0.88);
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

/* Primary CTA — solid gold */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1a1814;
  background: linear-gradient(135deg, #e8d9a8 0%, #d4af37 45%, #c4a574 100%);
  border: none;
  border-radius: 50px;
  box-shadow:
    0 4px 20px rgba(212, 175, 55, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary:hover {
  color: #1a1814;
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(212, 175, 55, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
  filter: brightness(1.06);
}

/* Ghost CTA — glass outline */
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f5f1e9;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 217, 168, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* ========== Atlantis-style scroll line ========== */
.hero-scroll-line.is-hidden {
  opacity: 0 !important;
  transition: opacity 0.45s ease;
}

.hero-scroll-line {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  animation: scrollLineIn 1s 1.2s forwards;
}

.hero-scroll-line-bar {
  display: block;
  width: 2px;
  height: 64px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(232, 217, 168, 0) 0%,
    rgba(232, 217, 168, 0.9) 25%,
    rgba(212, 175, 55, 1) 55%,
    rgba(196, 165, 116, 0.85) 80%,
    rgba(196, 165, 116, 0) 100%
  );
  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.45),
    0 0 22px rgba(212, 175, 55, 0.2);
  transform-origin: top center;
  animation: scrollLinePulse 2.4s 2.1s ease-in-out infinite;
}

/* Diamond tip under the line */
.hero-scroll-line::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  background: url("../assets/images/common/diamond.svg") center / contain no-repeat;
  opacity: 0.95;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.55));
  animation: scrollTipPulse 2.4s 2.1s ease-in-out infinite;
}

@keyframes scrollLineIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollLinePulse {
  0% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
}

@keyframes scrollTipPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}

@media (max-width: 768px) {
  .hero-scroll-line.is-hidden {
    opacity: 0 !important;
    transition: opacity 0.45s ease;
  }

  .hero-scroll-line {
    bottom: 1.35rem;
    height: 72px;
  }

  .hero-scroll-line-bar {
    height: 52px;
    width: 2px;
  }

  .hero-scroll-line::after {
    font-size: 0.5rem;
    margin-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line-bar {
    animation: none;
    opacity: 0.85;
    transform: none;
  }

  .hero-scroll-line::after {
    animation: none;
    opacity: 0.8;
  }

  .hero-scroll-line.is-hidden {
    opacity: 0 !important;
    transition: opacity 0.45s ease;
  }

  .hero-scroll-line {
    animation: none;
    opacity: 1;
  }
}



/* Vertical scroll indicator — right side center */
.hero-progress {
  position: absolute;
  top: 50%;
  right: 1.75rem;
  left: auto;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
  pointer-events: none;
}

html[dir="ltr"] .hero-progress {
  right: auto;
  left: 1.75rem;
}

.scroll-chevron {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.scroll-chevron svg {
  display: block;
}

.hero-progress-track {
  width: 2px;
  height: 72px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hero-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e8d9a8, #c4a574);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
  box-shadow: 0 0 12px rgba(196, 165, 116, 0.5);
}

.hero-progress.done .scroll-chevron-down {
  opacity: 0.25;
}

.hero-progress.done .hero-progress-bar {
  background: #ffffff;
}

.hero-progress.hidden {
  opacity: 0 !important;
  transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
  .hero-progress {
    right: 0.9rem;
  }
  html[dir="ltr"] .hero-progress {
    left: 0.9rem;
  }
  .hero-progress-track {
    height: 56px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ========== INTRO ========== */
.intro {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: var(--color-bg);
}

.intro .section-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* ========== EXPERIENCES ========== */
.experiences {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.exp-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.exp-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.exp-card:hover .exp-image img {
  transform: scale(1.06);
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.exp-card:hover .exp-overlay {
  opacity: 1;
}

.exp-content {
  padding: var(--space-md) var(--space-lg);
}

.exp-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.exp-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.exp-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

.exp-link:hover {
  color: var(--color-accent);
}

/* ========== FACILITIES ========== */
.facilities {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.facility-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.facility-item:hover {
  border-color: rgba(196, 165, 116, 0.3);
  transform: translateY(-4px);
  background: #1c1c28;
}

.facility-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  line-height: 0;
}

.facility-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.facility-item h3,
.facility-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.facility-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========== GALLERY — Super Luxury Mosaic ========== */
.gallery {
  padding: 0;
  background: #06060a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: minmax(320px, 42vh) minmax(240px, 32vh);
  gap: 0.75rem;
  padding: 0.75rem;
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,6,10,0.55) 100%);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.gallery-item:hover::after {
  opacity: 0.35;
}

.gallery-item.large {
  grid-row: span 2;
  border-radius: 6px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ========== ABOUT ========== */
.about {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-list {
  margin-top: var(--space-md);
}

.about-list li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--color-text-muted);
}

.about-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: url("../assets/images/common/diamond.svg") center / contain no-repeat;
  opacity: 0.9;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* ========== TICKETS ========== */
.tickets {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.tickets-box {
  background: linear-gradient(145deg, #16161f 0%, #0c0c12 50%, #121018 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  border: 1px solid rgba(196, 165, 116, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tickets-price {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.tickets-price strong {
  font-size: 1.8rem;
  color: var(--color-accent);
  font-weight: 800;
}

.discount {
  display: inline-block;
  margin-right: 0.75rem;
  background: rgba(212, 175, 55, 0.18);
  color: var(--color-accent);
  font-size: 0.85rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-weight: 600;
}

.tickets-note {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.tickets-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(196, 165, 116, 0.15);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-card h3,
.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.contact-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.contact-card a:hover {
  color: var(--color-primary);
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.85rem !important;
  opacity: 0.8;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  background: linear-gradient(180deg, #08080e 0%, #050508 100%);
  padding: 4.5rem 0 1.75rem;
  border-top: 1px solid rgba(196, 165, 116, 0.14);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 217, 168, 0.7), transparent);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 3rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 4px 16px rgba(196, 165, 116, 0.2));
}

.footer-brand-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: #f5f1e9;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.footer-brand-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h3,
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8d9a8;
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.55rem;
}

.footer-nav a {
  color: rgba(245, 241, 233, 0.62);
  font-size: 0.92rem;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover {
  color: #e8d9a8;
  transform: translateX(-3px);
}

html[dir="ltr"] .footer-nav a:hover {
  transform: translateX(3px);
}

.footer-ticket-text {
  color: rgba(245, 241, 233, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 240px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1814;
  background: linear-gradient(135deg, #e8d9a8 0%, #d4af37 50%, #c4a574 100%);
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.footer-cta:hover {
  color: #1a1814;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
  filter: brightness(1.05);
}

.footer-bottom {
  position: relative;
  text-align: center;
  padding-top: 1.5rem;
  color: rgba(155, 149, 137, 0.85);
  font-size: 0.82rem;
  z-index: 1;
}

.footer-bottom-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.28), transparent);
}


/* ========== FLOATING INSTAGRAM ========== */
.instagram-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 910;
  box-shadow:
    0 6px 20px rgba(188, 24, 136, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
}
.instagram-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media (hover: hover) and (pointer: fine) {
  .instagram-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
      0 10px 28px rgba(188, 24, 136, 0.5),
      0 3px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
  }
}
.instagram-float:active {
  transform: translateY(-1px) scale(0.96);
  transition-duration: 0s;
}
.instagram-float svg {
  display: block;
  width: 20px;
  height: 20px;
}

html[dir="ltr"] .instagram-float {
  right: 1.5rem;
  left: auto;
}

@media (max-width: 480px) {
  .instagram-float {
    width: 40px;
    height: 40px;
    bottom: 1.15rem;
    right: 1.15rem;
  }
  .instagram-float svg {
    width: 18px;
    height: 18px;
  }
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1.15rem;
    left: 1.15rem;
  }
  .back-to-top-icon {
    width: 15px;
    height: 15px;
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 217, 168, 0.4);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(20, 18, 16, 0.92), rgba(10, 10, 14, 0.95));
  color: #e8d9a8;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
  z-index: 900;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  padding: 0;
}

.back-to-top-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.back-to-top-icon {
  display: block;
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: #1a1814;
  border-color: rgba(232, 217, 168, 0.75);
  background: linear-gradient(135deg, #e8d9a8, #d4af37 55%, #c4a574);
  box-shadow:
    0 10px 32px rgba(212, 175, 55, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.15);
  transform: translateY(-3px) scale(1);
}

.back-to-top:hover .back-to-top-ring {
  opacity: 1;
  transform: scale(1.08);
}

.back-to-top:hover .back-to-top-icon {
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.97);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .header {
    padding: 1.15rem 1.35rem;
  }

  .logo-img {
    height: 64px;
  }

  .header.scrolled .logo-img {
    height: 52px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding: 5rem 1.25rem 3.5rem;
  }

  .experiences-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: minmax(240px, 34vh) minmax(180px, 26vh);
    gap: 0.6rem;
    padding: 0.6rem;
  }

  .gallery-item.large {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    min-height: 300px;
  }

  .tickets-box {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .intro,
  .experiences,
  .facilities,
  .gallery,
  .about,
  .tickets,
  .contact {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  /* Header */
  .header {
    padding: 0.85rem 1rem;
  }

  .header.scrolled {
    padding: 0.7rem 1rem;
  }

  .logo-img {
    height: 52px;
  }

  .header.scrolled .logo-img {
    height: 44px;
  }

  .btn-book {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
  }

  /* Hero */
  .hero {
    min-height: 520px;
    max-height: none;
  }

  .hero-content {
    padding: 4.5rem 1.1rem 3.25rem;
  }

  .hero-title-main {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-title-sub {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3.2vw, 1.05rem);
    max-width: 95%;
    margin-bottom: 1.6rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    padding: 0.42rem 1.1rem;
    margin-bottom: 1.2rem;
  }

  .hero-divider {
    width: 44px;
    margin-bottom: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.5rem;
    font-size: 0.92rem;
  }

  /* Sections – tighter vertical rhythm */
  .intro,
  .experiences,
  .facilities,
  .gallery,
  .about,
  .tickets,
  .contact {
    padding: 3.25rem 0;
  }

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

  .section-title {
    font-size: clamp(1.55rem, 6vw, 2.1rem);
  }

  .intro-text {
    font-size: 1rem;
  }

  /* Grids */
  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(180px, 24vh) minmax(140px, 18vh) minmax(140px, 18vh);
    gap: 0.4rem;
    padding: 0.4rem;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .fullscreen-link {
    font-size: 1.15rem;
  }

  .tickets-box {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 1.35rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  /* Header – prevent collision */
  .header {
    padding: 0.65rem 0.7rem;
  }

  .header.scrolled {
    padding: 0.55rem 0.7rem;
  }

  .logo-img {
    height: 42px;
  }

  .header.scrolled .logo-img {
    height: 36px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .btn-book {
    display: inline-flex;
    padding: 0.38rem 0.7rem;
    font-size: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.3;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    min-height: 100svh; /* stable when mobile URL bar hides */
    max-height: none;
  }

  .hero-content {
    padding: 3.75rem 0.85rem 2.5rem;
  }

  .hero-title {
    margin-bottom: 0.85rem;
    gap: 0.25rem;
  }

  .hero-title-main {
    font-size: clamp(1.7rem, 9vw, 2.15rem);
  }

  .hero-title-sub {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 1.35rem;
    line-height: 1.75;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-divider {
    width: 36px;
    margin-bottom: 0.95rem;
  }

  .hero-cta {
    gap: 0.55rem;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    max-width: 260px;
    padding: 0.85rem 1.3rem;
    font-size: 0.88rem;
  }

  /* Sections */
  .intro,
  .experiences,
  .facilities,
  .gallery,
  .about,
  .tickets,
  .contact {
    padding: 2.25rem 0;
  }

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

  .section-title {
    font-size: clamp(1.3rem, 6.5vw, 1.75rem);
    line-height: 1.35;
  }

  .section-eyebrow {
    font-size: 0.75rem;
  }

  .intro-text {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  /* Grids */
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(140px, 20vh) minmax(110px, 14vh) minmax(110px, 14vh);
    gap: 0.3rem;
    padding: 0.3rem;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  /* Cards & boxes */
  .tickets-box {
    padding: 1.1rem;
    border-radius: 12px;
  }

  .tickets-price strong {
    font-size: 1.45rem;
  }

  .contact-card {
    padding: 1.1rem;
  }

  .about-image img {
    min-height: 220px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }

  /* Footer */
  .footer-top {
    gap: 1.5rem;
  }

  /* Experiences carousel */
  .exp-slide {
    flex: 0 0 85% !important;
    width: 85% !important;
    max-width: 85% !important;
  }

  .experiences {
    padding: 2.25rem 0 2rem;
  }

  .exp-slide-img {
    aspect-ratio: 4 / 3;
  }
}

/* ========== UTILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  /* Keep experiences carousel transform transitions working */
  .exp-track,
  .exp-track:not(.is-dragging):not(.is-jumping) {
    transition-duration: 0.45s !important;
  }
}


/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: default;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s ease;
  cursor: default;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 2001;
  border: none;
}

html[dir="ltr"] .lightbox-close {
  left: auto;
  right: 1.5rem;
}

/* فقط روی دستگاه‌هایی که hover واقعی دارند — روی موبایل :hover گیر می‌کند */
@media (hover: hover) and (pointer: fine) {
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
  }
}
.lightbox-close:active {
  background: rgba(255, 255, 255, 0.25);
}

/* Lightbox gallery navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(232, 217, 168, 0.35);
  background: rgba(10, 10, 14, 0.72);
  color: #e8d9a8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* hover فقط وقتی ماوس واقعی است؛ روی لمس گیر نمی‌کند */
@media (hover: hover) and (pointer: fine) {
  .lightbox-nav:hover {
    background: linear-gradient(135deg, #e8d9a8, #c4a574);
    color: #1a1814;
    border-color: transparent;
  }
}
/* فیدبک فشردن دکمه روی همه دستگاه‌ها (فقط موقع فشار) */
.lightbox-nav:active {
  background: linear-gradient(135deg, #e8d9a8, #c4a574);
  color: #1a1814;
  border-color: transparent;
}
/* همیشه: قبلی سمت چپ صفحه، بعدی سمت راست — برای FA/AR/EN یکسان */
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
html[dir="rtl"] .lightbox-prev { left: 1rem; right: auto; }
html[dir="rtl"] .lightbox-next { right: 1rem; left: auto; }
.lightbox img {
  transition: opacity 0.2s ease;
}
@media (max-width: 480px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-prev { left: 0.5rem; right: auto; }
  .lightbox-next { right: 0.5rem; left: auto; }
  html[dir="rtl"] .lightbox-prev { left: 0.5rem; right: auto; }
  html[dir="rtl"] .lightbox-next { right: 0.5rem; left: auto; }
}



.zoomable {
  cursor: pointer;
}

.zoomable img {
  cursor: pointer;
}








/* ========== LUXURY PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06060a;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(196, 165, 116, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    #06060a;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.preloader-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 130px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: preloaderLogoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  filter: drop-shadow(0 0 32px rgba(196, 165, 116, 0.4));
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 165, 116, 0.4);
  border-radius: 50%;
  animation: preloaderSpin 3s linear infinite;
}

.preloader-ring::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--color-primary);
}

.preloader-ring-2 {
  inset: -12px;
  border-color: rgba(212, 175, 55, 0.3);
  animation-duration: 4.5s;
  animation-direction: reverse;
}

.preloader-ring-2::before {
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
  width: 5px;
  height: 5px;
}

.preloader-bar-track {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(196, 165, 116, 0.5);
}

.preloader-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  animation: preloaderTextIn 1s 0.4s ease forwards;
  opacity: 0;
}

@keyframes preloaderLogoIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes preloaderTextIn {
  from { opacity: 0; letter-spacing: 0.5em; }
  to { opacity: 1; letter-spacing: 0.35em; }
}

@keyframes preloaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

body.loading {
  overflow: hidden;
}


/* Language switcher inside hamburger menu — fixed position & order (never flips with dir) */
.menu-lang {
  display: flex;
  justify-content: center;
  margin-top: 0.85rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  direction: ltr !important;
}

.menu-lang .lang-switcher {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 4px;
  display: flex;
  flex-direction: row;
  gap: 2px;
  direction: ltr !important;
}

.menu-lang .lang-btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  min-width: 42px;
  direction: ltr !important;
}

.menu-lang .lang-btn.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(196, 165, 116, 0.4);
}

/* Global: language pills always LTR order regardless of page dir */
.lang-switcher {
  direction: ltr !important;
  flex-direction: row !important;
}


/* Homepage: 3 brand promises — desktop 3-col, mobile stacked */
.facilities .facilities-grid:has(.facility-item.promise),
.facilities-grid:has(.promise) {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.facility-item.promise {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.facility-item.promise:hover {
  border-color: rgba(196, 165, 116, 0.4);
  transform: translateY(-4px);
}

.facility-item.promise .facility-icon {
  margin-bottom: 1rem;
  opacity: 0.95;
}

.facility-item.promise .facility-icon img {
  width: 32px;
  height: 32px;
}

.facility-item.promise h3,
.facility-item.promise h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.facility-item.promise p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Mobile: stack the 3 promises vertically — taller cards */
@media (max-width: 768px) {
  .facilities .facilities-grid:has(.facility-item.promise),
  .facilities-grid:has(.promise) {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .facility-item.promise {
    padding: 2rem 1.35rem;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .facility-item.promise h3,
.facility-item.promise h4 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
  }

  .facility-item.promise p {
    font-size: 0.92rem;
    max-width: none;
  }

  .facility-item.promise .facility-icon {
    margin-bottom: 0.75rem;
  }

  .facility-item.promise .facility-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .facility-item.promise {
    padding: 1.85rem 1.2rem;
    min-height: 150px;
  }
}

.intro .section-title {
  letter-spacing: -0.03em;
  font-weight: 700;
}

.intro-text {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
  font-size: 1.05rem;
}

.about-content .btn {
  margin-top: 1.5rem;
}

.gallery-grid {
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: minmax(320px, 42vh) minmax(240px, 32vh);
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(200px, 26vh) minmax(160px, 20vh) minmax(160px, 20vh);
    gap: 0.45rem;
    padding: 0.45rem;
  }
  .gallery-item.large {
    grid-row: span 2;
    grid-column: span 1;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
}

/* (main ≤480px rules are defined earlier – keep this for cascade safety) */
@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== STORY SCROLL (Atlantis-style) ========== */
.story-scroll {
  position: relative;
  height: 400vh;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* stable when mobile URL bar hides */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* continuous wipe from bottom — controlled by --reveal 0..1 */
  clip-path: inset(calc((1 - var(--reveal, 0)) * 100%) 0 0 0);
  will-change: clip-path;
  contain: paint;
}

.story-img.is-base {
  z-index: 1;
  clip-path: inset(0 0 0 0);
}

.story-img.is-top {
  z-index: 2;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(6, 14, 26, 0.72) 0%,
    rgba(6, 14, 26, 0.28) 50%,
    rgba(6, 14, 26, 0.2) 100%
  );
  pointer-events: none;
}

.story-content {
  position: relative;
  z-index: 4;
  width: min(720px, 88vw);
  text-align: center;
  padding: 2rem;
  min-height: 200px;
}

.story-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(.22,.61,.36,1);
}

.story-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.story-eyebrow {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffe7a8;
  margin-bottom: 0.85rem;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.9),
    0 3px 16px rgba(0,0,0,0.7),
    0 0 28px rgba(0,0,0,0.4);
}
html[dir="ltr"] .story-eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.story-title {
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 28px rgba(0,0,0,0.55);
}

.story-text {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(240, 244, 248, 0.88);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* Vertical progress — right side like Atlantis */
.story-progress {
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255,255,255,0.6);
  pointer-events: auto;
}

.story-progress-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  opacity: 0.75;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 50%;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .story-progress-chevron:hover {
    opacity: 1;
    color: #e8d9a8;
    background: rgba(255,255,255,0.08);
  }
}
.story-progress-chevron:active {
  opacity: 1;
  color: #e8d9a8;
  background: rgba(255,255,255,0.08);
  transition-duration: 0s;
}
@media (hover: none) {
  .story-progress-chevron:hover {
    opacity: 0.75;
    color: inherit;
    background: transparent;
  }
}
.story-progress-chevron svg {
  width: 16px;
  height: 10px;
  pointer-events: none;
}

.story-progress-track {
  width: 3px;
  height: 140px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.story-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e8d9a8, #c4a574);
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
  box-shadow: 0 0 12px rgba(196, 165, 116, 0.45);
}

@media (max-width: 768px) {
  .story-scroll { height: 360vh; }
  .story-progress { right: 0.85rem; }
  .story-progress-track { height: 110px; }
  .story-content { padding: 1.25rem; }
}


/* Menu fits viewport — no scrollbar; compact on short / small screens */
.menu-lang,
.menu-footer {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .menu-content {
    width: min(300px, 88vw);
    min-width: 0;
    padding-top: 0.85rem;
    padding-bottom: 1.25rem;
  }
  .fullscreen-nav-list li {
    margin-bottom: 0.12rem;
  }
  .fullscreen-link {
    font-size: 1.05rem;
    padding: 0.4rem 0.35rem;
  }
  .menu-lang {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .menu-footer {
    margin-top: 1rem;
    padding-bottom: 0.5rem;
  }
}

/* Short laptop / small PC height: shrink gaps & type so everything fits */
@media (max-height: 720px) {
  .menu-content {
    padding-top: 0.65rem;
    padding-bottom: 1rem;
  }
  .menu-lang {
    margin-top: 0.5rem;
    margin-bottom: 0.65rem;
  }
  .menu-lang .lang-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }
  .fullscreen-nav-list li {
    margin-bottom: 0.08rem;
  }
  .fullscreen-link {
    font-size: 1.05rem;
    padding: 0.32rem 0.35rem;
  }
  .fullscreen-link::after {
    bottom: 0.15rem;
  }
  .menu-footer {
    margin-top: 0.75rem;
  }
  .menu-contact {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }
}

@media (max-height: 600px) {
  .menu-content {
    padding-top: 0.45rem;
    padding-bottom: 0.65rem;
  }
  .menu-lang {
    margin-top: 0.35rem;
    margin-bottom: 0.4rem;
  }
  .fullscreen-nav-list li {
    margin-bottom: 0;
  }
  .fullscreen-link {
    font-size: 0.98rem;
    padding: 0.22rem 0.3rem;
  }
  .menu-footer {
    margin-top: 0.5rem;
  }
  .menu-contact {
    margin-top: 0.3rem;
    font-size: 0.75rem;
  }
}


/* ========== EXPERIENCES CAROUSEL (Atlantis-style) ========== */
/* Experiences carousel: fixed LTR layout — language only changes caption text */
.exp-carousel,
.exp-track-wrap,
.exp-track {
  direction: ltr !important;
}
.exp-controls {
  direction: ltr !important;
}
.exp-progress-fill {
  left: 0;
  right: auto;
}
.exp-slide-caption {
  text-align: center;
}

.experiences {
  padding: 3.25rem 0 2.75rem;
  background: linear-gradient(180deg, #f7f3ec 0%, #efe9df 100%);
  color: #1a1814;
  overflow: hidden;
  /* keep section compact so it fits one viewport with header */
  min-height: 0;
}

.exp-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
}

.exp-intro-title {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 500;
  color: #1a1814;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.exp-intro-text {
  font-size: 0.92rem;
  color: #6a6358;
  line-height: 1.6;
}

.exp-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  /* vertical room so translateZ / rotateY don't clip */
  padding: 1.5rem 0 0.5rem;
}

.exp-track-wrap {
  width: 100%;
  overflow: hidden;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  padding: 0.75rem 0 1.25rem;
}

.exp-track {
  display: flex;
  align-items: flex-start;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: grab;
  /* Allow JS horizontal swipe; vertical page scroll still works until we preventDefault */
  touch-action: pan-y;
  gap: 0.5rem;
  padding: 0.5rem 0 0;
  transform-style: preserve-3d;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.exp-track:active {
  cursor: grabbing;
}

/* While finger-dragging: no CSS transition (JS drives transform) */
.exp-track.is-dragging {
  cursor: grabbing;
  transition: none !important;
  touch-action: none;
}

.exp-track.is-dragging .exp-slide,
.exp-track.is-dragging .exp-slide-img {
  transition: none !important;
}

/* During infinite-loop reset: no visual transition on track or slides */
.exp-track.is-jumping,
.exp-track.is-jumping .exp-slide,
.exp-track.is-jumping .exp-slide-img,
.exp-track.is-jumping .exp-slide-caption {
  transition: none !important;
}

.exp-slide {
  flex: 0 0 52%;
  width: 52%;
  max-width: 52%;
  box-sizing: border-box;
  /* Geometry only from JS coverflow — no CSS transform transition
     (that was causing slides to jump back then forward) */
  transition: none;
  transform: scale(0.88);
  opacity: 0.8;
  transform-origin: center center;
  transform-style: flat;
  backface-visibility: hidden;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  position: relative;
  /* will-change set by JS only while moving — reduces mobile blur at rest */
  pointer-events: auto;
  -webkit-font-smoothing: antialiased;
}

.exp-slide.is-prev,
.exp-slide.is-next,
.exp-slide.is-near {
  cursor: pointer;
  z-index: 3;
}

.exp-slide.is-active {
  cursor: zoom-in;
  z-index: 8;
}

.exp-slide.is-hidden {
  pointer-events: none;
}

.exp-slide-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 8px;
  /* Shadow driven by JS coverflow so it tracks the move */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
  transition: none;
  position: relative;
  z-index: 1;
}

.exp-slide.is-active .exp-slide-img {
  transform: none;
}

.exp-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.exp-slide,
.exp-slide-img,
.exp-track-wrap {
  touch-action: pan-y;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* Caption above image (transparent bg — shadow shows behind text) */
.exp-slide-caption {
  position: relative;
  z-index: 10;
  isolation: isolate;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.35rem 0.75rem 0.15rem;
  background: transparent;
  transition: none;
  /* fixed block height so controls always sit the same distance below */
  min-height: 4.5rem;
  opacity: 0;
}

.exp-slide-caption h3,
.exp-slide-caption p {
  position: relative;
  z-index: 1;
}

.exp-slide.is-active .exp-slide-caption {
  opacity: 1;
}

.exp-slide-caption h3 {
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-weight: 700;
  color: #141210;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.exp-slide-caption p {
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  font-weight: 500;
  color: #3d3830;
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto;
}

/* Fixed gap between caption area and slider controls */
.exp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding: 0 1.25rem 0.5rem;
  position: relative;
  z-index: 30;
  pointer-events: auto;
  isolation: isolate;
}

.exp-ctrl-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #1a1814;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 31;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .exp-ctrl-btn:hover {
    opacity: 1;
  }
}
.exp-ctrl-btn:active {
  opacity: 1;
  transition-duration: 0s;
}
@media (hover: none) {
  .exp-ctrl-btn:hover {
    opacity: 0.55;
  }
}

.exp-progress-line {
  width: min(260px, 42vw);
  height: 2px;
  background: rgba(26, 24, 20, 0.15);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  direction: ltr !important;
}

.exp-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: auto !important;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #9a7f52, #d4af37);
  border-radius: 2px;
  transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s ease;
  transform: none !important;
}

/* Never flip progress with page RTL */
html[dir="rtl"] .exp-progress-fill {
  left: 0;
  right: auto !important;
}

@media (max-width: 900px) {
  .exp-slide {
    flex: 0 0 58%;
    width: 58%;
    max-width: 58%;
  }
}

@media (max-width: 768px) {
  .exp-slide {
    /* keep side slides partially visible */
    flex: 0 0 62%;
    width: 62%;
    max-width: 62%;
  }
  .exp-track {
    gap: 0.25rem;
    padding-top: 0.75rem;
  }
  .exp-controls {
    margin-top: 2rem;
  }
  .exp-slide-caption {
    min-height: 4rem;
    margin-top: 1.1rem;
  }
  .exp-progress-line {
    width: min(170px, 42vw);
  }
  .experiences {
    padding: 2.5rem 0 2.25rem;
  }
  .exp-intro {
    margin-bottom: 1.1rem;
  }
  .exp-slide-img {
    aspect-ratio: 4 / 3;
  }
}



/* ========== PAGE MAIN (subpages) ========== */
.page-main {
  min-height: 60vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-main .section-header {
  margin-bottom: 3rem;
}

/* Back button — luxury pill */
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.85rem;
  padding: 0.55rem 1.2rem 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-accent-light);
  background: linear-gradient(135deg, rgba(196, 165, 116, 0.1), rgba(196, 165, 116, 0.04));
  border: 1px solid rgba(196, 165, 116, 0.32);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-back:hover {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, rgba(196, 165, 116, 0.28), rgba(196, 165, 116, 0.12));
  box-shadow:
    0 6px 24px rgba(196, 165, 116, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-back:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(196, 165, 116, 0.12);
}

.page-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(196, 165, 116, 0.15));
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.page-back-icon img {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.page-back:hover .page-back-icon {
  background: linear-gradient(145deg, rgba(232, 217, 168, 0.5), rgba(196, 165, 116, 0.3));
  color: #fff;
}

.page-back:hover .page-back-icon img {
  filter: brightness(1.08);
}

html[dir="rtl"] .page-back:hover .page-back-icon {
  transform: translateX(3px);
}

html[dir="ltr"] .page-back:hover .page-back-icon {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .page-back {
    font-size: 0.84rem;
    padding: 0.48rem 1rem 0.48rem 0.6rem;
    margin-bottom: 1.4rem;
    gap: 0.55rem;
  }

  .page-back-icon {
    width: 26px;
    height: 26px;
  }

  .page-back-icon img {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 480px) {
  .page-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .page-back {
    font-size: 0.8rem;
    padding: 0.42rem 0.9rem 0.42rem 0.55rem;
    margin-bottom: 1.2rem;
  }

  .page-back-icon {
    width: 24px;
    height: 24px;
  }
}

.page-main .about-inner {
  margin-bottom: 4rem;
}

.page-main .facilities-grid {
  margin-top: 2rem;
}


/* ========== CONTACT MAP EMBED ========== */
.contact-map-embed {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid rgba(196, 165, 116, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background: var(--color-surface, #14141c);
}
.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}
.contact-map-open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.85rem 1.1rem 1rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary, #c4a574);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(196, 165, 116, 0.35);
  background: rgba(196, 165, 116, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.contact-map-open:hover {
  background: rgba(196, 165, 116, 0.18);
  border-color: rgba(196, 165, 116, 0.6);
  color: #e8d9a8;
}
@media (max-width: 768px) {
  .contact-map-embed iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .contact-map-embed {
    margin-top: 1.75rem;
    border-radius: 12px;
  }
  .contact-map-embed iframe {
    height: 260px;
  }
}

.contact-map-wrap {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}


/* === SUPER LUXURY POLISH === */
::selection {
  background: rgba(196, 165, 116, 0.35);
  color: #f5f1e9;
}

.header {
  border-bottom-color: rgba(196, 165, 116, 0.12);
}

.header.scrolled {
  border-bottom-color: rgba(196, 165, 116, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.btn-book {
  border-color: rgba(196, 165, 116, 0.55);
  color: var(--color-accent-light);
}

.btn-book:hover {
  background: linear-gradient(135deg, #e8d9a8, #c4a574);
  color: #1a1814;
  border-color: transparent;
}

.facility-item {
  border: 1px solid rgba(196, 165, 116, 0.1);
  background: linear-gradient(160deg, rgba(28, 28, 40, 0.9), rgba(20, 20, 28, 0.95));
}

.facility-item:hover {
  border-color: rgba(196, 165, 116, 0.35);
  background: linear-gradient(160deg, rgba(36, 36, 48, 0.95), rgba(24, 24, 34, 0.98));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(196, 165, 116, 0.12);
}

.facility-item.promise {
  background: linear-gradient(165deg, rgba(28, 28, 40, 0.6), rgba(14, 14, 20, 0.85));
  border-color: rgba(196, 165, 116, 0.14);
}

.contact-card {
  border: 1px solid rgba(196, 165, 116, 0.12);
  background: linear-gradient(160deg, #16161f, #121218);
}

.contact-card:hover {
  border-color: rgba(196, 165, 116, 0.3);
}

.tickets-box {
  border: 1px solid rgba(196, 165, 116, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(196, 165, 116, 0.12);
}

.discount {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(196, 165, 116, 0.15));
  color: var(--color-accent-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title .highlight,
.hero-title span.highlight {
  background: linear-gradient(120deg, #e8d9a8, #c4a574, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-eyebrow {
  color: var(--color-accent-light);
  letter-spacing: 0.2em;
}

.lang-btn.active {
  background: linear-gradient(135deg, #c4a574, #9a7f52);
  color: #1a1814;
  box-shadow: 0 2px 16px rgba(196, 165, 116, 0.4);
}

.fullscreen-link:hover {
  color: var(--color-accent-light);
}

.fullscreen-link:hover::after {
  background: var(--color-accent);
}

.menu-toggle-inner,
.menu-toggle-inner::before,
.menu-toggle-inner::after {
  background-color: var(--color-accent-light);
}

.preloader-bar {
  background: linear-gradient(90deg, #9a7f52, #e8d9a8, #d4af37);
}

.exp-slide-img {
  box-shadow:
    0 8px 20px rgba(26, 24, 20, 0.1),
    0 2px 6px rgba(26, 24, 20, 0.06);
}

.exp-slide.is-active .exp-slide-img {
  transform: none;
}


/* Gallery CTA under mosaic */
.gallery-cta {
  text-align: center;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
}

/* Phone numbers always Latin digits & LTR */
a[href^="tel:"],
.menu-contact a[href^="tel:"],
.contact-card a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  font-variant-numeric: lining-nums;
}


/* Accessibility: visible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.lang-btn:focus-visible {
  outline: 2px solid var(--color-accent, #c4a574);
  outline-offset: 3px;
}

/* ========== RESPONSIVE REFINEMENTS (PC + Mobile) ========== */

/* Large desktop – keep content comfortable, not sparse */
@media (min-width: 1400px) {
  .header-inner {
    max-width: 1500px;
  }

  .container {
    max-width: 1320px;
  }

  .hero-title-main {
    font-size: clamp(3.4rem, 5vw, 4.6rem);
  }

  .hero-title-sub {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
  }
}

/* Short mobile landscape / small height */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100svh; /* stable when mobile URL bar hides */
    max-height: none;
  }

  .hero-content {
    padding: 3.25rem 1rem 1.75rem;
  }

  .hero-title {
    margin-bottom: 0.45rem;
    gap: 0.15rem;
  }

  .hero-title-main {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-title-sub {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.62rem;
  }

  .hero-divider {
    width: 32px;
    margin-bottom: 0.65rem;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }

  .hero-scroll-line {
    display: none;
  }
}

/* Extra-small phones (≤360px) */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .header {
    padding: 0.55rem 0.55rem;
  }

  .header.scrolled {
    padding: 0.45rem 0.55rem;
  }

  .logo-img {
    height: 36px;
  }

  .header.scrolled .logo-img {
    height: 32px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .btn-book {
    padding: 0.32rem 0.55rem;
    font-size: 0.65rem;
  }

  .hero-content {
    padding: 3.4rem 0.7rem 2.2rem;
  }

  .hero-title-main {
    font-size: 1.55rem;
  }

  .hero-title-sub {
    font-size: 0.92rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-eyebrow {
    font-size: 0.58rem;
    padding: 0.28rem 0.65rem;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.8rem 1.1rem;
  }

  .intro,
  .experiences,
  .facilities,
  .gallery,
  .about,
  .tickets,
  .contact {
    padding: 1.85rem 0;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .gallery-grid {
    grid-template-rows: minmax(120px, 18vh) minmax(95px, 13vh) minmax(95px, 13vh);
    gap: 0.25rem;
    padding: 0.25rem;
  }

  .tickets-box {
    padding: 0.95rem;
  }

  .tickets-price strong {
    font-size: 1.3rem;
  }

  .contact-card {
    padding: 0.95rem;
  }

  .exp-slide {
    /* sides still peek on small phones */
    flex: 0 0 58% !important;
    width: 58% !important;
    max-width: 58% !important;
  }

  .exp-slide-img {
    aspect-ratio: 4 / 3;
  }

  .exp-track {
    gap: 0.4rem;
  }

  .exp-carousel,
  .exp-track-wrap {
    overflow: hidden;
  }

  .facility-item.promise {
    min-height: 140px;
    padding: 1.7rem 1.1rem;
  }
}


/* Contact form & quick actions */
.contact-card-actions .contact-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.contact-form-wrap {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(196, 165, 116, 0.22);
  background: var(--color-surface, #14141c);
}
.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-primary, #c4a574);
}
.contact-form .form-row {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.75);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 165, 116, 0.25);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(196, 165, 116, 0.65);
}
.contact-form .form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.contact-form .btn {
  margin-top: 0.5rem;
}


/* ========== IMAGE FIT (safe — does not force aspect on layout containers) ========== */
/* Content images fill their existing containers; layout aspect stays as designed */
.gallery-item img,
.gallery-page-item img,
.exp-slide-img img,
.story-img img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gallery page grid items only: stable 16:9 cells (not homepage mosaic) */
.gallery-page-item {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.gallery-page-item img {
  display: block;
}

/* ============================================================
 * TOUCH / MOBILE: no sticky :hover, press feedback without freeze
 * ============================================================ */
button,
a.btn,
a.btn-book,
a.btn-primary,
a.btn-outline,
a.hero-btn-primary,
a.hero-btn-ghost,
a.page-back,
a.instagram-float,
a.footer-cta,
a.contact-map-open,
a.exp-link,
a.fullscreen-link,
a.lang-btn,
.btn,
.btn-book,
.btn-primary,
.btn-outline,
.hero-btn-primary,
.hero-btn-ghost,
.page-back,
.instagram-float,
.footer-cta,
.contact-map-open,
.exp-link,
.exp-ctrl-btn,
.lightbox-nav,
.lightbox-close,
.back-to-top,
.menu-toggle,
.story-progress-chevron,
.lang-btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

/* Touch devices: kill sticky :hover after finger lifts */
@media (hover: none) {
  .btn:hover::before { left: -100%; }
  .btn-primary:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(196, 165, 116, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    animation: btnPulse 2.8s ease-in-out infinite;
    filter: none;
  }
  .btn-outline:hover {
    background: rgba(10, 22, 40, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  }
  .btn-book:hover {
    background: transparent;
    color: var(--color-accent-light, var(--color-white));
    border-color: rgba(196, 165, 116, 0.55);
  }
  .hero-btn-primary:hover {
    transform: none;
    filter: none;
    box-shadow:
      0 4px 20px rgba(212, 175, 55, 0.35),
      0 1px 0 rgba(255, 255, 255, 0.25) inset;
  }
  .hero-btn-ghost:hover {
    color: #f5f1e9;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    transform: none;
    box-shadow: none;
  }
  .instagram-float:hover {
    transform: none;
    box-shadow:
      0 8px 28px rgba(42, 171, 238, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.25);
    color: #fff;
  }
  .back-to-top:hover {
    color: #e8d9a8;
    border-color: rgba(232, 217, 168, 0.4);
    background: linear-gradient(145deg, rgba(20, 18, 16, 0.92), rgba(10, 10, 14, 0.95));
    box-shadow:
      0 8px 28px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(0) scale(1);
  }
  .back-to-top:hover .back-to-top-ring { opacity: 0; transform: none; }
  .back-to-top:hover .back-to-top-icon { transform: none; }
  .page-back:hover {
    color: var(--color-accent-light);
    border-color: rgba(196, 165, 116, 0.32);
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.1), rgba(196, 165, 116, 0.04));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: none;
  }
  .page-back:hover .page-back-icon {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(196, 165, 116, 0.15));
    color: var(--color-accent);
    transform: none;
  }
  .page-back:hover .page-back-icon img { filter: none; }
  html[dir="rtl"] .page-back:hover .page-back-icon,
  html[dir="ltr"] .page-back:hover .page-back-icon { transform: none; }
  .lightbox-nav:hover {
    background: rgba(10, 10, 14, 0.72);
    color: #e8d9a8;
    border-color: rgba(232, 217, 168, 0.35);
  }
  .lightbox-close:hover { background: rgba(255, 255, 255, 0.12); }
  .contact-map-open:hover {
    background: rgba(196, 165, 116, 0.08);
    border-color: rgba(196, 165, 116, 0.35);
    color: var(--color-primary, #c4a574);
  }
  .lang-btn:hover,
  a.lang-btn:hover { color: inherit; }
  .exp-ctrl-btn:hover { opacity: 0.55; }
  .story-progress-chevron:hover { opacity: 0.75; color: inherit; background: transparent; }
  .fullscreen-link:hover { color: inherit; }
  .fullscreen-link:hover::after { width: 0; opacity: 0; }
  .footer-cta:hover { transform: none; filter: none; }
  .menu-toggle:hover { background: transparent; }
}

/* Press feedback: light, no filter (filter can jank mobile GPU on long-press) */
.btn-primary:active {
  transform: scale(0.98);
}
.btn-outline:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.18);
}
.btn-book:active {
  background: linear-gradient(135deg, #e8d9a8, #c4a574);
  color: #1a1814;
  border-color: transparent;
}
.hero-btn-primary:active { transform: scale(0.98); }
.hero-btn-ghost:active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(232, 217, 168, 0.55);
  transform: scale(0.98);
}
.instagram-float:active { transform: scale(0.96); }
.back-to-top:active {
  color: #1a1814;
  border-color: rgba(232, 217, 168, 0.75);
  background: linear-gradient(135deg, #e8d9a8, #d4af37 55%, #c4a574);
  transform: scale(0.96);
}
.page-back:active {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, rgba(196, 165, 116, 0.28), rgba(196, 165, 116, 0.12));
  transform: scale(0.98);
}
.lightbox-nav:active {
  background: linear-gradient(135deg, #e8d9a8, #c4a574);
  color: #1a1814;
  border-color: transparent;
}
.lightbox-close:active { background: rgba(255, 255, 255, 0.28); }
.contact-map-open:active {
  background: rgba(196, 165, 116, 0.22);
  border-color: rgba(196, 165, 116, 0.65);
  color: #e8d9a8;
}
.exp-ctrl-btn:active { opacity: 1; }
.lang-btn:active { color: var(--color-white); }
.footer-cta:active { transform: scale(0.98); }


/* Disable native drag of links/images (prevents long-press drag freeze on mobile) */
a, img, button, .btn, .btn-book, .logo-img, .lightbox-nav, .exp-slide img, .gallery-item img, .gallery-page-item img {
  -webkit-user-drag: none;
  user-drag: none;
}


/* ============================================================
 * Instant press feedback on controls only (NOT carousel)
 * transition:all on buttons made :active feel laggy on mobile
 * ============================================================ */
.btn,
.btn-primary,
.btn-outline,
.btn-book,
.hero-btn-primary,
.hero-btn-ghost,
.page-back,
.instagram-float,
.footer-cta,
.contact-map-open,
.lightbox-nav,
.lightbox-close,
.back-to-top,
.lang-btn,
.exp-ctrl-btn,
.menu-toggle,
a.btn,
a.btn-book {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:active,
.btn-primary:active,
.btn-outline:active,
.btn-book:active,
.hero-btn-primary:active,
.hero-btn-ghost:active,
.page-back:active,
.instagram-float:active,
.footer-cta:active,
.contact-map-open:active,
.lightbox-nav:active,
.lightbox-close:active,
.back-to-top:active,
.lang-btn:active,
.exp-ctrl-btn:active,
.menu-footer .btn:active,
a.btn:active,
a.btn-book:active {
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

/* Stronger instant color feedback where only transform was defined */
.btn-book:active {
  background: linear-gradient(135deg, #e8d9a8, #c4a574);
  color: #1a1814;
  border-color: transparent;
}
.hero-btn-ghost:active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(232, 217, 168, 0.55);
}
.lightbox-nav:active {
  background: linear-gradient(135deg, #e8d9a8, #c4a574);
  color: #1a1814;
  border-color: transparent;
}
.lightbox-close:active {
  background: rgba(255, 255, 255, 0.28);
}
.contact-map-open:active {
  background: rgba(196, 165, 116, 0.22);
  border-color: rgba(196, 165, 116, 0.65);
  color: #e8d9a8;
}
