/* ============================================
   Club Velvet — Demo Lifestyle Club Homepage
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-border: #2a2a2a;
  --color-text: #e8e8e8;
  --color-text-muted: #888888;
  --color-accent: #c41230;
  --color-accent-light: #e8254a;
  --color-accent-glow: rgba(196, 18, 48, 0.3);
  --color-gold: #c9a84c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-gold);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  background: transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-light);
  color: #fff;
  box-shadow: 0 0 30px var(--color-accent-glow);
}

.btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}
.logo:hover { color: #fff; }

.logo-icon {
  width: 44px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  filter: drop-shadow(0 2px 8px var(--color-accent-glow));
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Nav buttons mirror the hero CTA pair: white outline + filled accent.
   Sized down for the header context. */
.nav-login,
.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-login {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff !important;
  background: transparent;
}
.nav-login:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
}

.nav-cta {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff !important;
}
.nav-cta:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  box-shadow: 0 0 24px var(--color-accent-glow);
}

/* Mobile-only signup/login pair inside the hamburger overlay.
   Hidden on desktop where the .nav-actions block is visible instead. */
.nav-mobile-actions {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(196, 18, 48, 0.25) 0%, transparent 60%),
    url('images/pexels-valeriya-597203.jpg') center / cover no-repeat,
    linear-gradient(135deg, #0a0a0a 0%, #1a0a10 50%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.04) 2px,
      rgba(0,0,0,0.04) 4px
    );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* --- Announcement Bar --- */
.announcement {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.announcement a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.announcement a:hover {
  color: var(--color-gold);
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #fff;
}
.section-title--left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* --- Events (section wrapper for the SecuraPass embed) --- */
.events {
  padding: 6rem 0;
  background: var(--color-bg);
}

/* --- About --- */
.about {
  padding: 6rem 0;
  background: var(--color-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(196, 18, 48, 0.1);
  border: 1px solid rgba(196, 18, 48, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-light);
}

.feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Video Tour --- */
.video-tour {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 18, 48, 0.08) 0%, transparent 60%),
    var(--color-surface-2);
}

.video-facade {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #000;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.video-facade:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(196, 18, 48, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-facade:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-accent-light);
}

.video-play svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Pricing --- */
.pricing {
  padding: 6rem 0;
  background: var(--color-bg);
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.pricing-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.pricing-table thead tr:first-child th {
  padding-bottom: 0.25rem;
}

.th-group {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table thead tr:nth-child(2) th {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 0.5rem;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.row-label {
  text-align: left;
  font-weight: 500;
  color: #fff;
}

.pricing-table tbody td {
  color: var(--color-text);
  font-weight: 400;
}

.free {
  color: var(--color-gold) !important;
  font-weight: 600 !important;
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

/* --- Membership --- */
.membership {
  padding: 6rem 0;
  background: var(--color-surface);
}

.membership-card {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 18, 48, 0.08) 0%, transparent 50%),
    var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.membership-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.price-original {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.membership-promo {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 2rem;
}

.membership-perks {
  list-style: none;
  margin-bottom: 2rem;
}

.membership-perks li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text);
}
.membership-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.membership-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.membership-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-badge {
  width: 220px;
  height: 280px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #7a0a1e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(196, 18, 48, 0.3);
  transform: rotate(3deg);
  transition: transform 0.3s;
}
.membership-badge:hover {
  transform: rotate(0deg) scale(1.03);
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.badge-v {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.badge-year {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

/* --- House Rules --- */
.rules {
  padding: 6rem 0;
  background: var(--color-bg);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rule-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}
.rule-card:hover {
  border-color: var(--color-accent);
}

.rule-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.rule-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.rule-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-links a:hover {
  border-color: var(--color-accent);
  background: rgba(196, 18, 48, 0.1);
}
.social-links svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
}
.social-links a:hover svg {
  color: var(--color-accent-light);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.footer-col ul a:hover {
  color: #fff;
}

.footer-age {
  background: rgba(196, 18, 48, 0.1);
  border: 1px solid rgba(196, 18, 48, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8rem !important;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-photo {
    aspect-ratio: 16 / 9;
  }
  .membership-card {
    grid-template-columns: 1fr;
    padding: 3rem;
  }
  .membership-visual {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Show login + signup pair inside the open hamburger menu */
  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--color-border);
  }

  /* Mobile login/signup mirror the desktop pair: white outline + filled accent. */
  .nav-mobile-login,
  .nav-mobile-cta {
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: var(--radius);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
  }

  .nav-mobile-login {
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
  }
  .nav-mobile-login:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .nav-mobile-cta {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
  }
  .nav-mobile-cta:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

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

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.6rem;
    font-size: 0.8rem;
  }

  .membership-card {
    padding: 2rem;
  }
  .membership-badge {
    width: 160px;
    height: 200px;
  }
  .badge-v {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   Events Page
   ============================================ */

.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
  margin: 4px auto 0;
}

/* --- Page hero (shorter than home hero) --- */
.page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(196, 18, 48, 0.3) 0%, transparent 60%),
    url('images/pexels-delot-19181684.jpg') center / cover no-repeat,
    linear-gradient(135deg, #0a0a0a 0%, #1a0a10 50%, #0a0a0a 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Party types grid --- */
.party-types {
  padding: 6rem 0;
  background: var(--color-surface);
}

.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.party-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}
.party-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}
.party-card--accent {
  background: linear-gradient(160deg, rgba(196, 18, 48, 0.12) 0%, var(--color-surface-2) 60%);
  border-color: rgba(196, 18, 48, 0.4);
}

.party-icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
}
.party-icon svg {
  width: 100%;
  height: 100%;
}

.party-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.party-time {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.party-card > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.party-perks {
  list-style: none;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.party-perks li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.party-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* --- What to expect timeline --- */
.expect {
  padding: 6rem 0;
  background: var(--color-bg);
}

.expect-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.expect-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.expect-step {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  position: relative;
}

.expect-step-num {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.expect-step-body h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.expect-step-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- Event FAQ --- */
.event-faq {
  padding: 6rem 0;
  background: var(--color-surface);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(196, 18, 48, 0.4);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent-light);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- Events CTA --- */
.events-cta {
  padding: 6rem 0;
  background: var(--color-bg);
}

.events-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: radial-gradient(ellipse at center top, rgba(196, 18, 48, 0.15), transparent 60%), var(--color-surface);
}

.events-cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.events-cta-inner p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .party-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 8rem 1.5rem 4rem;
    min-height: 340px;
  }
}

