/* =========================================================
   RESET + GLOBALS
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #A31621;
  --accent-red: #C9184A;
  --gold: #D4AF37;
  --black: #0a0a0a;
  --dark-gray: #111111;
  --mid-gray: #1a1a1a;
  --light-gray: #252525;
  --text-gray: #d4d4d4;
  --text-muted: #999999;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--text-gray);
  line-height: 1.8;
}

.hidden {
  display: none !important;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

/* Prevent media overflow */
img, video, svg, canvas {
  max-width: 100%;
  height: auto;
}

/* Text-Akzente */
.gold-text { color: var(--gold); font-weight: 500; }
.red-text  { color: var(--primary-red); font-weight: 500; }
.highlight { color: var(--gold); font-style: italic; }

/* Links in Paragraphs */
p a {
  color: var(--gold);
  text-decoration: none;
  font-style: italic;
  border-bottom: none;
  position: relative;
  transition: all 0.3s ease;
}
p a:hover {
  color: white;
  text-shadow:
    0 0 10px rgba(212,175,55,0.8),
    0 0 20px rgba(212,175,55,0.6),
    0 0 30px rgba(212,175,55,0.4);
}

/* =========================================================
   LOGO
   ========================================================= */
.logo {
  position: absolute;
  top: 20px;
  left: 50px;
  z-index: 1001;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
}
.logo:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}
.logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.main-nav {
  position: absolute;
  top: 40px;
  right: 50px;
  z-index: 1000;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav ul li { margin: 0; }

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover { color: var(--gold); }
.main-nav ul li a:hover::after { width: 100%; }

/* Burger Menu */
.burger-menu {
  display: none !important;
  position: absolute;
  top: 30px;
  right: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  width: 30px;
  height: 24px;
}
.burger-menu span {
  width: 30px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}
.burger-menu.active { gap: 0; }
.burger-menu.active span { position: absolute; top: 11px; }
.burger-menu.active span:nth-child(1) { transform: rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg); }

.menu-close, .close-btn { display: none; }

/* =========================================================
   AGE VERIFICATION MODAL
   ========================================================= */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.98);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.age-modal-content {
  background: var(--black);
  padding: 80px 70px;
  border: 1px solid var(--gold);
  text-align: center;
  max-width: 600px;
  box-shadow:
    0 0 100px rgba(212,175,55,0.2),
    0 30px 80px rgba(0,0,0,0.8);
  position: relative;
}

.age-modal-content::before,
.age-modal-content::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.age-modal-content::before { top: 30px; }
.age-modal-content::after  { bottom: 30px; }

.age-modal-content h2 {
  color: white;
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.age-modal-content p {
  font-size: 1em;
  margin-bottom: 50px;
  line-height: 2;
  color: var(--text-gray);
  font-weight: 300;
}
.age-modal-content p strong { color: var(--gold); font-weight: 400; }

.age-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 18px 50px;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  margin: 0 10px;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.age-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.age-btn:hover::before { width: 100%; height: 100%; }
.age-btn:hover {
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.age-btn.exit {
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}
.age-btn.exit::before { background: var(--light-gray); }
.age-btn.exit:hover {
  color: white;
  border-color: white;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 3s ease-out;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  max-width: 1200px;
  padding: 0;
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero.scrolled .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Titel (primary) */
.hero-content h1,
.hero h1 { /* Alias, falls irgendwo .hero h1 genutzt wird */
  font-size: 6.5em;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 20px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  text-shadow:
    0 0 120px rgba(212,175,55,1),
    0 0 80px rgba(212,175,55,0.9),
    0 0 40px rgba(0,0,0,1),
    4px 4px 20px rgba(0,0,0,1),
    8px 8px 40px rgba(0,0,0,1);
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.8));
}

/* Tagline (primary) */
.hero-content .tagline,
.hero .subtitle { /* Alias, falls irgendwo .hero .subtitle genutzt wird */
  font-size: 1.9em;
  color: white;
  font-style: italic;
  letter-spacing: 9px;
  margin: 0;
  text-shadow:
    0 0 50px rgba(0,0,0,1),
    0 0 30px rgba(0,0,0,1),
    4px 4px 20px rgba(0,0,0,1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 2em;
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Content scrollt über Hero */
section,
.about {
  position: relative;
  z-index: 100;
  background: var(--black);
}

/* =========================================================
   SECTION BASE STYLING
   ========================================================= */
section {
  padding: 55px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

section::before,
section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
section::before { top: 0; }
section::after  { bottom: 0; }

h2 {
  font-size: 3.5em;
  color: white;
  margin-bottom: 35px;
  font-weight: 300;
  letter-spacing: 6px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold);
}

h2::before {
  content: attr(data-shadow);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-red);
  opacity: 0.15;
  z-index: -1;
  transform: translate(3px, 3px);
  pointer-events: none;
  white-space: nowrap;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1em;
  margin-top: 5px;
  margin-bottom: 50px;
  font-style: italic;
  letter-spacing: 1px;
}

p {
  font-size: 1.05em;
  margin-bottom: 25px;
  max-width: 900px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-gray);
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--mid-gray) 100%);
}

.about .text-left-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0;
}

.about .text-left-wrapper p,
.about .text-left-wrapper ul {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =========================================================
   UPDATES / TERMINE
   ========================================================= */
.updates {
  background: linear-gradient(180deg, var(--mid-gray) 0%, var(--black) 100%);
  text-align: center;
  padding: 80px 20px;
}

.updates h2 { margin-bottom: 20px; }
.updates .section-subtitle { margin-bottom: 50px; }

.updates-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  position: relative;
}

.updates-info {
  text-align: center;
  margin-bottom: 30px;
}

.updates-info p {
  font-size: 1.05em;
  letter-spacing: 1px;
  line-height: 1.8;
}

.updates-info .muted {
  color: var(--text-muted);
  font-size: 0.85em;
}

.updates-info .muted a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.updates-info .muted a:hover { border-bottom-color: var(--gold); }

.updates-poster { margin-top: 30px; }

.updates-poster img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.updates-poster img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.3);
}

/* =========================================================
   SESSIONS
   ========================================================= */
.sessions { background: var(--black); }

.session-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
  align-items: stretch;
}

.session-item {
  background: var(--dark-gray);
  padding: 60px 50px;
  border: 1px solid var(--gold);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  height: 100%;
}

.session-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--primary-red));
  transition: height 0.5s ease;
}

.session-item:hover::before { height: 100%; }
.session-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.session-item h3 {
  color: var(--gold);
  font-size: 1.8em;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1.2;
  height: 3.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.session-item p {
  color: var(--text-gray);
  font-size: 0.95em;
  margin-bottom: 0;
}
.session-item p:first-of-type { flex-grow: 1; margin-bottom: 20px; }
.session-item p:last-of-type  { margin-top: auto; }

.session-item strong { color: var(--primary-red); font-weight: 500; }

/* =========================================================
   PREFERENCES
   ========================================================= */
.preferences {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.pref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.pref-column {
  background: var(--mid-gray);
  padding: 50px;
  border: 1px solid var(--light-gray);
  position: relative;
  transition: all 0.4s ease;
}

.pref-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: all 0.4s ease;
}

.pref-column.vorlieben::before { background: linear-gradient(90deg, var(--gold), var(--accent-red)); }
.pref-column.tabus::before     { background: linear-gradient(90deg, var(--primary-red), #8B0000); }

.pref-column:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.pref-column h3 {
  color: white;
  font-size: 2em;
  margin-bottom: 35px;
  letter-spacing: 4px;
  font-weight: 300;
  text-transform: uppercase;
}

.pref-column.vorlieben h3 { color: var(--gold); }
.pref-column.tabus h3     { color: var(--accent-red); }

.pref-column ul { list-style: none; }

.pref-column ul li {
  padding: 14px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1em;
  color: var(--text-gray);
  font-weight: 300;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  min-height: 40px;
}
.pref-column ul li:last-child { border-bottom: none; }
.pref-column ul li:hover { padding-left: 40px; color: white; }

.pref-column ul li::before {
  position: absolute;
  left: 0;
  top: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.vorlieben ul li::before {
  content: '✓';
  color: var(--gold);
  font-size: 1.4em;
  font-weight: bold;
}

.tabus ul li::before {
  content: '✗';
  color: var(--accent-red);
  font-size: 1.4em;
  font-weight: bold;
}

/* =========================================================
   GALLERY + LIGHTBOX
   ========================================================= */
.gallery { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mid-gray), var(--light-gray));
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary-red) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: overlay;
}

.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(212,175,55,0.2);
}
.gallery-item:hover::after { opacity: 0.3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

/* Load More */
.load-more-container { text-align: center; margin-top: 80px; }

.load-more-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 18px 50px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
.load-more-btn:hover::before { width: 100%; height: 100%; }
.load-more-btn:hover {
  color: var(--black);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  box-shadow: 0 0 100px rgba(212,175,55,0.3);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 50px;
  color: var(--gold);
  font-size: 50px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  font-weight: 300;
  user-select: none;
}
.lightbox-close:hover {
  color: white;
  transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 60px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  padding: 20px;
  user-select: none;
  font-weight: 300;
}
.lightbox-prev:hover, .lightbox-next:hover {
  color: white;
  transform: translateY(-50%) scale(1.2);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* =========================================================
   VIDEOS
   ========================================================= */
.videos {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--mid-gray) 100%);
  padding: 60px 40px;
}

.video-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto 0;
  max-width: 600px;
}

.video-tab {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 40px;
  font-size: .95em;
  cursor: pointer;
  transition: all .3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.video-tab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease;
  z-index: -1;
}
.video-tab:hover::before,
.video-tab.active::before { width: 100%; height: 100%; }
.video-tab:hover,
.video-tab.active { color: var(--black); border-color: var(--gold); }

.video-content {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
}

.video-item { display: none; }
.video-item.active { display: block; }

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--gold);
  overflow: hidden;
  background: #000;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.video-container:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212,175,55,.3);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(.85);
  transition: filter .5s ease;
}
.video-container:hover .hero-video { filter: brightness(1); }

.hero-video:fullscreen,
.hero-video:-webkit-full-screen {
  object-fit: contain !important;
  object-position: center !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #000 !important;
  filter: none !important;
}

.video-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 30px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity .3s ease;
}
.video-container.show-controls .video-overlay,
.video-container:hover .video-overlay { opacity: 1; }

.video-caption {
  color: var(--gold);
  font-size: 1.2em;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  z-index: 10;
  cursor: pointer;
  transition: opacity .3s ease;
  opacity: 1;
}
.video-play-overlay.hidden { opacity: 0; pointer-events: none; }

.video-play-btn {
  background: rgba(0,0,0,.8);
  border: 3px solid var(--gold);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease, border-color .4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.video-play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 10px 50px rgba(212,175,55,.6), 0 0 60px rgba(212,175,55,.4);
}
.video-play-btn::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 20px 0 20px 35px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 8px;
  transition: border-color .4s ease;
}
.video-play-btn:hover::before {
  border-color: transparent transparent transparent var(--black);
}

#video1 .video-play-overlay { display: none !important; }
#video2 .video-play-overlay { display: flex; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--black);
  text-align: center;
  padding: 80px 20px;
}

.contact h2 { margin-bottom: 20px; }

.contact .section-subtitle {
  margin-top: 10px;
  margin-bottom: 30px;
}

.contact > p {
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 15px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85em;
  transition: all 0.4s ease;
  letter-spacing: 1.2px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  justify-content: center;
}

.contact-link svg {
  width: 36px;
  height: 36px;
  transition: all 0.4s ease;
}

.contact-link span {
  font-size: 0.9em;
  transition: all 0.4s ease;
}

.contact-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
  border-radius: 2px;
}

.contact-link:hover::before { width: 100%; height: 100%; }

.contact-link:hover {
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
  transform: translateY(-5px);
}
.contact-link:hover svg { transform: scale(1.15); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--dark-gray);
  text-align: center;
  padding: 40px 30px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

/* =========================================================
   LEGAL
   ========================================================= */
.legal-container {
  max-width: 800px;
  margin: 80px auto 60px;
  padding: 0 30px 60px;
}
.legal-container::before,
.legal-container::after { display: none !important; }

.legal-container h1 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: left;
}

.legal-container h2 {
  font-size: 1.2em;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #f5f5f5;
  letter-spacing: 0.04em;
}
.legal-container h2::before,
.legal-container h2::after { display: none !important; }

.legal-container p {
  margin-bottom: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95em;
  font-weight: 300;
}

.legal-container a {
  color: var(--gold);
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease;
}
.legal-container a:hover { color: #fff; }

.back-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.back-link:hover { color: var(--gold); border-color: var(--gold); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 24px;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: linear-gradient(180deg, var(--mid-gray) 0%, var(--black) 100%);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 0;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3em;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-question::after {
  content: '–';
  transform: translateY(-50%);
  color: var(--accent-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 0.95em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 2px 81px;
  overflow: hidden;
}

.testimonial-slider {
  width: calc(100% + 4px);
  margin: -2px -2px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  padding: 0 2px;
}

.testimonial-card {
  width: calc((100% - 60px) / 3);
  flex-shrink: 0;
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  padding: 40px 35px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--accent-red));
  transition: height 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}
.testimonial-card:hover::before { height: 100%; }

.testimonial-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.testimonial-category {
  color: var(--gold);
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 25px;
}
.testimonial-content p {
  color: var(--text-gray);
  font-size: 0.95em;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.author-name {
  color: var(--accent-red);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  font-style: italic;
}
.author-date {
  color: var(--text-muted);
  font-size: 0.85em;
  font-weight: 300;
}

.testimonial-prev, .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,175,55,0.1);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev { left: 20px; }
.testimonial-next { right: 20px; }

.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-dots { display: none; }

/* =========================================================
   RESPONSIVE (BUNDLED)
   ========================================================= */

/* <= 1400 */
@media (max-width: 1400px) {
  .hero-content { padding: 60px 70px; }

  .hero-content h1,
  .hero h1 {
    font-size: 5em;
    letter-spacing: 10px;
  }

  .hero-content .tagline,
  .hero .subtitle {
    font-size: 1.3em;
    letter-spacing: 5px;
  }
}

/* <= 1024 */
@media (max-width: 1024px) {
  /* Nav spacing */
  .main-nav ul { gap: 25px; }
  .main-nav ul li a { font-size: 0.85em; }

  /* Hero */
  .hero-content h1,
  .hero h1 {
    font-size: 5.5em;
    letter-spacing: 16px;
  }
  .hero-content .tagline,
  .hero .subtitle {
    font-size: 1.6em;
    letter-spacing: 7px;
  }

  /* Section spacing */
  section { padding: 100px 50px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Videos */
  .videos { padding: 100px 30px; }
  .video-content { margin: 50px auto 0; }
  .video-caption { font-size: 1.1em; letter-spacing: 2px; }

  /* Testimonials */
  .testimonials { padding: 100px 30px; }
  .testimonial-slider-container { padding: 2px 70px; }
  .testimonial-card {
    width: calc((100% - 25px) / 2);
    padding: 35px 30px;
    min-height: 300px;
  }
  .testimonial-track { gap: 25px; }
  .testimonial-prev, .testimonial-next {
    width: 45px;
    height: 45px;
    font-size: 1.3em;
  }
  .testimonial-header {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  .testimonial-category { font-size: 0.8em; }

  /* Mobile/Tablet Nav (Offcanvas) */
  .logo {
    top: 10px;
    left: 10px;
    width: 55px;
    height: 55px;
  }
  .burger-menu {
    display: flex !important;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1003;
  }
  .main-nav {
    top: 30px;
    right: 20px;
  }

  .main-nav ul {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(100%);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 100px 40px;
    transition: transform 0.4s ease;
    border-left: 1px solid var(--gold);
  }
  .main-nav ul.active { transform: translateX(0); }

  .main-nav ul li {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
  }
  .main-nav ul li:last-child { border-bottom: none; }
  .main-nav ul li a {
    font-size: 1em;
    text-shadow: none;
  }

  /* General layout */
  .hero-content { padding: 40px 30px; margin: 0 20px; }
  section { padding: 60px 25px; }

  h2 { font-size: 2em; letter-spacing: 3px; }
  .section-subtitle { font-size: 0.9em; }
  p { font-size: 0.95em; }

  .pref-grid { grid-template-columns: 1fr; gap: 30px; }
  .pref-column { padding: 35px 25px; }
  .pref-column h3 { font-size: 1.6em; letter-spacing: 2px; }

  .age-modal-content { padding: 60px 30px; margin: 20px; }
  .age-modal-content h2 { font-size: 2em; letter-spacing: 3px; }
  .age-modal-content p { font-size: 0.95em; }
  .age-btn { padding: 16px 35px; font-size: 0.85em; margin: 5px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  .session-list { grid-template-columns: 1fr; gap: 25px; }
  .session-item { padding: 35px 25px; }
  .session-item h3 { font-size: 1.5em; }

  .lightbox-prev, .lightbox-next { font-size: 40px; padding: 10px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 20px; right: 20px; font-size: 40px; }
  .lightbox img { max-width: 90%; max-height: 70%; }

  footer { padding: 40px 25px; }
  .footer-links { gap: 1.5rem; }
  .footer-links a { font-size: 0.65rem; }

  .legal-container { margin: 60px auto 40px; padding: 0 20px 40px; }
  .legal-container h1 { font-size: 1.6em; }
  .legal-container h2 { font-size: 1.1em; }

  .back-link { width: 100%; text-align: center; }
  .back-to-top { display: none; }
}

/* <= 915 (FAQ mobile) */
@media (max-width: 915px) {
  .faq-container { margin-top: 40px; }
  .faq-question {
    font-size: 1.05em;
    letter-spacing: 1px;
    padding: 14px 0;
    padding-right: 30px;
  }
  .faq-question::after { font-size: 1.1em; }
  .faq-answer p { font-size: 0.9em; }
}

/* <= 768 */
@media (max-width: 768px) {
  /* Hero */
  .hero-content h1,
  .hero h1 {
    font-size: 3.5em;
    letter-spacing: 10px;
    margin-bottom: 25px;
  }
  .hero-content .tagline,
  .hero .subtitle {
    font-size: 1.4em;
    letter-spacing: 6px;
  }

  /* About list */
  .about-list { text-align: left; }
  .pref-column ul li { text-align: left; padding-left: 35px; }

  /* Updates */
  .updates-container { padding: 30px 20px; }
  .updates-info p { font-size: 0.95em; }

  /* Videos */
  .videos { padding: 80px 20px; }
  .video-tabs { gap: 15px; }
  .video-tab { padding: 12px 30px; font-size: .85em; }
  .video-content { margin: 30px auto 0; }
  .video-overlay { padding: 20px; }
  .video-caption { font-size: 1em; letter-spacing: 2px; }
  .video-play-btn { width: 80px; height: 80px; }
  .video-play-btn::before { border-width: 16px 0 16px 28px; margin-left: 6px; }

  /* Contact */
  .contact-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 450px;
  }
  .contact-link { padding: 22px 12px; min-height: 110px; }
  .contact-link svg { width: 32px; height: 32px; }
  .contact-link span { font-size: 0.85em; }

  /* Testimonials */
  .testimonials { padding: 80px 20px; }
  .testimonial-slider-container {
    padding: 2px 50px;
    margin-top: 40px;
  }
  .testimonial-track { gap: 20px; }
  .testimonial-card { width: 100%; padding: 30px 25px; min-height: auto; }
  .testimonial-header { margin-bottom: 15px; padding-bottom: 12px; }
  .testimonial-category { font-size: 0.8em; letter-spacing: 1px; }
  .testimonial-content p { font-size: 0.9em; line-height: 1.7; }
  .testimonial-prev, .testimonial-next { width: 40px; height: 40px; font-size: 1.2em; }
  .testimonial-prev { left: 5px; }
  .testimonial-next { right: 5px; }
}

/* <= 480 */
@media (max-width: 480px) {
  /* Hero */
  .hero-image img { object-position: 43% center; }

  .hero-content h1,
  .hero h1 {
    font-size: 2.8em;
    letter-spacing: 7px;
  }
  .hero-content .tagline,
  .hero .subtitle {
    font-size: 1.2em;
    letter-spacing: 5px;
  }

  .hero-content {
    padding: 30px 20px;
    background: rgba(0,0,0,0.6);
  }

  h2 { font-size: 1.6em; letter-spacing: 2px; }
  section { padding: 60px 20px; }

  /* Updates */
  .updates-container { padding: 25px 15px; }
  .updates-poster { margin-bottom: 20px; }

  /* Videos */
  .video-tab { padding: 10px 20px; font-size: .8em; }
  .video-caption { font-size: .9em; }
  .video-play-btn { width: 70px; height: 70px; }
  .video-play-btn::before { border-width: 14px 0 14px 24px; margin-left: 5px; }

  /* Contact */
  .contact-links { gap: 15px; max-width: 100%; }
  .contact-link { padding: 20px 10px; min-height: 100px; }
  .contact-link svg { width: 28px; height: 28px; }
  .contact-link span { font-size: 0.75em; letter-spacing: 1px; }

  /* Age modal */
  .age-modal-content { padding: 50px 25px; }
  .age-modal-content h2 { font-size: 1.6em; }

  /* Testimonials */
  .testimonials { padding: 60px 15px; }
  .testimonial-slider-container { padding: 2px 45px; }
  .testimonial-card { padding: 25px 20px; }
  .testimonial-content p { font-size: 0.85em; line-height: 1.6; }
  .author-name { font-size: 0.9em; }
  .author-date { font-size: 0.8em; }
  .testimonial-prev, .testimonial-next { width: 35px; height: 35px; font-size: 1em; }
}

/* Video Lockscreen */
.video-lockscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    text-align: center;
    padding: 40px 20px;
}

.video-lockscreen-title {
    color: var(--gold);
    font-size: 1.8em;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-lockscreen {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .video-lockscreen-title {
        font-size: 1.3em;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .video-lockscreen {
        min-height: 250px;
        padding: 20px 15px;
    }
    
    .video-lockscreen-title {
        font-size: 1.1em;
        letter-spacing: 1px;
    }
}