:root {
  --bg: #0a0a12;
  --bg-elevated: #12121f;
  --bg-card: #161625;
  --text: #e8e6f0;
  --text-muted: #9a97ad;
  --gold: #d4a853;
  --gold-soft: rgba(212, 168, 83, 0.15);
  --cyan: #3dd6f5;
  --cyan-soft: rgba(61, 214, 245, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --nav-height: 4rem;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --radius: 0.75rem;
  --max-width: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #151530 0%, var(--bg) 55%);
  min-height: 100vh;
}

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

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

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--bg);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header / nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--cyan);
  text-decoration: none;
}

main {
  padding-top: var(--nav-height);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

.section-header .accent-line {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  margin-top: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(10, 10, 18, 0.75) 35%,
    rgba(10, 10, 18, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8923f);
  color: var(--bg);
  box-shadow: 0 4px 20px var(--gold-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(61, 214, 245, 0.45);
}

.btn-secondary:hover {
  background: var(--cyan-soft);
}

/* Status chip */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.status-chip::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.status-open {
  background: rgba(61, 214, 245, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(61, 214, 245, 0.35);
}

.status-opening_soon {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.35);
}

.status-closed {
  background: rgba(154, 151, 173, 0.12);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Season card */
.season-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.info-card p {
  margin: 0;
  font-size: 1.125rem;
}

.info-card .detail {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Visit */
.visit-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .visit-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.map-placeholder {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
}

.map-placeholder a {
  font-weight: 500;
}

.visit-notes {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.visit-notes li {
  margin-bottom: 0.35rem;
}

/* Gallery */
.gallery-grid {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 480px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.3s ease;
}

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

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0.75rem 0.75rem;
  background: linear-gradient(transparent, rgba(10, 10, 18, 0.9));
  font-size: 0.8125rem;
  color: var(--text);
}

/* Playlist */
.playlist-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .playlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.playlist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s ease;
}

.playlist-card:hover {
  border-color: rgba(212, 168, 83, 0.35);
}

.playlist-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  color: var(--gold);
}

.playlist-card p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.playlist-card a {
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Follow */
.follow-panel {
  text-align: center;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 1.5rem;
}

.follow-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.follow-panel p {
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
}

.btn-facebook:hover {
  box-shadow: 0 4px 24px rgba(24, 119, 242, 0.35);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0.25rem 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.lightbox-inner {
  max-width: min(56rem, 100%);
  max-height: 90vh;
  position: relative;
}

.lightbox-inner img {
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.lightbox-caption {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.lightbox-close:hover {
  color: var(--cyan);
}


.playlist-video-wrap {
  margin-top: 0.25rem;
  border-radius: calc(var(--radius) - 0.15rem);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.playlist-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.playlist-card {
  padding: 1rem 1.15rem 1.15rem;
}
