/* ===== RESPONSIVE ===== */
@media (max-width:980px) {
  nav.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--navy-deep);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 24px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    display: flex;
  }

  nav.main-nav.active {
    right: 0;
  }

  .btn-stall-drawer {
    display: block !important;
    background: var(--gold);
    color: #1a1304 !important;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(230, 185, 77, 0.3);
  }

  .btn-stall-drawer:hover {
    background: var(--gold-light) !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .btn-stall-nav {
    display: none !important;
  }

  /* Mobile Drawer Dropdown Styles */
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0 0 0;
    min-width: auto;
    margin-top: 0 !important;
    transform: none !important;
  }

  .dropdown-menu a {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #aab1cc !important;
    text-transform: uppercase !important;
    text-align: center;
    padding: 4px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 br {
    display: none;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 30px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    transform: none;
    margin-top: 30px;
    border-bottom: none;
  }

  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .edcea-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-col {
    border-right: none !important;
    border-bottom: none !important;
    padding: 30px 24px !important;
  }

  .info-col:last-child {
    border-bottom: none !important;
  }

  .cd-gallery-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .countdown-box {
    margin: 0 24px;
  }

  .gallery-box {
    padding: 0 24px;
  }

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

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

@media (max-width:600px) {
  .wrap {
    padding: 0 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-text .t1 {
    font-size: 13px;
  }

  .brand-text .t2 {
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem);
  }

  .hero-art {
    min-height: 280px;
  }

  .countdown-box {
    margin: 0 16px;
    padding: 24px 16px;
  }

  .gallery-box {
    padding: 0 16px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 20px !important;
  }

  .footer-grid>div:first-child {
    grid-column: span 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
  }

  .footer-grid>div:nth-child(2) {
    grid-column: span 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
  }

  .footer-grid>div:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
  }

  .footer-grid>div:nth-child(3) {
    grid-column: span 1;
  }

  .footer-grid>div:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width:480px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    border-bottom: none !important;
  }

  .stat-item {
    padding: 14px 10px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    gap: 10px !important;
  }

  .stat-item:nth-child(2n) {
    border-right: none !important;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none !important;
  }

  .stat-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }

  .stat-num {
    font-size: 19px !important;
  }

  .stat-label {
    font-size: 9px !important;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}