/* ========================================
   Mountain Wubz — Exhibiz-Matched Design
   ======================================== */

:root {
  --e-global-color-primary: #101010;
  --e-global-color-secondary: #883ff9;
  --e-global-color-accent: #EC167F;
  --e-global-color-text: #404040;
  --e-global-color-white: #FFFFFF;
  --mw-cyan: #00E5FF;
  --mw-magenta: #FF26AF;
  --mw-pink: #EB1F79;
  --mw-purple: #B200FE;
  --mw-dark: #0a0a0a;
  --mw-dark-card: #101010;
  --mw-dark-border: #1a1a1a;
  --mw-text: #e0e0e0;
  --mw-text-muted: #999999;
  --font-display: 'Abril Fatface', serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-alt: 'Poppins', sans-serif;
  --section-padding: 80px 0;
  --section-padding-mobile: 50px 0;
  --container-max: 1240px;
  --transition: all 0.5s ease;
  --rounded: 15px;
  --rounded-button: 30px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--mw-dark);
  color: var(--mw-text);
  font-family: var(--font-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--mw-dark-card);
  padding: 6px 15px;
  font-size: 13px;
}
.top-bar a { text-decoration: none; }
.top-bar .email-link { color: #fff; }
.top-bar .email-icon { color: var(--mw-pink); margin-right: 6px; }
.top-bar .follow-text {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 10px;
}
.top-bar .social-icon {
  color: var(--mw-pink);
  transition: var(--transition);
  margin-left: 8px;
}
.top-bar .social-icon:hover {
  transform: scale(1.15);
  color: #fff;
}

/* =========================================
   STICKY HEADER
   ========================================= */
#site-header {
  background: var(--mw-dark) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
  padding: 0 15px;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: transform 0.3s;
}
#site-header .header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

/* Nav Links */
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  padding: 30px 20px;
  display: inline-block;
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #D12D98;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 25px;
  height: 2px;
  background: #D12D98;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile hamburger */
#mobile-menu-btn { color: var(--mw-purple); }
#mobile-menu {
  background: var(--mw-dark-card);
  border-top: 1px solid var(--mw-dark-border);
}
#mobile-menu .nav-link {
  padding: 12px 20px;
  display: block;
  border-bottom: 1px solid var(--mw-dark-border);
}

/* =========================================
   HERO SECTIONS
   ========================================= */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--mw-dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero.hero-sub { min-height: 400px; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/* Legacy .hero-bg div support */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 960px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--mw-cyan);
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
  margin: 0 0 16px;
  line-height: 1.1;
}
.hero .hero-date {
  font-family: var(--font-body);
  font-size: clamp(18px, 3vw, 24px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.hero .hero-tagline {
  color: var(--mw-magenta);
  font-family: var(--font-alt);
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto;
}

/* Hero logo (homepage prominent placement) */
.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.35));
}

/* Hero tilted photos */
.hero-photos {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.hero-photo.tilt-left { transform: rotate(-5deg) translateY(12px); }
.hero-photo.tilt-right { transform: rotate(3deg) translateY(8px); }
.hero-photo.tilt-slight { transform: rotate(-2deg) translateY(-5px); }

/* =========================================
   SECTION HEADINGS (3-layer pattern)
   ========================================= */
.section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
}
.section-heading .watermark {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  margin: 0;
}
.section-heading .subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--mw-text-muted);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-pink,
.btn-magenta {
  display: inline-block;
  background: var(--mw-pink);
  color: #fff;
  padding: 15px 35px;
  border-radius: var(--rounded-button);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-pink:hover,
.btn-magenta:hover {
  background: #D12D98;
  box-shadow: 0 8px 25px rgba(235, 31, 121, 0.3);
}
.btn-cyan {
  display: inline-block;
  background: var(--mw-cyan);
  color: var(--mw-dark);
  padding: 15px 35px;
  border-radius: var(--rounded-button);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cyan:hover {
  background: #00c4db;
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

/* =========================================
   COUNTDOWN
   ========================================= */
.countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.countdown-unit {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--mw-dark-border);
  border-radius: var(--rounded);
  padding: 20px 24px;
  min-width: 90px;
  text-align: center;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--mw-cyan);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 8px;
  display: block;
}
/* Legacy class support */
.countdown-box { display: inline-flex; flex-direction: column; align-items: center; min-width: 80px; }
.countdown-num { font-family: var(--font-display); font-size: 3rem; font-weight: 400; color: var(--mw-cyan); line-height: 1; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-section .about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.about-image {
  border-radius: var(--rounded);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
  transition: transform 0.5s;
}
.about-image:hover { transform: rotate(0deg); }
.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--mw-text);
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.video-section .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.video-play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mw-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 auto;
}
.video-play-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(235, 31, 121, 0.5);
}

/* Recap video — custom play button overlay */
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.video-play-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  transition: opacity 0.3s ease;
}
.video-play-btn:focus-visible {
  outline: 2px solid #00E5FF;
  outline-offset: 8px;
  border-radius: 12px;
}
.play-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF26AF, #00E5FF);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.3), 0 0 80px rgba(255, 38, 175, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-play-btn:hover .play-circle,
.video-play-btn:focus-visible .play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.5), 0 0 100px rgba(255, 38, 175, 0.3);
}
.play-circle svg {
  margin-left: 6px;
}
.video-iframe-container {
  display: none;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .video-play-btn { height: 220px; }
  .play-circle { width: 80px; height: 80px; }
  .play-circle svg { width: 24px; height: 28px; }
}

/* Wave separator */
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top svg { display: block; width: 100%; height: 60px; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(1.1);
  }
}
.gallery-item:nth-child(3n+1) { grid-row: span 2; }

/* Photo row (homepage preview) */
.photo-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.photo-row::-webkit-scrollbar { height: 4px; }
.photo-row::-webkit-scrollbar-track { background: transparent; }
.photo-row::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
.photo-row img {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
}
@media (hover: hover) {
  .photo-row img:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
  }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px 12px;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  user-select: none;
  padding: 20px 16px;
  background: none;
  border: none;
  z-index: 10000;
  line-height: 1;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
@media (max-width: 768px) {
  .lightbox-nav { font-size: 24px; padding: 16px 10px; opacity: 0.7; }
  .lightbox-close { top: 12px; right: 14px; font-size: 32px; }
}

/* =========================================
   SCHEDULE TABS
   ========================================= */
.tab-btn {
  background: transparent;
  color: var(--mw-text-muted);
  border: 1px solid #333;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--rounded-button);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { background: #1a1a1a; color: #fff; }
.tab-btn.active {
  background: var(--mw-pink);
  color: #fff;
  border-color: var(--mw-pink);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.schedule-item {
  background: var(--mw-dark-card);
  border: 1px solid var(--mw-dark-border);
  border-radius: var(--rounded);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s;
}
.schedule-item:hover { border-color: var(--mw-cyan); }
.schedule-time {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--mw-cyan);
  min-width: 80px;
}

/* =========================================
   SPONSORS
   ========================================= */
.sponsor-tier-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.sponsor-logo {
  background: var(--mw-dark-card);
  border: 1px solid var(--mw-dark-border);
  border-radius: var(--rounded);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}
.sponsor-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--mw-purple);
}
.sponsor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 8px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.testimonials-section .testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-quote-mark {
  font-size: 72px;
  color: var(--mw-pink);
  line-height: 0.5;
  font-family: Georgia, serif;
  opacity: 0.6;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #fff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-stars {
  color: var(--mw-pink);
  font-size: 20px;
  margin-bottom: 12px;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--mw-cyan);
  letter-spacing: 1px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--mw-pink); }

/* =========================================
   SUBSCRIBE FORM
   ========================================= */
.subscribe-section {
  background: var(--mw-dark-card);
}
.subscribe-section input[type="text"],
.subscribe-section input[type="email"] {
  background: var(--mw-dark-border);
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.3s;
}
.subscribe-section input:focus {
  outline: none;
  border-color: var(--mw-cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.15);
}
.subscribe-section input::placeholder { color: #555; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #080808;
}
footer a { transition: color 0.3s; }
footer a:hover { color: var(--mw-cyan); }
.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
}

/* =========================================
   ACCORDION
   ========================================= */
.accordion-item {
  background: var(--mw-dark-card);
  border: 1px solid var(--mw-dark-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-trigger {
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
.accordion-trigger:hover { background: rgba(255,255,255,0.03); }
.accordion-trigger .arrow {
  color: var(--mw-cyan);
  transition: transform 0.3s;
  font-size: 20px;
}
.accordion-item.open .accordion-trigger .arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.open .accordion-body { max-height: 2000px; }
.accordion-content {
  padding: 0 24px 24px;
  color: var(--mw-text);
  font-size: 16px;
  line-height: 1.7;
}

/* FAQ accordions — dark style (NOT white bg) */
.accordion-faq .accordion-trigger {
  background: transparent;
  color: #fff;
}
.accordion-faq .accordion-trigger:hover {
  background: rgba(255,255,255,0.03);
}
.accordion-faq .accordion-content {
  background: transparent;
  color: var(--mw-text);
}

/* Apply page colored accent bars */
.accordion-cyan .accordion-trigger {
  border-left: 4px solid var(--mw-cyan);
}
.accordion-magenta .accordion-trigger {
  border-left: 4px solid var(--mw-pink);
}

/* =========================================
   DIRECTION CARDS (Travel)
   ========================================= */
.direction-card {
  background: var(--mw-dark-card);
  border: 1px solid var(--mw-dark-border);
  border-radius: var(--rounded);
  padding: 24px;
  transition: border-color 0.3s;
}
.direction-card:hover { border-color: var(--mw-cyan); }

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-input {
  background: var(--mw-dark-border);
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}
.contact-input:focus {
  outline: none;
  border-color: var(--mw-cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.15);
}
.contact-input::placeholder { color: #555; }

/* =========================================
   APPLY FORMS
   ========================================= */
.apply-form { display: block; }
.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.apply-field { display: flex; flex-direction: column; }
.apply-field-full { grid-column: 1 / -1; }
.apply-field label {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: var(--font-heading, inherit);
}
.apply-field .req { color: var(--mw-cyan); margin-left: 2px; }
.apply-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.apply-input:focus {
  outline: none;
  border-color: var(--mw-cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.15);
}
.apply-input::placeholder { color: #555; }
textarea.apply-input { resize: vertical; min-height: 90px; }
select.apply-input { cursor: pointer; }
.apply-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apply-checks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.apply-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.apply-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--mw-cyan);
  cursor: pointer;
}
.apply-result.is-success { color: #4ade80; }
.apply-result.is-error { color: #f87171; }
@media (max-width: 640px) {
  .apply-grid { grid-template-columns: 1fr; }
  .apply-checks-grid { grid-template-columns: 1fr; }
}

/* =========================================
   BACK TO TOP
   ========================================= */
#back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--mw-purple);
}
#back-to-top:hover {
  background: #9000cc;
  box-shadow: 0 4px 15px rgba(178, 0, 254, 0.4);
}

/* =========================================
   EXISTING STOREFRONT OVERRIDES
   ========================================= */
.storefront-wrapper .btn-primary {
  background: var(--mw-pink);
  color: white;
  padding: 15px 35px;
  border-radius: var(--rounded-button);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.storefront-wrapper .btn-primary:hover { background: #D12D98; }
.storefront-wrapper .tier-card { border-radius: var(--rounded); }
.storefront-wrapper .tier-card:hover { border-color: var(--mw-purple); }
.storefront-wrapper .card { border-radius: var(--rounded); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .hero { min-height: 500px; background-attachment: scroll; }
  .hero.hero-sub { min-height: 300px; }
  .hero h1 { font-size: 32px; }
  .hero-logo { width: 140px; margin-bottom: 16px; }
  .header-logo img { height: 45px; }
  .footer-logo img { width: 80px; }
  .hero-photos { gap: 8px; }
  .hero-photo { width: 120px; height: 160px; }
  .section-heading h2 { font-size: 28px; }
  .section-heading .watermark { font-size: 60px; }
  .countdown-unit { padding: 14px 16px; min-width: 70px; }
  .countdown-number { font-size: 32px; }
  .nav-link { padding: 12px 20px; font-size: 13px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }
  .photo-row img { width: 220px; height: 160px; }
  .about-image { transform: none; }
}
@media (max-width: 480px) {
  .hero-photo { width: 90px; height: 120px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .countdown-unit { min-width: 60px; padding: 10px 12px; }
}
@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
