  :root {
    --ink: #000000;
    --warm: #0a0a0a;
    --surface: #111111;
    --gold: #FF6B00;
    --gold-light: #FF8533;
    --amber: #E66000;
    --cream: #ffffff;
    --muted: #888888;
    --soft: #222222;
    --bg-light: #FFFBF0; /* High-visibility soft cream */
    --text-dark: #1A1A1A;
  }

  *, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Remove custom cursor elements */
  .cursor, .cursor-ring { display: none !important; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
    transition: background 0.3s;
  }
  nav.scrolled, body:not(.index-page) nav { background: rgba(0,0,0,0.97); border-bottom: 1px solid rgba(255,107,0,0.15); }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-decoration: none;
  }
  .logo span { color: var(--gold); font-style: italic; }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none; transition: color 0.2s;
    font-weight: 400;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); padding: 8px 22px;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none; display: inline-block;
  }
  .nav-cta:hover { background: var(--gold); color: var(--ink); }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    z-index: 101;
    padding: 5px;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
  }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO SLIDER ── */
  .hero {
    height: 100vh; height: calc(var(--vh, 1vh) * 100);
    position: relative; overflow: hidden;
  }

  .slides-container { position: relative; height: 100%; }

  .slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .slide.active { opacity: 1; }

  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .slide-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.7) 100%);
  }

  .slide-1 .slide-bg {
    background-image: url('../assets/event/e1.jpg');
  }
  .slide-2 .slide-bg {
    background-image: url('../assets/gallery/gal7.jpg');
  }
  .slide-3 .slide-bg {
    background-image: url('../assets/gallery/gal1.jpg');
  }

  /* Spotlight SVG grid lines */
  .slide-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,107,0,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,107,0,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .slide-content {
    position: relative; z-index: 2;
    max-width: 800px; padding: 0 60px;
    animation: none;
  }
  .slide.active .slide-content { animation: slideIn 1s ease both 0.3s; }

  @keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .slide-tag {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .slide-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

  .slide-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 10vw, 88px);
    font-weight: 900; line-height: 1;
    margin-bottom: 22px;
    color: var(--cream);
  }
  .slide-headline em { font-style: italic; color: var(--gold); }

  .slide-sub {
    font-size: 16px; color: rgba(255,255,255,0.65);
    line-height: 1.6; max-width: 480px; margin-bottom: 36px;
    font-weight: 300;
  }

  .slide-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

  .btn-gold {
    background: var(--gold); color: var(--ink);
    padding: 13px 32px; font-size: 13px;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    transition: all 0.25s; display: inline-block;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.4); color: var(--cream);
    padding: 13px 32px; font-size: 13px;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 400; text-decoration: none;
    transition: all 0.25s; display: inline-block;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .slide-event-badge {
    position: absolute; right: 60px; bottom: 80px;
    background: rgba(255,107,0,0.12);
    border: 1px solid rgba(255,107,0,0.3);
    padding: 18px 24px;
    backdrop-filter: blur(10px);
    max-width: 220px;
  }
  .badge-date { font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
  .badge-month { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
  .badge-title { font-size: 13px; color: var(--cream); margin-top: 8px; font-weight: 400; }
  .badge-venue { font-size: 11px; color: var(--muted); margin-top: 4px; }

  /* Slider controls */
  .slider-dots {
    position: absolute; bottom: 36px; left: 60px;
    display: flex; gap: 8px; z-index: 10;
  }
  .dot {
    width: 24px; height: 12px; background: rgba(255,255,255,0.25);
    transition: all 0.3s;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    background-clip: content-box;
  }
  .dot.active { width: 48px; background: var(--gold); background-clip: content-box; }

  .slider-arrows {
    position: absolute; bottom: 28px; right: 60px;
    display: flex; gap: 12px; z-index: 10;
  }
  .arrow {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; font-size: 16px;
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  }
  .arrow:hover { border-color: var(--gold); color: var(--gold); }

  .subpage-header {
    margin-top: 80px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    background: #000 !important;
    border-bottom: 1px solid rgba(255,107,0,0.3) !important;
  }

  /* ── OWNER STRIP ── */
  .owner-strip {
    background: var(--warm);
    border-top: 1px solid rgba(255,107,0,0.2);
    border-bottom: 1px solid rgba(255,107,0,0.2);
    padding: 28px 60px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
  }

  .owner-profile { display: flex; align-items: center; gap: 18px; }

  .owner-avatar {
    width: 62px; height: 62px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700; color: var(--ink);
    flex-shrink: 0;
    border: 2px solid rgba(255,107,0,0.4);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .owner-avatar:hover,
  .owner-avatar:focus-visible {
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .owner-avatar span {
    display: none;
  }

  .owner-avatar-fallback span {
    display: inline;
  }

  .owner-info {}
  .owner-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
  .owner-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--cream); }
  .owner-role { font-size: 13px; color: var(--gold); margin-top: 2px; }

  .owner-details { display: flex; gap: 32px; flex-wrap: wrap; }
  .owner-detail { display: flex; align-items: center; gap: 10px; min-width: 0; }
  .detail-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,107,0,0.25);
    background: rgba(255,107,0,0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .detail-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
  }
  .detail-copy { min-width: 0; }
  .detail-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
  .detail-val { font-size: 14px; color: var(--cream); font-weight: 400; overflow-wrap: anywhere; }
  .detail-val a { color: var(--gold); text-decoration: none; }
  .detail-val a:hover { text-decoration: underline; }

  .owner-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,107,0,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); text-decoration: none; font-size: 18px;
    transition: all 0.2s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,107,0,0.08); }
  .social-btn svg { width: 16px; height: 16px; fill: currentColor; }

  /* WhatsApp floating */
  .whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 200;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: all 0.25s;
    animation: pulse-wa 2.5s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  }
  .whatsapp-float svg { width: 28px; height: 28px; fill: white; }
  .wa-tooltip {
    position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
    background: var(--warm); color: var(--cream);
    font-size: 12px; padding: 6px 12px; white-space: nowrap;
    border: 1px solid rgba(255,107,0,0.2);
    opacity: 0; transition: opacity 0.2s; pointer-events: none;
  }
  .whatsapp-float:hover .wa-tooltip { opacity: 1; }

  /* ── SECTION COMMONS ── */
  section { padding: 100px 60px; }

  .section-tag {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900; line-height: 1.05;
    margin-bottom: 16px;
    color: var(--cream);
  }
  .section-title em { font-style: italic; color: var(--gold); }

  .section-desc {
    font-size: 16px; color: var(--muted);
    max-width: 540px; line-height: 1.7; margin-bottom: 52px;
  }

  .home-intro-section {
    padding: 86px 5%;
    background: #f7f5ef;
    color: var(--text-dark);
  }

  .home-intro-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .home-intro-inner .section-tag {
    justify-content: center;
  }

  .home-intro-inner .section-title {
    color: var(--text-dark);
  }

  .home-intro-inner .section-desc {
    color: #575757;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-cta { margin-top: 20px; }

  /* ── ABOUT ── */
  #about { background: #f7f5ef; color: var(--text-dark); }
  #about .section-title { color: var(--text-dark); }
  #about .about-body { color: #444; }
  #about .feature-list li { color: var(--text-dark); }
  #about .about-frame { border-color: rgba(255,107,0,0.1); background: #eee; }
  #about .about-stat-float { background: #fff; border-color: rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
  #about .stat-label { color: #888; }
  body.about-page #about,
  .about-page-section { padding-top: 72px; }

  .about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(48px, 6vw, 80px);
    align-items: center;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }

  .about-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }
  .about-frame {
    aspect-ratio: 4/5;
    background: var(--warm);
    border: 1px solid rgba(255,107,0,0.15);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-frame-inner {
    width: 100%; height: 100%;
    background: url('../assets/event/e1.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    position: relative;
  }
  .about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
  }
  .about-frame-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
    z-index: 1;
    pointer-events: none;
  }
  .about-mic-icon {
    font-size: 80px; opacity: 1; filter: none;
    position: relative;
    z-index: 2;
  }
  .about-frame-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px; letter-spacing: 0.08em;
    color: var(--gold); opacity: 1; position: absolute;
    bottom: 20px; right: 20px; line-height: 1;
    text-align: right;
    z-index: 2;
  }
  .about-accent-box {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: rgba(255,107,0,0.06);
    border: 1px solid rgba(255,107,0,0.2);
  }
  .about-accent-box2 {
    position: absolute; top: -20px; left: -20px;
    width: 80px; height: 80px;
    border: 1px solid rgba(255,107,0,0.15);
  }
  .about-stat-float {
    position: absolute; bottom: 30px; left: -36px;
    background: rgba(0,0,0,0.9);
    border: 1px solid rgba(255,107,0,0.3);
    padding: 16px 20px;
    backdrop-filter: blur(10px);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px; color: var(--gold); line-height: 1;
  }
  .stat-label { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

  .about-text { min-width: 0; }
  .about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-style: italic;
    color: var(--gold); margin-bottom: 24px;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    line-height: 1.6;
  }

  .about-body { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 28px; max-width: 620px; }

  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--cream);
  }
  .feature-list li::before {
    content: '◆'; color: var(--gold); font-size: 8px;
    margin-top: 5px; flex-shrink: 0;
  }

  .stats-row { display: flex; gap: 36px; border-top: 1px solid rgba(255,107,0,0.15); padding-top: 28px; flex-wrap: wrap; }
  .stat-item {}
  .stat-big { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--gold); line-height: 1; }
  .stat-lbl { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

  /* ── EVENTS ── */
  #events {
    background: #f7f5ef;
    color: var(--text-dark);
  }

  #events .section-title { color: var(--text-dark); }
  #events .section-desc { color: #575757; }

  .events-page-section { padding-top: 140px; padding-bottom: 110px; }

  .events-header {
    max-width: 760px;
    margin: 0 auto 44px;
  }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .event-card {
    border: 1px solid rgba(26,26,26,0.08);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    transition: all 0.3s; overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .event-card:hover {
    border-color: rgba(255,107,0,0.28);
    box-shadow: 0 18px 44px rgba(0,0,0,0.1);
    transform: translateY(-4px);
  }

  .event-img {
    aspect-ratio: 16/9;
    background: var(--ink);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ec1 .event-img { background: linear-gradient(135deg, #111111 0%, #000000 100%); }
  .ec2 .event-img { background: linear-gradient(135deg, #111111 0%, #000000 100%); }
  .ec3 .event-img { background: linear-gradient(135deg, #111111 0%, #000000 100%); }
  .ec4 .event-img { background: linear-gradient(135deg, #111111 0%, #000000 100%); }
  .ec5 .event-img { background: linear-gradient(135deg, #111111 0%, #000000 100%); }
  .ec6 .event-img { background: linear-gradient(135deg, #111111 0%, #000000 100%); }

  .event-img-placeholder {
    font-size: 40px; opacity: 1;
  }

  .event-date-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(255,107,0,0.3);
    padding: 6px 12px; backdrop-filter: blur(8px);
  }
  .edt-d { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold); line-height: 1; }
  .edt-m { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

  .event-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
  .event-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
  .event-meta { font-size: 12px; color: #6f6f6f; display: flex; gap: 12px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
  .event-meta span { display: flex; align-items: center; gap: 4px; }
  .event-desc { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 16px; flex: 1; }

  .event-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; }
  .event-tag-badge {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border: 1px solid rgba(255,107,0,0.25);
    color: var(--gold);
    white-space: nowrap;
  }
  .event-tag-badge.is-past { border-color: rgba(26,26,26,0.14); color: #777; }
  .event-dl-btn {
    font-size: 11px; color: #575757;
    text-decoration: none; display: flex; align-items: center; gap: 5px;
    transition: color 0.2s; cursor: pointer;
    white-space: nowrap;
  }
  .event-dl-btn:hover { color: var(--gold); }

  /* ── GALLERY ── */
  #gallery {
    background: #f7f5ef;
    color: var(--text-dark);
  }

  #gallery .section-title { color: var(--text-dark); }

  .gallery-page-section { padding-top: 140px; padding-bottom: 110px; }

  #gallery .downloads-header,
  #gallery .gallery-filter,
  #gallery .gallery-grid,
  #gallery .gallery-cta {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-filter {
    display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
  }
  .filter-btn {
    padding: 7px 18px; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(26,26,26,0.14);
    color: #5d5d5d; background: rgba(255,255,255,0.7);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .filter-btn.active, .filter-btn:hover {
    border-color: var(--gold); color: var(--gold);
    background: rgba(255,107,0,0.06);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .gallery-item {
    position: relative; overflow: hidden;
    background: var(--warm);
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  }
  .gallery-item.span-2-2 { grid-column: span 2; grid-row: span 2; }
  .gallery-item.span-2 { grid-column: span 2; }

  .gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; opacity: 1;
  }
  .gi1 { background: linear-gradient(145deg, #111111, #000000); }
  .gi2 { background: linear-gradient(145deg, #111111, #000000); }
  .gi3 { background: linear-gradient(145deg, #111111, #000000); }
  .gi4 { background: linear-gradient(145deg, #111111, #000000); }
  .gi5 { background: linear-gradient(145deg, #111111, #000000); }
  .gi6 { background: linear-gradient(145deg, #111111, #000000); }
  .gi7 { background: linear-gradient(145deg, #111111, #000000); }
  .gi8 { background: linear-gradient(145deg, #111111, #000000); }
  .gi9 { background: linear-gradient(145deg, #111111, #000000); }

  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    opacity: 1; transition: opacity 0.3s;
    display: flex; align-items: flex-end;
    padding: 16px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-item:hover .gallery-img { transform: scale(1.06); }

  .go-label { font-size: 12px; color: var(--cream); line-height: 1.4; }
  .go-date { font-size: 10px; color: var(--gold); margin-top: 2px; }

  .gallery-cta { margin-top: 40px; text-align: center; }

  /* ── VIDEO ── */
  #videos {
    background: #f7f5ef;
    color: var(--text-dark);
  }

  #videos .section-title { color: var(--text-dark); }

  .videos-page-section { padding-top: 140px; padding-bottom: 110px; }

  .video-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .video-slider-wrap {
    position: relative;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
  }

  .video-track {
    display: flex; gap: 20px;
    transition: transform 0.5s ease;
  }

  .video-card {
    min-width: 300px; flex: 0 0 300px; position: relative;
    border: 1px solid rgba(26,26,26,0.08);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    text-decoration: none; display: block;
  }
  @media (max-width: 400px) {
    .video-card { min-width: 260px; flex: 0 0 260px; }
  }
  .video-card:hover {
    border-color: rgba(255,107,0,0.32);
    box-shadow: 0 18px 44px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }

  .video-thumb {
    aspect-ratio: 16/9;
    background: var(--surface);
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .vc1 .video-thumb { background: url('https://img.youtube.com/vi/ntHQeKs-b2w/mqdefault.jpg') center/cover; }
  .vc2 .video-thumb { background: url('https://img.youtube.com/vi/3jGvf32HCUQ/mqdefault.jpg') center/cover; }
  .vc3 .video-thumb { background: url('https://img.youtube.com/vi/l1ftghxn8_Y/mqdefault.jpg') center/cover; }
  .vc4 .video-thumb { background: url('https://img.youtube.com/vi/YnlNf5_akkM/mqdefault.jpg') center/cover; }
  .vc5 .video-thumb { background: url('https://img.youtube.com/vi/3QOiAU0bvco/mqdefault.jpg') center/cover; }
  .vc6 .video-thumb { background: url('https://img.youtube.com/vi/mkkh7hftN_o/mqdefault.jpg') center/cover; }
  .vc7 .video-thumb { background: url('https://img.youtube.com/vi/X61cdhEH-hY/mqdefault.jpg') center/cover; }
  .vc8 .video-thumb { background: url('https://img.youtube.com/vi/WXniaWUxbsw/mqdefault.jpg') center/cover; }
  .vc9 .video-thumb { background: url('https://img.youtube.com/vi/LmT8r8yfMMk/mqdefault.jpg') center/cover; }
  .vc10 .video-thumb { background: url('https://img.youtube.com/vi/xGxoTl75Zak/mqdefault.jpg') center/cover; }
  .vc11 .video-thumb { background: url('https://img.youtube.com/vi/cx46bT3wzG0/mqdefault.jpg') center/cover; }
  .vc12 .video-thumb { background: url('https://img.youtube.com/vi/CD6yyxDwLk4/mqdefault.jpg') center/cover; }
  .vc13 .video-thumb { background: url('https://img.youtube.com/vi/r9HsKF7e90s/mqdefault.jpg') center/cover; }
  .vc14 .video-thumb { background: url('https://img.youtube.com/vi/jLpqWxmNC5o/mqdefault.jpg') center/cover; }
  .vc15 .video-thumb { background: url('https://img.youtube.com/vi/hkXrSqmvJW4/mqdefault.jpg') center/cover; }

  .play-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,107,0,0.15);
    border: 2px solid rgba(255,107,0,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
  }
  .video-card:hover .play-btn { background: var(--gold); border-color: var(--gold); }
  .play-icon {
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid rgba(255,255,255,0.8);
    margin-left: 4px;
  }
  .video-card:hover .play-icon { border-left-color: var(--ink); }

  .video-duration {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.8); color: var(--cream);
    font-size: 11px; padding: 3px 7px;
    backdrop-filter: blur(4px);
  }

  .video-info { padding: 16px; }
  .video-title { font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 5px; }
  .video-meta { font-size: 12px; color: #747474; display: flex; justify-content: space-between; gap: 14px; }

  .video-nav { display: flex; gap: 8px; margin-bottom: 24px; justify-content: flex-end; }

  #videos .arrow {
    background: #fff;
    color: var(--text-dark);
    border-color: rgba(26,26,26,0.12);
  }

  #videos .arrow:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  #videos .btn-outline {
    border-color: rgba(26,26,26,0.18);
    color: var(--text-dark);
  }

  .video-cta {
    text-align: center;
    margin-top: 36px;
  }

  /* ── DOWNLOADS ── */
  #downloads { background: #f7f5ef; color: var(--text-dark); }
  #downloads .section-title { color: var(--text-dark); }
  #downloads .section-tag { color: var(--gold); }
  #downloads .section-tag::before { background: var(--gold); }
  #downloads .section-desc { color: #555; }

  .downloads-page-section { padding-top: 140px; padding-bottom: 110px; }

  .downloads-header {
    display: flex; align-items: flex-end;
    justify-content: space-between; margin-bottom: 40px;
    flex-wrap: wrap; gap: 20px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .downloads-desc { margin-bottom: 0; }

  .dl-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .dl-event-row {
    display: flex; align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    padding: 18px 24px; gap: 24px;
    transition: border-color 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  }
  #downloads .dl-event-row:hover { border-color: var(--gold); background: #fff; }

  .dl-date-col {
    min-width: 80px;
    border-right: 1px solid rgba(0,0,0,0.08);
    padding-right: 20px; text-align: center;
  }
  .dl-day { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--gold); line-height: 1; }
  .dl-mon { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #888; }
  .dl-yr { font-size: 11px; color: #888; }

  .dl-event-info { flex: 1; }
  .dl-event-name { font-size: 16px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }
  .dl-event-sub { font-size: 12px; color: #777; }

  .dl-counts { display: flex; gap: 20px; }
  .dl-count { text-align: center; }
  .dl-count-num { font-size: 18px; font-weight: 500; color: var(--text-dark); }
  .dl-count-label { font-size: 10px; color: #999; letter-spacing: 0.1em; text-transform: uppercase; }

  .dl-actions { display: flex; gap: 8px; }
  .dl-btn {
    padding: 8px 16px; font-size: 12px;
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none; transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
  }
  .dl-btn-photo {
    background: var(--gold); color: #fff;
    border: 1px solid var(--gold);
  }
  .dl-btn-photo:hover { background: var(--amber); }
  .dl-btn-video {
    background: transparent; color: var(--gold);
    border: 1px solid var(--gold);
  }
  .dl-btn-video:hover { background: rgba(255,107,0,0.05); }

  /* ── FOOTER ── */
  footer {
    background: var(--surface);
    border-top: 1px solid rgba(255,107,0,0.15);
    padding: 60px 60px 30px;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
  }

  .footer-brand {}
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 900;
    color: var(--cream); margin-bottom: 14px;
  }
  .footer-logo span { color: var(--gold); font-style: italic; }

  .footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }

  .footer-social { display: flex; gap: 8px; }

  .footer-col-title {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--cream); }

  .footer-contact { display: flex; flex-direction: column; gap: 12px; }
  .fc-item { display: flex; align-items: flex-start; gap: 10px; }
  .fc-icon { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
  .fc-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .fc-text a { color: var(--muted); text-decoration: none; }
  .fc-text a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid rgba(255,107,0,0.1);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-size: 12px; color: var(--muted); }
  .footer-copy span { color: var(--gold); }

  .footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 12px; font-style: italic;
    color: rgba(255,107,0,0.4);
  }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.2, 0, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: opacity, transform;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 12px 16px; }
    .logo { font-size: 19px; }
    .nav-cta { padding: 6px 14px; font-size: 11px; }
    .menu-toggle { display: flex; }
    .nav-links {
      position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
      background: rgba(0,0,0,0.98); flex-direction: column; align-items: center;
      justify-content: center; gap: 32px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 99; border-left: 1px solid rgba(255,107,0,0.2);
      display: flex; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    }
    .nav-links.active { right: 0; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
    .nav-links a { font-size: 20px; font-weight: 500; color: var(--cream); }
    
    section { padding: 60px 16px; }
    .subpage-header { margin-top: 60px; padding: 24px 16px !important; }
    .owner-strip { flex-direction: column; align-items: flex-start; gap: 24px; }
    .owner-details { gap: 16px; }
    .hero .slide-content { padding: 0 16px; }
    .slide-event-badge { display: none; }
    .slider-dots { left: 24px; }
    .slider-arrows { right: 24px; }
    body.about-page #about,
    .about-page-section { padding-top: 48px; }
    .events-page-section { padding-top: 96px; padding-bottom: 72px; }
    .gallery-page-section,
    .videos-page-section,
    .downloads-page-section { padding-top: 96px; padding-bottom: 72px; }
    .home-intro-section { padding: 64px 16px; }
    .events-header { margin-bottom: 32px; }
    .events-grid { max-width: 640px; }
    .video-page-header,
    .downloads-header { margin-bottom: 32px; }
    .video-slider-wrap { overflow-x: auto; scrollbar-width: none; }
    .video-slider-wrap::-webkit-scrollbar { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; max-width: 640px; }
    .about-visual { max-width: 560px; margin: 0 auto; }
    .about-frame { aspect-ratio: 16/11; }
    .about-stat-float { left: 14px; bottom: 14px; padding: 10px 14px; }
    .stat-num { font-size: 32px; }
    .stat-label { font-size: 10px; }
    .about-frame-label { font-size: clamp(34px, 8vw, 48px); bottom: 12px; right: 12px; }
    .about-accent-box { width: 80px; height: 80px; bottom: -10px; right: -10px; }
    .about-accent-box2 { width: 60px; height: 60px; top: -10px; left: -10px; }
    .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; }
    .stat-big { font-size: 28px; }
    .events-grid { grid-template-columns: 1fr; gap: 18px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .gallery-item.span-2-2, .gallery-item.span-2 { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
    footer { padding: 48px 16px 24px; }
    .footer-brand { grid-column: span 2; align-items: flex-start; text-align: left; }
    .footer-social { justify-content: flex-start; }
    .footer-contact, .fc-item { align-items: flex-start; text-align: left; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 10px; }
    .footer-tagline { margin-top: 8px; }
    .dl-event-row { flex-wrap: wrap; }
    .dl-counts { display: none; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .slider-dots { bottom: 24px; left: 16px; }
    .slider-arrows { bottom: 16px; right: 16px; }
  }

  @media (max-width: 500px) {
    body.about-page #about,
    .about-page-section { padding-top: 40px; padding-bottom: 52px; }
    .section-title { font-size: 28px; }
    .about-grid { gap: 32px; }
    .about-frame { aspect-ratio: 4/3; }
    .about-stat-float { position: relative; left: auto; bottom: auto; margin-top: 12px; display: inline-block; }
    .about-accent-box,
    .about-accent-box2 { display: none; }
    .about-frame-label { font-size: 30px; bottom: 10px; right: 10px; }
    .about-tagline { font-size: 14px; }
    .about-body { font-size: 14px; line-height: 1.7; }
    .feature-list { gap: 12px; margin-bottom: 28px; }
    .feature-list li { font-size: 13px; line-height: 1.55; }
    .stats-row { grid-template-columns: 1fr; gap: 16px; }
    .events-page-section { padding-top: 84px; padding-bottom: 56px; }
    .gallery-page-section,
    .videos-page-section,
    .downloads-page-section { padding-top: 84px; padding-bottom: 56px; }
    .home-intro-section { padding: 56px 16px; }
    .events-header { margin-bottom: 24px; }
    .gallery-filter { gap: 6px; margin-bottom: 24px; }
    .filter-btn { padding: 7px 12px; font-size: 10px; }
    .video-page-header { align-items: flex-start; margin-bottom: 24px; }
    .video-nav { display: none; }
    .video-slider-wrap { overflow: visible; }
    .video-track {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      transform: none !important;
    }
    .video-card { min-width: 0; width: 100%; flex: initial; }
    .video-meta { flex-direction: column; gap: 2px; }
    .downloads-header { margin-bottom: 24px; }
    .dl-event-row { align-items: flex-start; gap: 14px; padding: 16px; }
    .dl-date-col { min-width: 64px; padding-right: 14px; }
    .dl-event-info { min-width: 0; flex: 1 1 180px; }
    .dl-actions { width: 100%; }
    .dl-btn { flex: 1; justify-content: center; padding: 9px 10px; }
    .event-body { padding: 16px; }
    .event-title { font-size: 16px; }
    .event-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
    .event-footer { align-items: stretch; }
    .owner-details {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      width: 100%;
      gap: 10px;
      overflow: visible;
      padding-bottom: 0;
    }
    .owner-detail {
      width: 100%;
      min-width: 0;
      align-items: flex-start;
      border: 1px solid rgba(255,107,0,0.14);
      padding: 10px;
      gap: 8px;
      background: rgba(255,107,0,0.04);
    }
    .owner-detail:nth-child(2) { grid-column: 1 / -1; }
    .owner-detail:nth-child(3) { grid-column: 2; grid-row: 1; }
    .detail-icon { width: 30px; height: 30px; }
    .detail-icon svg { width: 14px; height: 14px; }
    .detail-copy {
      display: block;
      min-width: 0;
      white-space: normal;
    }
    .detail-label {
      margin-bottom: 3px;
      font-size: 9px;
      letter-spacing: 0.12em;
    }
    .detail-val {
      min-width: 0;
      font-size: 13px;
      line-height: 1.35;
      white-space: normal;
      overflow-wrap: anywhere;
    }
    .gallery-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 360px) {
    .owner-details { grid-template-columns: 1fr; }
    .owner-detail:nth-child(2),
    .owner-detail:nth-child(3) {
      grid-column: auto;
      grid-row: auto;
    }
  }
