/* ============================================
   UNITE PICKLEBALL — DESIGN SYSTEM
   Premium NYC Lifestyle Brand
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Core palette */
  --black:        #0B0B0F;
  --charcoal:     #1A1A22;
  --charcoal-mid: #252530;
  --charcoal-light: #2E2E3A;
  --ivory:        #F7F3EE;
  --ivory-dim:    #E8E3DC;
  --white:        #FFFFFF;

  /* Accent palette */
  --purple-deep:  #4B2E83;
  --purple-mid:   #5C3A9E;
  --violet:       #8C6BB1;
  --violet-light: #A585C8;
  --orange:       #D96C2C;
  --orange-warm:  #E07B3A;
  --pink:         #E8A0B8;
  --pink-soft:    #EDB8CA;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Max widths */
  --max-width:    1200px;
  --max-width-lg: 1400px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--charcoal-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--violet);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.nav.scrolled {
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 107, 177, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -0.02em;
  z-index: 101;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--purple-deep), var(--violet));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247, 243, 238, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--violet);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--ivory);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--ivory);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-warm));
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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

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

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

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile .nav-link {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.nav-mobile .nav-link::after {
  display: none;
}

.nav-mobile .nav-cta {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(139, 107, 177, 0.15);
  padding: var(--space-2xl) 2rem var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(247, 243, 238, 0.5);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 107, 177, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(247, 243, 238, 0.6);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.4);
  margin-bottom: 1.25rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-link {
  font-size: 0.9rem;
  color: rgba(247, 243, 238, 0.65);
  transition: color var(--transition-fast);
}

.footer-col-link:hover {
  color: var(--ivory);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 238, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(247, 243, 238, 0.3);
}

.footer-bottom-email {
  font-size: 0.8rem;
  color: var(--violet);
  transition: color var(--transition-fast);
}

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

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page {
  padding-top: 72px;
  min-height: 100vh;
}

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

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

.label-orange {
  color: var(--orange);
}

.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ivory);
}

.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(247, 243, 238, 0.72);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.6);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #C85A20);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 108, 44, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247, 243, 238, 0.25);
}

.btn-secondary:hover {
  border-color: rgba(247, 243, 238, 0.6);
  background: rgba(247, 243, 238, 0.04);
  transform: translateY(-1px);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: var(--white);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(75, 46, 131, 0.45);
}

.btn-ghost-orange {
  background: transparent;
  color: var(--orange);
  border: 1px solid rgba(217, 108, 44, 0.35);
}

.btn-ghost-orange:hover {
  background: rgba(217, 108, 44, 0.08);
  border-color: var(--orange);
}

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

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */
.section {
  padding: var(--space-3xl) 2rem;
}

.section-sm {
  padding: var(--space-2xl) 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

/* ============================================
   DIVIDER / ACCENT LINE
   ============================================ */
.accent-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-radius: 2px;
  margin: 1rem 0;
}

.accent-line-center {
  margin: 1rem auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Geometric mesh overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(75, 46, 131, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(217, 108, 44, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(232, 160, 184, 0.08) 0%, transparent 60%);
  z-index: 1;
}

/* Grid texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 107, 177, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 107, 177, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(139, 107, 177, 0.25);
  border-radius: var(--radius-full);
  background: rgba(75, 46, 131, 0.12);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--violet-light);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(247, 243, 238, 0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 238, 0.08);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}

.hero-meta-label {
  font-size: 0.75rem;
  color: rgba(247, 243, 238, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual / paddle graphic */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.hero-paddle-wrapper {
  position: relative;
  width: 280px;
  height: 420px;
}

.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 131, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.hero-paddle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(75, 46, 131, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-5deg); }
  50%       { transform: translateY(-15px) rotate(-3deg); }
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: -20px;
  background: var(--charcoal);
  border: 1px solid rgba(139, 107, 177, 0.3);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  backdrop-filter: blur(12px);
  animation: float-reverse 6s ease-in-out infinite;
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}

.hero-badge-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}

.hero-badge-label {
  font-size: 0.7rem;
  color: rgba(247, 243, 238, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-badge-2 {
  top: 60px;
  left: -20px;
  bottom: auto;
  right: auto;
  animation-delay: 1.5s;
}

.hero-badge-2 .hero-badge-value {
  color: var(--violet-light);
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  padding: 1.2rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(139, 107, 177, 0.12);
  border-bottom: 1px solid rgba(139, 107, 177, 0.12);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 24s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.4);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   BRAND EXPLANATION SECTION
   ============================================ */
.brand-section {
  background: var(--black);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.brand-text-block {
  max-width: 520px;
}

.brand-text-block .label {
  display: block;
  margin-bottom: 1rem;
}

.brand-visual {
  position: relative;
  height: 460px;
}

.brand-visual-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.brand-visual-card-main {
  width: 75%;
  height: 90%;
  top: 0;
  right: 0;
  background: var(--charcoal);
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(75, 46, 131, 0.4) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 107, 177, 0.15);
}

.brand-visual-card-accent {
  width: 55%;
  height: 55%;
  bottom: 0;
  left: 0;
  background: var(--charcoal-mid);
  border: 1px solid rgba(217, 108, 44, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
}

.brand-icon-court {
  width: 120px;
  height: 80px;
  opacity: 0.35;
}

.brand-stat-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-stat-big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
}

.brand-stat-label-sm {
  font-size: 0.75rem;
  color: rgba(247, 243, 238, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 131, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(139, 107, 177, 0.2);
  background: rgba(75, 46, 131, 0.08);
  color: rgba(247, 243, 238, 0.7);
  transition: all var(--transition-base);
}

.tag:hover {
  background: rgba(75, 46, 131, 0.2);
  border-color: rgba(139, 107, 177, 0.4);
  color: var(--ivory);
}

.tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.community-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(139, 107, 177, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  position: relative;
  transition: border-color var(--transition-base);
}

.quote-card:hover {
  border-color: rgba(139, 107, 177, 0.35);
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--purple-deep);
  line-height: 1;
  opacity: 0.5;
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.75);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.quote-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ivory);
}

.quote-role {
  font-size: 0.75rem;
  color: rgba(247, 243, 238, 0.4);
}

/* ============================================
   EVENT TYPES SECTION
   ============================================ */
.events-types-section {
  background: var(--black);
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.event-type-card {
  background: var(--charcoal);
  border: 1px solid rgba(139, 107, 177, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: default;
}

.event-type-card:hover {
  border-color: rgba(139, 107, 177, 0.3);
  transform: translateY(-4px);
  background: var(--charcoal-mid);
}

.event-type-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.event-type-card:hover::before {
  opacity: 1;
}

/* Individual card accent colors */
.event-type-card:nth-child(1)::before { background: linear-gradient(90deg, var(--purple-deep), var(--violet)); }
.event-type-card:nth-child(2)::before { background: linear-gradient(90deg, var(--orange), var(--pink)); }
.event-type-card:nth-child(3)::before { background: linear-gradient(90deg, var(--violet), var(--purple-deep)); }
.event-type-card:nth-child(4)::before { background: linear-gradient(90deg, var(--orange-warm), var(--orange)); }
.event-type-card:nth-child(5)::before { background: linear-gradient(90deg, var(--pink), var(--violet-light)); }
.event-type-card:nth-child(6)::before { background: linear-gradient(90deg, var(--purple-mid), var(--violet)); }
.event-type-card:nth-child(7)::before { background: linear-gradient(90deg, var(--orange), var(--purple-deep)); }

.event-type-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.event-type-card:nth-child(odd)  .event-type-icon { background: rgba(75, 46, 131, 0.2); }
.event-type-card:nth-child(even) .event-type-icon { background: rgba(217, 108, 44, 0.15); }

.event-type-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-type-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(247, 243, 238, 0.5);
}

/* ============================================
   WAITLIST FORM SECTION
   ============================================ */
.waitlist-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 131, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 108, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-form {
  margin-top: 3rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(247, 243, 238, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input,
.form-select {
  background: rgba(11, 11, 15, 0.7);
  border: 1px solid rgba(139, 107, 177, 0.2);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--ivory);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(247, 243, 238, 0.2);
}

.form-input:focus,
.form-select:focus {
  border-color: rgba(139, 107, 177, 0.55);
  background: rgba(11, 11, 15, 0.9);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C6BB1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--charcoal);
  color: var(--ivory);
}

/* Interest checkboxes */
.interests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.interest-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(139, 107, 177, 0.3);
  background: rgba(11, 11, 15, 0.6);
  cursor: pointer;
  accent-color: var(--purple-deep);
  flex-shrink: 0;
}

.interest-label {
  font-size: 0.85rem;
  color: rgba(247, 243, 238, 0.65);
  line-height: 1.3;
}

.form-submit {
  width: 100%;
  margin-top: 2rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(75, 46, 131, 0.15);
  border: 1px solid rgba(139, 107, 177, 0.3);
  border-radius: var(--radius-xl);
  color: var(--ivory);
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

/* ============================================
   CLOSING CTA SECTION
   ============================================ */
.closing-cta {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2A1550 50%, var(--black) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 107, 177, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 107, 177, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.closing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.closing-cta .h2 {
  margin-bottom: 1.25rem;
}

.closing-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-page-header {
  background: var(--black);
  padding: var(--space-3xl) 2rem var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events-page-header::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(75, 46, 131, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.events-page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.events-filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(139, 107, 177, 0.2);
  background: transparent;
  color: rgba(247, 243, 238, 0.55);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(75, 46, 131, 0.25);
  border-color: rgba(139, 107, 177, 0.5);
  color: var(--ivory);
}

/* Events grid */
.events-grid-section {
  background: var(--black);
  padding: var(--space-xl) 2rem var(--space-3xl);
}

.events-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--charcoal);
  border: 1px solid rgba(139, 107, 177, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(139, 107, 177, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.event-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color-coded event card images */
.event-card:nth-child(1) .event-card-image {
  background: linear-gradient(135deg, rgba(75, 46, 131, 0.5) 0%, rgba(26, 26, 34, 0.8) 100%);
}
.event-card:nth-child(2) .event-card-image {
  background: linear-gradient(135deg, rgba(217, 108, 44, 0.35) 0%, rgba(26, 26, 34, 0.8) 100%);
}
.event-card:nth-child(3) .event-card-image {
  background: linear-gradient(135deg, rgba(140, 107, 177, 0.4) 0%, rgba(26, 26, 34, 0.8) 100%);
}

.event-card-img-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.event-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}

.tag-pickleball   { background: rgba(75, 46, 131, 0.25); color: var(--violet-light); }
.tag-dinner       { background: rgba(217, 108, 44, 0.2);  color: var(--orange); }
.tag-influencer   { background: rgba(232, 160, 184, 0.2); color: var(--pink); }
.tag-brand        { background: rgba(75, 46, 131, 0.2);   color: var(--violet); }
.tag-art          { background: rgba(140, 107, 177, 0.2); color: var(--violet-light); }
.tag-singles      { background: rgba(232, 160, 184, 0.25);color: var(--pink-soft); }
.tag-corporate    { background: rgba(26, 26, 34, 0.8);    color: rgba(247,243,238,0.55); border: 1px solid rgba(139,107,177,0.2); }

.event-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.event-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(247, 243, 238, 0.45);
}

.event-card-meta-icon {
  width: 14px;
  color: var(--violet);
  flex-shrink: 0;
}

.event-card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(247, 243, 238, 0.5);
  flex: 1;
  margin-bottom: 1.5rem;
}

.event-card-footer {
  margin-top: auto;
}

/* Coming soon / empty state */
.events-empty {
  max-width: 500px;
  margin: 4rem auto;
  text-align: center;
}

.events-empty-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.events-empty h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.events-empty p {
  font-size: 0.95rem;
  color: rgba(247, 243, 238, 0.5);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-header {
  background: var(--black);
  padding: var(--space-3xl) 2rem var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 131, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact-header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-form-section {
  background: var(--charcoal);
  padding: var(--space-3xl) 2rem;
}

.contact-form-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 5rem;
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.contact-info-email {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--violet-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  transition: color var(--transition-fast);
}

.contact-info-email:hover {
  color: var(--pink);
}

.contact-info-email-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-block {
  padding: 1.5rem;
  background: var(--charcoal-mid);
  border: 1px solid rgba(139, 107, 177, 0.15);
  border-radius: var(--radius-lg);
}

.contact-info-block-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}

.contact-info-block-desc {
  font-size: 0.82rem;
  color: rgba(247, 243, 238, 0.5);
  line-height: 1.55;
}

.contact-form {
  background: var(--charcoal-mid);
  border: 1px solid rgba(139, 107, 177, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-textarea {
  background: rgba(11, 11, 15, 0.7);
  border: 1px solid rgba(139, 107, 177, 0.2);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--ivory);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
  width: 100%;
  min-height: 130px;
  resize: vertical;
}

.contact-textarea::placeholder {
  color: rgba(247, 243, 238, 0.2);
}

.contact-textarea:focus {
  border-color: rgba(139, 107, 177, 0.55);
}

/* ============================================
   PAGE TRANSITIONS / ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text { max-width: 100%; }
  .hero-sub  { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { display: none; }

  .brand-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-visual {
    height: 300px;
  }

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

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

  .contact-header-inner,
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  /* Nav */
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  /* Hero */
  .hero-meta {
    gap: 1.5rem;
  }

  /* Sections */
  .section, .section-sm {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Event types grid */
  .event-types-grid {
    grid-template-columns: 1fr;
  }

  /* Events grid */
  .events-grid {
    grid-template-columns: 1fr;
  }

  /* Waitlist form */
  .form-row {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Events filter */
  .events-filter-bar {
    gap: 0.5rem;
  }

  /* Contact */
  .contact-info {
    position: static;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .closing-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .marquee-item {
    padding: 0 1rem;
  }
}
