:root {
  --bg: #12070c;
  --bg-alt: #1a0c12;
  --rose: #ff2e6d;
  --rose-soft: rgba(255, 46, 109, 0.4);
  --cyan: #24e8ff;
  --gold: #f4c98a;
  --ink: #f7eef2;
  --muted: #c6a7b2;
  --card: rgba(26, 13, 19, 0.86);
  --line: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top, rgba(255, 46, 109, 0.15), transparent 45%),
    radial-gradient(circle at 30% 20%, rgba(36, 232, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg), #0b0407 65%);
  color: var(--ink);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: -1;
}

body::before {
  background: radial-gradient(circle at 70% 20%, rgba(36, 232, 255, 0.25), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 46, 109, 0.25), transparent 55%);
}

body::after {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 6px
  );
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(10, 4, 8, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 46, 109, 0.4));
}

.logo-mark {
  width: 60px;
  height: 60px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Cinzel", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.brand-text span:first-child {
  font-size: 1rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--cyan));
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(10, 4, 8, 0.88) 0%,
      rgba(10, 4, 8, 0.58) 50%,
      rgba(10, 4, 8, 0.9) 100%
    ),
    radial-gradient(circle at 15% 20%, rgba(255, 46, 109, 0.35), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", "Times New Roman", serif;
  margin: 0 0 16px;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  text-shadow: 0 0 24px rgba(255, 46, 109, 0.35);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 24px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--rose), #ff7b9f);
  color: #15050c;
  box-shadow: 0 12px 30px rgba(255, 46, 109, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 46, 109, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(26, 12, 18, 0.85), rgba(10, 4, 8, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
  margin-bottom: 40px;
  max-width: 720px;
}

.section-heading p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 30px rgba(255, 46, 109, 0.08);
}

.card p {
  color: var(--muted);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.event-card {
  background: rgba(12, 6, 10, 0.7);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
}

.event-media {
  height: 180px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 46, 109, 0.2), rgba(36, 232, 255, 0.2));
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.event-body {
  padding: 24px;
}

.text-link {
  display: inline-block;
  color: var(--gold);
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.media-placeholder {
  min-height: 320px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 46, 109, 0.1), rgba(36, 232, 255, 0.1));
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.detail-list li {
  padding-left: 22px;
  position: relative;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rose);
}

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

.gallery-tile {
  grid-column: span 4;
  min-height: 180px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.logo-tile {
  background: linear-gradient(135deg, rgba(255, 46, 109, 0.15), rgba(36, 232, 255, 0.1));
  border-style: solid;
}

.logo-tile img {
  width: min(240px, 70%);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 46, 109, 0.4));
}

.gallery-tile.tall {
  grid-column: span 5;
  min-height: 320px;
}

.gallery-tile.wide {
  grid-column: span 7;
  min-height: 220px;
}

.amenities {
  display: grid;
  gap: 32px;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.info-grid h3 {
  margin-bottom: 6px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: rgba(14, 7, 11, 0.8);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: inherit;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 3, 6, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 10px;
}

.footer-logo {
  width: min(180px, 70%);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 18px rgba(255, 46, 109, 0.35));
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  animation: fadeUp 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

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

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 160px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-notes {
    flex-direction: column;
  }

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

  .gallery-tile,
  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-column: span 2;
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .btn-primary {
    animation: none;
    transition: none;
  }
}
