/* ============================================
   PICKLEHTX — Brand Website Styles
   Color Palette: Purple/Lavender + Black + White
   ============================================ */

:root {
  /* Primary Purple Palette */
  --purple-50: #f2eeff;
  --purple-100: #e0d1ff;
  --purple-200: #c4a8ff;
  --purple-300: #a87eff;
  --purple-400: #9c66ff;
  --purple-500: #8C52FF;
  --purple-600: #7040d4;
  --purple-700: #5430aa;
  --purple-800: #38207f;
  --purple-900: #1e1040;

  /* Neutrals */
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-900: #222222;
  --gray-800: #333333;
  --gray-700: #4a4a4a;
  --gray-600: #666666;
  --gray-500: #888888;
  --gray-400: #aaaaaa;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f2f2f2;
  --white: #ffffff;

  /* Functional */
  --bg: var(--white);
  --text: var(--black);
  --accent: var(--purple-500);
  --accent-light: var(--purple-100);
  --accent-dark: var(--purple-700);

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

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1280px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--purple-500);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.announcement-bar a:hover {
  opacity: 0.85;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  transform: translateY(2.2rem);
}

.navbar.scrolled {
  transform: translateY(0);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
}

.nav-logo span {
  color: var(--purple-500);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--black);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-500);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-600) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--purple-600);
  border-color: var(--purple-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 114, 192, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-500);
  margin-bottom: 0.75rem;
}

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

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

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

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--purple-600);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(30, 22, 48, 0.80) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--purple-300);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-the {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--purple-300);
  line-height: 1;
}

.hero-main {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

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

.hero-actions .btn-primary {
  background: var(--purple-500);
  border-color: var(--purple-500);
}

.hero-actions .btn-primary:hover {
  background: var(--purple-400);
  border-color: var(--purple-400);
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Countdown */
.countdown {
  margin-top: 1rem;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple-300);
  margin-bottom: 1rem;
}

.countdown-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  min-width: 80px;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.countdown-unit {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.countdown-tbd {
  font-size: 0.85rem;
  color: var(--purple-300);
  margin-top: 1rem;
  font-style: italic;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.hero-scroll a:hover {
  color: var(--white);
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img {
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 65%;
  z-index: 1;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 55%;
  z-index: 2;
  border: 4px solid var(--white);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
}

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

.cta-poster img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(155, 114, 192, 0.2);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.cta-feature svg {
  color: var(--purple-400);
  flex-shrink: 0;
}

.cta-section .btn-primary {
  background: var(--purple-500);
  border-color: var(--purple-500);
}

.cta-section .btn-primary:hover {
  background: var(--purple-400);
  border-color: var(--purple-400);
}

/* ============================================
   SPONSORS MARQUEE
   ============================================ */
.sponsors {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.marquee-wrapper {
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 3rem;
  padding: 0 1.5rem;
}

.sponsor-item {
  flex-shrink: 0;
}

.sponsor-placeholder {
  width: 200px;
  height: 80px;
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-100);
  transition: all 0.3s;
}

.sponsor-placeholder:hover {
  border-color: var(--purple-400);
  color: var(--purple-500);
  background: var(--purple-50);
}

/* To replace placeholders with logos, use:
   <img src="sponsor-logo.png" alt="Sponsor Name" class="sponsor-logo">
   instead of <div class="sponsor-placeholder">
*/
.sponsor-logo {
  width: 200px;
  height: 80px;
  object-fit: contain;
}

.sponsor-logo-lg {
  width: 260px;
  height: 100px;
}

.sponsor-logo-invert {
  filter: invert(1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sponsor Embed Form */
.sponsor-cta-area {
  text-align: center;
  margin-top: 3rem;
}

.sponsor-embed-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--gray-100);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

.sponsor-embed-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.sponsor-embed-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sponsor-form-container {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.sponsor-form-container iframe {
  display: block;
  width: 100%;
  min-height: 900px;
}

/* ============================================
   FAQ
   ============================================ */

/* ============================================
   OUR TEAM
   ============================================ */
.team-section {
  padding: 6rem 0;
  background: var(--gray-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.team-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 16px;
  padding: 0 0 1rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.team-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(140, 82, 255, 0.15);
}

.team-card-link:hover .team-photo-placeholder {
  border-radius: 16px;
}

.team-view-profile {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-500);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.team-card-link:hover .team-view-profile {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .team-view-profile {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--purple-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: none;
  overflow: hidden;
}

.team-photo-placeholder span {
  color: var(--purple-500);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.9rem;
  color: var(--purple-500);
  font-weight: 500;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.faq {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}

.faq-grid {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--purple-600);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--purple-500);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--purple-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Email Contact Card */
.contact-email-card {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.contact-email-card:hover {
  border-color: var(--purple-300);
}

.contact-email-icon {
  width: 64px;
  height: 64px;
  background: var(--purple-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--purple-600);
}

.contact-email-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-email-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-500);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.contact-email-link:hover {
  color: var(--purple-700);
}

.contact-email-sub {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Social cards */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.social-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.social-card.dark {
  background: var(--black);
  color: var(--white);
  border: none;
}

.social-card.dark p {
  color: rgba(255,255,255,0.6);
}

.social-card.accent {
  background: var(--purple-50);
  border-color: var(--purple-200);
}

.social-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.social-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.social-card-sub {
  margin-top: 0.5rem;
  font-size: 0.8rem !important;
  opacity: 0.7;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--purple-500);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--purple-700);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--purple-400);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--purple-400);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-images {
    height: 400px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-poster {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .navbar {
    transform: translateY(1.8rem);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s var(--ease);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .hero-main {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-the {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .countdown-grid {
    gap: 0.75rem;
  }

  .countdown-item {
    padding: 0.75rem 1rem;
    min-width: 60px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

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

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .about-images {
    height: 350px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

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

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

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
  }

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

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
