:root,
/* ============================================================
   LIGHT MODE ROOT  (Warm lavender-cream palette)
   ============================================================ */
[data-theme="light"] {
  --crimson: #b8182d;
  --fire: #d94600;
  --gold: #b07a00;
  --violet: #7430a3;
  --white: #ffffff;

  --bg1: #fdf8ff;
  --bg2: #f2e8fc;
  --bg-card: rgba(148, 75, 187, 0.055);
  --bg-card2: rgba(148, 75, 187, 0.11);
  --bg-nav: rgba(253, 248, 255, 0.96);
  --bg-top: #3a0f6b;
  --bg-foot: #2a0f50;
  --bg-inp: rgba(148, 75, 187, 0.06);

  --bdr: rgba(148, 75, 187, 0.18);
  --bdr-inp: rgba(148, 75, 187, 0.22);

  --tx1: #1a0a2e;
  --tx2: #4a2070;
  --tx3: #8b66af;
  --tx-head: #12041c;

  --shadow: 0 14px 42px rgba(148, 75, 187, 0.14);
  --grad: linear-gradient(135deg, #b8182d, #d94600, #b07a00);
  --hero-ov: linear-gradient(
    135deg,
    rgba(20, 5, 40, 0.7),
    rgba(180, 28, 50, 0.28)
  );
}

/* ============================================================
   DARK MODE ROOT  (Brand palette – unchanged)
   ============================================================ */
[data-theme="dark"] {
  --crimson: #d72638;
  --fire: #ff570a;
  --gold: #ffad05;
  --violet: #944bbb;
  --white: #ffffff;

  /* Backgrounds */
  --bg1: #1a0a2e;
  --bg2: #2d1155;
  --bg-card: rgba(148, 75, 187, 0.08);
  --bg-card2: rgba(148, 75, 187, 0.15);
  --bg-nav: rgba(26, 10, 46, 0.94);
  --bg-top: #0f0520;
  --bg-foot: #0d0318;
  --bg-inp: rgba(255, 255, 255, 0.07);

  /* Borders */
  --bdr: rgba(148, 75, 187, 0.22);
  --bdr-inp: rgba(255, 255, 255, 0.15);

  /* Text */
  --tx1: #f0ebff;
  --tx2: rgba(240, 235, 255, 0.68);
  --tx3: rgba(240, 235, 255, 0.38);
  --tx-head: #ffffff;

  /* Misc */
  --shadow: 0 20px 60px rgba(148, 75, 187, 0.22);
  --grad: linear-gradient(135deg, #d72638, #ff570a, #ffad05);
  --hero-ov: linear-gradient(
    135deg,
    rgba(26, 10, 46, 0.75),
    rgba(215, 38, 56, 0.32)
  );
}



/* ============================================================
   FONT-SIZE SCALE  (Government guideline: user-adjustable text)
   ============================================================ */
[data-fs="sm"] {
  font-size: 13px;
}
[data-fs="md"] {
  font-size: 16px;
}
[data-fs="lg"] {
  font-size: 19px;
}
[data-fs="xl"] {
  font-size: 22px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Lato", sans-serif;
  font-size: inherit;
  background: var(--bg1);
  color: var(--tx1);
  overflow-x: hidden;
  transition:
    background 0.35s,
    color 0.35s;
}


/* ============================================================
   FOCUS VISIBLE – WCAG
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================================
   TOP-BAR
   ============================================================ */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  background: var(--bg-top);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.35s;
}
.tb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 3%;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Timing */
.timing-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.75rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: tdot 2s infinite;
  display: inline-block;
}
.t-dot.closed {
  background: #ef5350;
  animation: none;
}
@keyframes tdot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.4);
  }
}
#openBadge {
  font-weight: 800;
  font-size: 0.72rem;
}

.tb-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.74rem;
  transition: color 0.2s;
}
.tb-contact a:hover {
  color: var(--gold);
}

/* A11y toolbar */
.a11y-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}
.a11y-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  padding: 2px 9px;
  font-size: 0.72rem;
  cursor: pointer;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  line-height: 1.7;
  transition: all 0.2s;
}
.a11y-btn:hover,
[aria-pressed="true"].a11y-btn {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
}
.vs {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

/* Theme toggle */
.theme-tog {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 3px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.74rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.theme-tog:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdr);
  transition:
    background 0.35s,
    box-shadow 0.3s;
}
[data-theme="light"] #navbar {
  box-shadow: 0 2px 18px rgba(100, 30, 160, 0.1);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-ico {
  width: 42px;
  height: 42px;
  padding: 4px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.brand-name {
  font-family: "Cinzel", serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tx3);
}

/* Nav links */
.navbar .nav-link {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: capitalize;
  color: var(--tx1) !important;
  padding: .35rem 0.62rem !important;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.62rem;
  right: 0.62rem;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.navbar .nav-link.nav-donate-btn:hover,
.navbar .nav-link.nav-donate-btn.active {
  color: #fff !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--fire) !important;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.nav-donate-btn {
  background: var(--grad);
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 50px;
  font-size: 0.76rem !important;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.nav-donate-btn:hover {
  box-shadow: 0 6px 22px rgba(255, 87, 10, 0.5);
  transform: translateY(-1px);
}
.nav-donate-btn::after {
  display: none !important;
}

/* Dropdown */
.navbar .dropdown-menu {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  min-width: 200px;
}
.navbar .dropdown-item {
  color: var(--tx1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}
.navbar .dropdown-item:hover {
  background: var(--bg-card2);
  color: var(--gold);
}

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--bdr);
  background: var(--bg-card);
  border-radius: 8px;
  padding: 5px 9px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 173, 5, 0.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffad05' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
[data-theme="light"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b8182d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Body offset */
.page-offset {
  margin-top: calc(36px + 60px);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#hero {
  position: relative;
}

.hero-slide {
  height: 90vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* Slide 1: 50/50 split */
.s-split {
  display: flex;
  height: 100%;
}
.s-split .sp-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.s-split .sp-vid {
  width: 50%;
  height: 100%;
  background: #000;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.s-split .sp-vid iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper video{
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills parent without distortion */
}

/* Full-image slides */
.s-full {
  width: 100%;
  height: 100%;
  position: relative;
}
.s-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.h-ov {
  position: absolute;
  inset: 0;
  background: var(--hero-ov);
  display: flex;
  align-items: center;
  padding: 0 6%;
}
.h-ov.ct {
  justify-content: center;
  text-align: center;
}
.h-ov.rt {
  justify-content: flex-end;
}

.h-box {
  max-width: 560px;
}
.h-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.h-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 15px;
}
.h-desc {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 25px;
}
.h-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.h-btns.ct {
  justify-content: center;
}

/* Owl customisation */
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.owl-dot span {
  background: rgba(255, 255, 255, 0.3) !important;
  width: 9px !important;
  height: 9px !important;
  margin: 0 4px !important;
}
.owl-dot.active span {
  background: var(--gold) !important;
  width: 26px !important;
  border-radius: 5px !important;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 14px !important;
  transition: all 0.3s;
}
.owl-nav button:hover {
  background: var(--fire) !important;
  border-color: var(--fire) !important;
}
.owl-prev {
  left: 15px !important;
}
.owl-next {
  right: 15px !important;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section {
  padding: 92px 0;
  overflow: hidden;
}


/* before items */

.before_item1{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.before_item1 > * {
  position: relative;
  z-index: 3;
}
.before_item1::before{
  content: "";
  position: absolute;
  right: -500px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
  max-width: 1000px;
  background-image: url(../image/pattern/pat_4.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: .4;
}
.before_item2{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.before_item2 > * {
  position: relative;
  z-index: 3;
}
.before_item2::before{
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0;
  height: 100%;
  max-height: 600px;
  width: 700px;
  max-width: 1000px;
  background-image: url(../image/pattern/pat_5.png);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: .4;
}




.s-lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 9px;
}
.s-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tx-head);
  margin-bottom: 13px;
}
.s-title .acc {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s-div {
  width: 60px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 0 32px;
}
.s-div.c {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-grad {
  background: var(--grad);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 87, 10, 0.45);
}

.btn-out {
  background: transparent;
  color: var(--tx1) !important;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--bdr);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-out:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

/* Generic card shell */
.g-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    background 0.35s;
}
.g-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}

/* Fade-up animation */
.fu {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fu.v {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--bg2);
  transition: background 0.35s;
  position: relative;
  padding-bottom: 200px;
}

#about::after {
  content: "";
  background-image: url(../image/pattern/pat_2.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  opacity: .5;
}

@media screen and (max-width: 1024px) {
  #about::after{
    max-width: 600px;
  }
}

.abt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 225px 195px;
  gap: 12px;
}
.abt-tall {
  grid-row: span 2;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.abt-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.abt-tall:hover img {
  transform: scale(1.05);
}
.abt-sm {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.abt-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.abt-sm:hover img {
  transform: scale(1.05);
}
.img-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(18, 5, 30, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 173, 5, 0.38);
  border-radius: 7px;
  padding: 4px 11px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.abt-quote {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.65rem, 2.2vw, 2.4rem);
  color: var(--fire);
  line-height: 1.4;
  margin-bottom: 15px;
}
.abt-cursive {
  font-family: "Great Vibes", cursive;
  font-size: 1.2rem;
  color: var(--tx2);
  line-height: 1.9;
  margin-bottom: 12px;
}
.abt-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--tx2);
  margin-bottom: 24px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 15px 16px;
  text-align: center;
  transition: background 0.35s;
}
.stat-n {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx3);
  margin-top: 3px;
}

/* ============================================================
   NOTIFICATION
   ============================================================ */
#notification {
  background: var(--bg1);
  transition: background 0.35s;
}

.ticker-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 11px 16px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.tick-label {
  background: var(--grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tick-scroll {
  flex: 1;
  overflow: hidden;
}
.tick-inner {
  display: flex;
  gap: 55px;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
.tick-inner span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--tx2);
}
.tick-inner i {
  color: var(--gold);
  margin-right: 5px;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.n-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.n-card::before{
  content: "";
  background-image: url(../image/pattern/pat_4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: -125px;
  top: 50%;
  transform: translateY(-50%);
  height: 250px;
  width: 250px;
  z-index: 2;
  opacity: .4;
}

.n-card > *{
  position: relative;
  z-index: 3;
}

.n-card:hover {
  background: var(--bg-card2);
  border-color: var(--violet);
  transform: translateY(-3px);
}
.n-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 50px;
  margin-bottom: 9px;
}
.n-badge.ev {
  background: rgba(255, 87, 10, 0.12);
  color: var(--fire);
  border: 1px solid rgba(255, 87, 10, 0.26);
}
.n-badge.nw {
  background: rgba(148, 75, 187, 0.12);
  color: var(--violet);
  border: 1px solid rgba(148, 75, 187, 0.26);
}
.n-badge.al {
  background: rgba(215, 38, 56, 0.12);
  color: var(--crimson);
  border: 1px solid rgba(215, 38, 56, 0.26);
}
.n-date {
  font-size: 0.72rem;
  color: var(--tx3);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.n-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 7px;
  line-height: 1.35;
}
.n-body {
  font-size: 0.84rem;
  color: var(--tx2);
  line-height: 1.7;
}

/* ============================================================
   FOUNDER MESSAGE
   ============================================================ */
#founder {
  background: var(--bg2);
  transition: background 0.35s;
  position: relative;
}

#founder::before {
  content: "";
  background-image: url(../image/pattern/pat_3.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 500px;
  width: 100%;
  opacity: .5;
}

.f-frame {
  width: 240px;
  height: 320px;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 54px rgba(255, 173, 5, 0.22);
  margin: 0 auto 16px;
  position: relative;
}
.f-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.f-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 5, 30, 0.28), transparent 50%);
}
.f-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tx-head);
  text-align: center;
}
.f-role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet);
  text-align: center;
  margin-top: 4px;
}
.f-soc {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
}
.f-soc a {
  width: 33px;
  height: 33px;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx2);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
}
.f-soc a:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
}

.f-msg-box {
  position: relative;
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
}
.f-msg-box::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 13px;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  color: var(--violet);
  opacity: 0.12;
  line-height: 1;
}
.f-quote {
  font-family: "Great Vibes", cursive;
  font-size: 1.32rem;
  color: var(--tx2);
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
}
.f-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--tx2);
  margin-bottom: 12px;
  position: relative;
}
.f-sig {
  font-family: "Great Vibes", cursive;
  font-size: 1.85rem;
  color: var(--fire);
  margin-top: 14px;
  display: block;
}

/* ============================================================
   MEMBERS
   ============================================================ */
#members {
  background: var(--bg1);
  transition: background 0.35s;
}

.m-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.35s;
  height: 100%;
}
.m-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}
.m-av {
  width: 86px!important;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 12px;
  display: block;
}
.m-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 3px;
}
.m-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 9px;
}
.m-bio {
  font-size: 0.83rem;
  color: var(--tx2);
  line-height: 1.65;
}
.m-soc {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
}
.m-soc a {
  width: 28px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx3);
  font-size: 0.72rem;
  text-decoration: none;
  transition: all 0.3s;
}
.m-soc a:hover {
  background: var(--fire);
  color: #fff;
  border-color: var(--fire);
}

/* ============================================================
   GALLERY (Image & Video)
   ============================================================ */
#gallery {
  background: var(--bg2);
  transition: background 0.35s;
}

.g-tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.g-tab {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: 7px 19px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tx2);
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.g-tab:hover,
.g-tab.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}
.g-item {
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
}
.g-item.w2 {
  grid-column: span 2;
}
.g-item.h2 {
  grid-row: span 2;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.g-item:hover img {
  transform: scale(1.07);
}
.g-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 5, 30, 0.86) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 13px;
}
.g-item:hover .g-ov {
  opacity: 1;
}
.g-ov-txt {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.g-item.vid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
}
.g-item.vid .vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  background: rgba(255, 87, 10, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition:
    transform 0.3s,
    background 0.3s;
}
.g-item.vid:hover .vid-play {
  transform: translate(-50%, -50%) scale(1.14);
  background: var(--crimson);
}

/* ============================================================
   SOCIAL MEDIA
   ============================================================ */
#social {
  background: var(--bg1);
  transition: background 0.35s;
}

.sp-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.sp-ico {
  width: 64px;
  height: 64px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 12px;
}
.sp-ico.fb {
  background: #1877f2;
}
.sp-ico.ig {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.sp-ico.yt {
  background: #ff0000;
}
.sp-ico.tw {
  background: #1da1f2;
}
.sp-ico.wa {
  background: #25d366;
}
.sp-ico.tg {
  background: #0088cc;
}
.sp-name {
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 3px;
}
.sp-handle {
  font-size: 0.78rem;
  color: var(--tx3);
  margin-bottom: 13px;
}
.sp-count {
  font-family: "Playfair Display", serif;
  font-size: 1.72rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
}
.sp-clbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx3);
  margin-bottom: 14px;
}
.sp-follow {
  margin-top: auto;
  padding: 7px 18px;
  border-radius: 50px;
  border: 2px solid var(--bdr);
  background: transparent;
  color: var(--tx1);
  font-size: 0.76rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.sp-follow:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

/* ============================================================
   DONATION
   ============================================================ */
#donation {
  background: var(--bg2);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
#donation::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 10, 0.09), transparent 70%);
}
#donation::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(148, 75, 187, 0.09),
    transparent 70%
  );
}

.don-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s;
}
.don-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}
.don-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.don-card.ft {
  border-color: var(--gold);
  background: rgba(255, 173, 5, 0.05);
}
.don-ft-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: var(--grad);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 11px;
  border-radius: 50px;
}
.don-ico {
  font-size: 2.2rem;
  margin-bottom: 13px;
}
.don-title {
  font-family: "Playfair Display", serif;
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 8px;
}
.don-desc {
  font-size: 0.84rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.don-amt {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.don-imp {
  font-size: 0.76rem;
  color: var(--tx3);
  margin-bottom: 20px;
}

.don-form {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 34px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.don-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 20px;
}
.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.amt-pill {
  background: var(--bg-card);
  border: 2px solid var(--bdr);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--tx1);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Lato", sans-serif;
}
.amt-pill:hover,
.amt-pill.sel {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.f-inp {
  background: var(--bg-inp);
  border: 1px solid var(--bdr-inp);
  border-radius: 11px;
  padding: 12px 15px;
  font-size: 0.91rem;
  color: var(--tx1);
  width: 100%;
  font-family: "Lato", sans-serif;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 13px;
}
.f-inp:focus {
  border-color: var(--gold);
}
.f-inp::placeholder {
  color: var(--tx3);
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
#mission {
  background: var(--bg1);
  transition: background 0.35s;
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.mv-ico {
  width: 54px;
  height: 54px;
  background: var(--grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: #fff;
}
.mv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tx-head);
}
.mv-card p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--tx2);
}
.mv-card ul {
  list-style: none;
  margin-top: 12px;
}
.mv-card ul li {
  font-size: 0.85rem;
  color: var(--tx2);
  padding: 7px 0;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mv-card ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.64rem;
}
.mv-card ul li:last-child {
  border-bottom: none;
}

.founder-center .f-frame {
  width: 180px;
  height: 240px;
}

/* ============================================================
   EVENTS
   ============================================================ */
#events {
  background: var(--bg2);
  transition: background 0.35s;
}

.ev-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s;
  height: 100%;
}
.ev-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}
.ev-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.ev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ev-card:hover .ev-img img {
  transform: scale(1.07);
}
.ev-dtag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad);
  border-radius: 9px;
  padding: 6px 10px;
  text-align: center;
}
.ev-dtag .d {
  font-family: "Playfair Display", serif;
  font-size: 1.26rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.ev-dtag .m {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.ev-body {
  padding: 18px;
}
.ev-type {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.ev-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 8px;
  line-height: 1.35;
}
.ev-body p {
  font-size: 0.83rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 13px;
}
.ev-meta {
  display: flex;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--tx3);
  flex-wrap: wrap;
}
.ev-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ev-meta i {
  color: var(--violet);
}

/* ============================================================
   MEDIA (Video + Audio)
   ============================================================ */
#media {
  background: var(--bg1);
  transition: background 0.35s;
}

.vid-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.vid-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vid-thumb {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
}
.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.vid-thumb:hover img {
  transform: scale(1.05);
}
.vt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 87, 10, 0.86);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition:
    transform 0.3s,
    background 0.3s;
}
.vid-thumb:hover .vt-play {
  transform: translate(-50%, -50%) scale(1.12);
}

.aud-row {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
.aud-row:hover {
  background: var(--bg-card2);
  border-color: var(--violet);
}
.aud-ico {
  width: 38px;
  height: 38px;
  background: var(--grad);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}
.aud-info {
  flex: 1;
}
.aud-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 2px;
}
.aud-info p {
  font-size: 0.72rem;
  color: var(--tx3);
}
.aud-dur {
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--bg2);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 3%;
  font-family: "Playfair Display", serif;
  font-size: 16rem;
  color: var(--violet);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.3s;
}
.t-card:hover {
  border-color: rgba(148, 75, 187, 0.4);
  transform: translateY(-4px);
}
.t-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 13px;
}
.t-quote {
  font-family: "Great Vibes", cursive;
  font-size: 1.28rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 22px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-av {
  width: 46px!important;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-name {
  font-family: "Playfair Display", serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--tx-head);
}
.t-sub {
  font-size: 0.72rem;
  color: var(--violet);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================================================
   JOIN
   ============================================================ */
#join {
  background: var(--bg1);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.j-gl1 {
  position: absolute;
  width: 460px;
  height: 460px;
  top: -170px;
  right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 10, 0.1), transparent 70%);
  pointer-events: none;
}
.j-gl2 {
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148, 75, 187, 0.1), transparent 70%);
  pointer-events: none;
}

.j-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  height: 100%;
}
.j-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--violet);
}
.j-card.ft {
  border-color: var(--gold);
  background: rgba(255, 173, 5, 0.05);
}
.j-pop {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
}
.j-ico {
  font-size: 2.6rem;
  margin-bottom: 13px;
}
.j-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 8px;
}
.j-card p {
  font-size: 0.84rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 15px;
}
.j-price {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.j-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.j-form input {
  flex: 1;
  background: var(--bg-inp);
  border: 1px solid var(--bdr-inp);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--tx1);
  outline: none;
  font-family: "Lato", sans-serif;
  transition: border-color 0.3s;
}
.j-form input:focus {
  border-color: var(--gold);
}
.j-form input::placeholder {
  color: var(--tx3);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-foot);
  border-top: 1px solid var(--bdr);
  padding: 64px 0 24px;
  transition: background 0.35s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

footer > * {
  position: relative;
  z-index: 3;
}

footer::before{
  content: "";
  position: absolute;
  background-image: url(../image/banners/bg_img3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100vw;
  top: 0;
  opacity: .2;
}

.ft-bname {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.ft-about {
  font-size: 0.84rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 18px;
}
.ft-soc {
  display: flex;
  gap: 8px;
}
.ft-soc a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  text-decoration: none;
  transition: all 0.3s;
}
.ft-soc a:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  transform: translateY(-2px);
}
.ft-ct {
  font-family: "Cinzel", serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}
.ft-links {
  list-style: none;
}
.ft-links li {
  margin-bottom: 8px;
}
.ft-links a {
  font-size: 0.82rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.ft-links a:hover {
  color: var(--gold);
}
.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.6;
}
.ft-ci i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.ft-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  margin-top: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-btm p {
  font-size: 0.76rem;
  color: #fff;
}
.ft-btm a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .g-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .s-split {
    flex-direction: column;
  }
  .s-split .sp-img,
  .s-split .sp-vid {
    width: 100%;
    height: 100%;
  }
  .hero-slide {
    height: auto;
    min-height: 560px;
  }
  .g-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-item.w2,
  .g-item.h2 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .founder-center {
    order: -1;
  }
}
@media (max-width: 767px) {
  #topbar {
    position: relative;
  }
  #navbar {
    top: 0;
    position: sticky;
  }
  .page-offset {
    margin-top: 0px;
  }
  .tb-left {
    flex-direction: column;
    gap: 4px;
  }
  .tb-inner {
    justify-content: center;
    text-align: center;
  }
  .j-form {
    flex-direction: column;
  }
  .ft-btm {
    flex-direction: column;
    text-align: center;
  }
  .g-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pill-row {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  section {
    padding: 62px 0;
  }
  .hero-h1,
  .h-title {
    font-size: 1.65rem;
  }
  .g-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery anim */
@keyframes gfade {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Bootstrap mobile nav */
@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding: 9px 12px !important;
    border-bottom: 1px solid var(--bdr);
  }
  .navbar-collapse {
    padding-bottom: 8px;
  }
  .nav-donate-btn {
    display: inline-block;
    margin: 8px 12px;
  }
}





/* ---- BANNER ---- */
.pf-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg2);
}

.pf-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* filter: brightness(.35) saturate(1.2); */
}

.pf-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 10, 46, .82), rgba(148, 75, 187, .28));
}

.pf-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pf-banner .container {
  position: relative;
  z-index: 3;
  padding-top: 48px;
  padding-bottom: 48px;
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 173, 5, .12);
  border: 1px solid rgba(255, 173, 5, .3);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.banner-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.banner-line {
  width: 56px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin-bottom: 18px;
}

.pf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.pf-breadcrumb a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .83rem;
  font-weight: 600;
  transition: color .2s;
}

.pf-breadcrumb a:hover {
  color: var(--gold);
}

.pf-breadcrumb .sep {
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
}

.pf-breadcrumb .crumb-cur {
  color: var(--gold);
  font-size: .83rem;
  font-weight: 700;
}

/* ---- SECTION LABELS / TITLES ---- */
.pg-lbl {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 9px;
}

.pg-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tx-head);
  margin-bottom: 12px;
}

.pg-title .acc {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pg-div {
  width: 58px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 0 30px;
}

.pg-div.c {
  margin-left: auto;
  margin-right: auto;
}

.pg-body {
  font-size: .94rem;
  line-height: 1.85;
  color: var(--tx2);
  margin-bottom: 14px;
}

/* ---- CARDS ---- */
.pf-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, background .35s;
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}

.pf-card-topbar {
  height: 3px;
  background: var(--grad);
}

/* ---- BUTTONS ---- */
.btn-pf {
  background: var(--grad);
  color: #fff !important;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .3s, box-shadow .3s;
}

.btn-pf:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 87, 10, .42);
}

.btn-pf-sm {
  padding: 7px 18px;
  font-size: .76rem;
}

.btn-pf-out {
  background: transparent;
  color: var(--tx1) !important;
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--bdr);
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}

.btn-pf-out:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card2);
  border: 1px solid var(--bdr);
  color: var(--tx2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}

.btn-icon:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---- BADGES ---- */
.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 50px;
}

.pf-badge-ev {
  background: rgba(255, 87, 10, .13);
  color: var(--fire);
  border: 1px solid rgba(255, 87, 10, .26);
}

.pf-badge-nw {
  background: rgba(148, 75, 187, .13);
  color: var(--violet);
  border: 1px solid rgba(148, 75, 187, .26);
}

.pf-badge-al {
  background: rgba(215, 38, 56, .13);
  color: var(--crimson);
  border: 1px solid rgba(215, 38, 56, .26);
}

.pf-badge-ok {
  background: rgba(76, 175, 80, .13);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, .26);
}

/* ---- FORM INPUTS ---- */
.pf-inp {
  background: var(--bg-inp);
  border: 1px solid var(--bdr-inp);
  border-radius: 11px;
  padding: 11px 16px;
  font-size: .91rem;
  color: var(--tx1);
  width: 100%;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color .3s;
}

.pf-inp:focus {
  border-color: var(--gold);
}

.pf-inp::placeholder {
  color: var(--tx3);
}

/* ---- STAT BOX ---- */
.stat-bx {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-l {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx3);
  margin-top: 3px;
}

/* ---- FADE-UP ---- */
.pf-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.pf-fade.in {
  opacity: 1;
  transform: none;
}

/* ---- CATEGORY PILLS ---- */
.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cat-pill {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--tx2);
  cursor: pointer;
  transition: all .3s;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---- NOTIFICATION ROW ---- */
.notif-row {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all .3s;
  margin-bottom: 11px;
}

.notif-row:hover {
  background: var(--bg-card2);
  border-color: var(--violet);
  transform: translateX(4px);
}

.notif-datebox {
  background: var(--grad);
  border-radius: 11px;
  padding: 9px 14px;
  text-align: center;
  flex-shrink: 0;
  min-width: 62px;
}

.notif-datebox .nd {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.notif-datebox .nm {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 4px;
  line-height: 1.4;
}

.notif-content p {
  font-size: .82rem;
  color: var(--tx2);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.notif-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---- MEMBER CARD ---- */
.member-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all .35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.member-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}

.member-av {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 14px;
  display: block;
}

.member-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 4px;
}

.member-desg {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
}

.member-bio {
  font-size: .82rem;
  color: var(--tx2);
  line-height: 1.65;
}

.member-soc {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.member-soc a {
  width: 30px;
  height: 30px;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx3);
  font-size: .74rem;
  text-decoration: none;
  transition: all .3s;
}

.member-soc a:hover {
  background: var(--fire);
  color: #fff;
  border-color: var(--fire);
}

/* ---- ACTIVITY CARD ---- */
.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  overflow: hidden;
  transition: all .35s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}

.ac-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.activity-card:hover .ac-img img {
  transform: scale(1.07);
}

.ac-date-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.ac-body {
  padding: 20px;
}

.ac-cat {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

.ac-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 8px;
  line-height: 1.35;
}

.ac-desc {
  font-size: .84rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- GALLERY GRID ---- */
.gal-grid {
  columns: 4 220px;
  column-gap: 10px;
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
}

.gal-item img {
  width: 100%;
  display: block;
  transition: transform .5s;
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 5, 30, .88), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 13px;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay-txt {
  font-family: 'Playfair Display', serif;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}

.gal-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: opacity .3s;
}

.gal-item:hover .gal-zoom {
  opacity: 1;
}

/* ---- LIGHTBOX ---- */
.pf-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 2, 20, .94);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.pf-lightbox.open {
  display: flex;
  animation: lbIn .25s ease;
}

@keyframes lbIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.lb-wrap {
  position: relative;
  max-width: 90vw;
}

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 88vw;
  max-height: 78vh;
  border-radius: 14px;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: all .2s;
}

.lb-close:hover {
  background: var(--fire);
  border-color: var(--fire);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}

.lb-nav:hover {
  background: var(--fire);
  border-color: var(--fire);
}

.lb-prev {
  left: -58px;
}

.lb-next {
  right: -58px;
}

.lb-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.lb-caption {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  color: rgba(255, 255, 255, .8);
}

.lb-counter {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

@media(max-width:576px) {
  .lb-prev {
    left: -16px
  }

  .lb-next {
    right: -16px
  }

  .lb-nav {
    width: 36px;
    height: 36px;
    font-size: 12px
  }
}

/* ---- VIDEO GRID ---- */
.vid-thumb {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.vid-thumb:hover img {
  transform: scale(1.06);
}

.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 87, 10, .88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform .3s, background .3s;
  box-shadow: 0 6px 24px rgba(255, 87, 10, .4);
}

.vid-thumb:hover .vid-play-btn {
  transform: translate(-50%, -50%) scale(1.14);
  background: var(--crimson);
}

.vid-platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .64rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.vid-platform-badge.yt {
  background: #ff0000;
}

.vid-platform-badge.vm {
  background: #1ab7ea;
}

.vid-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
}

.vid-info {
  padding: 14px 0 0;
}

.vid-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 4px;
  line-height: 1.35;
}

.vid-info p {
  font-size: .8rem;
  color: var(--tx3);
}

/* ---- VIDEO MODAL ---- */
.pf-vmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(5, 1, 15, .96);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.pf-vmodal.open {
  display: flex;
  animation: lbIn .25s ease;
}

.vm-wrap {
  position: relative;
  width: 92vw;
  max-width: 960px;
}

.vm-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 16px;
  display: block;
}

.vm-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: all .2s;
}

.vm-close:hover {
  background: var(--fire);
}

/* ---- DONATION ---- */
.don-tier {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all .35s;
}

.don-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.don-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.don-tier.featured {
  border-color: var(--gold);
  background: rgba(255, 173, 5, .05);
}

.don-feat-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--grad);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 11px;
  border-radius: 50px;
}

.don-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.don-method {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 22px 20px;
  transition: all .3s;
  text-align: center;
}

.don-method:hover {
  background: var(--bg-card2);
  border-color: var(--violet);
}

.don-method-ico {
  font-size: 2rem;
  margin-bottom: 10px;
}

.qr-box {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.qr-box img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  margin: 0 auto 14px;
  display: block;
}

.amt-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.amt-pill {
  background: var(--bg-card);
  border: 2px solid var(--bdr);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--tx1);
  cursor: pointer;
  transition: all .2s;
  font-family: 'Lato', sans-serif;
}

.amt-pill:hover,
.amt-pill.sel {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

/* ---- FOUNDER ---- */
.founder-frame {
  width: 260px;
  height: 340px;
  border-radius: 130px 130px 0 0;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(255, 173, 5, .22);
  margin: 0 auto;
  position: relative;
}

.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 5, 30, .3), transparent 55%);
}

.founder-quote-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 36px;
}

.founder-quote-box::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--violet);
  opacity: .1;
  line-height: 1;
  pointer-events: none;
}

.cursive {
  font-family: 'Great Vibes', cursive;
}

.founder-sig {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--fire);
  margin-top: 14px;
  display: block;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  margin-top: 5px;
}

.timeline-line {
  width: 2px;
  background: var(--bdr);
  flex: 1;
  margin: 4px auto;
}

/* ---- PAGINATION ---- */
.pf-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.pf-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  color: var(--tx2);
  font-weight: 700;
  font-size: .86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
}

.pf-page-btn:hover,
.pf-page-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---- SEARCH BAR ---- */
.pf-search {
  position: relative;
}

.pf-search input {
  padding-left: 40px;
}

.pf-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tx3);
  font-size: .85rem;
  pointer-events: none;
}

/* ---- HIGHLIGHT BOX ---- */
.hl-box {
  background: var(--bg-card);
  border-left: 3px solid var(--fire);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
}

.hl-box-title {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--tx-head);
  margin-bottom: 6px;
}

.hl-box p {
  font-size: .87rem;
  color: var(--tx2);
  line-height: 1.7;
  margin: 0;
}

/* ---- RESPONSIVE TWEAKS ---- */
@media(max-width:991px) {
  .gal-grid {
    columns: 3 200px
  }

  .lb-prev {
    left: -14px
  }

  .lb-next {
    right: -14px
  }
}

@media(max-width:768px) {
  .notif-row {
    flex-wrap: wrap
  }

  .notif-datebox {
    min-width: auto
  }

  .gal-grid {
    columns: 2 180px
  }

  .founder-frame {
    width: 210px;
    height: 280px
  }
}

@media(max-width:480px) {
  .gal-grid {
    columns: 2 140px
  }

  .cat-pills {
    gap: 6px
  }

  .cat-pill {
    padding: 5px 13px;
    font-size: .72rem
  }
}