/* ===== CSS Variables ===== */
    :root {
      --bg:           #fffdf7;
      --text:         #1a1410;
      --surface:      #fff8ed;
      --surface-hover:#f2ebdc;
      --border:       #1a141026;
      --border-col:   #1a141026;
      --brand:        #e1a200;
      --brand-hover:  #a38755;
      --brand-light:  #d6bd8a;
      --brand-text:   #fffdf7;
      --color-brand: var(--brand);
      --color-black: #000;
      --color-white: #fff;
    }

    * { 
      box-sizing: border-box; 
      font-family: DM Sans, sans-serif;
    }
    

    body {
      font-family: 'Inter', sans-serif;
      
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    .font-display { font-family: 'Playfair Display', serif; }

    /* ===== Live badge ===== */
    .live-badge {
          display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(233 178 1 / 21%);
    border: 1.5px solid rgb(208 184 106);
    color: #fff;
    font-size: 1.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    }
    .live-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      /* background: #e74c3c; */
      background: #f4c702;
      flex-shrink: 0;
      animation: pulse-live 1.5s ease-in-out infinite;
    }
    @keyframes pulse-live {
      0%,100% { box-shadow: 0 0 0 0 rgba(244,199,2,0.7); }
      50%      { box-shadow: 0 0 0 6px rgba(244,199,2,0); }
    }

    /* ===== Watch Now button ===== */
    .btn-watch-now {
      background: transparent;
      border: 2px solid #e74c3c;
      color: #fff;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 999px;
      padding: 0.65rem 1.4rem;
      transition: background 0.25s, color 0.25s, transform 0.2s;
    }
    .btn-watch-now:hover {
      background: #e74c3c;
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-watch-now:active { transform: scale(0.97); }
    .watch-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e74c3c;
      animation: pulse-live 1.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    /* Watch modal submit button */
    .watch-submit-btn {
      background: #e74c3c !important;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .watch-submit-btn:hover { background: #c0392b !important; }

/* Gold gradient text */
    .gold-text {
      background: linear-gradient(135deg, #e1a200 0%, #f5ca00 45%, #e1a200 75%, #7a5f1a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ===== Navbar ===== */
    #mainNav {
      background: transparent;
      transition: background 0.35s, padding 0.35s;
      padding: 1.25rem 0;
    }
    #mainNav.scrolled {
      background: rgba(5,5,5,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0.6rem 0;
    }
    .nav-link-custom {
      color: #fff !important;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-decoration: none;
      padding: 0.25rem 0;
      text-shadow: 0 2px 8px rgba(0,0,0,0.8);
      position: relative;
      transition: color 0.2s;
    }
    .nav-link-custom:hover,
    .nav-link-custom.active { color: var(--brand) !important; }
    .nav-link-custom.active::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -4px;
      height: 2px;
      background: var(--brand);
    }
    .nav-icon-btn {
      width: 1.6rem; height: 1.6rem;
      border-radius: 4px;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(225,162,0,0.3);
      display: inline-flex; align-items: center; justify-content: center;
      color: #000 !important;
      text-decoration: none;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-icon-btn:hover { background: var(--brand); transform: scale(1.1); }
    .nav-icon-btn svg { width: 14px; height: 14px; stroke: #000; flex-shrink: 0; }
    .nav-icon-btn:hover svg { stroke: #000; }
    /* Give Now: rounded-sm square pill matching original */
    .btn-give-now {
      padding: 0.2rem 0.65rem;
      border-radius: 4px;
      background: var(--brand);
      border: 1px solid rgba(225,162,0,0.3);
      color: #000 !important;
      font-size: 0.72rem;
      font-weight: 900;
      display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem;
      transition: background 0.2s, transform 0.2s;
      cursor: pointer; white-space: nowrap;
    }
    .btn-give-now:hover { background: var(--brand-hover); transform: scale(1.07); }

    .bg-brand{
        background-color: var(--color-brand);
    }

    /* ===== Buttons ===== */
    /* .btn-brand {
      background: var(--brand);
      color: #000 !important;
      font-weight: 700;
      border-radius: 50px;
      padding: 0.55rem 1.4rem;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 1px solid rgba(225,162,0,0.3);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    } */

    .btn-brand {
      background: #020d8d;
      color: #fffdf7 !important;
      font-weight: 500;
      border-radius: 50px;
      padding: 0.55rem 1.4rem;
      font-size: 0.6rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 1px solid rgba(225, 162, 0, 0.3);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }

    .btn-brand:hover {
      background: var(--brand-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(225,162,0,0.45);
    }
    .btn-outline-brand {
      background: transparent;
      color: var(--brand) !important;
      font-weight: 700;
      border-radius: 50px;
      padding: 0.55rem 1.4rem;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 2px solid var(--brand);
      transition: background 0.2s, transform 0.2s;
    }
    .btn-outline-brand:hover { background: rgba(225,162,0,0.1); transform: translateY(-2px); }
    .btn-ghost-white {
      background: rgba(255,255,255,0.1);
      color: #fff !important;
      font-weight: 700;
      border-radius: 50px;
      padding: 0.55rem 1.4rem;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 2px solid var(--brand);
      transition: background 0.2s, transform 0.2s;
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

    /* ===== Section Label ===== */
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
    }

    /* ===== Hero ===== */
    #home {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding-top: 5rem;
      overflow: hidden;
      background: #050505;
      color: #fff;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    /* Slider */
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.4s ease-in-out;
    }
    .hero-slide.active {
      opacity: 1;
    }
    .hero-slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 35%;
    }
    /* Slide indicator dots */
    .hero-slider-dots {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 0.5rem;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .hero-dot.active {
      background: var(--brand);
      transform: scale(1.35);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, #050505 100%);
      z-index: 1;
    }
    .hero-overlay-side {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 65%);
      z-index: 1;
    }
    .hero-content { position: relative; z-index: 2; }

    .hero-eyebrow {
      display: block;
      font-size: clamp(1.4rem, 4vw, 3.5rem);
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #fff;
    }
    .hero-title {
      display: block;
      font-size: clamp(2.8rem, 9vw, 7rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.95;
    }
    .hero-tagline {
      display: block;
      font-size: clamp(1rem, 2.5vw, 1.75rem);
      font-weight: 500;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.9);
      margin-top: 0.5rem;
    }
    .hero-infobox {
      border-left: 3px solid rgba(225,162,0,0.6);
      padding: 0.25rem 0 0.25rem 1.25rem;
      margin-bottom: 1.75rem;
      position: relative;
    }
    .hero-infobox::before {
      content: '';
      position: absolute;
      inset: -6px -12px;
      background: linear-gradient(to right, rgba(225,162,0,0.1), transparent);
      filter: blur(20px);
      pointer-events: none;
    }
    .hero-date {
      display: block;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
    }
    .hero-desc {
      color: rgba(255,255,255,0.9);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
    }

    /* Countdown */
    .countdown-wrap {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .countdown-unit { display: flex; flex-direction: column; align-items: center; }
    .countdown-num {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 500;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.375rem;
      text-shadow: 0 0 12px rgba(255,255,255,0.8);
    }
    .countdown-lbl {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }
    .countdown-colon {
      color: rgba(225,162,0,0.5);
      font-size: 1.5rem;
      font-weight: 300;
      margin-top: -1rem;
    }

    /* ===== Sections ===== */
    section { scroll-margin-top: 80px; }

    #about       { background: var(--bg);      padding: 7rem 0; }
    #rhapsody    { background: var(--surface);  padding: 7rem 0; }
    #sessions    { background: var(--bg);       padding: 7rem 0; }
    #conviction  { background: var(--surface);  padding: 7rem 0; }
    #media       { background: var(--surface);  padding: 7rem 0; border-top: 1px solid var(--border-col); }
    #impact      { background: var(--bg);       padding: 7rem 0; }
    #testimonials{ background: var(--bg);       padding: 7rem 0; }
    #pledge      { background: var(--surface);  padding: 7rem 0; }

    /* About image */
    .about-img-wrap {
      border-radius: 2rem;
      overflow: hidden;
      position: relative;
      box-shadow: 0 40px 80px rgba(225,162,0,0.12);
      aspect-ratio: 4/5;
    }
    .about-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 1.2s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.05); }
    .play-btn-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .play-btn-circle {
      width: 5.5rem; height: 5.5rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.5);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.3s, background 0.3s;
      cursor: pointer;
    }
    .play-btn-circle:hover { transform: scale(1.1); background: rgba(255,255,255,0.38); }
    .play-btn-circle i { color: var(--brand); font-size: 2.2rem; margin-left: 0.3rem; }

    /* ===== VIDEO MODAL ===== */
    .video-modal-backdrop {
      position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,0.88);
      display: flex; align-items: center; justify-content: center;
      padding: 1rem;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .video-modal-backdrop.open {
      opacity: 1; pointer-events: all;
    }
    .video-modal-container {
      position: relative;
      width: 100%; max-width: 900px;
      background: #000;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.7);
      transform: scale(0.92) translateY(24px);
      transition: transform 0.35s cubic-bezier(0.34,1.28,0.64,1);
    }
    .video-modal-backdrop.open .video-modal-container {
      transform: scale(1) translateY(0);
    }
    .video-modal-container video {
      width: 100%; display: block;
      max-height: 80vh;
      background: #000;
    }
    .video-modal-close {
      position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10;
      width: 2.2rem; height: 2.2rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      backdrop-filter: blur(6px);
    }
    .video-modal-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }
    .video-modal-close svg { pointer-events: none; }

    /* Image stacks */
    .img-stack { position: relative; height: 60vh; min-height: 480px; }
    .img-stack .stack-main {
      position: absolute; right: 0; top: 0;
      width: 80%; height: 80%;
      border-radius: 1.5rem; overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }
    .img-stack .stack-accent {
      position: absolute; left: 0; bottom: 0;
      width: 60%; height: 55%;
      border-radius: 1.5rem; overflow: hidden;
      box-shadow: 0 30px 60px rgba(61,53,40,0.25);
      border: 8px solid var(--bg);
      z-index: 10;
    }
    .img-stack img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
    .img-stack img:hover { transform: scale(1.05); }
    .stack-badge {
      position: absolute; top: 2.5rem; left: -1.5rem; z-index: 20;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(10px);
      padding: 1rem 1.5rem; border-radius: 0.75rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border: 1px solid rgba(255,255,255,0.65);
    }

    /* Session cards */
    .session-card {
      border-radius: 2rem; overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--border-col);
      transition: transform 0.4s, box-shadow 0.4s;
      display: flex; flex-direction: column;
      height: 100%;
    }
    .session-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 40px 80px rgba(225,162,0,0.18);
    }
    .session-card-img { height: 17rem; overflow: hidden; position: relative; }
    .session-card-img img {
      width: 100%; height: 100%;
      object-fit: cover; transition: transform 1.2s;
    }
    .session-card:hover .session-card-img img { transform: scale(1.08); }
    .session-badge {
      position: absolute; top: 1.25rem; left: 1.25rem;
      background: var(--surface);
      border: 1px solid var(--brand);
      padding: 0.35rem 0.85rem; border-radius: 50px;
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--brand);
    }
    @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
    .pulse-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--brand);
      animation: pulse-dot 1.5s infinite;
    }
    .session-card-body {
      padding: 2rem 2.25rem; flex: 1;
      display: flex; flex-direction: column;
      background: var(--surface);
    }
    .session-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 500;
      color: var(--text); margin-bottom: 0.75rem;
      transition: color 0.3s;
    }
    .session-card:hover .session-title { color: var(--brand); }

    /* Conviction imagery */
    .conviction-img {
      border-radius: 2rem; overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.12);
      aspect-ratio: 4/5; max-width: 480px; margin: 0 auto;
    }
    .conviction-img img {
      width: 100%; height: 100%;
      object-fit: cover; transition: transform 1.2s;
    }
    .conviction-img:hover img { transform: scale(1.05); }

    /* Media cards */
    .media-card {
      background: var(--bg); border-radius: 6px;
      padding: 3rem; border: 1px solid var(--border-col);
      text-align: center; display: flex;
      flex-direction: column; align-items: center; justify-content: center;
      transition: box-shadow 0.3s;
    }
    .media-card:hover { box-shadow: 0 20px 50px rgba(225,162,0,0.1); }

    /* Impact section */
    .impact-pair { padding-bottom: 5rem; margin-bottom: 0; }
    .impact-img-wrap { position: relative; padding-bottom: 3.5rem; }
    .impact-img-main {
      border-radius: 1.5rem; overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.12);
      border: 1px solid var(--border-col);
    }
    .impact-img-main img { width: 100%; height: auto; display: block; }
    .impact-img-overlay {
      position: absolute; bottom: 0; width: 60%;
      border-radius: 1rem; overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.18);
      z-index: 10;
    }
    .impact-img-overlay img { width: 100%; height: auto; display: block; }
    .impact-img-overlay.left  { left: -1.5rem;  border: 6px solid var(--surface); }
    .impact-img-overlay.right { right: -1.5rem; border: 6px solid var(--surface); }
    .dark-box {
      background: #0A213B; color: #fff;
      padding: 2.25rem; border-radius: 1.5rem;
      margin-top: 2rem;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .highlight-list li {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.75rem 1rem; border-radius: 0.75rem;
      background: var(--surface); border: 1px solid var(--border-col);
      margin-bottom: 0.5rem; font-weight: 500;
    }
    .highlight-list li .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--brand); flex-shrink: 0;
    }
    .universal-box {
      padding: 1.75rem 2rem; border-radius: 1.5rem;
      border: 1px solid rgba(225,162,0,0.2);
      background: linear-gradient(135deg, rgba(225,162,0,0.05), transparent);
      margin-top: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
      background: #fff;
      border-radius: 2.5rem;
      padding: 2.25rem;
      border: 1px solid rgba(225,162,0,0.15);
      box-shadow: 0 30px 60px rgba(61,53,40,0.09);
      position: relative; overflow: hidden;
    }
    .testimonial-card .quote-bg {
      position: absolute; top: 0; right: 0; padding: 2rem;
      opacity: 0.025;
    }
    .testimonial-card .quote-bg i { font-size: 7rem; color: var(--brand); }
    .testimonial-text {
      font-size: 1rem; font-weight: 300; color: #000;
      line-height: 1.8; position: relative; z-index: 1;
    }
    .testimonial-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 500; color: #000;
    }
    .testimonial-country {
      font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--brand);
    }
    .nav-arrow {
      width: 3.5rem; height: 3.5rem; border-radius: 50%;
      border: 1px solid rgba(225,162,0,0.25);
      background: var(--surface); color: var(--text);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
      font-size: 1.2rem; line-height: 1;
    }
    .nav-arrow:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
    .progress-dots { display: flex; justify-content: center; gap: 0.35rem; flex-wrap: wrap; }
    .p-dot {
      height: 4px; border-radius: 2px;
      background: rgba(225,162,0,0.2);
      transition: width 0.35s, background 0.35s;
      cursor: pointer; width: 1.5rem;
    }
    .p-dot.active { background: var(--brand); width: 2.5rem; }

    /* Pledge */
    .pledge-icon {
      width: 5rem; height: 5rem; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto;
      box-shadow: 0 10px 30px rgba(225,162,0,0.25);
    }

    /* Footer */
    footer { background: var(--bg); padding: 5rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
    .social-circle {
      width: 2.5rem; height: 2.5rem; border-radius: 50%;
      background: #2b2a23; color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 1rem;
      transition: background 0.3s, transform 0.3s;
    }
    .social-circle:hover { background: #fff; transform: scale(1.1); color: var(--brand); }

    /* Scroll-reveal */
    .fade-up {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.show { opacity: 1; transform: none; }
    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }

    /* Utility */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

    /* ===== Mobile Menu Overlay ===== */
    .mobile-menu-overlay {
      position: fixed;
      top: 74px;
      left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 1040;
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }
    .mobile-menu-overlay.open { transform: translateX(0); }
    .mobile-menu-inner { padding: 1.5rem 1.75rem 2rem; }
    .mobile-icon-btn {
      width: 3.25rem; height: 3.25rem;
      border-radius: 0.75rem;
      background: var(--surface);
      border: 1px solid var(--border-col);
      display: flex; align-items: center; justify-content: center;
      color: var(--text); font-size: 1.3rem; text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .mobile-icon-btn:hover { background: var(--brand); color: #000; }
    .mobile-divider { border-color: var(--border-col); margin: 0.6rem 0; }
    .mobile-nav-link {
      display: block;
      padding: 0.85rem 0;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 5.5vw, 2.1rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--text);
      text-decoration: none;
      text-align: center;
      border-bottom: 1px solid var(--border-col);
      transition: color 0.2s;
    }
    .mobile-nav-link:hover { color: var(--brand); }
    .mobile-nav-link.active { color: var(--brand); font-style: italic; }
    .mobile-nav-link-gold {
      display: inline-block;
      padding: 0.75rem 0;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 5.5vw, 2.1rem);
      font-weight: 700;
      font-style: italic;
      text-transform: uppercase;
      color: var(--brand);
      text-decoration: none;
    }
    .nav-toggler-btn { cursor: pointer; line-height: 1; }
    .nav-toggler-btn i { color: #fff; transition: color 0.2s; }
    #mainNav.menu-open .nav-toggler-btn i { color: var(--text); }
    #mainNav.menu-open {
      background: var(--bg) !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      padding: 0.85rem 0 !important;
    }

    @media (max-width: 768px) {
      #about,#rhapsody,#sessions,#conviction,#media,#impact,#testimonials,#pledge { padding: 4rem 0; }
      .img-stack { height: 380px; }
      section { scroll-margin-top: 64px; }
    }

/* ===== AUTH MODALS ===== */
.auth-modal { background: var(--surface); }
.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 0;
  gap: 1rem;
}
.auth-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
}
.auth-modal-subtitle {
  font-size: 0.875rem;
  color: rgba(26,20,16,0.55);
  margin: 0;
}
.auth-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.2rem;
  transition: opacity 0.2s;
}
.auth-close-btn:hover { opacity: 1; }
.auth-modal-body { padding: 1.5rem 2rem 2rem; }
.auth-field-group { margin-bottom: 1.1rem; }
.auth-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,20,16,0.5);
  display: block;
  margin-bottom: 0.45rem;
}
.auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}
.auth-label-row .auth-label { margin-bottom: 0; }
.auth-forgot {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  transition: opacity 0.2s;
}
.auth-forgot:hover { opacity: 0.75; color: var(--brand); }
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-input-wrap:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225,162,0,0.12);
}
.auth-icon {
  flex-shrink: 0;
  margin-left: 0.9rem;
  color: rgba(26,20,16,0.35);
  pointer-events: none;
}
.auth-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
  min-width: 0;
}
.auth-input::placeholder { color: rgba(26,20,16,0.35); }
.auth-eye-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.9rem;
  color: rgba(26,20,16,0.35);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.auth-eye-btn:hover { color: var(--brand); }
.auth-hint {
  font-size: 0.75rem;
  color: rgba(26,20,16,0.45);
  margin-top: 0.3rem;
  display: block;
}
.auth-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: #1a237e;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.auth-submit-btn:hover { background: #283593; transform: translateY(-1px); }
.auth-submit-btn:active { transform: translateY(0); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
  color: rgba(26,20,16,0.3);
  font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-switch-text {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(26,20,16,0.55);
  margin: 0;
}
.auth-switch-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.auth-switch-link:hover { opacity: 0.75; color: var(--brand); }

/* ===== PLEDGE MODAL ===== */
.pledge-icon-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(var(--brand-rgb, 225,162,0), 0.15), rgba(var(--brand-rgb, 225,162,0), 0.05));
  border: 1px solid rgba(225,162,0,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.pledge-select-wrap {
  position: relative;
}
.pledge-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem !important;
  cursor: pointer;
  background: white;
}
.pledge-select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text);
  opacity: 0.5;
}

.pledge-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pledge-preset {
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: white;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.pledge-preset:hover,
.pledge-preset.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.pledge-amount-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: white;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pledge-amount-wrap:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225,162,0,0.12);
}
.pledge-currency-symbol {
  padding: 0 0.75rem 0 1rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}
.pledge-amount-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  flex: 1;
  font-size: 1rem;
}
.pledge-amount-input:focus {
  outline: none;
  box-shadow: none !important;
}

.pledge-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.pledge-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(225,162,0,0.5);
}
.pledge-submit-btn:active { transform: scale(0.98); }

/* ===== KINGSCHAT BUTTON ===== */
.kingschat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.kingschat-btn svg { color: var(--brand); }
.kingschat-btn:hover {
  background: white;
  border-color: var(--brand);
  box-shadow: 0 4px 16px -4px rgba(225,162,0,0.2);
}
.kingschat-btn:active { transform: scale(0.98); }
