:root {
  --color-dark: #1a1a1a;
  --color-gold: #c9a84c;
  --color-gold-dark: #b8943f;
  --color-white: #ffffff;
  --color-cream: #f5f0e8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ── KEYFRAMES ─────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes expandLine {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes shimmerSweep {
  from { left: -80%; }
  to   { left: 130%; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-white);
  background-color: var(--color-dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section-light {
  background-color: var(--color-cream);
  color: var(--color-dark);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.92);
  z-index: 10;
  transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo img {
  width: 140px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-image: url('../img/event.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 56px 48px;
  max-width: 880px;
  margin: 0 auto;
}

.hero-logo {
  width: min(55vw, 280px);
  margin: 0 auto 24px;
  animation-name: fadeIn, floatLogo;
  animation-duration: 0.7s, 5s;
  animation-timing-function: ease, ease-in-out;
  animation-delay: 0.15s, 2s;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
}

.hero-eyebrow {
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  margin-bottom: 4px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  animation: fadeInDown 0.7s ease both;
  animation-delay: 0.4s;
}

.hero-title-wrap {
  margin: 4px 0 20px;
}

.hero-deco {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 25%, var(--color-gold) 75%, transparent 100%);
  margin: 14px auto;
  transform: scaleX(0);
  transform-origin: center;
  animation: expandLine 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-deco:first-child { animation-delay: 0.62s; }
.hero-deco:last-child  { animation-delay: 0.82s; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.9s ease both;
  animation-delay: 0.72s;
}

.hero-subtext {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  animation: fadeInUp 0.7s ease both;
  animation-delay: 1.0s;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.7s ease both;
  animation-delay: 1.25s;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn-primary:hover {
  background-color: var(--color-gold-dark);
}

.btn-primary:hover::after {
  animation: shimmerSweep 0.55s ease forwards;
}

.btn-secondary {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  animation: bounce 2s infinite;
  font-size: 1.5rem;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

.intro-grid {
  display: grid;
  gap: 32px;
}

.intro-text h2,
.amenities h2,
.review h2,
.faqs h2,
.quote h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-top: 0;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.intro-quote {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--color-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.65);
}

.amenities h2 {
  color: var(--color-gold);
  text-align: center;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-white);
}

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

.amenity-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.amenity-card:hover {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.07);
}

.amenity-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--color-gold);
  line-height: 1.3;
}

.amenity-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.amenities-image {
  margin: 40px auto 0;
  max-width: 900px;
}

.amenities-image img {
  border-radius: 18px;
  border: 2px solid var(--color-gold);
}

.event-partners {
  margin-top: 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  padding-top: 44px;
}

.partners-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 28px;
}

.partner-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.partner-card {
  border-top: 2px solid var(--color-gold);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 0 0 6px 6px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
  background: rgba(201, 168, 76, 0.04);
}

.partner-card--media {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.partner-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.partner-card-body {
  padding: 24px 28px;
}

.partner-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.partner-card p {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.partner-link {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-gold);
  position: relative;
}

.partner-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.35s ease;
}

.partner-link:hover::after {
  width: 100%;
}

/* ── REVIEW SECTION ─────────────────────────── */
.review {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.review-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../img/event.png');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.18;
  z-index: 0;
}

.review-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 60%, #0a0a0a 100%);
  z-index: 1;
}

.review-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.stat-bar {
  display: flex;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 72px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-open {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--color-gold);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.75;
}

.review-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.85;
  color: #f2ede4;
  margin: 0 0 40px;
  border: none;
  padding: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.review-rule {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.7;
}

.review-author {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.faqs {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.4rem;
}

.faq-question[aria-expanded='true'] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open {
  border-color: var(--color-gold);
  border-left: 3px solid var(--color-gold);
}

.faq-item.open .faq-question {
  color: var(--color-gold);
}

.quote {
  background-color: var(--color-gold);
  color: var(--color-dark);
  text-align: center;
}

.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contact-link {
  font-size: 1.3rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 20px;
}

.social-icons a {
  color: var(--color-dark);
  opacity: 0.7;
  display: flex;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.footer-logos img {
  width: 80px;
  filter: grayscale(0.1);
}

.footer-links a {
  color: var(--color-gold);
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    flex-direction: column;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .hero-actions {
    width: 100%;
  }

  .dragonfly {
    flex-direction: column;
  }
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .intro-image img {
    border-radius: 18px;
    border: 2px solid rgba(201, 168, 76, 0.4);
  }

  .quote-contact {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .quote-contact span,
  .contact-social span {
    margin: 0 8px;
  }

  .partner-strip {
    grid-template-columns: 1fr 1fr;
  }

  .partner-card--media {
    flex-direction: row;
    align-items: stretch;
  }

  .partner-media {
    flex: 0 0 42%;
  }

  .partner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .partner-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .hero-subtext {
    font-size: 1.2rem;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    border: none;
    opacity: 1;
    transform: none;
    pointer-events: all;
  }

  .nav-toggle {
    display: none;
  }

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
