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

    :root {
      --saffron:       #FF7722;
      --saffron-dk:    #E85A0C;
      --saffron-lt:    #FF9A4D;
      --saffron-pale:  #FFF3E0;
      --saffron-bg:    #FFF8EE;
      --gold:          #D4AF37;
      --gold-dk:       #B8941F;
      --gold-lt:       #F0D878;
      --maroon:        #8B1A00;
      --maroon-dk:     #5C0F00;
      --text-dark:     #3E2201;
      --text-mid:      #6B4C2A;
      --shadow:        rgba(139,26,0,0.15);
      --radius-lg:     16px;
      --radius-xl:     20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--saffron-bg);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

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

    /* ─── Utility ──────────────────────────────────────── */
    .section-title {
      font-family: 'Cinzel', serif;
      color: var(--maroon);
      font-size: clamp(1.3rem, 3vw, 1.9rem);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 14px;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 80px; height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      border-radius: 2px;
    }

    /* ─── Header Banner ────────────────────────────────── */


.site-header {
    width: 100%;
    overflow: hidden;
}

.site-header img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
 
/*.site-header {
    width: 100%;
    aspect-ratio: 5 / 2;
    overflow: hidden;
    background: #000;
}

.site-header video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}*/

    /* ─── Navigation ───────────────────────────────────── */
    nav {
      background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dk) 100%);
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 3px 12px rgba(0,0,0,0.35);
    }
    .nav-wrap {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }
    .nav-logo {
      color: var(--gold-lt);
      font-family: 'Cinzel', serif;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 13px 0;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    .nav-links {
      display: flex;
      gap: 2px;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      padding: 15px 20px;
      display: block;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.25s, background 0.25s, border-color 0.25s;
      border-bottom: 3px solid transparent;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-lt);
      border-bottom-color: var(--gold);
      background: rgba(255,255,255,0.07);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      padding: 14px 0;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: white;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ─── Page Sections ─────────────────────────────────── */
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* ═══════════════════════════════════════════════════
       HOME
    ═══════════════════════════════════════════════════ */

    /* Intro */
    .intro-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 52px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }
    .intro-left h2 {
      font-family: 'Cinzel', serif;
      color: var(--maroon);
      font-size: clamp(1.2rem, 2.8vw, 1.85rem);
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .intro-left p {
      color: var(--text-mid);
      font-size: 0.94rem;
      line-height: 1.85;
      margin-bottom: 18px;
    }

    .address-box {
      background: #fff;
      border: 2px solid var(--gold);
      border-radius: 12px;
      padding: 18px 22px;
      margin-bottom: 22px;
      box-shadow: 0 4px 18px var(--shadow);
    }
    .address-box h4 {
      color: var(--saffron-dk);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 8px;
      font-weight: 600;
    }
    .address-box address {
      font-style: normal;
      color: var(--text-dark);
      line-height: 1.75;
      font-size: 0.91rem;
    }

    .maps-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dk) 100%);
      color: white;
      text-decoration: none;
      padding: 12px 26px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.88rem;
      box-shadow: 0 4px 16px rgba(232,90,12,0.4);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .maps-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 7px 22px rgba(232,90,12,0.5);
    }

    .intro-right {
      position: relative;
    }
    .intro-right::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 2px dashed var(--gold);
      border-radius: calc(var(--radius-lg) + 10px);
      opacity: 0.5;
      pointer-events: none;
    }
    .intro-right img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      object-position: center 20%;
      border-radius: var(--radius-lg);
      box-shadow: 0 10px 35px var(--shadow);
      border: 3px solid var(--gold);
    }

    /* News Ticker */
    .news-bar {
      background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dk) 100%);
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }
    .news-label {
      background: var(--gold);
      color: var(--maroon);
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 13px 18px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .ticker-wrap {
      flex: 1;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .ticker {
      display: flex;
      white-space: nowrap;
      animation: scroll-ticker 55s linear infinite;
    }
    .ticker:hover { animation-play-state: paused; }
    .ticker-item {
      color: rgba(255,255,255,0.92);
      padding: 13px 45px 13px 0;
      font-size: 0.87rem;
      cursor: pointer;
      transition: color 0.2s;
    }
    .ticker-item:hover { color: var(--gold-lt); }
    .ticker-sep {
      color: var(--gold);
      padding-right: 45px;
      font-size: 0.6rem;
      line-height: 43px;
    }
    @keyframes scroll-ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Announcement */
    .announce-wrap {
      max-width: 1200px;
      margin: 46px auto;
      padding: 0 24px;
    }
.announce-box {
    background: linear-gradient(135deg, #fff8ee 0%, #fff0cc 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
    .announce-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
    }
    .announce-box::after {
      content: '';
      position: absolute;
      right: -60px; top: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .announce-icon {
      font-size: 4rem;
      flex-shrink: 0;
      animation: gentle-pulse 2.5s ease-in-out infinite;
      filter: drop-shadow(0 2px 6px rgba(212,175,55,0.4));
    }
    @keyframes gentle-pulse {
      0%, 100% { transform: scale(1); }
      50%       { transform: scale(1.08); }
    }
    .announce-body .badge {
      display: inline-block;
      background: var(--saffron);
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    .announce-body h3 {
      font-family: 'Cinzel', serif;
      color: var(--maroon);
      font-size: clamp(1rem, 2.5vw, 1.45rem);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .announce-body p {
      color: var(--text-dark);
      font-size: clamp(0.87rem, 1.8vw, 0.97rem);
      line-height: 1.7;
    }
    .announcement-row {
/*    display: flex;*/
    gap: 24px;
    margin: 40px 0;
    align-items: stretch;
}

.announcement-row .announce-wrap {
    flex: 1;
    display: flex;
}

.announcement-row .announce-box {
    flex: 1;
    display: flex;
    height: 100%;
}

.announcement-row {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    align-items: stretch;
}

.announcement-row .announce-wrap {
    flex: 1;
    display: flex;
}

.announcement-row .announce-box {
    flex: 1;
}
    /* Map */
    .map-wrap {
      max-width: 1200px;
      margin: 0 auto 56px;
      padding: 0 24px;
    }
    .map-frame {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 8px 30px var(--shadow);
      border: 3px solid var(--gold);
      height: 360px;
    }
    .map-frame iframe {
      width: 100%; height: 100%;
      border: none; display: block;
    }

    /* ═══════════════════════════════════════════════════
       DONATE
    ═══════════════════════════════════════════════════ */
    .donate-wrap {
      max-width: 580px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }
    .donate-card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 50px 40px;
      box-shadow: 0 14px 48px var(--shadow);
      border: 2px solid var(--gold);
      position: relative;
      overflow: hidden;
    }
    .donate-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-dk));
    }
    .donate-symbol { font-size: 3.2rem; margin-bottom: 12px; }
    .donate-title {
      font-family: 'Cinzel', serif;
      color: var(--maroon);
      font-size: 1.9rem;
      margin-bottom: 6px;
    }
    .donate-sub {
      color: var(--text-mid);
      font-size: 0.92rem;
      margin-bottom: 32px;
    }
    .qr-frame {
      display: inline-block;
      padding: 14px;
      background: white;
      border: 3px solid var(--gold);
      border-radius: var(--radius-lg);
      box-shadow: 0 6px 22px rgba(212,175,55,0.3);
      margin-bottom: 28px;
    }
    .qr-frame img {
      width: 400px;
      height: 400px;
      object-fit: contain;
    }
    .donate-note {
      background: var(--saffron-pale);
      border-left: 4px solid var(--saffron);
      border-radius: 0 10px 10px 0;
      padding: 16px 20px;
      color: var(--text-dark);
      font-size: 0.9rem;
      line-height: 1.7;
      text-align: left;
    }

    /* ═══════════════════════════════════════════════════
       GALLERY
    ═══════════════════════════════════════════════════ */
    .gallery-wrap {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 24px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .gallery-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid var(--gold);
      aspect-ratio: 4/3;
      box-shadow: 0 4px 16px var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 28px rgba(139,26,0,0.28);
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }

    .g-overlay {
      position: absolute;
      inset: 0;
      background: rgba(90,10,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .g-overlay { opacity: 1; }
    .g-overlay .zoom-icon {
      color: white;
      font-size: 2.2rem;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    }

    .g-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.72));
      color: white;
      padding: 30px 14px 12px;
      font-size: 0.84rem;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    .gallery-item:hover .g-caption { transform: translateY(0); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.94);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .lightbox.open { display: flex; }
    .lb-inner {
      position: relative;
      max-width: 92vw;
      max-height: 92vh;
    }
    .lb-inner img {
      max-width: 100%;
      max-height: 88vh;
      border-radius: 8px;
      border: 3px solid var(--gold);
      box-shadow: 0 0 50px rgba(212,175,55,0.3);
    }
    .lb-close {
      position: absolute;
      top: -44px; right: 0;
      background: none;
      border: none;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
      padding: 4px;
    }
    .lb-close:hover { color: var(--gold-lt); }
    .lb-caption {
      text-align: center;
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      margin-top: 10px;
    }

    /* ═══════════════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════════════ */
    .about-wrap {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 24px;
    }
    .about-card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 50px;
      box-shadow: 0 10px 36px var(--shadow);
      border: 2px solid var(--gold);
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-dk));
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
    .about-hero {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 8px;
    }
    .about-hero .icon { font-size: 3.5rem; flex-shrink: 0; }
    .about-hero h2 {
      font-family: 'Cinzel', serif;
      color: var(--maroon);
      font-size: clamp(1.1rem, 2.8vw, 1.6rem);
      line-height: 1.3;
    }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      border-radius: 2px;
      margin: 24px 0;
    }
    .about-text p {
      color: var(--text-mid);
      line-height: 1.9;
      font-size: 0.95rem;
      margin-bottom: 18px;
    }
    .about-text p strong { color: var(--text-dark); }

    .highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 18px;
      margin-top: 30px;
    }
    .hi-card {
      text-align: center;
      padding: 22px 16px;
      background: var(--saffron-pale);
      border-radius: 12px;
      border: 1px solid rgba(212,175,55,0.5);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .hi-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 18px var(--shadow);
    }
    .hi-card .hi-icon { font-size: 2rem; margin-bottom: 8px; }
    .hi-card h4 { color: var(--maroon); font-size: 0.92rem; margin-bottom: 5px; }
    .hi-card p { color: var(--text-mid); font-size: 0.8rem; line-height: 1.5; }

    /* ─── Footer ────────────────────────────────────────── */
    footer {
      background: linear-gradient(135deg, var(--maroon) 0%, #3E0A00 100%);
      color: white;
      padding: 44px 24px 22px;
    }
    .footer-om {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 30px;
      opacity: 0.55;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 28px;
    }
    .footer-col h4 {
      color: var(--gold-lt);
      font-family: 'Cinzel', serif;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }
    .footer-col p, .footer-col address {
      font-style: normal;
      color: rgba(255,255,255,0.65);
      line-height: 1.85;
      font-size: 0.84rem;
    }
    .footer-col a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
      display: block;
    }
    .footer-col a:hover { color: var(--gold-lt); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 18px;
      text-align: center;
      color: rgba(255,255,255,0.42);
      font-size: 0.8rem;
      line-height: 1.8;
    }

    /* ─── Responsive ────────────────────────────────────── */
    @media (max-width: 800px) {
      .site-header { height: 260px; }

      .hamburger { display: flex; }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--maroon-dk);
        box-shadow: 0 6px 18px rgba(0,0,0,0.35);
        gap: 0;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        padding: 14px 22px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-bottom-width: 1px !important;
        border-left: none !important;
      }
      .nav-links a.active,
      .nav-links a:hover {
        border-left: 4px solid var(--gold) !important;
        background: rgba(255,255,255,0.06);
        color: var(--gold-lt);
      }

      .intro-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 18px;
      }
      .intro-right { order: -1; }
      .intro-right img { height: 240px; }
      .intro-right::before { display: none; }

      .announce-box {
        flex-direction: column;
/*        text-align: center;*/
        padding: 26px 22px;
        gap: 16px;
      }

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

      .about-card { padding: 30px 22px; }
      .about-hero { flex-direction: column; text-align: center; }

      .donate-card { padding: 36px 22px; }
    }

    @media (max-width: 480px) {
      .site-header { height: 200px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .qr-frame img { width: 190px; height: 190px; }
      .ticker-item { font-size: 0.82rem; }
    }