:root {
  --blue-1: #8f7441;
  --blue-2: #c8a45d;
  --blue-3: #f0d9a0;
  --blue-glow: rgba(200, 164, 93, 0.28);
  --red-1: #7f2020;
  --red-2: #a6372f;
  --red-glow: rgba(166, 55, 47, 0.24);
  --yellow-1: #d4af37;
  --yellow-2: #f0d28c;
  --yellow-glow: rgba(212, 175, 55, 0.3);
  --particle-glow-rgb: 212, 175, 55;
  --quest-red-accent: #c34a44;
  --quest-red-soft: #f4b4aa;
  --quest-red-rgb: 195, 74, 68;
  --quest-red-deep-rgb: 110, 31, 28;
  --quest-red-glow: rgba(195, 74, 68, 0.26);
  --quest-gold-accent: #d4af37;
  --quest-gold-soft: #f0d28c;
  --quest-gold-rgb: 212, 175, 55;
  --quest-gold-deep-rgb: 124, 91, 27;
  --quest-gold-glow: rgba(212, 175, 55, 0.26);
  --quest-blue-accent: #6ba6ff;
  --quest-blue-soft: #d8e8ff;
  --quest-blue-rgb: 107, 166, 255;
  --quest-blue-deep-rgb: 36, 79, 149;
  --quest-blue-glow: rgba(107, 166, 255, 0.24);
  --dark-1: #120303;
  --dark-2: #1a0707;
  --dark-3: #240909;
  --dark-4: #311111;
  --dark-5: #431816;
  --text-primary: #f6efe6;
  --text-secondary: rgba(246, 239, 230, 0.76);
  --text-muted: rgba(246, 239, 230, 0.5);
  --font-heading: "Moniqa Heading", "MoniqaHeading", "Cormorant Garamond", Georgia, serif;
  --font-display: "PT Sans", sans-serif;
  --font-body: "PT Sans", sans-serif;
  --font-title: "Moniqa Heading", "MoniqaHeading", "Cormorant Garamond", Georgia, serif;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --title-reveal-duration: 920ms;
  --title-reveal-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: 116px 0;
  --header-height: 104px;
  --header-height-scrolled: 86px;
}

html {
  background: #090202;
  min-height: 100%;
  touch-action: auto;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  position: relative;
  min-height: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  background:
    radial-gradient(circle at 18% 14%, rgba(94, 22, 20, 0.35), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(65, 24, 22, 0.3), transparent 22%),
    linear-gradient(180deg, #220808 0%, #100304 38%, #070102 100%);
  color: var(--text-primary);
  letter-spacing: 0.01em;
  touch-action: auto;
}

html.is-touch,
html.is-touch body {
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
}

html.is-android,
html.is-android body {
  overflow-y: auto;
  touch-action: auto;
  overscroll-behavior-y: auto;
}

html.is-ios body {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 10% 12%, rgba(var(--quest-red-rgb), 0.2) 0, rgba(var(--quest-red-rgb), 0.1) 7%, transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(var(--quest-blue-rgb), 0.18) 0, rgba(var(--quest-blue-rgb), 0.1) 7%, transparent 18%),
    radial-gradient(circle at 22% 36%, rgba(var(--quest-red-rgb), 0.14) 0, rgba(var(--quest-red-rgb), 0.08) 6%, transparent 16%),
    radial-gradient(circle at 78% 42%, rgba(var(--quest-blue-rgb), 0.14) 0, rgba(var(--quest-blue-rgb), 0.08) 6%, transparent 16%),
    radial-gradient(circle at 12% 68%, rgba(var(--quest-blue-rgb), 0.13) 0, rgba(var(--quest-blue-rgb), 0.07) 6%, transparent 16%),
    radial-gradient(circle at 64% 74%, rgba(var(--quest-red-rgb), 0.12) 0, rgba(var(--quest-red-rgb), 0.06) 6%, transparent 15%),
    radial-gradient(circle at 88% 86%, rgba(var(--quest-blue-rgb), 0.12) 0, rgba(var(--quest-blue-rgb), 0.06) 6%, transparent 15%),
    radial-gradient(circle at 36% 92%, rgba(var(--quest-red-rgb), 0.1) 0, rgba(var(--quest-red-rgb), 0.05) 5%, transparent 14%);
  filter: blur(34px) saturate(108%);
  opacity: 0.66;
  mix-blend-mode: screen;
}

body.quest-theme-red {
  --quest-accent: var(--quest-red-accent);
  --quest-accent-soft: var(--quest-red-soft);
  --quest-accent-rgb: var(--quest-red-rgb);
  --quest-accent-deep-rgb: var(--quest-red-deep-rgb);
  --quest-accent-glow: var(--quest-red-glow);
  --particle-glow-rgb: var(--quest-red-rgb);
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--quest-red-rgb), 0.18), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(var(--quest-red-rgb), 0.12), transparent 18%),
    linear-gradient(180deg, #26090b 0%, #140506 42%, #080102 100%);
}

body.quest-theme-gold {
  --quest-accent: var(--quest-gold-accent);
  --quest-accent-soft: var(--quest-gold-soft);
  --quest-accent-rgb: var(--quest-gold-rgb);
  --quest-accent-deep-rgb: var(--quest-gold-deep-rgb);
  --quest-accent-glow: var(--quest-gold-glow);
  --particle-glow-rgb: var(--quest-gold-rgb);
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--quest-gold-rgb), 0.16), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(var(--quest-gold-rgb), 0.1), transparent 18%),
    linear-gradient(180deg, #231608 0%, #120903 42%, #070102 100%);
}

body.quest-theme-blue {
  --quest-accent: var(--quest-blue-accent);
  --quest-accent-soft: var(--quest-blue-soft);
  --quest-accent-rgb: var(--quest-blue-rgb);
  --quest-accent-deep-rgb: var(--quest-blue-deep-rgb);
  --quest-accent-glow: var(--quest-blue-glow);
  --particle-glow-rgb: var(--quest-blue-rgb);
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--quest-blue-rgb), 0.16), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(var(--quest-blue-rgb), 0.12), transparent 18%),
    linear-gradient(180deg, #07111f 0%, #050913 42%, #020205 100%);
}

body.quest-theme-red::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(var(--quest-red-rgb), 0.16) 0, rgba(var(--quest-red-rgb), 0.08) 7%, transparent 18%),
    radial-gradient(circle at 76% 32%, rgba(var(--quest-red-rgb), 0.14) 0, rgba(var(--quest-red-rgb), 0.07) 6%, transparent 16%),
    radial-gradient(circle at 34% 82%, rgba(var(--quest-red-rgb), 0.12) 0, rgba(var(--quest-red-rgb), 0.06) 6%, transparent 15%);
}

body.quest-theme-gold::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(var(--quest-gold-rgb), 0.15) 0, rgba(var(--quest-gold-rgb), 0.08) 7%, transparent 18%),
    radial-gradient(circle at 76% 32%, rgba(var(--quest-gold-rgb), 0.13) 0, rgba(var(--quest-gold-rgb), 0.07) 6%, transparent 16%),
    radial-gradient(circle at 34% 82%, rgba(var(--quest-gold-rgb), 0.11) 0, rgba(var(--quest-gold-rgb), 0.05) 6%, transparent 15%);
}

body.quest-theme-blue::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(var(--quest-blue-rgb), 0.15) 0, rgba(var(--quest-blue-rgb), 0.08) 7%, transparent 18%),
    radial-gradient(circle at 76% 32%, rgba(var(--quest-blue-rgb), 0.13) 0, rgba(var(--quest-blue-rgb), 0.07) 6%, transparent 16%),
    radial-gradient(circle at 34% 82%, rgba(var(--quest-blue-rgb), 0.11) 0, rgba(var(--quest-blue-rgb), 0.05) 6%, transparent 15%);
}

body.quest-theme-red .quest-story-section,
body.quest-theme-red .quest-book-section,
body.quest-theme-red .site-footer {
  background:
    linear-gradient(180deg, rgba(var(--quest-red-rgb), 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #1e0809 0%, #100304 100%);
}

body.quest-theme-red .quest-gallery-section,
body.quest-theme-red .quest-video-section,
body.quest-theme-red .quest-others-section {
  background:
    linear-gradient(180deg, rgba(var(--quest-red-rgb), 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #170607 0%, #090103 100%);
}

body.quest-theme-gold .quest-story-section,
body.quest-theme-gold .quest-book-section,
body.quest-theme-gold .site-footer {
  background:
    linear-gradient(180deg, rgba(var(--quest-gold-rgb), 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #1f1408 0%, #0f0702 100%);
}

body.quest-theme-gold .quest-gallery-section,
body.quest-theme-gold .quest-video-section,
body.quest-theme-gold .quest-others-section {
  background:
    linear-gradient(180deg, rgba(var(--quest-gold-rgb), 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #170f06 0%, #080402 100%);
}

body.quest-theme-blue .quest-story-section,
body.quest-theme-blue .quest-book-section,
body.quest-theme-blue .site-footer {
  background:
    linear-gradient(180deg, rgba(var(--quest-blue-rgb), 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #09111d 0%, #04070e 100%);
}

body.quest-theme-blue .quest-gallery-section,
body.quest-theme-blue .quest-video-section,
body.quest-theme-blue .quest-others-section {
  background:
    linear-gradient(180deg, rgba(var(--quest-blue-rgb), 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #07101a 0%, #03050a 100%);
}

body.quest-theme-red .site-header,
body.quest-theme-gold .site-header,
body.quest-theme-blue .site-header {
  background:
    linear-gradient(180deg, rgba(12, 5, 7, 0.74), rgba(12, 5, 7, 0.34)),
    radial-gradient(circle at top center, rgba(var(--quest-accent-rgb), 0.08), transparent 58%);
  border-bottom-color: rgba(var(--quest-accent-rgb), 0.12);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(var(--quest-accent-rgb), 0.05);
}

body.quest-theme-red .site-header.scrolled,
body.quest-theme-gold .site-header.scrolled,
body.quest-theme-blue .site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(10, 4, 6, 0.88), rgba(9, 4, 5, 0.9)),
    radial-gradient(circle at top center, rgba(var(--quest-accent-rgb), 0.1), transparent 56%);
  border-bottom-color: rgba(var(--quest-accent-rgb), 0.16);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(var(--quest-accent-rgb), 0.06);
}

body.quest-theme-red .main-nav a,
body.quest-theme-red .lang-switcher,
body.quest-theme-red .social-icon,
body.quest-theme-red .sound-toggle,
body.quest-theme-red .mobile-menu-toggle,
body.quest-theme-red .mobile-menu-link,
body.quest-theme-red .mobile-menu-contact,
body.quest-theme-red .mobile-menu-socials a,
body.quest-theme-red .mobile-menu-lang .lang-btn,
body.quest-theme-red .mobile-nav-contact-item,
body.quest-theme-red .mobile-nav-socials a,
body.quest-theme-gold .main-nav a,
body.quest-theme-gold .lang-switcher,
body.quest-theme-gold .social-icon,
body.quest-theme-gold .sound-toggle,
body.quest-theme-gold .mobile-menu-toggle,
body.quest-theme-gold .mobile-menu-link,
body.quest-theme-gold .mobile-menu-contact,
body.quest-theme-gold .mobile-menu-socials a,
body.quest-theme-gold .mobile-menu-lang .lang-btn,
body.quest-theme-gold .mobile-nav-contact-item,
body.quest-theme-gold .mobile-nav-socials a,
body.quest-theme-blue .main-nav a,
body.quest-theme-blue .lang-switcher,
body.quest-theme-blue .social-icon,
body.quest-theme-blue .sound-toggle,
body.quest-theme-blue .mobile-menu-toggle,
body.quest-theme-blue .mobile-menu-link,
body.quest-theme-blue .mobile-menu-contact,
body.quest-theme-blue .mobile-menu-socials a,
body.quest-theme-blue .mobile-menu-lang .lang-btn,
body.quest-theme-blue .mobile-nav-contact-item,
body.quest-theme-blue .mobile-nav-socials a {
  background: rgba(var(--quest-accent-rgb), 0.06);
  border-color: rgba(var(--quest-accent-rgb), 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(var(--quest-accent-rgb), 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.quest-theme-red .mobile-menu-modal,
body.quest-theme-gold .mobile-menu-modal,
body.quest-theme-blue .mobile-menu-modal {
  background: rgba(7, 2, 3, 0.72);
}

body.quest-theme-red .mobile-menu-dialog,
body.quest-theme-gold .mobile-menu-dialog,
body.quest-theme-blue .mobile-menu-dialog {
  background:
    linear-gradient(180deg, rgba(16, 8, 10, 0.94), rgba(9, 4, 5, 0.96)),
    radial-gradient(circle at top, rgba(var(--quest-accent-rgb), 0.1), transparent 58%);
  border-color: rgba(var(--quest-accent-rgb), 0.14);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(var(--quest-accent-rgb), 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.quest-theme-red .main-nav a::after,
body.quest-theme-gold .main-nav a::after,
body.quest-theme-blue .main-nav a::after {
  background: linear-gradient(90deg, transparent, var(--quest-accent-soft), transparent);
}

body.quest-theme-red .main-nav a:hover,
body.quest-theme-red .main-nav a.active,
body.quest-theme-red .lang-btn:hover,
body.quest-theme-red .lang-btn.active,
body.quest-theme-red .social-icon:hover,
body.quest-theme-red .mobile-menu-link:hover,
body.quest-theme-red .mobile-menu-link:focus-visible,
body.quest-theme-red .mobile-menu-contact:hover,
body.quest-theme-red .mobile-menu-contact:focus-visible,
body.quest-theme-red .mobile-menu-socials a:hover,
body.quest-theme-red .mobile-nav-contact-item:hover,
body.quest-theme-red .mobile-nav-contact-item:focus-visible,
body.quest-theme-red .mobile-nav-socials a:hover,
body.quest-theme-red .sound-toggle:hover,
body.quest-theme-red .sound-toggle:focus-visible,
body.quest-theme-red .mobile-menu-lang .lang-btn:hover,
body.quest-theme-red .mobile-menu-lang .lang-btn.active,
body.quest-theme-gold .main-nav a:hover,
body.quest-theme-gold .main-nav a.active,
body.quest-theme-gold .lang-btn:hover,
body.quest-theme-gold .lang-btn.active,
body.quest-theme-gold .social-icon:hover,
body.quest-theme-gold .mobile-menu-link:hover,
body.quest-theme-gold .mobile-menu-link:focus-visible,
body.quest-theme-gold .mobile-menu-contact:hover,
body.quest-theme-gold .mobile-menu-contact:focus-visible,
body.quest-theme-gold .mobile-menu-socials a:hover,
body.quest-theme-gold .mobile-nav-contact-item:hover,
body.quest-theme-gold .mobile-nav-contact-item:focus-visible,
body.quest-theme-gold .mobile-nav-socials a:hover,
body.quest-theme-gold .sound-toggle:hover,
body.quest-theme-gold .sound-toggle:focus-visible,
body.quest-theme-gold .mobile-menu-lang .lang-btn:hover,
body.quest-theme-gold .mobile-menu-lang .lang-btn.active,
body.quest-theme-blue .main-nav a:hover,
body.quest-theme-blue .main-nav a.active,
body.quest-theme-blue .lang-btn:hover,
body.quest-theme-blue .lang-btn.active,
body.quest-theme-blue .social-icon:hover,
body.quest-theme-blue .mobile-menu-link:hover,
body.quest-theme-blue .mobile-menu-link:focus-visible,
body.quest-theme-blue .mobile-menu-contact:hover,
body.quest-theme-blue .mobile-menu-contact:focus-visible,
body.quest-theme-blue .mobile-menu-socials a:hover,
body.quest-theme-blue .mobile-nav-contact-item:hover,
body.quest-theme-blue .mobile-nav-contact-item:focus-visible,
body.quest-theme-blue .mobile-nav-socials a:hover,
body.quest-theme-blue .sound-toggle:hover,
body.quest-theme-blue .sound-toggle:focus-visible,
body.quest-theme-blue .mobile-menu-lang .lang-btn:hover,
body.quest-theme-blue .mobile-menu-lang .lang-btn.active {
  color: var(--text-primary);
  background: linear-gradient(180deg, rgba(var(--quest-accent-rgb), 0.18), rgba(var(--quest-accent-deep-rgb), 0.24));
  border-color: rgba(var(--quest-accent-rgb), 0.3);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(var(--quest-accent-rgb), 0.14);
}

body.quest-theme-red .lang-btn.active,
body.quest-theme-red .mobile-menu-lang .lang-btn.active,
body.quest-theme-gold .lang-btn.active,
body.quest-theme-gold .mobile-menu-lang .lang-btn.active,
body.quest-theme-blue .lang-btn.active,
body.quest-theme-blue .mobile-menu-lang .lang-btn.active {
  color: var(--quest-accent-soft);
}

body.quest-theme-red .header-cta,
body.quest-theme-red .mobile-nav-phone,
body.quest-theme-red .mobile-menu-phone,
body.quest-theme-red .btn-primary,
body.quest-theme-gold .header-cta,
body.quest-theme-gold .mobile-nav-phone,
body.quest-theme-gold .mobile-menu-phone,
body.quest-theme-gold .btn-primary,
body.quest-theme-blue .header-cta,
body.quest-theme-blue .mobile-nav-phone,
body.quest-theme-blue .mobile-menu-phone,
body.quest-theme-blue .btn-primary {
  background: rgba(var(--quest-accent-rgb), 0.11);
  border-color: rgba(var(--quest-accent-rgb), 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(var(--quest-accent-rgb), 0.08);
}

body.quest-theme-red .header-cta:hover,
body.quest-theme-red .mobile-nav-phone:hover,
body.quest-theme-red .mobile-menu-phone:hover,
body.quest-theme-red .btn-primary:hover,
body.quest-theme-gold .header-cta:hover,
body.quest-theme-gold .mobile-nav-phone:hover,
body.quest-theme-gold .mobile-menu-phone:hover,
body.quest-theme-gold .btn-primary:hover,
body.quest-theme-blue .header-cta:hover,
body.quest-theme-blue .mobile-nav-phone:hover,
body.quest-theme-blue .mobile-menu-phone:hover,
body.quest-theme-blue .btn-primary:hover {
  background: rgba(var(--quest-accent-rgb), 0.16);
  border-color: rgba(var(--quest-accent-rgb), 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 46px rgba(0, 0, 0, 0.26),
    0 0 30px rgba(var(--quest-accent-rgb), 0.12);
}

body.quest-theme-red .btn-ghost,
body.quest-theme-red .btn-quest,
body.quest-theme-red .quest-other-card .btn-quest,
body.quest-theme-red .qoc-body .btn-quest,
body.quest-theme-gold .btn-ghost,
body.quest-theme-gold .btn-quest,
body.quest-theme-gold .quest-other-card .btn-quest,
body.quest-theme-gold .qoc-body .btn-quest,
body.quest-theme-blue .btn-ghost,
body.quest-theme-blue .btn-quest,
body.quest-theme-blue .quest-other-card .btn-quest,
body.quest-theme-blue .qoc-body .btn-quest {
  background: linear-gradient(180deg, rgba(var(--quest-accent-rgb), 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(var(--quest-accent-rgb), 0.24);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(var(--quest-accent-rgb), 0.08);
}

body.quest-theme-red .btn-ghost:hover,
body.quest-theme-red .btn-quest:hover,
body.quest-theme-red .quest-other-card .btn-quest:hover,
body.quest-theme-red .qoc-body .btn-quest:hover,
body.quest-theme-gold .btn-ghost:hover,
body.quest-theme-gold .btn-quest:hover,
body.quest-theme-gold .quest-other-card .btn-quest:hover,
body.quest-theme-gold .qoc-body .btn-quest:hover,
body.quest-theme-blue .btn-ghost:hover,
body.quest-theme-blue .btn-quest:hover,
body.quest-theme-blue .quest-other-card .btn-quest:hover,
body.quest-theme-blue .qoc-body .btn-quest:hover {
  background: linear-gradient(180deg, rgba(var(--quest-accent-rgb), 0.16), rgba(var(--quest-accent-deep-rgb), 0.14));
  border-color: rgba(var(--quest-accent-rgb), 0.34);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(var(--quest-accent-rgb), 0.14);
}

body.quest-theme-red .header-cta,
body.quest-theme-red .mobile-nav-phone,
body.quest-theme-red .mobile-menu-phone,
body.quest-theme-gold .header-cta,
body.quest-theme-gold .mobile-nav-phone,
body.quest-theme-gold .mobile-menu-phone,
body.quest-theme-blue .header-cta,
body.quest-theme-blue .mobile-nav-phone,
body.quest-theme-blue .mobile-menu-phone {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.quest-theme-red .btn-primary,
body.quest-theme-gold .btn-primary,
body.quest-theme-blue .btn-primary {
  background: linear-gradient(135deg, rgba(var(--quest-accent-rgb), 0.26), rgba(var(--quest-accent-deep-rgb), 0.78));
  border-color: rgba(var(--quest-accent-rgb), 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(var(--quest-accent-rgb), 0.16);
}

body.quest-theme-red .btn-primary:hover,
body.quest-theme-gold .btn-primary:hover,
body.quest-theme-blue .btn-primary:hover {
  background: linear-gradient(135deg, rgba(var(--quest-accent-rgb), 0.34), rgba(var(--quest-accent-deep-rgb), 0.86));
  border-color: rgba(var(--quest-accent-rgb), 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 46px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(var(--quest-accent-rgb), 0.22);
}

body.quest-theme-red .glow-btn::after,
body.quest-theme-gold .glow-btn::after,
body.quest-theme-blue .glow-btn::after {
  background: linear-gradient(120deg, transparent 18%, rgba(var(--quest-accent-rgb), 0.34) 48%, transparent 82%);
}

body.quest-theme-red .sound-toggle.is-playing,
body.quest-theme-gold .sound-toggle.is-playing,
body.quest-theme-blue .sound-toggle.is-playing,
body.quest-theme-red .mobile-menu-toggle.open,
body.quest-theme-gold .mobile-menu-toggle.open,
body.quest-theme-blue .mobile-menu-toggle.open {
  background: linear-gradient(135deg, rgba(var(--quest-accent-rgb), 0.26), rgba(var(--quest-accent-deep-rgb), 0.8));
  border-color: rgba(var(--quest-accent-rgb), 0.34);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(var(--quest-accent-rgb), 0.18);
}

body.quest-theme-red .mobile-menu-toggle span,
body.quest-theme-gold .mobile-menu-toggle span,
body.quest-theme-blue .mobile-menu-toggle span {
  background: linear-gradient(90deg, var(--quest-accent-soft), var(--quest-accent));
}

body.quest-theme-red .header-cta i,
body.quest-theme-red .sound-toggle i,
body.quest-theme-red .mobile-menu-contact i,
body.quest-theme-red .mobile-menu-address i,
body.quest-theme-red .mobile-nav-phone i,
body.quest-theme-red .mobile-nav-contact-item i,
body.quest-theme-gold .header-cta i,
body.quest-theme-gold .sound-toggle i,
body.quest-theme-gold .mobile-menu-contact i,
body.quest-theme-gold .mobile-menu-address i,
body.quest-theme-gold .mobile-nav-phone i,
body.quest-theme-gold .mobile-nav-contact-item i,
body.quest-theme-blue .header-cta i,
body.quest-theme-blue .sound-toggle i,
body.quest-theme-blue .mobile-menu-contact i,
body.quest-theme-blue .mobile-menu-address i,
body.quest-theme-blue .mobile-nav-phone i,
body.quest-theme-blue .mobile-nav-contact-item i {
  color: var(--quest-accent-soft);
}

img {
  height: auto;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar-track {
  background: #0f0303;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7d6235, #d4af37);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #a98a4b, #f0d28c);
}

.custom-cursor {
  width: 12px;
  height: 12px;
  background: var(--yellow-2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5), 0 0 26px rgba(212, 175, 55, 0.22);
}

.custom-cursor-follower {
  border-color: rgba(212, 175, 55, 0.72);
  width: 42px;
  height: 42px;
}

body.cursor-hover .custom-cursor {
  background: var(--blue-2);
}

body.cursor-hover .custom-cursor-follower {
  border-color: rgba(212, 175, 55, 0.78);
}

#particles-bg {
  z-index: 1;
  opacity: 0.92;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.98) 6%,
    rgba(0, 0, 0, 1) 26%,
    rgba(0, 0, 0, 0.92) 76%,
    rgba(0, 0, 0, 0.28) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.98) 6%,
    rgba(0, 0, 0, 1) 26%,
    rgba(0, 0, 0, 0.92) 76%,
    rgba(0, 0, 0, 0.28) 92%,
    transparent 100%
  );
}

#particles-bg::before {
  content: "";
  position: absolute;
  inset: auto 0 -8vh 0;
  height: 52vh;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(var(--particle-glow-rgb), 0.26) 0, rgba(var(--particle-glow-rgb), 0.2) 12%, rgba(var(--particle-glow-rgb), 0.12) 24%, rgba(var(--particle-glow-rgb), 0.08) 34%, transparent 62%),
    radial-gradient(circle at 22% 100%, rgba(var(--particle-glow-rgb), 0.12) 0, transparent 42%),
    radial-gradient(circle at 78% 100%, rgba(var(--particle-glow-rgb), 0.12) 0, transparent 42%);
  filter: blur(28px);
  opacity: 0.92;
}

.particle {
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 250, 236, var(--particle-core-alpha, 0.92)) 0, rgba(255, 244, 214, calc(var(--particle-core-alpha, 0.92) * 0.82)) 18%, rgba(255, 230, 170, calc(var(--particle-halo-alpha, 0.42) * 0.9)) 36%, transparent 58%),
    radial-gradient(circle, var(--particle-color, rgba(var(--particle-glow-rgb), 0.58)) 0, rgba(var(--particle-glow-rgb), var(--particle-halo-alpha, 0.18)) 46%, transparent 74%);
  filter: blur(var(--particle-blur, 0.35px));
  box-shadow:
    0 0 var(--particle-glow, 18px) var(--particle-color, rgba(212, 175, 55, 0.58)),
    0 0 calc(var(--particle-glow, 18px) * 1.8) var(--particle-color, rgba(212, 175, 55, 0.58));
  opacity: 0;
  animation-name: emberParticle;
  animation-timing-function: linear;
  animation-fill-mode: both;
  transform: translate3d(0, 0, 0) scaleY(var(--particle-stretch, 1));
  will-change: transform, opacity;
}

.container,
.story-band-content,
.scroll-indicator,
.hero-badge,
.hero-actions,
.hero-stats {
  position: relative;
  z-index: 2;
}

@keyframes emberParticle {
  0% {
    transform: translate3d(var(--drift-start, 0px), 0, 0) scale(0.46, var(--particle-stretch, 1));
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity-peak, 0.52);
  }
  42% {
    transform: translate3d(var(--drift-mid, 0px), var(--rise-mid, -28vh), 0) scale(0.86, var(--particle-stretch, 1));
    opacity: calc(var(--particle-opacity-peak, 0.52) * 0.7);
  }
  76% {
    transform: translate3d(var(--drift-late, 0px), var(--rise-late, -44vh), 0) scale(0.98, var(--particle-stretch, 1));
    opacity: calc(var(--particle-opacity-peak, 0.52) * 0.22);
  }
  100% {
    transform: translate3d(var(--drift-end, 0px), var(--rise-distance, -82vh), 0) scale(var(--particle-scale-end, 1.12), var(--particle-stretch, 1));
    opacity: 0;
  }
}

.container {
  max-width: 1440px;
  padding: 0 28px;
}

.btn,
.btn-quest,
.header-cta {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn-primary,
.cta-band-btn,
.quest-hero-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(112, 39, 31, 0.72));
  border-color: rgba(240, 217, 160, 0.45);
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(200, 164, 93, 0.16);
}

.btn-primary:hover,
.cta-band-btn:hover,
.quest-hero-cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(128, 40, 31, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(212, 175, 55, 0.22);
}

.btn-ghost,
.btn-quest {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(212, 175, 55, 0.22);
  color: var(--text-primary);
}

.btn-ghost:hover,
.btn-quest:hover,
.qoc-body .btn-quest:hover {
  border-color: rgba(240, 217, 160, 0.55);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), 0 0 22px rgba(212, 175, 55, 0.16);
}

.glow-btn::after {
  background: linear-gradient(120deg, transparent 18%, rgba(240, 217, 160, 0.34) 48%, transparent 82%);
}

.pulse-btn {
  animation: luxuryPulse 3s infinite;
}

@keyframes luxuryPulse {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 0 0 rgba(212, 175, 55, 0.32);
  }
  70% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 0 14px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.section-header {
  margin-bottom: 72px;
}

.section-tag,
.quest-hero-badge,
.hero-badge,
.pricing-badge,
.quest-featured-badge {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--yellow-2);
  letter-spacing: 0.34em;
}

.badge-dot {
  background: var(--yellow-1);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.section-title,
.hero-title,
.quest-hero-title,
.quest-story-title,
.qoc-body h3,
.cta-band-text h3 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.section-tag {
  display: none !important;
}

.section-title em,
.title-line.accent,
.quest-story-title em,
.em-red {
  background: linear-gradient(135deg, #f8e8be 0%, #d4af37 45%, #9a7734 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.18));
}

.hero-badge[data-aos],
.hero-title[data-aos],
.hero-sub[data-aos],
.hero-actions[data-aos],
.hero-stats[data-aos],
.section-header[data-aos],
.quest-back-link[data-aos],
.quest-hero-badge[data-aos],
.quest-hero-title[data-aos],
.quest-hero-tagline[data-aos],
.quest-hero-meta[data-aos],
.quest-hero-cta[data-aos],
.quest-story-title[data-aos] {
  transition-property: opacity, transform !important;
  transition-duration: 560ms !important;
  transition-timing-function: var(--title-reveal-easing) !important;
  will-change: auto;
}

.hero-badge[data-aos="fade-down"] {
  opacity: 0;
  transform: translate3d(0, -14px, 0);
  filter: none;
}

.hero-badge[data-aos="fade-down"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

.hero-title[data-aos="fade-up"],
.hero-sub[data-aos="fade-up"],
.hero-actions[data-aos="fade-up"],
.hero-stats[data-aos="fade-up"],
.section-header[data-aos="fade-up"],
.quest-story-title[data-aos="fade-up"],
[data-aos="soft-title"] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: none;
}

.hero-title[data-aos="fade-up"].aos-animate,
.hero-sub[data-aos="fade-up"].aos-animate,
.hero-actions[data-aos="fade-up"].aos-animate,
.hero-stats[data-aos="fade-up"].aos-animate,
.section-header[data-aos="fade-up"].aos-animate,
.quest-story-title[data-aos="fade-up"].aos-animate,
[data-aos="soft-title"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

.section-desc,
.hero-sub,
.about-text p,
.quest-desc,
.pricing-desc,
.faq-answer p,
.contact-detail-item p,
.contact-detail-item a,
.footer-links a,
.qbook-price-sub {
  color: var(--text-secondary);
}

.section-desc,
.quest-showcase-desc,
.hero-sub,
.about-text p,
.quest-desc,
.pricing-desc,
.faq-answer p,
.contact-detail-item p,
.contact-detail-item a,
.footer-links a,
.qbook-price-sub,
.why-text,
.experience-desc,
.quests-outro,
.footer-tagline,
.footer-contact-list a,
.footer-contact-list span,
.home-video-section-desc,
.home-video-hint,
.final-cta-sub,
.quest-hero-tagline {
  line-height: 1.4;
}

.site-header {
  background: linear-gradient(180deg, rgba(12, 3, 4, 0.82), rgba(12, 3, 4, 0.42));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header.scrolled {
  background: rgba(16, 5, 6, 0.86);
  border-bottom-color: rgba(212, 175, 55, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "nav brand meta";
  gap: 18px;
}

.logo {
  grid-area: brand;
  justify-self: center;
  align-self: center;
}

.logo-png-wrap {
  height: 82px;
  aspect-ratio: 1024 / 685;
}

.logo-png-wrap img.logo-png {
  height: 82px;
  max-width: 260px;
  filter:
    drop-shadow(0 0 16px rgba(212, 175, 55, 0.34))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.36));
}

.logo-png-wrap img.logo-png:hover {
  transform: scale(1.03);
  filter:
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.46))
    drop-shadow(0 0 44px rgba(212, 175, 55, 0.18))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.main-nav {
  grid-area: nav;
  justify-self: start;
  height: auto;
}

.main-nav ul {
  gap: 10px;
  height: auto;
}

.main-nav ul li {
  height: auto;
}

.main-nav a {
  height: auto;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.main-nav a::after {
  bottom: 8px;
  left: 18px;
  right: 18px;
  background: linear-gradient(90deg, transparent, var(--yellow-1), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.16);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav-card {
  display: contents;
}

.mobile-nav-extra {
  display: none;
}

.mobile-menu-modal {
  display: none;
}

.header-right {
  grid-area: meta;
  justify-self: end;
  gap: 10px;
}

.lang-switcher,
.social-icon,
.header-cta,
.sound-toggle,
.social-large,
.contact-phone-block,
.faq-item,
.pricing-card,
.quest-card,
.wl-card,
.quest-other-card,
.quest-book-inner,
.quest-difficulty-card,
.map-wrap,
.feature-item,
.gallery-item,
.calc-widget {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lang-switcher {
  padding: 4px;
  border-radius: 999px;
}

.lang-btn {
  height: 32px;
  min-width: 38px;
  border-radius: 999px;
  color: var(--text-muted);
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--text-primary);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icons {
  gap: 8px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--text-secondary);
}

.social-icon:hover,
.footer-socials a:hover,
.social-large:hover {
  color: var(--text-primary);
  border-color: rgba(240, 217, 160, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.16);
}

.header-cta {
  height: 42px;
  padding: 0 20px;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(138, 42, 35, 0.78), rgba(212, 175, 55, 0.2));
  border: 1px solid rgba(240, 217, 160, 0.28);
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(112, 39, 31, 0.22));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: rgba(240, 217, 160, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(136, 45, 35, 0.26));
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.sound-toggle.is-playing {
  border-color: rgba(240, 217, 160, 0.34);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(120, 41, 32, 0.82));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(212, 175, 55, 0.18);
}

.sound-toggle i {
  color: var(--yellow-1);
  font-size: 0.94rem;
  transition: transform var(--transition), color var(--transition);
}

.sound-toggle.is-playing i {
  transform: scale(1.06);
}

.sound-toggle-label {
  display: none !important;
}

.mobile-menu-toggle {
  display: none;
}

.header-cta i,
.sound-toggle i,
.contact-hours i,
.contact-detail-item > i,
.qmeta-item i,
.pricing-features i,
.qbook-hours i,
.footer-contact-list i,
.footer-logo i,
.partner-logo-placeholder i,
.quest-meta i {
  color: var(--yellow-1);
}

.burger span {
  background: linear-gradient(90deg, #f0d28c, #c8a45d);
}

.nav-overlay {
  background: rgba(5, 1, 1, 0.56);
  backdrop-filter: blur(8px);
}

.hero-section {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  min-height: var(--app-height, 100svh);
  align-items: center;
  padding: 138px 0 84px;
  background:
    radial-gradient(circle at 50% 12%, rgba(240, 217, 160, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(36, 9, 9, 0.18), rgba(8, 2, 2, 0.02));
}

.hero-section::before,
.hero-section::after,
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 217, 160, 0.14), transparent 18%),
    radial-gradient(circle at 78% 54%, rgba(109, 34, 24, 0.34), transparent 26%),
    radial-gradient(circle at 24% 36%, rgba(72, 20, 18, 0.42), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0.025) 17%, rgba(255, 255, 255, 0) 20%),
    linear-gradient(180deg, #2a0c0c 0%, #130405 58%, #070102 100%);
}

.hero-bg-media {
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.hero-bg.has-slideshow .hero-bg-media {
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
  will-change: opacity;
}

.hero-bg.has-slideshow .hero-bg-media.is-active {
  opacity: 1;
}

.hero-bg-media--next {
  z-index: 0;
}

.hero-bg::before {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 234, 179, 0.18), transparent 22%),
    linear-gradient(92deg, transparent 16%, rgba(255, 255, 255, 0.06) 20%, transparent 26%),
    linear-gradient(90deg, transparent 58%, rgba(255, 255, 255, 0.05) 64%, transparent 71%);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.hero-bg::after {
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.14) 54%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
}

.hero-section::before {
  background:
    radial-gradient(circle at 48% 14%, rgba(240, 217, 160, 0.2), transparent 11%),
    linear-gradient(120deg, rgba(212, 175, 55, 0.04) 0%, transparent 26%, transparent 74%, rgba(212, 175, 55, 0.03) 100%),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(255, 255, 255, 0.025) 120px 121px);
  opacity: 0.86;
}

.hero-section::after {
  inset: -10% -12%;
  background:
    radial-gradient(circle at 56% 18%, rgba(255, 237, 192, 0.14), transparent 19%),
    radial-gradient(circle at 46% 28%, rgba(212, 175, 55, 0.09), transparent 20%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.04), transparent 28%);
  filter: blur(20px);
  opacity: 0.78;
  animation: mysteryMist 12s ease-in-out infinite;
}

@keyframes mysteryMist {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.5%, 2%, 0) scale(1.04);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 2, 3, 0.62) 0%, rgba(14, 4, 5, 0.34) 38%, rgba(11, 3, 3, 0.14) 64%, rgba(6, 1, 2, 0.68) 100%);
}

.hero-quest-divider {
  position: relative;
  z-index: 8;
  width: 100%;
  height: clamp(64px, 7vw, 118px);
  margin: clamp(-76px, -5vw, -48px) 0 clamp(-46px, -3vw, -24px);
  overflow: visible;
  pointer-events: none;
}

.hero-quest-divider::before,
.hero-quest-divider::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 50%;
  height: 34px;
  transform: translateY(-50%) rotate(-2.4deg);
  pointer-events: none;
}

.hero-quest-divider::before {
  background: rgba(0, 0, 0, 0.54);
  filter: blur(18px);
  opacity: 0.7;
}

.hero-quest-divider::after {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.18), transparent);
  filter: blur(10px);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero-quest-divider img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 116vw;
  max-width: none;
  height: clamp(52px, 5.9vw, 92px);
  object-fit: fill;
  transform: translate(-50%, -50%) rotate(-2.4deg);
  filter:
    drop-shadow(0 16px 18px rgba(0, 0, 0, 0.62))
    drop-shadow(0 -4px 10px rgba(212, 175, 55, 0.16));
}

.quests-after-divider {
  position: relative;
  z-index: 8;
  width: 100%;
  height: clamp(64px, 7vw, 112px);
  margin: clamp(-48px, -3.2vw, -26px) 0 clamp(-48px, -3vw, -24px);
  overflow: visible;
  pointer-events: none;
}

.quests-after-divider::before,
.quests-after-divider::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 50%;
  height: 34px;
  transform: translateY(-50%) rotate(2.4deg);
  pointer-events: none;
}

.quests-after-divider::before {
  background: rgba(0, 0, 0, 0.54);
  filter: blur(18px);
  opacity: 0.7;
}

.quests-after-divider::after {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.18), transparent);
  filter: blur(10px);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.quests-after-divider img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 116vw;
  max-width: none;
  height: clamp(52px, 5.9vw, 92px);
  object-fit: fill;
  transform: translate(-50%, -50%) rotate(2.4deg);
  filter:
    drop-shadow(0 16px 18px rgba(0, 0, 0, 0.62))
    drop-shadow(0 -4px 10px rgba(212, 175, 55, 0.16));
}

.gallery-price-divider {
  position: relative;
  z-index: 8;
  width: 100%;
  height: clamp(62px, 6.4vw, 108px);
  margin: clamp(-48px, -3.2vw, -26px) 0 clamp(-42px, -2.8vw, -22px);
  overflow: visible;
  pointer-events: none;
}

.gallery-price-divider::before,
.gallery-price-divider::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 50%;
  height: 30px;
  transform: translateY(-50%) rotate(2.4deg);
  pointer-events: none;
}

.gallery-price-divider::before {
  background: rgba(0, 0, 0, 0.5);
  filter: blur(18px);
  opacity: 0.72;
}

.gallery-price-divider::after {
  background: linear-gradient(90deg, transparent, rgba(218, 186, 114, 0.16), transparent);
  filter: blur(10px);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.gallery-price-divider img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 116vw;
  max-width: none;
  height: clamp(50px, 5.4vw, 86px);
  object-fit: fill;
  object-position: center;
  transform: translate(-50%, -50%) rotate(2.4deg);
  opacity: 0.92;
  filter:
    sepia(0.28)
    saturate(0.88)
    brightness(0.72)
    contrast(1.16)
    drop-shadow(0 16px 18px rgba(0, 0, 0, 0.62))
    drop-shadow(0 -3px 9px rgba(218, 186, 114, 0.14));
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.process-video-divider {
  position: relative;
  z-index: 8;
  width: 100%;
  height: clamp(58px, 6vw, 98px);
  margin: clamp(-34px, -2.4vw, -18px) 0 clamp(-38px, -2.8vw, -20px);
  overflow: visible;
  pointer-events: none;
}

.process-video-divider::before,
.process-video-divider::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 50%;
  height: 30px;
  transform: translateY(-50%) rotate(-2.4deg);
  pointer-events: none;
}

.process-video-divider::before {
  background: rgba(0, 0, 0, 0.48);
  filter: blur(18px);
  opacity: 0.7;
}

.process-video-divider::after {
  background: linear-gradient(90deg, transparent, rgba(218, 186, 114, 0.14), transparent);
  filter: blur(10px);
  opacity: 0.74;
  mix-blend-mode: screen;
}

.process-video-divider img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 116vw;
  max-width: none;
  height: clamp(48px, 5vw, 78px);
  object-fit: fill;
  object-position: center;
  transform: translate(-50%, -50%) rotate(-2.4deg);
  opacity: 0.9;
  filter:
    sepia(0.28)
    saturate(0.88)
    brightness(0.72)
    contrast(1.16)
    drop-shadow(0 16px 18px rgba(0, 0, 0, 0.6))
    drop-shadow(0 -3px 9px rgba(218, 186, 114, 0.12));
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.hero-shapes .shape-1 {
  width: 520px;
  height: 520px;
  background: rgba(212, 175, 55, 0.12);
  top: -140px;
  right: 8%;
}

.hero-shapes .shape-2 {
  width: 280px;
  height: 280px;
  background: rgba(96, 22, 20, 0.2);
  left: 4%;
  bottom: 12%;
}

.hero-shapes .shape-3 {
  width: 240px;
  height: 240px;
  background: rgba(240, 217, 160, 0.08);
  top: 42%;
  right: 28%;
}

.hero-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-float-icon {
  position: absolute;
  width: clamp(68px, 7vw, 104px);
  aspect-ratio: 1;
  display: block;
}

.hero-float-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: floatSigil 11s ease-in-out infinite;
}

.hero-float-inner i {
  font-size: 1.35rem;
  color: var(--yellow-2);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
}

.hero-float-inner img {
  width: 54%;
  filter: sepia(1) saturate(0.25) hue-rotate(338deg) brightness(2.35);
  opacity: 0.88;
}

.hero-float-icon.icon-1 {
  top: 20%;
  right: 11%;
}

.hero-float-icon.icon-2 {
  right: 20%;
  bottom: 22%;
}

.hero-float-icon.icon-3 {
  top: 28%;
  left: 8%;
}

.hero-float-icon.icon-4 {
  left: 18%;
  bottom: 18%;
}

.hero-float-icon.icon-1 .hero-float-inner {
  animation-delay: -1.5s;
}

.hero-float-icon.icon-2 .hero-float-inner {
  animation-delay: -4s;
}

.hero-float-icon.icon-3 .hero-float-inner {
  animation-delay: -2.5s;
}

.hero-float-icon.icon-4 .hero-float-inner {
  animation-delay: -6s;
}

@keyframes floatSigil {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(0, -14px, 0) rotate(2deg);
  }
  70% {
    transform: translate3d(0, 10px, 0) rotate(-2deg);
  }
}

.hero-content {
  max-width: 780px;
  padding-top: 80px;
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
}

.hero-badge {
  margin-bottom: 28px;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(3.8rem, 10vw, 8.4rem);
  line-height: 0.88;
  margin-bottom: 28px;
}

.hero-title .title-line:first-child {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.26rem);
  max-width: 560px;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  margin-bottom: 0;
}

.hero-actions {
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 62px;
}

.hero-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  max-width: 740px;
  width: min(100%, 740px);
  padding: 24px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.stat-item {
  min-width: 0;
  padding: 0 18px;
}

.stat-num {
  color: var(--yellow-2);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat-label {
  color: var(--text-muted);
  letter-spacing: 0.28em;
}

.stat-divider {
  width: 1px;
  min-height: 48px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.24), transparent);
}

.scroll-mouse {
  border-color: rgba(240, 217, 160, 0.28);
}

.scroll-wheel {
  background: linear-gradient(180deg, var(--yellow-2), var(--yellow-1));
}

.scroll-indicator span {
  color: var(--text-muted);
}

.about-section,
.pricing-section,
.faq-section,
.quest-story-section,
.quest-book-section,
.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #180606 0%, #0d0203 100%);
}

.quests-section,
.gallery-section,
.contact-section,
.wonderland-section,
.quest-gallery-section,
.quest-others-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #120404 0%, #080102 100%);
}

.about-bg,
.pricing-bg {
  opacity: 0.12;
  mix-blend-mode: screen;
}

.about-lead {
  color: var(--text-primary);
  font-size: 1.08rem;
}

.about-img-wrap,
.quest-story-img-wrap,
.contact-map,
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img,
.quest-story-img-wrap img,
.gallery-item img {
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.14), transparent 18%),
    linear-gradient(160deg, #311111 0%, #1a0707 40%, #080102 100%);
}

.about-img-glow,
.quest-img-glow {
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    inset 0 0 70px rgba(212, 175, 55, 0.05),
    0 0 46px rgba(212, 175, 55, 0.08);
}

.about-features {
  gap: 16px;
}

.feature-item {
  padding: 20px 22px;
  border-radius: 26px;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 217, 160, 0.32);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-icon,
.pricing-icon {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.22);
  color: var(--yellow-1);
}

.pricing-icon.red,
.pricing-icon.yellow {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.22);
  color: var(--yellow-1);
}

.feature-text h4,
.quest-name,
.pricing-label,
.footer-heading,
.partners-label,
.contact-phone-label,
.qbook-cta-label,
.diff-card-label,
.diff-label,
.range-label,
.qmeta-item span {
  letter-spacing: 0.22em;
}

.about-features .feature-text h4 {
  letter-spacing: 0.08em;
}

.quest-card,
.pricing-card,
.wl-card,
.quest-other-card {
  border-radius: 30px;
}

.wl-card-title {
  font-size: clamp(1.55rem, 1.9vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.quest-card:hover,
.pricing-card:hover,
.wl-card:hover,
.quest-other-card:hover,
.faq-item.active,
.gallery-item:hover {
  border-color: rgba(240, 217, 160, 0.28);
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.34), 0 0 30px rgba(212, 175, 55, 0.12);
}

.quest-featured {
  border-color: rgba(212, 175, 55, 0.2);
}

.quest-featured-badge,
.pricing-badge {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(139, 38, 30, 0.82));
}

.quest-number,
.qoc-body .quest-number,
.pricing-label,
.contact-socials p,
.footer-heading,
.partners-label {
  color: var(--yellow-2);
}

.quest-img-wrap,
.gallery-item,
.qoc-img {
  border-radius: 28px;
}

.quest-overlay {
  background: none;
}

.quest-name {
  font-size: clamp(2.35rem, 3.1vw, 2.9rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

.quest-meta span,
.contact-hours,
.footer-copy,
.footer-made,
.pricing-note,
.range-nums,
.diff-card-note {
  color: var(--text-muted);
}

.quests-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(104px, 9vw, 148px);
}

.decor-object {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.45s ease, transform 0.45s ease;
  filter:
    drop-shadow(0 24px 32px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 24px rgba(212, 175, 55, 0.16));
  will-change: transform;
}

.decor-object.is-loaded {
  opacity: 0.92;
}

.decor-object--quest-top {
  top: clamp(76px, 7vw, 116px);
  right: clamp(112px, 11vw, 210px);
  width: clamp(150px, 15vw, 260px);
  aspect-ratio: 1;
  transform: rotate(-8deg);
}

.decor-object--quest-top.is-loaded {
  animation: decorObjectFloat 9s ease-in-out infinite;
}

.decor-object--process-left {
  top: clamp(10px, 4vw, 30px);
  left: clamp(180px, 16vw, 310px);
  width: clamp(130px, 12vw, 220px);
  aspect-ratio: 1;
  transform: rotate(-8deg);
  filter:
    drop-shadow(0 22px 30px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 20px rgba(195, 74, 68, 0.18));
}

.decor-object--process-left.is-loaded {
  animation: decorObjectFloatAlt 10s ease-in-out infinite;
}

.decor-object--gallery-right {
  top: clamp(48px, 5.5vw, 88px);
  right: clamp(260px, 24vw, 430px);
  width: clamp(150px, 12vw, 230px);
  aspect-ratio: 1;
  transform: rotate(7deg);
  filter:
    drop-shadow(0 22px 30px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.16));
}

.decor-object--gallery-right.is-loaded {
  animation: decorObjectFloatGallery 9.5s ease-in-out infinite;
}

.decor-object--pricing-left {
  top: clamp(46px, 5vw, 84px);
  left: clamp(320px, 25vw, 470px);
  width: clamp(110px, 9vw, 170px);
  aspect-ratio: 1;
  transform: rotate(-6deg);
  filter:
    drop-shadow(0 22px 30px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.14));
}

.decor-object--pricing-left.is-loaded {
  animation: decorObjectFloatPricing 10s ease-in-out infinite;
}

@keyframes decorObjectFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  48% {
    transform: translate3d(0, -14px, 0) rotate(-5deg);
  }
}

@keyframes decorObjectFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  52% {
    transform: translate3d(0, -12px, 0) rotate(-5deg);
  }
}

@keyframes decorObjectFloatGallery {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(10deg);
  }
}

@keyframes decorObjectFloatPricing {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  50% {
    transform: translate3d(0, -11px, 0) rotate(-3deg);
  }
}

.quests-header {
  max-width: 1120px;
  margin: 0 auto 52px;
  text-align: center;
}

.quests-header .section-tag {
  display: none;
}

.quests-header .section-title {
  margin-bottom: 24px;
  font-family: var(--font-title);
  font-size: clamp(3rem, 4.7vw, 5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.035em;
  text-transform: none;
  color: var(--text-primary);
  white-space: nowrap;
  text-wrap: nowrap;
}

.quests-header .section-title br {
  display: none;
}

.quests-header .section-title em {
  color: var(--yellow-2);
  font-style: normal;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.quests-header .section-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.86);
  overflow-wrap: break-word;
}

.quests-showcase {
  display: grid;
  gap: 34px;
}

.quest-showcase,
.quest-other-card {
  --quest-card-accent: var(--quest-gold-accent);
  --quest-card-accent-soft: var(--quest-gold-soft);
  --quest-card-accent-rgb: var(--quest-gold-rgb);
  --quest-card-accent-deep-rgb: var(--quest-gold-deep-rgb);
}

.quest-showcase--red,
.quest-other-card--red {
  --quest-card-accent: var(--quest-red-accent);
  --quest-card-accent-soft: var(--quest-red-soft);
  --quest-card-accent-rgb: var(--quest-red-rgb);
  --quest-card-accent-deep-rgb: var(--quest-red-deep-rgb);
}

.quest-showcase--gold,
.quest-other-card--gold {
  --quest-card-accent: var(--quest-gold-accent);
  --quest-card-accent-soft: var(--quest-gold-soft);
  --quest-card-accent-rgb: var(--quest-gold-rgb);
  --quest-card-accent-deep-rgb: var(--quest-gold-deep-rgb);
}

.quest-showcase--blue,
.quest-other-card--blue {
  --quest-card-accent: var(--quest-blue-accent);
  --quest-card-accent-soft: var(--quest-blue-soft);
  --quest-card-accent-rgb: var(--quest-blue-rgb);
  --quest-card-accent-deep-rgb: var(--quest-blue-deep-rgb);
}

.quest-showcase {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 1.25fr);
  align-items: stretch;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(var(--quest-card-accent-rgb), 0.16);
  background:
    radial-gradient(circle at 16% 22%, rgba(var(--quest-card-accent-rgb), 0.08), transparent 20%),
    linear-gradient(140deg, rgba(34, 10, 10, 0.96), rgba(13, 3, 4, 0.98));
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform var(--transition-slow),
    border-color var(--transition),
    box-shadow var(--transition);
  contain: layout paint;
}

.quest-showcase:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--quest-card-accent-rgb), 0.28);
  box-shadow:
    0 36px 86px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(var(--quest-card-accent-rgb), 0.12);
}

.quest-showcase--reverse {
  grid-template-columns: minmax(360px, 1.25fr) minmax(0, 1.25fr);
}

.quest-showcase--reverse .quest-showcase-media {
  order: 2;
}

.quest-showcase--reverse .quest-showcase-panel {
  order: 1;
}

.quest-showcase-media {
  position: relative;
  display: block;
  min-width: 0;
  min-height: clamp(360px, 40vw, 500px);
  background:
    radial-gradient(circle at 50% 24%, rgba(var(--quest-card-accent-rgb), 0.16), transparent 24%),
    linear-gradient(180deg, rgba(34, 10, 10, 0.9), rgba(6, 1, 2, 0.98));
  isolation: isolate;
  overflow: hidden;
}

@keyframes questShowcaseBreath {
  0% {
    transform: scale(1.018);
  }
  50% {
    transform: scale(1.036);
  }
  100% {
    transform: scale(1.018);
  }
}

.quest-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02) brightness(1);
  transform: scale(1.018);
  transition: transform 1500ms cubic-bezier(0.19, 1, 0.22, 1), filter 800ms ease;
  will-change: auto;
}

.quest-showcase:hover .quest-showcase-img {
  animation: none;
  transform: scale(1.045);
  filter: saturate(1.055) contrast(1.025) brightness(1.02);
}

.quest-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 76% 18%, rgba(var(--quest-card-accent-rgb), 0.08), transparent 24%);
}

.quest-showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--quest-card-accent-rgb), 0.42);
  background: rgba(19, 5, 5, 0.58);
  color: var(--quest-card-accent-soft);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  pointer-events: none;
}

.quest-showcase-arrow--left {
  left: 18px;
}

.quest-showcase-arrow--right {
  right: 18px;
}

.quest-showcase-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  pointer-events: none;
}

.quest-showcase-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.quest-showcase-dots .is-active {
  background: linear-gradient(135deg, var(--quest-card-accent-soft), var(--quest-card-accent));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 14px rgba(var(--quest-card-accent-rgb), 0.3);
}

.quest-showcase-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(34px, 4vw, 56px) clamp(28px, 3.4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(31, 10, 10, 0.98), rgba(15, 4, 5, 0.98));
}

.quest-showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(var(--quest-card-accent-rgb), 0.12), transparent 24%),
    linear-gradient(180deg, rgba(240, 217, 160, 0.02), transparent 24%);
  pointer-events: none;
}

.quest-showcase-number {
  margin-bottom: 24px;
  font-size: clamp(1.72rem, 2.35vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quest-card-accent-soft);
}

.quest-showcase-title {
  margin: 0 0 24px;
  max-width: 100%;
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 3.75vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: 0.012em;
  color: var(--text-primary);
  white-space: nowrap;
  text-wrap: nowrap;
}

.quest-showcase-desc {
  max-width: 38ch;
  min-width: 0;
  margin: 0 0 24px;
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.78);
  overflow-wrap: break-word;
}

.quest-showcase-kicker {
  margin: -6px 0 20px;
  font-family: var(--font-title);
  font-size: clamp(1.56rem, 2.2vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quest-showcase-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgba(var(--quest-card-accent-rgb), 0.28), rgba(var(--quest-card-accent-rgb), 0.08) 78%, transparent);
}

.quest-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 30px;
}

.quest-showcase-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(246, 239, 230, 0.72);
  font-size: 1.02rem;
}

.quest-showcase-meta strong {
  font-weight: 600;
  color: inherit;
}

.quest-showcase-meta i {
  color: var(--quest-card-accent);
  font-size: 0.98rem;
}

.quest-showcase-cta {
  width: fit-content;
  min-width: 240px;
  justify-content: center;
  border-color: rgba(var(--quest-card-accent-rgb), 0.34);
  background: linear-gradient(135deg, rgba(var(--quest-card-accent-rgb), 0.18), rgba(var(--quest-card-accent-deep-rgb), 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(var(--quest-card-accent-rgb), 0.14);
}

.quest-showcase-cta:hover {
  border-color: rgba(var(--quest-card-accent-rgb), 0.52);
  background: linear-gradient(135deg, rgba(var(--quest-card-accent-rgb), 0.28), rgba(var(--quest-card-accent-deep-rgb), 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(var(--quest-card-accent-rgb), 0.2);
}

.quests-outro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  width: fit-content;
  max-width: min(100%, 720px);
  min-width: 0;
  margin: 38px auto 0;
  color: rgba(246, 239, 230, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.4;
  text-align: center;
  overflow-wrap: break-word;
}

.quests-outro i {
  color: var(--yellow-2);
  font-size: 1.08rem;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.22);
}

.quest-other-card {
  border-color: rgba(var(--quest-card-accent-rgb), 0.14);
}

.quest-other-card:hover {
  border-color: rgba(var(--quest-card-accent-rgb), 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--quest-card-accent-rgb), 0.1);
}

.quest-other-card .qoc-body .quest-number {
  color: var(--quest-card-accent-soft);
}

.quest-other-card .btn-quest {
  border-color: rgba(var(--quest-card-accent-rgb), 0.26);
}

.quest-other-card .btn-quest:hover {
  border-color: rgba(var(--quest-card-accent-rgb), 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), 0 0 22px rgba(var(--quest-card-accent-rgb), 0.16);
}

.quest-card,
.quest-showcase,
.quest-showcase-panel,
.quest-other-card,
html.is-ios .quest-card,
html.is-ios .quest-showcase,
html.is-ios .quest-showcase-panel,
html.is-ios .quest-other-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.quest-card,
.quest-other-card {
  background:
    radial-gradient(circle at 18% 14%, rgba(var(--quest-card-accent-rgb, 212, 175, 55), 0.07), transparent 28%),
    linear-gradient(155deg, rgba(28, 8, 9, 0.99), rgba(10, 2, 3, 1)) !important;
}

.quest-showcase-panel {
  background:
    radial-gradient(circle at 84% 10%, rgba(var(--quest-card-accent-rgb), 0.07), transparent 24%),
    linear-gradient(160deg, rgba(31, 10, 10, 1), rgba(15, 4, 5, 1));
}

.price-amount,
.qbook-price-main,
.contact-phone-num,
.quest-phone {
  color: var(--yellow-2);
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.22);
}

.extra-card .price-amount,
.calc-card .price-amount {
  color: var(--yellow-2);
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.22);
}

.price-currency {
  color: rgba(246, 239, 230, 0.58);
}

.base-card::before,
.extra-card::before,
.calc-card::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 217, 160, 0.72), transparent);
}

.extra-card:hover,
.calc-card:hover {
  border-color: rgba(240, 217, 160, 0.28);
}

.calc-widget {
  border-radius: 24px;
}

.calc-btn {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.26);
  color: var(--yellow-2);
}

.calc-btn:hover {
  background: rgba(212, 175, 55, 0.14);
}

.gallery-overlay {
  background: rgba(200, 164, 93, 0);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(32, 8, 8, 0.22), rgba(200, 164, 93, 0.34));
}

.gallery-overlay i {
  color: var(--text-primary);
}

.faq-question {
  font-size: 0.98rem;
  color: var(--text-primary);
}

.faq-item.active .faq-question,
.faq-item.active .faq-icon {
  color: var(--yellow-2);
}

.cta-band {
  background:
    radial-gradient(circle at 14% 50%, rgba(212, 175, 55, 0.1), transparent 18%),
    linear-gradient(135deg, rgba(36, 9, 9, 0.94), rgba(62, 20, 18, 0.88));
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.cta-band-text p {
  color: rgba(246, 239, 230, 0.72);
}

.contact-phone-block {
  padding: 34px;
}

.contact-detail-item {
  border-bottom-color: rgba(240, 217, 160, 0.08);
}

.social-large {
  border-radius: 999px;
  color: var(--text-secondary);
}

.social-large.tiktok:hover,
.social-large.instagram:hover,
.social-large.facebook:hover {
  color: var(--text-primary);
  border-color: rgba(240, 217, 160, 0.34);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

.map-wrap {
  border-color: rgba(212, 175, 55, 0.16);
}

.wonderland-section::before {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.wl-card-img,
.wl-card-featured .wl-card-img {
  background:
    radial-gradient(circle at 50% 24%, rgba(240, 217, 160, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(73, 19, 17, 0.94), rgba(16, 5, 7, 0.96));
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.wl-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 3, 3, 0.08), rgba(10, 3, 3, 0.62)),
    radial-gradient(circle at 50% 14%, rgba(240, 217, 160, 0.12), transparent 26%);
}

.wl-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.92;
  transform: scale(1.02);
  transition: transform var(--transition), opacity var(--transition), filter var(--transition);
  filter: saturate(1.04) contrast(1.02) brightness(0.78);
}

.wl-card:hover .wl-card-photo {
  opacity: 1;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04) brightness(0.88);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(212, 175, 55, 0.08), transparent 22%),
    radial-gradient(circle at 82% 0%, rgba(73, 19, 17, 0.36), transparent 26%),
    linear-gradient(180deg, rgba(22, 6, 7, 0.98), rgba(9, 2, 3, 1));
  border-top-color: rgba(212, 175, 55, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(240, 217, 160, 0.04), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08), transparent 38%);
}

.footer-top,
.footer-partners,
.footer-bottom {
  position: relative;
  z-index: 1;
  border-color: rgba(212, 175, 55, 0.08);
}

.footer-top {
  padding: 68px 0 30px;
}

.footer-grid {
  grid-template-columns: 1.45fr 0.9fr 0.95fr 1.1fr;
  gap: 0;
  padding: 36px clamp(22px, 3vw, 42px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 48%);
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-col {
  min-width: 0;
  padding: 6px 26px;
}

.footer-col + .footer-col {
  border-left: 1px solid rgba(240, 217, 160, 0.08);
}

.footer-brand {
  padding-left: 0;
  padding-right: 34px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 64px;
  max-width: 192px;
  filter:
    drop-shadow(0 0 12px rgba(212, 175, 55, 0.42))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.footer-tagline {
  max-width: 28ch;
  margin-bottom: 22px;
  font-size: 0.94rem;
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.72);
}

.footer-socials {
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(212, 175, 55, 0.12);
  color: rgba(246, 239, 230, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-socials a:hover {
  color: var(--text-primary);
  border-color: rgba(240, 217, 160, 0.34);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.footer-heading {
  margin-bottom: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(240, 217, 160, 0.84);
}

.footer-links {
  display: grid;
  gap: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  min-height: 42px;
  padding: 10px 0;
  font-size: 0.94rem;
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.76);
  border-bottom: 1px solid rgba(240, 217, 160, 0.07);
}

.footer-links li:last-child a {
  border-bottom: none;
}

.footer-contact-list {
  gap: 4px;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  padding: 10px 0;
  font-size: 0.92rem;
  color: rgba(246, 239, 230, 0.72);
  border-bottom: 1px solid rgba(240, 217, 160, 0.07);
}

.footer-contact-list li:last-child {
  border-bottom: none;
}

.footer-contact-list i {
  margin-top: 0.22rem;
}

.footer-contact-list a,
.footer-contact-list span {
  line-height: 1.4;
}

.footer-partners {
  padding: 0 0 18px;
  border-top: none;
}

.partners-label {
  margin-bottom: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(240, 217, 160, 0.72);
}

.partners-logos {
  gap: 14px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 176px;
  min-height: 110px;
  padding: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(212, 175, 55, 0.12);
  opacity: 1;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.partner-logo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 217, 160, 0.24);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26), 0 0 18px rgba(212, 175, 55, 0.08);
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(1.02) contrast(1.02) brightness(0.82);
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
}

.partner-logo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: none;
  background:
    linear-gradient(180deg, rgba(17, 5, 6, 0.84), rgba(9, 2, 3, 0.94)),
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.14), transparent 40%);
  color: rgba(246, 239, 230, 0.76);
}

.partner-photo-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.58);
}

.partner-logo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 2, 2, 0.05) 0%, rgba(8, 2, 2, 0.12) 45%, rgba(8, 2, 2, 0.72) 100%),
    radial-gradient(circle at 50% 12%, rgba(240, 217, 160, 0.14), transparent 24%);
}

.footer-bottom {
  padding: 0 0 32px;
  border-top: none;
}

.footer-bottom .container {
  padding-top: 18px;
  border-top: 1px solid rgba(240, 217, 160, 0.08);
}

.footer-copy,
.footer-made {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(246, 239, 230, 0.48);
}

.footer-links a:hover,
.footer-contact-list a:hover,
.wl-card-link:hover {
  color: var(--yellow-2);
}

.wonderland-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.partner-logo-item:hover .partner-logo-img {
  filter: saturate(1.08) contrast(1.04) brightness(0.94);
  transform: scale(1.08);
}

.partner-logo-item:hover .partner-logo-placeholder {
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.back-to-top {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(93, 32, 28, 0.92));
  border: 1px solid rgba(240, 217, 160, 0.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 26px rgba(212, 175, 55, 0.14);
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}

.back-to-top:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(120, 38, 31, 1));
}

.lightbox {
  background: rgba(5, 1, 1, 0.94);
  backdrop-filter: blur(16px);
  overflow: hidden;
  touch-action: none;
}

.lightbox-toolbar {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 20px);
  left: calc(20px + env(safe-area-inset-left, 0px));
  z-index: 9001;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lightbox-img-wrap {
  position: relative;
  max-width: min(92vw, 1320px);
  max-height: 86vh;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.lightbox.is-zoomed .lightbox-img-wrap {
  cursor: grab;
}

.lightbox.is-zoomed.is-panning .lightbox-img-wrap {
  cursor: grabbing;
}

.lightbox.is-dragging .lightbox-img-wrap {
  transition: none !important;
}

.lightbox-img-wrap img {
  max-width: min(92vw, 1320px);
  max-height: 82vh;
  transform-origin: center center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-zoom-btn {
  color: var(--text-primary);
}

.lightbox-zoom-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 160, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, opacity 220ms ease;
}

.lightbox-zoom-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 217, 160, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.lightbox-zoom-btn.is-active {
  border-color: rgba(240, 217, 160, 0.48);
  background: rgba(212, 175, 55, 0.16);
}

.lightbox-zoom-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

html.is-touch #particles-bg {
  opacity: 0.58;
  mix-blend-mode: normal;
}

html.is-touch .particle {
  filter: blur(calc(var(--particle-blur, 0.35px) * 0.6));
}

html.is-touch .hero-section::after {
  filter: blur(14px);
  opacity: 0.58;
  animation-duration: 18s;
}

html.is-ios .hero-bg::before,
html.is-ios .hero-section::before {
  mix-blend-mode: normal;
  opacity: 0.42;
}

html.is-ios .hero-floating-icons,
html.is-ios .floating-object {
  opacity: 0.72;
}

html.is-ios .site-header,
html.is-ios .btn,
html.is-ios .lang-switcher,
html.is-ios .social-icon,
html.is-ios .header-cta,
html.is-ios .social-large,
html.is-ios .contact-phone-block,
html.is-ios .faq-item,
html.is-ios .pricing-card,
html.is-ios .quest-card,
html.is-ios .wl-card,
html.is-ios .quest-other-card,
html.is-ios .quest-book-inner,
html.is-ios .quest-difficulty-card,
html.is-ios .map-wrap,
html.is-ios .feature-item,
html.is-ios .gallery-item,
html.is-ios .calc-widget,
html.is-ios .footer-grid,
html.is-ios .mobile-menu-modal,
html.is-ios .mobile-menu-dialog,
html.is-ios .partner-logo-item {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .btn,
  .lang-switcher,
  .social-icon,
  .header-cta,
  .social-large,
  .contact-phone-block,
  .faq-item,
  .pricing-card,
  .quest-card,
  .wl-card,
  .quest-other-card,
  .quest-book-inner,
  .quest-difficulty-card,
  .map-wrap,
  .feature-item,
  .gallery-item,
  .calc-widget,
  .footer-grid,
  .mobile-menu-dialog,
  .partner-logo-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: rgba(24, 8, 9, 0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pulse-btn,
  .particle,
  .hero-section::after,
  .hero-float-icon,
  .floating-object,
  .gallery-item img,
  .quest-card,
  .quest-showcase,
  .quest-showcase-img,
  .pricing-card,
  .wl-card,
  .quest-other-card,
  .feature-item,
  .btn,
  .btn-quest,
  .back-to-top,
  .lightbox-img-wrap {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

.floating-object {
  opacity: 0.94;
}

.float-inner {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 22px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--yellow-2);
}

.quest-hero {
  padding-bottom: 72px;
}

.quest-hero-bg {
  background:
    radial-gradient(circle at 70% 20%, rgba(240, 217, 160, 0.14), transparent 18%),
    radial-gradient(circle at 28% 38%, rgba(102, 28, 25, 0.34), transparent 24%),
    linear-gradient(180deg, #2a0c0c 0%, #130405 58%, #070102 100%);
}

.quest-hero-bg-media {
  filter: saturate(1.04) contrast(1.02) brightness(1.02);
}

.quest-hero-overlay {
  background:
    linear-gradient(to top, rgba(8, 2, 2, 0.58) 0%, rgba(8, 2, 2, 0.16) 42%, rgba(8, 2, 2, 0.02) 100%),
    linear-gradient(to right, rgba(8, 2, 2, 0.42) 0%, rgba(14, 4, 5, 0.18) 58%, rgba(8, 2, 2, 0.04) 100%);
}

body.quest-theme-blue .quest-hero-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(6, 6, 13, 0.74) 60%,
    rgba(6, 6, 13, 0) 100%
  );
}

body.quest-theme-red .quest-hero-shapes .neon-shape,
body.quest-theme-gold .quest-hero-shapes .neon-shape,
body.quest-theme-blue .quest-hero-shapes .neon-shape {
  background: rgba(var(--quest-accent-rgb), 0.12) !important;
}

body.quest-theme-red .quest-hero-badge,
body.quest-theme-red .quest-badge-gold,
body.quest-theme-red .quest-badge-red,
body.quest-theme-red .quest-badge-blue,
body.quest-theme-red .quest-tag-red,
body.quest-theme-red .quest-tag-blue,
body.quest-theme-gold .quest-hero-badge,
body.quest-theme-gold .quest-badge-gold,
body.quest-theme-gold .quest-badge-red,
body.quest-theme-gold .quest-badge-blue,
body.quest-theme-gold .quest-tag-red,
body.quest-theme-gold .quest-tag-blue,
body.quest-theme-blue .quest-hero-badge,
body.quest-theme-blue .quest-badge-gold,
body.quest-theme-blue .quest-badge-red,
body.quest-theme-blue .quest-badge-blue,
body.quest-theme-blue .quest-tag-red,
body.quest-theme-blue .quest-tag-blue {
  color: var(--quest-accent-soft);
  border-color: rgba(var(--quest-accent-rgb), 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

body.quest-theme-red .quest-hero-badge .badge-dot,
body.quest-theme-gold .quest-hero-badge .badge-dot,
body.quest-theme-blue .quest-hero-badge .badge-dot {
  background: var(--quest-accent);
  box-shadow: 0 0 16px rgba(var(--quest-accent-rgb), 0.45);
}

body.quest-theme-red .quest-hero-title,
body.quest-theme-red .quest-title-red,
body.quest-theme-red .quest-title-blue,
body.quest-theme-gold .quest-hero-title,
body.quest-theme-gold .quest-title-red,
body.quest-theme-gold .quest-title-blue,
body.quest-theme-blue .quest-hero-title,
body.quest-theme-blue .quest-title-red,
body.quest-theme-blue .quest-title-blue {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 38%,
    rgba(var(--quest-accent-rgb), 0.86) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(var(--quest-accent-rgb), 0.22));
}

body.quest-theme-red .quest-hero-title,
body.quest-theme-gold .quest-hero-title,
body.quest-theme-blue .quest-hero-title {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--text-primary);
  background-clip: initial;
  color: var(--text-primary);
  filter: drop-shadow(0 0 24px rgba(246, 239, 230, 0.12));
}

.quest-back-link,
.quest-back-link:hover,
.contact-detail-item a:hover,
.quest-meta span,
.qmeta-item strong {
  color: var(--text-primary);
}

.quest-back-link {
  color: var(--text-secondary);
}

body.quest-theme-red .quest-back-link:hover,
body.quest-theme-gold .quest-back-link:hover,
body.quest-theme-blue .quest-back-link:hover {
  color: var(--quest-accent-soft);
}

body.quest-theme-red .qmeta-item,
body.quest-theme-gold .qmeta-item,
body.quest-theme-blue .qmeta-item {
  border-right-color: rgba(var(--quest-accent-rgb), 0.14);
}

.qmeta-item strong {
  font-size: 0.9rem;
}

body.quest-theme-red .qmeta-item i,
body.quest-theme-gold .qmeta-item i,
body.quest-theme-blue .qmeta-item i {
  color: var(--quest-accent);
}

.quest-hero-tagline {
  color: rgba(246, 239, 230, 0.82);
}

body.quest-theme-red .qf-item,
body.quest-theme-red .qf-red,
body.quest-theme-red .qf-blue,
body.quest-theme-gold .qf-item,
body.quest-theme-gold .qf-red,
body.quest-theme-gold .qf-blue,
body.quest-theme-blue .qf-item,
body.quest-theme-blue .qf-red,
body.quest-theme-blue .qf-blue {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(var(--quest-accent-rgb), 0.16);
}

body.quest-theme-red .qf-item:hover,
body.quest-theme-red .qf-red:hover,
body.quest-theme-red .qf-blue:hover,
body.quest-theme-gold .qf-item:hover,
body.quest-theme-gold .qf-red:hover,
body.quest-theme-gold .qf-blue:hover,
body.quest-theme-blue .qf-item:hover,
body.quest-theme-blue .qf-red:hover,
body.quest-theme-blue .qf-blue:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--quest-accent-rgb), 0.28);
}

body.quest-theme-red .qf-item i,
body.quest-theme-red .qf-red i,
body.quest-theme-red .qf-blue i,
body.quest-theme-gold .qf-item i,
body.quest-theme-gold .qf-red i,
body.quest-theme-gold .qf-blue i,
body.quest-theme-blue .qf-item i,
body.quest-theme-blue .qf-red i,
body.quest-theme-blue .qf-blue i {
  color: var(--quest-accent-soft);
}

body.quest-theme-red .quest-difficulty-card,
body.quest-theme-red .quest-diff-gold,
body.quest-theme-red .quest-diff-red,
body.quest-theme-red .quest-diff-blue,
body.quest-theme-gold .quest-difficulty-card,
body.quest-theme-gold .quest-diff-gold,
body.quest-theme-gold .quest-diff-red,
body.quest-theme-gold .quest-diff-blue,
body.quest-theme-blue .quest-difficulty-card,
body.quest-theme-blue .quest-diff-gold,
body.quest-theme-blue .quest-diff-red,
body.quest-theme-blue .quest-diff-blue {
  border-color: rgba(var(--quest-accent-rgb), 0.22);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28), 0 0 26px rgba(var(--quest-accent-rgb), 0.12);
}

body.quest-theme-red .quest-img-glow,
body.quest-theme-red .quest-img-glow-gold,
body.quest-theme-red .quest-img-glow-red,
body.quest-theme-red .quest-img-glow-blue,
body.quest-theme-gold .quest-img-glow,
body.quest-theme-gold .quest-img-glow-gold,
body.quest-theme-gold .quest-img-glow-red,
body.quest-theme-gold .quest-img-glow-blue,
body.quest-theme-blue .quest-img-glow,
body.quest-theme-blue .quest-img-glow-gold,
body.quest-theme-blue .quest-img-glow-red,
body.quest-theme-blue .quest-img-glow-blue {
  border-color: rgba(var(--quest-accent-rgb), 0.2);
  box-shadow:
    inset 0 0 70px rgba(var(--quest-accent-rgb), 0.05),
    0 0 46px rgba(var(--quest-accent-rgb), 0.1);
}

.quest-gallery-grid {
  gap: 16px;
}

body.quest-theme-red .quest-book-section,
body.quest-theme-red .quest-book-section-red,
body.quest-theme-red .quest-book-section-blue,
body.quest-theme-gold .quest-book-section,
body.quest-theme-gold .quest-book-section-red,
body.quest-theme-gold .quest-book-section-blue,
body.quest-theme-blue .quest-book-section,
body.quest-theme-blue .quest-book-section-red,
body.quest-theme-blue .quest-book-section-blue {
  border-top-color: rgba(var(--quest-accent-rgb), 0.14);
  border-bottom-color: rgba(var(--quest-accent-rgb), 0.14);
}

.quest-book-inner {
  padding: 54px;
}

body.quest-theme-red .quest-book-inner,
body.quest-theme-gold .quest-book-inner,
body.quest-theme-blue .quest-book-inner {
  border-color: rgba(var(--quest-accent-rgb), 0.16);
}

body.quest-theme-red .quest-hero-cta,
body.quest-theme-red .quest-cta-red,
body.quest-theme-red .quest-cta-blue,
body.quest-theme-red .quest-book-cta .btn,
body.quest-theme-gold .quest-hero-cta,
body.quest-theme-gold .quest-cta-red,
body.quest-theme-gold .quest-cta-blue,
body.quest-theme-gold .quest-book-cta .btn,
body.quest-theme-blue .quest-hero-cta,
body.quest-theme-blue .quest-cta-red,
body.quest-theme-blue .quest-cta-blue,
body.quest-theme-blue .quest-book-cta .btn {
  background: linear-gradient(135deg, rgba(var(--quest-accent-rgb), 0.2), rgba(var(--quest-accent-deep-rgb), 0.76)) !important;
  border-color: rgba(var(--quest-accent-rgb), 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(var(--quest-accent-rgb), 0.16) !important;
}

body.quest-theme-red .quest-hero-cta:hover,
body.quest-theme-red .quest-cta-red:hover,
body.quest-theme-red .quest-cta-blue:hover,
body.quest-theme-red .quest-book-cta .btn:hover,
body.quest-theme-gold .quest-hero-cta:hover,
body.quest-theme-gold .quest-cta-red:hover,
body.quest-theme-gold .quest-cta-blue:hover,
body.quest-theme-gold .quest-book-cta .btn:hover,
body.quest-theme-blue .quest-hero-cta:hover,
body.quest-theme-blue .quest-cta-red:hover,
body.quest-theme-blue .quest-cta-blue:hover,
body.quest-theme-blue .quest-book-cta .btn:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(var(--quest-accent-rgb), 0.22) !important;
}

body.quest-theme-red .qbook-price-main,
body.quest-theme-red .quest-phone,
body.quest-theme-gold .qbook-price-main,
body.quest-theme-gold .quest-phone,
body.quest-theme-blue .qbook-price-main,
body.quest-theme-blue .quest-phone {
  color: var(--quest-accent-soft);
  text-shadow: 0 0 26px rgba(var(--quest-accent-rgb), 0.24);
}

body.quest-theme-red .qbook-hours i,
body.quest-theme-gold .qbook-hours i,
body.quest-theme-blue .qbook-hours i {
  color: var(--quest-accent);
}

body.quest-theme-red .quest-story-title em,
body.quest-theme-red .quest-gallery-section .section-title em,
body.quest-theme-red .quest-others-section .section-title em,
body.quest-theme-red .quest-video-section .section-title em,
body.quest-theme-gold .quest-story-title em,
body.quest-theme-gold .quest-gallery-section .section-title em,
body.quest-theme-gold .quest-others-section .section-title em,
body.quest-theme-gold .quest-video-section .section-title em,
body.quest-theme-blue .quest-story-title em,
body.quest-theme-blue .quest-gallery-section .section-title em,
body.quest-theme-blue .quest-others-section .section-title em,
body.quest-theme-blue .quest-video-section .section-title em {
  color: var(--quest-accent-soft);
  background: linear-gradient(135deg, var(--quest-accent), var(--quest-accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quest-phone:hover,
.contact-phone-num:hover {
  text-shadow: 0 0 46px rgba(212, 175, 55, 0.28);
}

body.quest-theme-red .quest-phone:hover,
body.quest-theme-gold .quest-phone:hover,
body.quest-theme-blue .quest-phone:hover {
  text-shadow: 0 0 46px rgba(var(--quest-accent-rgb), 0.3);
}

.quest-card.reveal-pending,
.quest-showcase.reveal-pending {
  opacity: 0;
  transform: translateY(30px);
}

.quest-card.reveal-pending.is-visible,
.quest-showcase.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 12px;
  }

  .main-nav a {
    padding: 11px 12px;
    font-size: 0.68rem;
  }

  .header-cta {
    padding: 0 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 92px 0;
  }

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

  .hero-title {
    font-size: clamp(3.5rem, 12vw, 6.2rem);
  }

  .stat-divider {
    display: none;
  }

  .hero-float-icon.icon-1,
  .hero-float-icon.icon-2 {
    right: 4%;
  }

  .hero-float-icon.icon-3,
  .hero-float-icon.icon-4 {
    left: 4%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
    --header-height-scrolled: 68px;
  }

  html,
  body {
    min-height: 100%;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: clip;
    touch-action: auto;
  }

  .container {
    padding: 0 18px;
  }

  .header-inner {
    position: relative;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-areas: "spacer brand meta";
    align-items: center;
    min-height: 76px;
    gap: 0;
  }

  .header-inner::after {
    content: "";
    grid-area: spacer;
    width: 44px;
    height: 44px;
  }

  .logo {
    grid-area: brand;
    justify-self: center;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo-png-wrap,
  .logo-png-wrap img.logo-png {
    height: 54px;
    max-width: min(170px, 100%);
  }

  .main-nav {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }

  .mobile-menu-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: calc(var(--header-height) + 12px) 12px 18px;
    background: rgba(7, 2, 3, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    overscroll-behavior: contain;
  }

  .mobile-menu-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-dialog {
    width: min(100%, 328px);
    margin-left: auto;
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 18px 16px 16px;
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(27, 10, 10, 0.985), rgba(11, 3, 4, 0.965)),
      radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 46%);
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow:
      0 22px 56px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-12px) scale(0.985);
    transition: transform var(--transition);
  }

  .mobile-menu-modal.is-open .mobile-menu-dialog {
    transform: translateY(0) scale(1);
  }

  .mobile-menu-list {
    display: grid;
    gap: 10px;
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(212, 175, 55, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    touch-action: manipulation;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(240, 217, 160, 0.22);
  }

  .mobile-menu-extra {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
  }

  .mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(138, 42, 35, 0.86), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(240, 217, 160, 0.24);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .mobile-menu-contacts {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .mobile-menu-contact i {
    color: var(--yellow-1);
    flex-shrink: 0;
  }

  .mobile-menu-contact span {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
  }

  .mobile-menu-socials a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .mobile-menu-lang {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-menu-lang .lang-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .mobile-menu-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 2px 0;
    color: var(--text-secondary);
  }

  .mobile-menu-address i {
    color: var(--yellow-1);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .mobile-menu-address span {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .mobile-nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(138, 42, 35, 0.86), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(240, 217, 160, 0.24);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .mobile-nav-phone:hover {
    border-color: rgba(240, 217, 160, 0.38);
    box-shadow:
      0 20px 36px rgba(0, 0, 0, 0.28),
      0 0 24px rgba(212, 175, 55, 0.14);
  }

  .lang-switcher {
    display: none;
  }

  .header-right {
    grid-area: meta;
    position: static;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    pointer-events: auto;
    overflow: visible;
    z-index: 3;
  }

  .header-cta {
    display: none !important;
  }

  .header-cta span {
    display: none !important;
  }

  .header-cta i {
    margin: 0;
  }

  .burger {
    display: none !important;
  }

  .sound-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 16px);
    left: 18px;
    right: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-color: rgba(212, 175, 55, 0.14);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
    z-index: 1002;
  }

  .sound-toggle:hover,
  .sound-toggle:focus-visible {
    transform: none;
  }

  .sound-toggle.is-playing {
    background: linear-gradient(180deg, rgba(123, 39, 33, 0.82), rgba(67, 24, 22, 0.72));
    border-color: rgba(240, 217, 160, 0.24);
    box-shadow:
      0 16px 30px rgba(0, 0, 0, 0.22),
      0 0 24px rgba(212, 175, 55, 0.16);
  }

  .sound-toggle.is-pending {
    box-shadow:
      0 16px 30px rgba(0, 0, 0, 0.22),
      0 0 26px rgba(212, 175, 55, 0.22);
  }

  .sound-toggle i {
    font-size: 1.05rem;
  }

  .sound-toggle-label {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 16px);
    right: 18px;
    left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
    z-index: 1003;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #f0d28c, #c8a45d);
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
  }

  .mobile-menu-toggle.open {
    background: linear-gradient(180deg, rgba(123, 39, 33, 0.82), rgba(67, 24, 22, 0.72));
    border-color: rgba(240, 217, 160, 0.24);
  }

  .mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .social-icons {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    padding: 104px 0 42px;
  }

  .hero-content {
    max-width: none;
    padding-top: 24px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: 0.94;
    margin-bottom: 18px;
  }

  .hero-sub {
    max-width: 31ch;
    min-height: auto;
    font-size: 0.96rem;
    line-height: 1.4;
    margin-bottom: 26px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    width: min(100%, 460px);
    margin: 0 0 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 460px);
    padding: 16px;
    gap: 12px;
    border-radius: 28px;
  }

  .stat-item {
    min-height: 96px;
    padding: 14px 8px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.08);
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: clamp(2.3rem, 10.6vw, 3.5rem);
    line-height: 0.98;
  }

  .section-desc,
  .about-text p,
  .quest-desc,
  .wl-card-desc,
  .faq-answer p,
  .contact-detail-item p,
  .contact-detail-item a {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .feature-item,
  .pricing-card,
  .quest-card,
  .wl-card,
  .contact-phone-block,
  .map-wrap {
    border-radius: 24px;
  }

  .quest-body,
  .wl-card-body {
    padding: 22px 20px 24px;
  }

  .about-grid,
  .contact-grid {
    gap: 24px;
  }

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

  .about-visual {
    order: -1;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-img {
    height: clamp(280px, 68vw, 380px);
    min-height: 0;
  }

  .quests-header {
    margin-bottom: 30px;
  }

  .quests-header .section-title {
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 5.3vw, 2.5rem);
    line-height: 0.98;
    letter-spacing: 0.02em;
  }

  .quests-header .section-desc {
    font-size: 1rem;
    line-height: 1.4;
  }

  .quests-grid,
  .pricing-grid,
  .footer-grid,
  .wonderland-grid {
    grid-template-columns: 1fr;
  }

  .quests-grid,
  .pricing-grid,
  .wonderland-grid {
    gap: 18px;
  }

  .quests-showcase {
    gap: 22px;
  }

  .quest-showcase,
  .quest-showcase--reverse {
    grid-template-columns: 1fr;
  }

  .quest-showcase--reverse .quest-showcase-media,
  .quest-showcase--reverse .quest-showcase-panel {
    order: initial;
  }

  .quest-showcase-media {
    min-height: clamp(250px, 62vw, 360px);
  }

  .quest-showcase-panel {
    padding: 24px 20px 26px;
  }

  .quest-showcase-number {
    margin-bottom: 18px;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
  }

  .quest-showcase-title {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 11vw, 3.3rem);
    letter-spacing: 0.015em;
  }

  .quest-showcase-desc {
    max-width: none;
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .quest-showcase-divider {
    margin-bottom: 18px;
  }

  .quest-showcase-meta {
    gap: 14px 18px;
    margin-bottom: 22px;
  }

  .quest-showcase-meta span {
    font-size: 0.92rem;
  }

  .quest-showcase-cta {
    width: 100%;
    min-width: 0;
  }

  .quest-showcase-arrow {
    width: 44px;
    height: 44px;
  }

  .quest-showcase-arrow--left {
    left: 14px;
  }

  .quest-showcase-arrow--right {
    right: 14px;
  }

  .quest-showcase-dots {
    bottom: 16px;
    gap: 8px;
  }

  .quest-showcase-dots span {
    width: 8px;
    height: 8px;
  }

  .quests-outro {
    margin-top: 28px;
    font-size: 0.96rem;
    gap: 10px;
  }

  .gallery-grid,
  .quest-gallery-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(82vw, 320px);
    grid-template-columns: none;
    grid-auto-rows: 220px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 12px;
    gap: 14px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .gallery-grid::-webkit-scrollbar,
  .quest-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item,
  .quest-gallery-grid .gallery-item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gallery-wide,
  .quest-gallery-grid .gallery-wide {
    grid-column: auto;
  }

  .swipe-gallery.is-swiping .gallery-item {
    pointer-events: none;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .calc-widget {
    padding: 18px 16px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .cta-band {
    padding: 42px 0;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cta-band-btn {
    width: 100%;
    justify-content: center;
  }

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

  .contact-phone-block {
    margin-bottom: 22px;
    padding: 24px 20px;
  }

  .lightbox-img-wrap {
    max-width: min(92vw, 760px);
  }

  .lightbox-toolbar {
    top: calc(env(safe-area-inset-top, 0px) + 18px);
    left: 18px;
    gap: 8px;
  }

  .lightbox-zoom-btn {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: 26px;
    transform: none;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox-close {
    top: calc(env(safe-area-inset-top, 0px) + 18px);
    right: 18px;
  }

  .contact-socials .social-icons-large {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    padding: 46px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 26px 22px;
    border-radius: 28px;
  }

  .footer-col {
    padding: 18px 0;
  }

  .footer-col + .footer-col {
    border-left: none;
    border-top: 1px solid rgba(240, 217, 160, 0.08);
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom .container {
    align-items: flex-start;
    gap: 8px;
  }

  .social-icons-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partners-logos {
    gap: 12px;
  }

  .partner-logo-item {
    flex: 1 1 calc(50% - 12px);
  }

  .hero-float-icon {
    width: 62px;
    border-radius: 22px;
  }

  .hero-float-icon.icon-1,
  .hero-float-icon.icon-2,
  .hero-float-icon.icon-3,
  .hero-float-icon.icon-4 {
    opacity: 0.7;
  }

  .quest-book-inner {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

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

  .header-inner {
    min-height: 72px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .header-right {
    width: 42px;
    height: 42px;
  }

  .sound-toggle {
    left: 16px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .mobile-menu-toggle {
    right: 16px;
    left: auto;
  }

  .logo-png-wrap,
  .logo-png-wrap img.logo-png {
    height: 50px;
    max-width: min(154px, 100%);
  }

  .main-nav {
    display: none !important;
  }

  .mobile-menu-modal {
    padding: calc(var(--header-height) + 10px) 12px 18px;
  }

  .mobile-menu-dialog {
    width: min(100%, 304px);
    margin-left: auto;
    padding: 16px 14px 14px;
    border-radius: 22px;
  }

  .mobile-nav-phone {
    width: 100%;
  }

  .gallery-grid,
  .quest-gallery-grid {
    grid-auto-columns: minmax(86vw, 1fr);
    grid-auto-rows: 204px;
    gap: 12px;
  }

  .quest-showcase {
    border-radius: 26px;
  }

  .quest-showcase-panel {
    padding: 22px 16px 22px;
  }

  .quest-showcase-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .quest-showcase-meta {
    gap: 10px 14px;
  }

  .quest-showcase-meta span {
    font-size: 0.88rem;
  }

  .hero-floating-icons {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .hero-sub {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    padding: 14px;
  }

  .stat-item {
    min-height: 92px;
    padding: 12px 6px 10px;
  }

  .partner-logo-item {
    flex-basis: 100%;
  }

  .footer-grid {
    padding: 22px 18px;
  }

  .footer-tagline,
  .footer-links a,
  .footer-contact-list li {
    font-size: 0.9rem;
  }

  .btn,
  .btn-quest {
    min-height: 50px;
    font-size: 0.84rem;
    padding-inline: 18px;
  }

  .contact-socials .social-icons-large {
    grid-template-columns: 1fr;
  }

  .cta-band-btn,
  .quest-hero-actions .btn,
  .quest-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 6px;
    font-size: clamp(0.64rem, 2.82vw, 0.78rem);
    letter-spacing: 0.018em;
    white-space: nowrap;
    justify-content: center;
  }

  .hero-actions .btn i {
    font-size: 0.82em;
    margin-right: 5px;
  }

  .float-inner {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 420px) {
  .section-title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .quests-header .section-title {
    font-size: clamp(1.28rem, 4.8vw, 1.72rem);
    letter-spacing: 0.014em;
  }

  .quests-header .section-desc {
    font-size: 0.92rem;
  }

  .quest-showcase-media {
    min-height: 220px;
  }

  .quest-showcase-title {
    font-size: clamp(1.42rem, 5.7vw, 1.88rem);
    letter-spacing: 0.008em;
  }

  .quest-showcase-desc,
  .quest-showcase-meta span {
    font-size: 0.84rem;
  }

  .quests-outro {
    font-size: 0.88rem;
  }

  .hero-badge,
  .section-tag,
  .quest-hero-badge {
    letter-spacing: 0.24em;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.72rem;
  }
}

/* ===================================================
   HOMEPAGE REFERENCE REDESIGN
=================================================== */

.hero-content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.hero-content--solo {
  display: block;
  max-width: 1440px;
}

.hero-content--solo .hero-copy {
  max-width: min(100%, 760px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-stage-frame {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(13, 3, 4, 0.78);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 5, 5, 0.02), rgba(15, 5, 5, 0.4)),
    radial-gradient(circle at 78% 24%, rgba(212, 175, 55, 0.16), transparent 26%);
  pointer-events: none;
}

.hero-stage-img {
  display: block;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.hero-stage-glow {
  position: absolute;
  inset: auto auto -12% -10%;
  width: 48%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-stage-note {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-align: right;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.home-slab-header {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.home-slab-header .section-tag {
  margin-inline: auto;
}

.home-slab-header .section-title {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
}

.home-slab-header .section-title em {
  color: var(--yellow-2);
  font-style: normal;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.why-section,
.process-section,
.home-video-section,
.experience-section,
.home-gallery-section,
.home-faq-section,
.final-cta-section {
  position: relative;
  padding: clamp(82px, 10vw, 118px) 0;
}

.final-cta-section {
  padding: clamp(40px, 6vw, 64px) 0;
}

.home-bg-scene {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    linear-gradient(180deg, #080102 0%, rgba(18, 5, 5, 0.98) 14%, rgba(15, 4, 5, 0.98) 82%, #080102 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll, fixed;
}

.home-bg-scene--journey {
  margin-top: -1px;
}

.home-bg-scene--quests {
  margin-top: -1px;
  background-position: center 34%;
  background-attachment: scroll, fixed !important;
  contain: paint;
}

@media (max-width: 900px) {
  .home-bg-scene--quests {
    background-attachment: scroll, scroll !important;
  }
}

.home-bg-scene--quests::before {
  background:
    linear-gradient(180deg, #080102 0%, rgba(8, 1, 2, 0.62) 8%, rgba(8, 1, 2, 0.1) 30%, rgba(8, 1, 2, 0.16) 72%, rgba(8, 1, 2, 0.74) 94%, #080102 100%),
    linear-gradient(90deg, rgba(8, 1, 2, 0.72) 0%, rgba(8, 1, 2, 0.16) 28%, rgba(8, 1, 2, 0.14) 72%, rgba(8, 1, 2, 0.74) 100%);
}

.home-bg-scene--quests::after {
  background:
    radial-gradient(ellipse at 22% 18%, rgba(195, 74, 68, 0.12), transparent 30%),
    radial-gradient(ellipse at 72% 56%, rgba(51, 116, 178, 0.12), transparent 34%),
    radial-gradient(ellipse at 50% 6%, rgba(212, 175, 55, 0.08), transparent 30%);
}

.home-bg-scene--booking {
  background:
    linear-gradient(180deg, #080102 0%, rgba(22, 7, 7, 0.98) 16%, rgba(12, 3, 4, 0.98) 84%, #080102 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll, fixed;
}

.home-bg-scene .section-bg-parallax {
  display: none;
  background-image: none !important;
  opacity: 0 !important;
}

.section-bg-parallax {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--scene-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.44;
  filter: saturate(0.9) brightness(0.72) contrast(1.08);
  transform: translate3d(0, 0, 0) scale(1.08);
  transition: opacity 0.45s ease, filter 0.45s ease;
  will-change: transform;
}

.home-bg-scene.no-bg-image .section-bg-parallax,
.quest-bg-scene.no-bg-image .section-bg-parallax {
  opacity: 0 !important;
  background-image: none !important;
}

.home-bg-scene--booking .section-bg-parallax {
  opacity: 0.4;
  background-position: center 45%;
  filter: saturate(0.88) brightness(0.66) contrast(1.06);
}

.home-bg-scene::before,
.home-bg-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-bg-scene::before {
  background:
    linear-gradient(180deg, #080102 0%, rgba(8, 1, 2, 0.72) 7%, rgba(8, 1, 2, 0.14) 24%, rgba(8, 1, 2, 0.14) 76%, rgba(8, 1, 2, 0.76) 94%, #080102 100%),
    linear-gradient(90deg, rgba(8, 1, 2, 0.58) 0%, rgba(8, 1, 2, 0.08) 24%, rgba(8, 1, 2, 0.08) 76%, rgba(8, 1, 2, 0.6) 100%);
}

.home-bg-scene.no-bg-image::before,
.quest-bg-scene.no-bg-image::before {
  display: none;
}

.home-bg-scene::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08), transparent 34%),
    radial-gradient(ellipse at 78% 48%, rgba(105, 31, 28, 0.16), transparent 36%);
}

.home-bg-scene > section {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.home-bg-scene .container,
.home-bg-scene .home-gallery-carousel {
  position: relative;
  z-index: 2;
}

.home-bg-scene .process-section::before,
.home-bg-scene .home-video-section::before,
.home-bg-scene .home-gallery-section::before,
.home-bg-scene .pricing-section::before,
.home-bg-scene .home-faq-section::before {
  display: none;
}

.home-bg-scene .pricing-bg {
  display: none !important;
  background-image: none !important;
}

.quest-bg-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #080102 0%, rgba(13, 3, 5, 0.98) 12%, rgba(12, 3, 5, 0.98) 86%, #080102 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll, fixed;
}

.quest-bg-scene + .quest-bg-scene {
  margin-top: -1px;
}

.quest-bg-scene .section-bg-parallax {
  display: none;
  background-image: none !important;
  opacity: 0 !important;
}

.quest-bg-scene--story .section-bg-parallax {
  background-position: center 42%;
}

.quest-bg-scene--gallery .section-bg-parallax {
  background-position: center 50%;
  filter: saturate(1) brightness(0.74) contrast(1.1);
}

.quest-bg-scene--closing .section-bg-parallax {
  background-position: center 60%;
  filter: saturate(0.94) brightness(0.7) contrast(1.06);
}

.quest-bg-scene::before,
.quest-bg-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.quest-bg-scene::before {
  background:
    linear-gradient(180deg, #080102 0%, rgba(8, 1, 2, 0.52) 6%, rgba(8, 1, 2, 0.08) 24%, rgba(8, 1, 2, 0.06) 72%, rgba(8, 1, 2, 0.56) 96%, #080102 100%),
    linear-gradient(90deg, rgba(8, 1, 2, 0.42) 0%, rgba(8, 1, 2, 0.04) 25%, rgba(8, 1, 2, 0.04) 72%, rgba(8, 1, 2, 0.44) 100%);
}

.quest-bg-scene::after {
  background:
    radial-gradient(ellipse at 16% 20%, rgba(var(--quest-accent-rgb), 0.12), transparent 28%),
    radial-gradient(ellipse at 82% 54%, rgba(var(--quest-accent-rgb), 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
}

.quest-bg-scene--story::after {
  background:
    radial-gradient(ellipse at 14% 22%, rgba(var(--quest-accent-rgb), 0.14), transparent 26%),
    radial-gradient(ellipse at 76% 62%, rgba(var(--quest-accent-rgb), 0.08), transparent 34%);
}

.quest-bg-scene--gallery::after {
  background:
    radial-gradient(ellipse at 50% 4%, rgba(var(--quest-accent-rgb), 0.1), transparent 34%),
    radial-gradient(ellipse at 84% 44%, rgba(var(--quest-accent-rgb), 0.12), transparent 30%);
}

.quest-bg-scene--closing::after {
  background:
    radial-gradient(ellipse at 22% 6%, rgba(var(--quest-accent-rgb), 0.1), transparent 30%),
    radial-gradient(ellipse at 68% 88%, rgba(var(--quest-accent-rgb), 0.08), transparent 32%);
}

.quest-bg-scene > section,
.quest-bg-scene > footer {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.quest-bg-scene .container {
  position: relative;
  z-index: 2;
}

.quest-bg-scene > .lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
}

.quest-bg-scene .site-footer::before {
  display: none;
}

.quest-bg-scene .footer-grid {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at 50% 0%, rgba(var(--quest-accent-rgb), 0.1), transparent 48%),
    rgba(10, 3, 5, 0.54);
  border-color: rgba(var(--quest-accent-rgb), 0.14);
}

@media (max-width: 768px) {
  .decor-object--quest-top {
    top: 64px;
    right: 8px;
    width: clamp(96px, 28vw, 136px);
    opacity: 0;
  }

  .decor-object--quest-top.is-loaded {
    opacity: 0.72;
  }

  .decor-object--process-left {
    top: 34px;
    left: 22px;
    width: clamp(88px, 24vw, 118px);
  }

  .decor-object--process-left.is-loaded {
    opacity: 0.66;
  }

  .decor-object--gallery-right {
    top: 48px;
    right: 18px;
    width: clamp(82px, 22vw, 112px);
  }

  .decor-object--gallery-right.is-loaded {
    opacity: 0.62;
  }

  .decor-object--pricing-left {
    top: 42px;
    left: 22px;
    width: clamp(78px, 21vw, 108px);
  }

  .decor-object--pricing-left.is-loaded {
    opacity: 0.6;
  }

  .hero-quest-divider {
    height: 58px;
    margin: -34px 0 -18px;
  }

  .hero-quest-divider img {
    width: 132vw;
    height: 48px;
    transform: translate(-50%, -50%) rotate(-3.2deg);
  }

  .hero-quest-divider::before,
  .hero-quest-divider::after {
    transform: translateY(-50%) rotate(-3.2deg);
  }

  .quests-after-divider {
    height: 58px;
    margin: -22px 0 -22px;
  }

  .quests-after-divider img {
    width: 132vw;
    height: 48px;
    transform: translate(-50%, -50%) rotate(3.2deg);
  }

  .quests-after-divider::before,
  .quests-after-divider::after {
    transform: translateY(-50%) rotate(3.2deg);
  }

  .gallery-price-divider {
    height: 54px;
    margin: -22px 0 -18px;
  }

  .gallery-price-divider img {
    width: 132vw;
    height: 44px;
    transform: translate(-50%, -50%) rotate(3.2deg);
  }

  .gallery-price-divider::before,
  .gallery-price-divider::after {
    transform: translateY(-50%) rotate(3.2deg);
  }

  .process-video-divider {
    height: 52px;
    margin: -18px 0 -20px;
  }

  .process-video-divider img {
    width: 132vw;
    height: 42px;
    transform: translate(-50%, -50%) rotate(-3.2deg);
  }

  .process-video-divider::before,
  .process-video-divider::after {
    transform: translateY(-50%) rotate(-3.2deg);
  }

  .home-bg-scene {
    background-attachment: scroll;
  }

  .story-band-media,
  .final-cta-shell {
    background-attachment: scroll;
  }

  .quest-bg-scene {
    background-attachment: scroll;
  }

  .quest-bg-scene .section-bg-parallax {
    display: none;
  }

  .quest-bg-scene::before {
    background:
      linear-gradient(180deg, #080102 0%, rgba(8, 1, 2, 0.82) 5%, rgba(8, 1, 2, 0.32) 28%, rgba(8, 1, 2, 0.3) 74%, rgba(8, 1, 2, 0.84) 96%, #080102 100%),
      linear-gradient(90deg, rgba(8, 1, 2, 0.76), rgba(8, 1, 2, 0.24), rgba(8, 1, 2, 0.78));
  }
}

.why-section::before,
.process-section::before,
.home-video-section::before,
.experience-section::before,
.home-gallery-section::before,
.home-faq-section::before,
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-section::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  min-width: 0;
  padding: 34px 26px 30px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(16, 4, 5, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 42%);
  pointer-events: none;
}

.why-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.06);
  color: var(--yellow-2);
  font-size: 1.3rem;
}

.why-value {
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--yellow-2);
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
}

.why-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.78);
}

.story-band-section {
  position: relative;
  width: 100%;
  padding: 0;
  background: #080102;
  overflow: hidden;
}

.story-band-media {
  position: relative;
  min-height: clamp(420px, 50vw, 760px);
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.story-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.84) brightness(0.64) contrast(1.03);
  transform: scale(1.04);
  display: none;
}

.story-band-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #080102 0%, rgba(8, 1, 2, 0.8) 9%, rgba(44, 8, 8, 0.12) 24%, rgba(44, 8, 8, 0.12) 76%, rgba(8, 1, 2, 0.82) 91%, #080102 100%),
    radial-gradient(circle at 18% 40%, rgba(132, 16, 16, 0.52), transparent 30%),
    radial-gradient(circle at 50% 20%, rgba(255, 164, 150, 0.28), transparent 18%),
    radial-gradient(circle at 80% 36%, rgba(110, 14, 14, 0.48), transparent 28%);
}

.story-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 1, 2, 0.18) 0%, rgba(8, 1, 2, 0) 16%, rgba(8, 1, 2, 0) 84%, rgba(8, 1, 2, 0.18) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 32%);
}

.story-band-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(32px, 4vw, 48px) 24px clamp(34px, 6vw, 78px);
  text-align: center;
}

.story-band-kicker {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.1vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: rgba(246, 239, 230, 0.94);
}

.story-band-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3.9rem, 9vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.4);
}

.process-section::before {
  background:
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 217, 160, 0.48), transparent);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 14px 8px;
  text-align: center;
}

.process-step-num {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: rgba(15, 4, 5, 0.92);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow-2);
}

.process-step-icon {
  color: var(--yellow-2);
  font-size: 1.9rem;
  min-height: 34px;
}

.process-step p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.76);
}

.home-video-section::before {
  background:
    radial-gradient(circle at 50% 12%, rgba(212, 175, 55, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.home-video-section-desc {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.home-video-card {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.home-video-poster {
  position: relative;
  min-height: clamp(360px, 45vw, 620px);
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(145deg, rgba(22, 7, 8, 0.94), rgba(11, 3, 4, 0.98));
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-video-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) brightness(0.56) contrast(1.04);
  transform: scale(1.03);
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), filter 700ms ease;
}

.home-video-card:hover .home-video-img,
.quest-video-card:hover .quest-video-img {
  transform: scale(1.065);
  filter: saturate(1.02) brightness(0.64) contrast(1.08);
}

.quest-video-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) brightness(0.52) contrast(1.06);
  transform: scale(1.025);
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), filter 700ms ease;
}

.quest-video-placeholder > :not(.quest-video-img) {
  position: relative;
  z-index: 2;
}

.home-video-poster::before,
.home-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-video-poster::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 1, 2, 0.38) 0%, rgba(8, 1, 2, 0.08) 28%, rgba(8, 1, 2, 0.08) 72%, rgba(8, 1, 2, 0.54) 100%),
    radial-gradient(circle at 20% 34%, rgba(110, 14, 14, 0.44), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(212, 175, 55, 0.16), transparent 20%);
}

.home-video-poster::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 1, 2, 0.22) 0%, rgba(8, 1, 2, 0.02) 16%, rgba(8, 1, 2, 0.02) 84%, rgba(8, 1, 2, 0.22) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 30%);
}

.home-video-copy {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 52px);
  text-align: center;
}

.home-video-kicker,
.home-video-cta {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.home-video-kicker {
  color: var(--yellow-2);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.home-video-play {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 160, 0.3);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 48%, rgba(12, 3, 4, 0.62) 100%);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(212, 175, 55, 0.18);
}

.home-video-play i {
  color: var(--yellow-2);
  font-size: 2.9rem;
}

.home-video-name {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.94;
  color: var(--text-primary);
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.home-video-hint {
  max-width: 42ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.82);
}

.home-video-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 160, 0.26);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-primary);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(145deg, rgba(22, 7, 8, 0.94), rgba(11, 3, 4, 0.98));
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.experience-copy {
  padding: clamp(34px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-kicker {
  margin: 0 0 18px;
  color: var(--yellow-2);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
}

.experience-title {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 0.95;
}

.experience-desc {
  margin: 0 0 30px;
  max-width: 44ch;
  font-size: 1.04rem;
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.8);
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.experience-visual {
  position: relative;
  min-height: 420px;
}

.experience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 3, 4, 0.3) 0%, rgba(11, 3, 4, 0) 24%),
    radial-gradient(circle at 78% 16%, rgba(212, 175, 55, 0.16), transparent 24%);
}

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

.home-gallery-section::before {
  background:
    radial-gradient(circle at 86% 16%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.gallery-empty {
  display: none !important;
}

.home-gallery-arrow[hidden] {
  display: none !important;
}

.home-gallery-strip {
  display: flex;
  gap: clamp(14px, 1.45vw, 24px);
  align-items: center;
  will-change: transform;
  user-select: none;
  transform: translate3d(0, 0, 0);
}

.home-gallery-item {
  flex: 0 0 clamp(360px, 31vw, 560px);
  border-radius: clamp(24px, 2vw, 34px);
  overflow: hidden;
  min-height: clamp(340px, 30vw, 500px);
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(10, 3, 4, 0.64);
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-gallery-item.is-large {
  flex-basis: clamp(360px, 31vw, 560px);
  min-height: clamp(340px, 30vw, 500px);
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.home-gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) brightness(1.03);
}

.home-gallery-section {
  overflow: hidden;
}

.home-gallery-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(10px, 2.2vw, 34px);
}

.home-gallery-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.home-gallery-viewport.is-dragging {
  cursor: grabbing;
}

.home-gallery-track {
  padding: 8px 0 14px;
}

.home-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(14, 4, 5, 0.66);
  color: var(--text-primary);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(212, 175, 55, 0.12);
  transform: translateY(-50%);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
  backdrop-filter: blur(10px);
}

.home-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(240, 217, 160, 0.48);
  background: rgba(26, 8, 10, 0.82);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(212, 175, 55, 0.18);
}

.home-gallery-arrow--prev {
  left: clamp(12px, 2vw, 26px);
}

.home-gallery-arrow--next {
  right: clamp(12px, 2vw, 26px);
}

@media (max-width: 1180px) and (min-width: 769px) {
  .home-gallery-item,
  .home-gallery-item.is-large {
    flex-basis: clamp(340px, 43vw, 500px);
    min-height: clamp(320px, 42vw, 460px);
  }
}

@media (min-width: 901px) {
  .home-gallery-carousel {
    padding-inline: 0;
  }

  .home-gallery-viewport {
    padding: 48px clamp(10px, 1.7vw, 28px);
  }

  .home-gallery-track {
    align-items: center;
    padding: 14px 0 18px;
  }

  .home-gallery-item,
  .home-gallery-item.is-large {
    flex-basis: clamp(300px, 25vw, 460px);
    height: clamp(270px, 24vw, 420px);
    min-height: 0;
    transform: translateY(0);
  }

  .home-gallery-item:nth-child(8n + 1) {
    flex-basis: clamp(430px, 37vw, 680px);
    height: clamp(360px, 32vw, 540px);
    transform: translateY(-34px);
  }

  .home-gallery-item:nth-child(8n + 2) {
    flex-basis: clamp(280px, 21vw, 390px);
    height: clamp(245px, 20vw, 340px);
    transform: translateY(52px);
  }

  .home-gallery-item:nth-child(8n + 3) {
    flex-basis: clamp(360px, 29vw, 540px);
    height: clamp(300px, 26vw, 455px);
    transform: translateY(8px);
  }

  .home-gallery-item:nth-child(8n + 4) {
    flex-basis: clamp(250px, 19vw, 360px);
    height: clamp(220px, 18vw, 320px);
    transform: translateY(-46px);
  }

  .home-gallery-item:nth-child(8n + 5) {
    flex-basis: clamp(390px, 32vw, 590px);
    height: clamp(330px, 28vw, 490px);
    transform: translateY(38px);
  }

  .home-gallery-item:nth-child(8n + 6) {
    flex-basis: clamp(300px, 23vw, 430px);
    height: clamp(260px, 22vw, 380px);
    transform: translateY(-12px);
  }

  .home-gallery-item:nth-child(8n + 7) {
    flex-basis: clamp(460px, 39vw, 700px);
    height: clamp(350px, 30vw, 520px);
    transform: translateY(18px);
  }

  .home-gallery-item:nth-child(8n + 8) {
    flex-basis: clamp(260px, 20vw, 380px);
    height: clamp(235px, 19vw, 330px);
    transform: translateY(-28px);
  }
}

.home-faq-section::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(212, 175, 55, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.home-faq-layout .faq-list {
  margin: 0;
}

.home-faq-visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 3, 4, 0.08), rgba(9, 3, 4, 0.42)),
    radial-gradient(circle at 68% 18%, rgba(212, 175, 55, 0.12), transparent 24%);
}

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

.home-contact-section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.home-contact-section .contact-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-contact-section .contact-phone-block,
.home-contact-section .contact-details,
.home-contact-section .map-wrap {
  margin: 0;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(12, 4, 5, 0.92);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-contact-section .contact-phone-block {
  padding: 34px 30px;
}

.home-contact-section .contact-details {
  padding: 8px 28px;
}

.home-contact-section .contact-detail-item:last-child {
  border-bottom: none;
}

.home-contact-section .contact-map,
.home-contact-section .map-wrap,
.home-contact-section .map-wrap iframe {
  height: 100%;
}

.home-contact-section .map-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-contact-section .map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(58, 33, 16, 0.14), rgba(110, 77, 41, 0.24)),
    radial-gradient(circle at 24% 18%, rgba(243, 220, 172, 0.2), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(184, 143, 86, 0.16), transparent 28%);
  mix-blend-mode: screen;
}

.home-contact-section .map-wrap iframe {
  min-height: 420px;
  display: block;
  filter: sepia(0.62) saturate(0.72) hue-rotate(-12deg) brightness(0.92) contrast(0.94);
}

.final-cta-shell {
  position: relative;
  height: 350px;
  min-height: 0;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 30px 84px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.final-cta-media {
  position: relative;
  height: 350px;
  min-height: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02) brightness(0.88);
  display: none;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 3, 4, 0.22) 0%, rgba(9, 3, 4, 0.62) 100%),
    linear-gradient(90deg, rgba(9, 3, 4, 0.68) 0%, rgba(9, 3, 4, 0.28) 28%, rgba(9, 3, 4, 0.28) 72%, rgba(9, 3, 4, 0.68) 100%),
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.18), transparent 24%);
}

.final-cta-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  text-align: center;
}

.final-cta-title {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(2.55rem, 4.75vw, 4.95rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.final-cta-title em {
  display: inline;
}

.final-cta-sub {
  max-width: 42ch;
  margin: 0;
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  line-height: 1.4;
  color: rgba(246, 239, 230, 0.8);
}

.final-cta-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

.final-cta-actions .btn {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.88rem;
}

.site-footer--landing {
  padding: 0 0 46px;
  background:
    radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.06), transparent 22%),
    linear-gradient(180deg, #0d0304 0%, #090202 100%);
}

.landing-footer-shell {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(10, 3, 4, 0.92);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(180px, 0.84fr) minmax(220px, 0.96fr);
  gap: 24px;
  align-items: start;
}

.landing-footer-brand,
.landing-footer-col {
  min-width: 0;
}

.landing-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-footer-phone {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--yellow-2);
  text-decoration: none;
}

.landing-footer-hours,
.landing-footer-address,
.landing-footer-mail {
  margin: 0;
  color: rgba(246, 239, 230, 0.74);
  text-decoration: none;
}

.landing-footer-map {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.landing-footer-map iframe {
  display: block;
}

.landing-footer-partners {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.landing-footer-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.landing-partner-card {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: rgba(246, 239, 230, 0.86);
}

.landing-partner-img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.landing-partner-card span {
  font-size: 0.94rem;
}

.landing-footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(246, 239, 230, 0.62);
}

.quest-showcase-kicker {
  margin: -4px 0 18px;
  color: var(--quest-card-accent);
  font-family: var(--font-title);
  font-size: clamp(1.72rem, 2.25vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 1180px) {
  .hero-content--split,
  .hero-content--solo,
  .experience-card,
  .home-faq-layout,
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .process-grid::before {
    left: 6%;
    right: 6%;
  }

  .landing-footer-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .story-band-media {
    min-height: clamp(380px, 54vw, 560px);
  }

  .home-video-poster {
    min-height: 420px;
  }

  .final-cta-shell {
    height: 350px;
  }
}

@media (max-width: 900px) {
  .hero-stage-img,
  .final-cta-media {
    height: 350px;
  }

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

  .process-grid::before {
    display: none;
  }

  .home-gallery-strip {
    gap: 16px;
  }

  .home-gallery-item,
  .home-gallery-item.is-large {
    flex-basis: clamp(280px, 74vw, 520px);
    min-height: 280px;
  }

  .home-gallery-arrow {
    width: 50px;
    height: 50px;
  }

  .story-band-media {
    min-height: 360px;
  }

  .home-video-poster {
    min-height: 360px;
  }

  .story-band-content {
    padding: 28px 18px 42px;
  }

  .story-band-kicker {
    margin-bottom: 10px;
    font-size: clamp(1.15rem, 3.8vw, 1.7rem);
  }

  .story-band-title {
    font-size: clamp(2.7rem, 11vw, 4.8rem);
  }

  .home-contact-section .map-wrap iframe {
    min-height: 320px;
  }

  .final-cta-shell {
    height: 350px;
  }

  .final-cta-media {
    height: 350px;
  }

  .final-cta-content {
    position: absolute;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 34px 0 16px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 12px 16px;
    padding: 0 0 16px;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-logo-img {
    height: 48px;
    max-width: 148px;
  }

  .footer-tagline {
    max-width: none;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .footer-socials {
    grid-column: 1 / -1;
    gap: 8px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .footer-col {
    padding: 16px 12px 10px;
  }

  .footer-col + .footer-col {
    border-left: 1px solid rgba(240, 217, 160, 0.08);
    border-top: none;
  }

  .footer-brand + .footer-col {
    border-left: none;
    border-top: 1px solid rgba(240, 217, 160, 0.08);
  }

  .footer-col:nth-child(4) {
    border-left: none;
    border-top: 1px solid rgba(240, 217, 160, 0.08);
  }

  .footer-heading {
    margin-bottom: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .footer-links a {
    min-height: 34px;
    padding: 7px 0;
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .footer-contact-list li {
    grid-template-columns: 15px 1fr;
    gap: 8px;
    padding: 7px 0;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .footer-partners {
    padding-bottom: 12px;
  }

  .partners-label {
    margin-bottom: 10px;
  }

  .partners-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-logo-item {
    min-height: 82px;
    border-radius: 18px;
  }

  .footer-bottom {
    padding-bottom: 22px;
  }

  .footer-bottom .container {
    align-items: center;
    gap: 6px;
    padding-top: 14px;
  }

  .footer-copy,
  .footer-made {
    font-size: 0.74rem;
  }

  .landing-footer-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .landing-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .landing-footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 12px 16px;
  }

  .landing-footer-brand .footer-socials {
    grid-column: 1 / -1;
  }

  .landing-footer-col {
    min-width: 0;
  }

  .landing-footer-partners {
    margin-top: 18px;
    padding-top: 18px;
  }

  .landing-footer-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .landing-partner-img {
    border-radius: 16px;
  }

  .landing-footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    gap: 6px;
  }

  .hero-content--split,
  .hero-content--solo {
    gap: 24px;
  }

  .hero-stage-note {
    right: 20px;
    bottom: 18px;
    max-width: 10ch;
    font-size: 1.24rem;
  }

  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .home-video-copy {
    padding: 30px 24px;
    gap: 16px;
  }

  .home-video-play {
    width: 80px;
    height: 80px;
  }

  .home-video-play i {
    font-size: 2.45rem;
  }

  .home-video-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .home-gallery-carousel {
    padding-inline: 14px;
  }

  .home-gallery-strip {
    gap: 14px;
  }

  .home-gallery-item,
  .home-gallery-item.is-large {
    flex-basis: min(86vw, 420px);
    min-height: clamp(300px, 72vw, 390px);
    border-radius: 24px;
  }

  .home-gallery-arrow {
    width: 48px;
    height: 48px;
  }

  .home-contact-section .contact-phone-block,
  .home-contact-section .contact-details {
    padding-inline: 22px;
  }

  .experience-copy,
  .landing-footer-shell {
    padding: 24px;
  }

  .experience-actions,
  .landing-footer-bottom {
    flex-direction: column;
  }

  .experience-actions .btn,
  .final-cta-actions .btn {
    width: auto;
  }

  .landing-footer-phone {
    font-size: 2.2rem;
  }
}

@media (max-width: 560px) {
  .home-slab-header .section-title,
  .final-cta-title {
    font-size: clamp(2.65rem, 12.5vw, 4.1rem);
    line-height: 0.94;
  }

  .story-band-media {
    min-height: 320px;
  }

  .home-video-poster {
    min-height: 300px;
    border-radius: 26px;
  }

  .home-video-copy {
    padding: 24px 18px;
    gap: 14px;
  }

  .home-video-kicker,
  .home-video-cta {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .home-video-play {
    width: 68px;
    height: 68px;
  }

  .home-video-play i {
    font-size: 2rem;
  }

  .home-video-name {
    font-size: clamp(1.6rem, 8.8vw, 2.25rem);
    line-height: 0.96;
  }

  .home-video-hint {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .story-band-content {
    padding: 24px 12px 32px;
  }

  .story-band-kicker {
    font-size: clamp(0.96rem, 5vw, 1.22rem);
  }

  .story-band-title {
    font-size: clamp(2rem, 13vw, 3.15rem);
    line-height: 0.92;
  }

  .final-cta-content {
    gap: 8px;
    padding: 14px 16px;
  }

  .final-cta-sub {
    display: none;
  }

  .final-cta-actions {
    width: 100%;
    gap: 8px;
  }

  .final-cta-actions .btn {
    width: auto;
    flex: 1 1 0;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .why-card,
  .home-gallery-item,
  .home-faq-visual,
  .landing-footer-shell {
    border-radius: 24px;
  }

  .home-gallery-carousel {
    padding-inline: 14px;
  }

  .home-contact-section .contact-phone-block,
  .home-contact-section .contact-details,
  .home-contact-section .map-wrap {
    border-radius: 24px;
  }

  .hero-stage-frame,
  .experience-card,
  .final-cta-shell {
    border-radius: 28px;
  }
}

/* Final mobile typography scale: keeps headings premium and readable on phones. */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: clamp(34px, 9vw, 52px);
  }

  .section-title,
  .home-slab-header .section-title,
  .quest-story-title,
  .quest-gallery-section .section-title,
  .quest-video-section .section-title,
  .quest-others-section .section-title,
  .final-cta-title {
    font-size: clamp(2.85rem, 11.8vw, 4.55rem);
    line-height: 0.94;
    letter-spacing: 0.025em;
  }

  .hero-title,
  .quest-hero-title {
    font-size: clamp(3.7rem, 17vw, 6rem);
    line-height: 0.88;
    letter-spacing: 0.018em;
  }

  .quests-header .section-title {
    font-size: clamp(3rem, 12.5vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: 0.02em;
  }

  .quest-showcase-title {
    font-size: clamp(2.65rem, 11vw, 4.15rem);
    line-height: 0.94;
    letter-spacing: 0.02em;
  }

  .quest-showcase-kicker {
    font-size: clamp(1.45rem, 6.4vw, 2.1rem);
  }

  .qoc-body h3,
  .quest-video-name {
    font-size: clamp(2rem, 8.5vw, 3.15rem);
    line-height: 0.96;
  }
}

@media (max-width: 420px) {
  .section-title,
  .home-slab-header .section-title,
  .quest-story-title,
  .quest-gallery-section .section-title,
  .quest-video-section .section-title,
  .quest-others-section .section-title,
  .final-cta-title {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
  }

  .hero-title,
  .quest-hero-title {
    font-size: clamp(3.25rem, 18vw, 5.15rem);
  }

  .quests-header .section-title,
  .quest-showcase-title {
    font-size: clamp(2.55rem, 12.8vw, 3.85rem);
  }
}

/* Final mobile header safety: keep the app menu visible above every decorative layer. */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 16px) !important;
    right: 16px !important;
    left: auto !important;
    z-index: 10050 !important;
    width: 44px !important;
    height: 44px !important;
    pointer-events: auto !important;
    background: rgba(24, 7, 8, 0.82) !important;
    border: 1px solid rgba(240, 217, 160, 0.26) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26), 0 0 18px rgba(212, 175, 55, 0.12) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #f0d28c, #c8a45d) !important;
  }
}

/* Performance pass: keep the cinematic look, but avoid permanent heavy GPU layers. */
.home-gallery-strip,
.section-bg-parallax,
.decor-object,
.quest-showcase-img,
.hero-bg.has-slideshow .hero-bg-media {
  will-change: auto;
}

.home-gallery-viewport.is-dragging .home-gallery-strip,
.lightbox.is-dragging .lightbox-img-wrap,
.lightbox.is-zoomed .lightbox-img-wrap,
.hero-bg.has-slideshow .hero-bg-media.is-active {
  will-change: transform;
}

.hero-bg.has-slideshow .hero-bg-media.is-active {
  will-change: opacity;
}

.quest-showcase,
.home-gallery-carousel,
.pricing-grid,
.why-grid,
.process-steps,
.quest-gallery-grid,
.partner-logo-grid,
.footer-grid {
  contain: layout paint;
}

.home-gallery-item,
.pricing-card,
.why-card,
.process-step,
.quest-showcase,
.quest-video-card,
.quest-other-card,
.quest-book-inner,
.contact-card,
.footer-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

.home-gallery-item img,
.quest-showcase-img,
.gallery-item img,
.quest-video-img,
.partner-logo-img {
  backface-visibility: hidden;
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  html {
    scroll-behavior: auto;
  }

  #particles-bg {
    opacity: 0.34;
  }

  #particles-bg::before {
    filter: blur(16px);
    opacity: 0.48;
  }

  .particle {
    box-shadow: 0 0 calc(var(--particle-glow, 14px) * 0.72) var(--particle-color, rgba(212, 175, 55, 0.42));
    filter: blur(calc(var(--particle-blur, 0.35px) * 0.45));
  }

  .site-header,
  .btn,
  .btn-quest,
  .lang-switcher,
  .social-icon,
  .header-cta,
  .sound-toggle,
  .mobile-menu-toggle,
  .mobile-menu-dialog,
  .mobile-menu-modal,
  .hero-stats,
  .pricing-card,
  .why-card,
  .process-step,
  .quest-showcase,
  .quest-book-inner,
  .quest-video-card,
  .quest-other-card,
  .contact-card,
  .calc-widget,
  .footer-grid,
  .home-gallery-arrow,
  .lightbox-zoom-btn,
  .partner-logo-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-stage-glow,
  .hero-section::after,
  .decor-object,
  .floating-object,
  .hero-float-inner,
  .partner-logo-img {
    filter: none !important;
  }

  .decor-object,
  .floating-object,
  .hero-float-icon,
  .float-inner,
  .hero-section::after {
    animation: none !important;
  }

  .home-bg-scene,
  .home-bg-scene--quests,
  .home-bg-scene--booking,
  .quest-bg-scene,
  .story-band-media,
  .final-cta-shell {
    background-attachment: scroll !important;
  }

  .home-gallery-item,
  .pricing-card,
  .why-card,
  .process-step,
  .quest-showcase,
  .quest-book-inner,
  .quest-video-card,
  .quest-other-card,
  .contact-card,
  .footer-grid {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22) !important;
  }

  .home-gallery-item img,
  .quest-showcase-img,
  .gallery-item img,
  .quest-video-img,
  .story-band-media,
  .final-cta-media {
    filter: none !important;
  }

  .home-gallery-item:hover img,
  .quest-showcase:hover .quest-showcase-img,
  .gallery-item:hover img,
  .quest-video-card:hover .quest-video-img {
    transform: none !important;
  }

  .home-gallery-strip,
  .lightbox-img-wrap {
    will-change: auto;
  }

  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 16px) !important;
    right: 16px !important;
    left: auto !important;
    z-index: 10050 !important;
    width: 44px !important;
    height: 44px !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  .home-gallery-item,
  .pricing-card,
  .why-card,
  .process-step,
  .quest-showcase,
  .quest-video-card,
  .quest-book-inner,
  .quest-other-card,
  .contact-card,
  .footer-grid {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .hero-bg.has-slideshow .hero-bg-media {
    transition-duration: 700ms;
  }

  .home-gallery-item img,
  .quest-showcase-img,
  .gallery-item img {
    transition-duration: 420ms;
  }
}

/* Desktop scroll performance: AOS/reveal should fade in, not blur hundreds of layers. */
[data-aos] {
  backface-visibility: hidden;
  transition-property: opacity, transform !important;
  transition-duration: 560ms !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: auto !important;
}

[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="zoom-in"],
[data-aos="soft-title"] {
  filter: none !important;
}

[data-aos="fade-up"],
[data-aos="zoom-in"],
[data-aos="soft-title"] {
  transform: translate3d(0, 16px, 0) !important;
}

[data-aos="fade-down"] {
  transform: translate3d(0, -14px, 0) !important;
}

[data-aos="fade-left"],
[data-aos="fade-right"] {
  transform: translate3d(0, 0, 0) !important;
}

[data-aos].aos-animate {
  transform: translate3d(0, 0, 0) !important;
  filter: none !important;
}

.quest-card.reveal-pending,
.quest-showcase.reveal-pending {
  transform: translate3d(0, 16px, 0);
}

.quest-card.reveal-pending.is-visible,
.quest-showcase.reveal-pending.is-visible {
  transform: translate3d(0, 0, 0);
}

/* Scroll reveal animations are intentionally disabled for smoother desktop scrolling. */
[data-aos],
.quest-card.reveal-pending,
.quest-showcase.reveal-pending {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  transition-duration: 0ms !important;
  transition-delay: 0ms !important;
  animation: none !important;
  will-change: auto !important;
}

/* Mobile layout polish: full-width app frame and safe text wrapping. */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }

  .site-header {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .site-header .header-inner.container {
    width: 100% !important;
    max-width: none !important;
    padding-left: max(14px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(14px, env(safe-area-inset-right, 0px)) !important;
  }

  .mobile-menu-toggle {
    right: max(14px, env(safe-area-inset-right, 0px)) !important;
    left: auto !important;
    transform: none !important;
    box-sizing: border-box;
  }

  .hero-section {
    width: 100vw;
    max-width: none;
    min-height: var(--app-height, 100dvh) !important;
    height: var(--app-height, 100dvh);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: calc(env(safe-area-inset-top, 0px) + 98px);
    padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    align-items: stretch;
  }

  .hero-content.container,
  .hero-content--solo .hero-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hero-content.container {
    padding-left: clamp(14px, 4.2vw, 20px);
    padding-right: clamp(14px, 4.2vw, 20px);
    padding-top: 0;
    min-height: 0;
    height: 100%;
    align-items: stretch;
  }

  .container {
    width: 100%;
  }

  .hero-content--solo .hero-copy,
  .hero-copy {
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    min-height: 0;
    justify-content: space-between;
  }

  .hero-badge,
  .hero-title,
  .hero-sub {
    align-self: flex-start;
  }

  .hero-title .title-line.accent {
    white-space: nowrap !important;
  }

  .hero-actions {
    align-self: stretch;
    width: calc(100vw - clamp(28px, 8vw, 40px)) !important;
    max-width: none !important;
    min-width: 0;
  }

  .hero-stats {
    align-self: stretch;
    width: calc(100vw - clamp(28px, 8vw, 40px)) !important;
    max-width: none !important;
    min-width: 0;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2.6vw, 12px);
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 9px clamp(8px, 2.6vw, 12px);
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-actions .btn i {
    flex: 0 0 auto;
    margin-right: 5px;
  }

  .hero-stats {
    padding: clamp(12px, 3.4vw, 16px);
    gap: clamp(9px, 2.6vw, 12px);
  }

  .stat-item {
    min-height: clamp(86px, 22vw, 100px);
  }

  .section-title,
  .home-slab-header .section-title,
  .quests-header .section-title,
  .quest-showcase-title,
  .final-cta-title {
    max-width: 100%;
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-desc,
  .quests-header .section-desc,
  .hero-sub,
  .quest-showcase-desc {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .quests-header .section-desc {
    max-width: min(100%, 34ch);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .hero-actions .btn {
    font-size: clamp(0.62rem, 3vw, 0.74rem);
    letter-spacing: 0.01em;
  }

  .hero-actions .btn i {
    margin-right: 4px;
  }
}

/* Rebuilt home gallery: stable horizontal carousel with quest-page swipe/lightbox behavior. */
.home-gallery-section {
  overflow: hidden;
}

.home-gallery-carousel {
  --home-gallery-side: clamp(18px, 4vw, 72px);
  --home-gallery-gap: clamp(18px, 1.8vw, 28px);
  --home-gallery-card-w: clamp(360px, calc((100vw - (var(--home-gallery-side) * 2) - (var(--home-gallery-gap) * 3)) / 3.5), 560px);
  --home-gallery-card-h: calc(var(--home-gallery-card-w) * 0.75);
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-inline: 0 !important;
}

.home-gallery-viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  cursor: grab;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scroll-snap-type: none !important;
  scroll-padding-inline: var(--home-gallery-side);
  padding: clamp(28px, 4vw, 50px) var(--home-gallery-side) clamp(34px, 4vw, 56px) !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.home-gallery-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none !important;
}

.home-gallery-strip,
.home-gallery-track {
  display: flex !important;
  width: max-content;
  min-width: 100%;
  gap: var(--home-gallery-gap) !important;
  align-items: stretch !important;
  padding: 0 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
  user-select: none;
}

.home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item,
.home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item.is-large,
.home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item:nth-child(n) {
  flex: 0 0 var(--home-gallery-card-w) !important;
  flex-basis: var(--home-gallery-card-w) !important;
  width: var(--home-gallery-card-w) !important;
  min-width: var(--home-gallery-card-w) !important;
  max-width: var(--home-gallery-card-w) !important;
  height: var(--home-gallery-card-h) !important;
  min-height: 0 !important;
  max-height: var(--home-gallery-card-h) !important;
  aspect-ratio: 4 / 3 !important;
  transform: none !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
  border-radius: clamp(22px, 2vw, 32px);
  contain: layout paint;
  content-visibility: visible;
}

.home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

@media (min-width: 1440px) {
  .home-gallery-carousel {
    --home-gallery-card-w: clamp(360px, calc((100vw - (var(--home-gallery-side) * 2) - (var(--home-gallery-gap) * 3)) / 3.5), 560px);
  }
}

@media (max-width: 900px) {
  .home-gallery-carousel {
    --home-gallery-card-w: min(72vw, 320px);
    --home-gallery-card-h: calc(var(--home-gallery-card-w) * 1.6667);
  }

  .home-gallery-viewport {
    scroll-padding-inline: 18px;
    padding: 24px 18px 32px !important;
  }

  .home-gallery-strip,
  .home-gallery-track {
    gap: 14px !important;
  }

  .home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item,
  .home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item.is-large,
  .home-gallery-carousel .home-gallery-track > .gallery-item.home-gallery-item:nth-child(n) {
    aspect-ratio: 3 / 5 !important;
    border-radius: 24px;
  }

  .home-gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .home-gallery-arrow--prev {
    left: 10px;
  }

  .home-gallery-arrow--next {
    right: 10px;
  }
}

@media (max-width: 420px) {
  .home-gallery-carousel {
    --home-gallery-card-w: min(76vw, 300px);
    --home-gallery-card-h: calc(var(--home-gallery-card-w) * 1.6667);
  }
}

/* Home pricing mobile: calculator should use the same full-width feel as quest pages. */
@media (max-width: 768px) {
  .pricing-section .pricing-grid {
    width: 100%;
    align-items: stretch;
  }

  .pricing-section .pricing-card,
  .pricing-section .calc-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
  }

  .pricing-section .calc-card {
    padding: clamp(22px, 6vw, 30px) clamp(16px, 5vw, 24px);
  }

  .pricing-section .calc-card .pricing-label,
  .pricing-section .calc-card .calc-widget,
  .pricing-section .calc-card .btn {
    width: 100%;
    max-width: none;
  }

  .pricing-section .calc-card .pricing-icon {
    width: 56px;
    height: 56px;
    max-width: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
  }

  .pricing-section .calc-widget {
    padding: clamp(18px, 5vw, 24px);
  }

  .pricing-section .calc-card .btn {
    justify-content: center;
  }
}

.fa-svg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-icon .social-svg-icon,
.mobile-nav-socials .social-svg-icon,
.footer-socials .social-svg-icon {
  width: 1em;
  height: 1em;
}
