@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0d0b09;
  --bg-alt: #120f0c;
  --bg-deep: #0a0908;
  --border: #2b2318;
  --text: #f3ece0;
  --text-body: #c9beae;
  --text-muted: #ab9f8f;
  --text-dim: #8a7f70;
  --text-faint: #77705f;
  --text-ghost: #4d473c;
  --gold: #e3c374;
  --gold-deep: #cba135;
  --wine: #8c2f39;
  --dark-text: #1a1310;
  --error: #c96a6a;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--text);
  overflow-x: hidden;
}

* { box-sizing: border-box; }

::selection { background: var(--gold-deep); color: var(--bg); }

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

a { color: inherit; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--wine);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--text);
  line-height: 1.2;
}

.btn-gold {
  text-decoration: none;
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark-text);
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-outline {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  padding: 16px 32px;
  border: 1px solid var(--gold-deep);
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(13, 11, 9, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 80px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-reserve {
  text-decoration: none;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark-text);
  font-weight: 600;
  font-size: 13px;
  border-radius: 2px;
  white-space: nowrap;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.9s ease;
  cursor: zoom-in;
}
.hero-slide-img.fading { opacity: 0; }

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,11,9,0.55) 0%, rgba(13,11,9,0.55) 40%, rgba(13,11,9,0.97) 100%);
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 10%, rgba(140,47,57,0.25), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 120px clamp(20px, 6vw, 80px) 88px;
  animation: novaFade 0.9s ease both;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.04;
  color: #f8f3ea;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(243,236,224,0.3);
  transition: background 0.3s ease;
  border: none;
  padding: 0;
}
.dot.active { background: var(--gold); }

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar {
  background: var(--bg);
  padding: 48px 36px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ABOUT */
.about {
  padding: 96px clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}
.about-media {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
}

/* EVENTS */
.events {
  padding: 80px clamp(20px, 6vw, 80px) 96px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.events-header { text-align: center; margin-bottom: 56px; }
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.event-media {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s ease;
}
.event-info { transition: opacity 0.8s ease; }
.event-info.fading, .event-media img.fading { opacity: 0; }

.event-date-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dark-text);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.event-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}
.event-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

@media (max-width: 760px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ENTERTAINMENT */
.entertainment { padding: 96px clamp(20px, 6vw, 80px); }
.entertainment-header { text-align: center; margin-bottom: 56px; }
.entertainment-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.entertainment-media {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.entertainment-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.entertainment-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(13,11,9,0.9), transparent);
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text);
}
.entertainment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.entertainment-card {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.entertainment-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
}
.entertainment-card-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.entertainment-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-dim);
}
.entertainment-footnote a { color: var(--gold-deep); }

/* GALLERY */
.gallery { padding: 0 clamp(20px, 6vw, 80px) 96px; }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-inner { max-width: 900px; margin: 0 auto; }
.gallery-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s ease;
}
.gallery-media img.fading { opacity: 0; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--border);
  padding: 0;
  background: none;
}
.gallery-thumb.active { border: 2px solid var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; }
.gallery-thumb.active img { opacity: 1; }

/* TESTIMONIALS */
.testimonials {
  padding: 96px clamp(20px, 6vw, 80px);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card { padding: 32px; border: 1px solid var(--border); }
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}
.testimonial-author { margin-top: 16px; font-size: 12px; color: var(--text-dim); }

/* CONTACT */
.contact {
  padding: 96px clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  overflow: hidden;
  line-height: 0;
}
.contact-map iframe { display: block; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 20px;
}
.contact-address { font-size: 15px; line-height: 1.8; color: var(--text-body); margin-bottom: 24px; }
.contact-hours { font-size: 14px; line-height: 1.9; color: var(--text-body); margin-bottom: 28px; }

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
  padding: 32px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-deep);
}
.footer-logo { height: 64px; width: auto; display: block; }
.footer-address { font-size: 13px; color: var(--text-faint); }
.footer-social { display: flex; gap: 14px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
}
.copyright {
  padding: 18px;
  text-align: center;
  font-size: 11px;
  color: var(--text-ghost);
  background: var(--bg-deep);
}
.copyright a { color: var(--text-ghost); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9,7,5,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: novaFade 0.25s ease both;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243,236,224,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  background: none;
}
.hidden { display: none !important; }
