:root {
  --bg: #030303;
  --panel: #0b0b0f;
  --text: #ffffff;
  --muted: #c7c0c9;

  /* Nailzotica brand colors */
  --pink: #e989d1;
  --light-pink: #ffd9fe;
  --purple: #ae9beb;

  --gold: #d5a942;
  --border: rgba(255,255,255,0.16);

  --brand-gradient: linear-gradient(
    120deg,
    var(--pink),
    var(--light-pink),
    var(--purple),
    var(--pink)
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(233, 137, 209, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(174, 155, 235, 0.18), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(255, 217, 254, 0.08), transparent 32%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo,
.footer-logo {
  transition: transform .25s ease;
}

.logo:hover,
.footer-logo:hover {
  transform: scale(1.04);
}

a.primary-button,
a.secondary-button,
.primary-button,
.secondary-button,
.nav-button {
  text-decoration: none !important;
}

.logo,
.footer-logo {
  height: 65px;
  width: auto;
  display: block;
}

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

.nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
}

.nav-button,
.primary-button,
.secondary-button {
  border: none;
  cursor: pointer;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-button,
.primary-button {
  background: var(--brand-gradient);
  background-size: 300% 300%;
  animation: nailzoticaGradientMove 5s ease infinite;
  padding: 15px 26px;
  box-shadow: 0 0 24px rgba(233, 137, 209, 0.45);
}

.secondary-button {
  background: transparent;
  border: 1px solid var(--pink);
  padding: 14px 24px;
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(233, 137, 209, 0.58);
}

.detail-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
  padding: 90px 7vw;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.detail-section.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.detail-section.reverse div {
  order: 2;
}

.detail-section.reverse img {
  order: 1;
}

.detail-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.detail-section img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 0 50px rgba(233, 137, 209, 0.16);
}

@media (max-width: 800px) {
  .detail-section,
  .detail-section.reverse {
    grid-template-columns: 1fr;
    padding: 70px 22px;
  }

  .detail-section.reverse div,
  .detail-section.reverse img {
    order: initial;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.3), rgba(0,0,0,0.72));
}

.hero-content {
  position: relative;
  max-width: 560px;
  padding: 120px 34px 60px 80px;
}

.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(62px, 10vw, 150px);
  line-height: 0.86;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--pink);
  font-size: 0.35em;
  letter-spacing: 14px;
  margin: 18px 0;
}

h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  text-transform: uppercase;
}

.subtitle {
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-details {
  margin: 30px 0;
  color: white;
  font-weight: 700;
}

.microcopy {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  padding: 90px 7vw;
}

.intro {
  max-width: 760px;
}

.intro p,
.trailer p,
.split-section p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.center {
  text-align: center;
}

.video-placeholder {
  position: relative;
  max-width: 1100px;
  margin: 36px auto 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(255, 79, 195, 0.22);
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-placeholder img,
.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 30px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.feature-card,
.installation,
.modal,
details {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.35);
}

.feature-card {
  min-height: 540px;
  position: relative;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: brightness(0.75);
}

.feature-card div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
}

.feature-card a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.installation-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.installation {
  text-align: center;
  padding-bottom: 22px;
}

.installation img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.installation h3 {
  font-size: 17px;
  margin: 18px 12px 8px;
}

.installation p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 7vw;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.split-section > img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--border);
}

.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.stats strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
}

.stats span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.sponsor-row {
  display: flex;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
  margin: 44px 0;
}

.sponsor-row span {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  color: white;
}

.sponsors,
.reserve-banner {
  text-align: center;
}

.faq-list {
  max-width: 850px;
  margin: 40px auto 0;
  display: grid;
  gap: 16px;
}

details {
  padding: 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reserve-banner {
  padding: 90px 7vw;
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.35)),
    radial-gradient(circle at center, rgba(255,79,195,0.5), rgba(0,0,0,0.9));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 7vw;
  background: black;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer p {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
}

.footer span {
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  padding: 24px;
}

.modal-backdrop.active {
  display: grid;
}

.modal {
  max-width: 540px;
  padding: 38px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  color: white;
  border: none;
  font-size: 34px;
  cursor: pointer;
}

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

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

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--brand-gradient);
  background-size: 300% 300%;
  animation: nailzoticaGradientMove 5s ease infinite;
  box-shadow: 0 0 24px rgba(233,137,209,.45);
}

.social-links i {
  font-size: 20px;
}

.footer-email {
  color: var(--muted);
  text-decoration: none;
}

.footer-email:hover {
  color: var(--light-pink);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.detail-list article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0,0,0,0.22);
}

.detail-list h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.detail-list p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .detail-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .detail-list {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .detail-list::-webkit-scrollbar {
    display: none;
  }

  .detail-list article {
    min-width: 85%;
    scroll-snap-align: start;
  }
}

.swipe-hint {
  display: none;
}

@media (max-width: 620px) {
  .swipe-hint {
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.experience-category {
  margin-top: 54px;
}

.experience-category > .eyebrow {
  text-align: center;
  margin-bottom: 20px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detail-list article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0,0,0,0.22);
}

.detail-list h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.detail-list p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .detail-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 76px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.94);
    display: none;
    flex-direction: column;
    padding: 30px;
  }

  .nav.active {
    display: flex;
  }

  .hero-content {
    padding: 120px 24px 60px;
  }

  .cards-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .section,
  .split-section {
    padding: 70px 22px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.95));
  }

  h1 span {
    letter-spacing: 8px;
  }

  .cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .feature-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .installation-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .installation {
    min-width: 72%;
    scroll-snap-align: start;
  }

  .sponsor-row {
    gap: 28px;
  }

  .rsvp-modal {
    width: min(640px, 100%);
  }

  .modal-subtitle {
    color: var(--muted);
    line-height: 1.6;
  }

  .rsvp-form {
    display: grid;
    gap: 18px;
    margin-top: 26px;
  }

  .rsvp-form label {
    display: grid;
    gap: 8px;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
  }

  .rsvp-form input,
  .rsvp-form select {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: white;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 16px;
    outline: none;
  }

  .rsvp-form option {
    color: black;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .checkbox-row {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--muted) !important;
    font-weight: 500 !important;
  }

  .checkbox-row input {
    width: auto;
  }

  .rsvp-message {
    min-height: 22px;
    color: var(--pink);
    font-weight: 800;
  }

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

  .scarcity-message {
    margin: 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
  }

  @keyframes nailzoticaGradientMove {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .rsvp-modal {
    width: min(720px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    padding: 42px;
  }

  .rsvp-modal h2 {
    font-size: clamp(42px, 8vw, 82px);
    line-height: 0.95;
    margin-bottom: 18px;
  }

  .modal-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 26px;
  }

  .rsvp-form {
    display: grid;
    gap: 18px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .rsvp-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .rsvp-form input,
  .rsvp-form select {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: white;
    padding: 0 16px;
    font-size: 16px;
  }

  .rsvp-form option {
    color: #111;
  }

  .checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  .checkbox-row input {
    width: 18px;
    min-height: 18px;
  }

  #submitRsvpButton {
    width: fit-content;
    margin-top: 8px;
  }

  @media (max-width: 620px) {
    .rsvp-modal {
      padding: 30px 22px;
    }

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

    #submitRsvpButton {
      width: 100%;
    }
  }

  .rsvp-modal {
    width: min(760px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 42px;
    background:
      radial-gradient(circle at 20% 0%, rgba(233,137,209,.18), transparent 35%),
      radial-gradient(circle at 90% 80%, rgba(174,155,235,.18), transparent 35%),
      rgba(8,8,12,.92);
  }

  .rsvp-modal h2 {
    font-size: clamp(44px, 8vw, 86px);
    line-height: .9;
    margin-bottom: 18px;
  }

  .modal-subtitle {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .rsvp-form {
    display: grid;
    gap: 20px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .rsvp-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .rsvp-form input,
  .rsvp-form select {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: white;
    padding: 0 16px;
    font-size: 16px;
  }

  .rsvp-form option {
    color: #111;
  }

  .day-picker,
  .slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .day-card,
  .slot-card {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.07);
    color: white;
    border-radius: 18px;
    padding: 16px;
    cursor: pointer;
    font-weight: 900;
    transition: .25s ease;
  }

  .day-card.active,
  .slot-card.active {
    background: var(--brand-gradient);
    background-size: 300% 300%;
    animation: nailzoticaGradientMove 5s ease infinite;
    box-shadow: 0 0 24px rgba(233,137,209,.45);
  }

  .form-section-title {
    margin: 0 0 12px;
    color: var(--light-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 900;
  }

  .empty-slots {
    color: var(--muted);
    grid-column: 1 / -1;
  }

  .checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    color: var(--muted) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  .checkbox-row input {
    width: 18px;
    min-height: 18px;
  }

  #submitRsvpButton {
    width: 100%;
    justify-content: center;
  }

  @media (max-width: 620px) {
    .rsvp-modal {
      padding: 28px 20px;
    }

    .form-grid,
    .day-picker,
    .slot-grid {
      grid-template-columns: 1fr;
    }
  }
}