/* ============================================================
   PEARLS IN THE CITY — Master Stylesheet
   Luxury Dark Gold | Happy Destination Foundation
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  /* Gold palette — stays warm */
  --gold:        #B8902A;
  --gold-light:  #D4A843;
  --gold-dim:    #8A6A1E;
  --gold-muted:  rgba(184,144,42,0.12);

  /* Light palette — replaces darks */
  --black:       #FAFAF8;        /* was #050505  — page bg */
  --dark:        #F4F3EE;        /* was #0D0D0D  — section alt bg */
  --dark-2:      #EDE9E0;        /* was #151515  — section alt 2 */
  --dark-3:      #E4DFCF;        /* was #1E1E1E */
  --dark-4:      #D9D3C2;        /* was #252525 */
  --charcoal:    #C8BFA8;        /* was #2E2E2E */

  /* Text — dark on light */
  --white:       #1A1612;        /* was #FAFAFA  — headings */
  --white-dim:   rgba(26,22,18,0.72);   /* body text */
  --white-muted: rgba(26,22,18,0.45);   /* muted text */
  --text-body:   rgba(26,22,18,0.80);   /* main text */
  --text-muted:  rgba(26,22,18,0.45);

  /* Borders */
  --border:      rgba(184,144,42,0.22);
  --border-dark: rgba(26,22,18,0.08);
  --text-muted:  rgba(26,22,18,0.45);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-ui:      'Montserrat', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-gold: 0 0 40px rgba(184,144,42,0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Light mode overrides ─────────────────────────────────── */
/* Inline dark bg overrides used throughout pages */
[style*="background:var(--dark)"] { background: var(--dark) !important; }
[style*="background:var(--dark-2)"] { background: var(--dark-2) !important; }
[style*="background:var(--dark-3)"] { background: var(--dark-3) !important; }

/* ── Noise Grain Overlay ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Page Loader ──────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0;
  background: #FAFAF8;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 80px; animation: loaderPulse 2s ease-in-out infinite; }
.loader-line {
  width: 200px; height: 1px;
  background: var(--dark-3);
  position: relative; overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 1.4s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100% { opacity:0.5; transform:scale(0.95); } 50% { opacity:1; transform:scale(1); } }
@keyframes loaderSlide { 0% { left:-100%; } 100% { left:100%; } }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--white); font-weight: 700; line-height: 1.2; }
.display-serif { font-family: var(--font-serif); }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 300;
  color: var(--white-dim); line-height: 1.8;
  max-width: 620px;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
p { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.85; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.35s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); color: var(--black) !important; }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 31px; border: 1px solid var(--gold); cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--black) !important;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

/* ── Navbar ───────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
/* Transparent over hero — links stay white */
#main-nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.88) !important; }
#main-nav:not(.scrolled) .nav-logo-text .brand { color: #fff; }
#main-nav:not(.scrolled) .nav-logo-text .sub { color: rgba(255,255,255,0.7); }
#main-nav:not(.scrolled) .nav-toggle { color: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.3); }
#main-nav:not(.scrolled) .nav-logo-img { border-color: rgba(255,255,255,0.4); }
#main-nav:not(.scrolled) .btn-outline-gold { color: #fff; border-color: rgba(255,255,255,0.6); }
#main-nav:not(.scrolled) .btn-outline-gold:hover { color: #000; }
/* Scrolled — solid white nav */
#main-nav.scrolled {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,144,42,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
#main-nav.scrolled .nav-links a { color: rgba(26,22,18,0.65) !important; }
#main-nav.scrolled .nav-logo-text .brand { color: #1a1612; }
#main-nav.scrolled .nav-logo-text .sub { color: var(--gold); }
#main-nav.scrolled .nav-toggle { color: rgba(26,22,18,0.7); border-color: rgba(26,22,18,0.2); }
.nav-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: padding 0.4s;
}
#main-nav.scrolled .nav-inner { padding: 12px 40px; }
@media (max-width: 768px) {
  .nav-inner, #main-nav.scrolled .nav-inner { padding: 12px 20px; }
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 48px; height: 48px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.nav-logo-text .sub { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 8px 16px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold) !important; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 24px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--white); width: 44px; height: 44px;
  align-items: center; justify-content: center; font-size: 1.2rem;
  cursor: pointer; transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(250,250,248,0.99); border-top: 1px solid rgba(184,144,42,0.15);
  padding: 20px 24px 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 12px 0;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-dim) !important; border-bottom: 1px solid var(--border-dark);
}
.nav-mobile a:hover { color: var(--gold) !important; }
.nav-mobile .btn-gold { margin-top: 16px; text-align: center; justify-content: center; }

/* ── Hero Slider ──────────────────────────────────────────── */
#hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-content-slide { display: none; }
.hero-content-slide.active { display: flex; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.80) 0%,
    rgba(5,5,5,0.50) 55%,
    rgba(5,5,5,0.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex; align-items: center;
  padding: 100px 40px 80px;
  max-width: 900px;
  margin: 0 auto 0 max(40px, calc((100vw - 1360px)/2 + 40px));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-muted); border: 1px solid var(--border);
  color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 16px;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300; color: rgba(255,255,255,0.82);
  max-width: 540px; line-height: 1.75; margin-bottom: 36px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
/* Slide-in animation for active content panel */
.hero-content-slide.active .hero-title,
.hero-content-slide.active .hero-subtitle,
.hero-content-slide.active .hero-badge,
.hero-content-slide.active .hero-actions {
  animation: heroIn 0.7s ease forwards;
}
.hero-content-slide.active .hero-badge   { animation-delay: 0.05s; }
.hero-content-slide.active .hero-title   { animation-delay: 0.15s; }
.hero-content-slide.active .hero-subtitle{ animation-delay: 0.3s;  }
.hero-content-slide.active .hero-actions { animation-delay: 0.45s; }
.hero-content-slide .hero-title,
.hero-content-slide .hero-subtitle,
.hero-content-slide .hero-badge,
.hero-content-slide .hero-actions {
  opacity: 0; transform: translateY(22px);
}
/* Static fallback (no-slide) */
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-badge,
.hero-content .hero-actions {
  opacity: 1; transform: none;
}
@keyframes heroIn { to { opacity:1; transform:translateY(0); } }

/* Hero controls */
.hero-controls {
  position: absolute; bottom: 48px; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white-muted); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Hero progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 10;
  height: 2px; background: var(--gold);
  width: 0%; transition: width linear;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; right: 48px; bottom: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-muted); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  writing-mode: vertical-lr; text-orientation: mixed;
}
.hero-scroll::before {
  content: ''; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ── Stats Strip ──────────────────────────────────────────── */
.stats-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 10;
}
.stats-strip-inner {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center; position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-muted);
}

/* ── Sections ─────────────────────────────────────────────── */
section { position: relative; }
.section-wrap { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.py-section { padding-top: 100px; padding-bottom: 100px; }
.py-section-sm { padding-top: 64px; padding-bottom: 64px; }

/* Section dividers */
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0 40px;
}

/* ── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-frame {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 45%; aspect-ratio: 1/1;
  object-fit: cover; border: 4px solid var(--dark-2);
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.about-img-stat {
  position: absolute; top: 30px; left: -20px;
  background: var(--gold); color: var(--black);
  padding: 16px 20px; clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.about-img-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.about-img-stat .lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.about-feature:hover { background: var(--dark-3); border-left-color: var(--gold-light); }
.about-feature i { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-feature h5 { font-size: 0.95rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.88rem; color: var(--white-muted); margin: 0; }

/* ── Programs Grid ────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-card {
  background: #fff;
  border: 1px solid rgba(184,144,42,.12);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  cursor: default;
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.program-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(0.75) saturate(0.7);
}
.program-card:hover .program-card-img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1);
}
.program-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.program-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 26px;
  width: 36px; height: 2px;
  background: var(--gold);
  opacity: .6;
}
.program-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.program-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #1a1612;
  line-height: 1.35;
}
.program-card p {
  font-size: .86rem;
  color: rgba(26,22,18,.55);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.program-impact {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.program-impact .num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.program-impact .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .78rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.program-card:hover .program-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── Donate CTA Banner ────────────────────────────────────── */
.donate-banner {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.donate-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08), transparent 60%);
}
.donate-banner-inner {
  max-width: 1360px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.donate-amounts { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.donate-amount-btn {
  padding: 10px 20px; background: var(--dark-3);
  border: 1px solid var(--border); color: var(--white-dim);
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.donate-amount-btn.active, .donate-amount-btn:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.donate-custom-input {
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--white); padding: 12px 16px; font-size: 1rem;
  font-family: var(--font-sans); width: 100%; outline: none;
  transition: border-color 0.3s;
}
.donate-custom-input:focus { border-color: var(--gold); }

/* ── News Grid ────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}
.news-card {
  background: #fff;
  border: 1px solid rgba(184,144,42,.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-color: rgba(184,144,42,.35);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.news-card h4 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.3; color: #1a1612; }
.news-card p { font-size: 0.88rem; color: rgba(26,22,18,.55); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.news-meta { font-size: 0.72rem; color: rgba(26,22,18,.4); display: flex; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(184,144,42,.08); }
.news-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-top: 14px;
  transition: gap 0.3s;
}
.news-read-more:hover { gap: 10px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--dark-2); overflow: hidden; }

/* Slider wrapper */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -8px;
  padding: 0 8px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  padding: 36px; position: relative;
  transition: var(--transition);
  border-top: 2px solid transparent;
}
.testimonial-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif); font-size: 5rem; line-height: 0.8;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 28px; right: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.85; color: rgba(26,22,18,.68); margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-author .name { font-size: 0.9rem; font-weight: 700; color: #1a1612; }
.testimonial-author .role { font-size: 0.75rem; color: var(--gold); }

/* ── Vision/Mission Strip ─────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: var(--dark-2); }
.pillar-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 16px; }
.pillar p { font-family: var(--font-serif); font-size: 1rem; color: var(--white-muted); line-height: 1.8; margin: 0; }

/* ── Team Grid ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { position: relative; overflow: hidden; }
.team-card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(30%); transition: all 0.5s; }
.team-card:hover .team-card-img { filter: grayscale(0); transform: scale(1.03); }
.team-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95), transparent);
  padding: 40px 20px 20px;
  transform: translateY(20px); opacity: 0.9;
  transition: var(--transition);
}
.team-card:hover .team-card-info { transform: translateY(0); opacity: 1; }
.team-card-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card-info span { font-size: 0.75rem; color: var(--gold); }

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 20px; background: transparent;
  border: 1px solid var(--border); color: var(--white-muted);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  background: #f0ece4;
  border: 1px solid rgba(184,144,42,.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.82);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay .g-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.2);
  border: 1.5px solid rgba(201,168,76,.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.g-overlay span {
  color: #fff;
  font-size: .8rem;
  font-family: var(--font-ui);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

/* ── Lightbox ────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,8,5,.97);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open { display: flex; }
#lightbox-img-wrap {
  position: relative;
  max-width: 88vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
  display: block;
}
#lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-family: var(--font-ui);
  letter-spacing: .08em;
  text-transform: uppercase;
  min-height: 20px;
}
#lightbox-counter {
  color: rgba(201,168,76,.6);
  font-size: .75rem;
  font-family: var(--font-ui);
  letter-spacing: .12em;
  margin-top: 6px;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,.5);
  font-size: 1.6rem;
  cursor: pointer;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: all .25s;
}
#lightbox-close:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,.1); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1.3rem;
  cursor: pointer;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  z-index: 10;
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover, #lightbox-next:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.1);
}
#lightbox-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 88vw;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
#lightbox-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
  width: 52px; height: 52px;
  border-radius: 6px;
  object-fit: cover;
  opacity: .45;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: all .25s;
}
.lb-thumb.active { opacity: 1; border-color: var(--gold); }
.lb-thumb:hover { opacity: .8; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 8px; }
.form-control, .form-select {
  width: 100%; padding: 14px 16px;
  background: var(--dark-3); border: 1px solid var(--border-dark);
  color: var(--white); font-family: var(--font-sans); font-size: 0.9rem;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--white-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23C9A84C'%3E%3Cpath d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-select option { background: var(--dark-3); color: var(--white); }
.form-check { display: flex; align-items: center; gap: 10px; }
.form-check-input { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.form-check-label { font-size: 0.85rem; color: var(--white-muted); cursor: pointer; }
.form-error { font-size: 0.78rem; color: #e05c5c; margin-top: 5px; }

/* ── Donate Page ──────────────────────────────────────────── */
.donate-stepper { display: flex; gap: 0; margin-bottom: 40px; }
.donate-step {
  flex: 1; padding: 16px; text-align: center;
  background: var(--dark-3); border: 1px solid var(--border-dark);
  position: relative; transition: var(--transition);
}
.donate-step.active { background: var(--gold-muted); border-color: var(--gold); }
.donate-step.done { background: var(--dark-2); }
.donate-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark-4); border: 2px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 6px;
}
.donate-step.active .donate-step-num { background: var(--gold); border-color: var(--gold); color: var(--black); }
.donate-step.done .donate-step-num { background: var(--gold-dim); border-color: var(--gold-dim); color: var(--white); }
.donate-step-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-muted); }
.donate-step.active .donate-step-label { color: var(--gold); }

#stripe-card-element {
  background: var(--dark-3); border: 1px solid var(--border-dark);
  padding: 16px; transition: border-color 0.3s;
}
#stripe-card-element.focused { border-color: var(--gold); }

/* ── Alert / Feedback ─────────────────────────────────────── */
.alert {
  padding: 16px 20px; margin-bottom: 20px;
  border-left: 3px solid;
  font-size: 0.9rem; animation: fadeInDown 0.4s ease;
}
.alert-success { background: rgba(52,199,89,0.1); border-color: #34c759; color: #34c759; }
.alert-danger { background: rgba(224,92,92,0.1); border-color: #e05c5c; color: #e05c5c; }
.alert-warning { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:none; } }

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: 1360px; margin: 0 auto; padding: 80px 40px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; text-decoration: none; }
.footer-logo img { width: 52px; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.footer-brand p { font-family: var(--font-serif); font-size: 0.95rem; color: var(--white-muted); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border); color: var(--white-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--white-muted); font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-newsletter .newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-newsletter input {
  background: var(--dark-3); border: 1px solid var(--border-dark);
  color: var(--white); padding: 12px 16px; font-size: 0.88rem;
  outline: none; transition: border-color 0.3s;
}
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter input::placeholder { color: var(--white-muted); }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding: 24px 40px;
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--white-muted); margin: 0; }
.footer-bottom a { color: var(--gold); font-size: 0.78rem; }

/* ── WhatsApp Float ───────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 100px; right: 24px; z-index: 800;
  width: 52px; height: 52px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── Pearl Chatbot ────────────────────────────────────────── */
#chatbot-toggle {
  position: fixed; bottom: 28px; right: 24px; z-index: 800;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
#chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(201,168,76,0.6); }
#chatbot-toggle.active { background: var(--dark-3); color: var(--white); border: 1px solid var(--border); }
#chatbot-window {
  position: fixed; bottom: 100px; right: 24px; z-index: 799;
  width: 360px; max-height: 540px;
  background: var(--dark-2); border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px); opacity: 0;
  pointer-events: none; transform-origin: bottom right;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
}
#chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-muted); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.chatbot-header-info .name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.chatbot-header-info .status { font-size: 0.72rem; color: var(--gold); display: flex; align-items: center; gap: 5px; }
.chatbot-header-info .status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #34c759; display: inline-block; }
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.chat-msg { max-width: 85%; animation: chatMsgIn 0.3s ease; }
@keyframes chatMsgIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 12px 16px;
  font-size: 0.85rem; line-height: 1.65;
  white-space: pre-line;
}
.chat-msg.bot .chat-bubble {
  background: var(--dark-3); color: var(--text-body);
  border: 1px solid var(--border-dark);
  border-bottom-left-radius: 0;
}
.chat-msg.user .chat-bubble {
  background: var(--gold); color: var(--black); font-weight: 500;
  border-bottom-right-radius: 0;
}
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chat-quick-btn {
  padding: 5px 12px; background: transparent;
  border: 1px solid var(--border); color: var(--gold);
  font-size: 0.73rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.chat-quick-btn:hover { background: var(--gold); color: var(--black); }
.chat-typing { display: flex; gap: 5px; align-items: center; padding: 12px 16px; background: var(--dark-3); border: 1px solid var(--border-dark); width: 60px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: typing 1.4s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100% { transform:scale(0.8); opacity:0.4; } 40% { transform:scale(1); opacity:1; } }
.chatbot-input-area {
  padding: 12px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 8px;
}
.chatbot-input {
  flex: 1; background: var(--dark-3); border: 1px solid var(--border-dark);
  color: var(--white); padding: 10px 14px; font-size: 0.85rem;
  font-family: var(--font-sans); outline: none; transition: border-color 0.3s;
}
.chatbot-input:focus { border-color: var(--gold); }
.chatbot-input::placeholder { color: var(--white-muted); }
.chatbot-send {
  width: 40px; height: 40px; background: var(--gold);
  border: none; color: var(--black); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.chatbot-send:hover { background: var(--gold-light); }

/* ── Fade-in Animations ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── Page Header (Inner Pages) ────────────────────────────── */
.page-header {
  padding: 160px 40px 80px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-header h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 16px; }
.page-header p { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white-muted); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 16px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--white-muted); }
.breadcrumb i { color: var(--white-muted); font-size: 0.6rem; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; margin-bottom: 16px;
  background: var(--dark-2); border: 1px solid var(--border-dark);
}
.contact-info-icon { width: 44px; height: 44px; background: var(--gold-muted); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item h6 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--white-dim); margin: 0; }

/* ── Spinner ──────────────────────────────────────────────── */
.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.loading-state { display: flex; align-items: center; justify-content: center; padding: 60px; }

/* ── Gold Gradient Text ───────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — full mobile rewrite
   ═══════════════════════════════════════════════════════════ */

/* ── 1200px ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .programs-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-main     { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-main > *:last-child { grid-column: 1 / -1; }
}

/* ── 992px ────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .section-wrap      { padding: 0 28px; }
  .py-section        { padding-top: 72px; padding-bottom: 72px; }
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame   { max-width: 480px; margin: 0 auto; }
  .donate-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { flex: 0 0 100%; min-width: 100%; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .pillar            { border-right: none; border-bottom: 1px solid var(--border); }
  .news-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .involve-ways      { grid-template-columns: 1fr; }
  .related-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; }
  .donate-panel      { padding: 32px 28px; }
}

/* ── 768px ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle  { display: flex; }
  .nav-inner   { padding: 14px 20px; }

  /* Layout */
  .section-wrap { padding: 0 20px; }
  .py-section   { padding-top: 56px; padding-bottom: 56px; }

  /* Hero */
  #hero           { height: 75vh; min-height: 440px; max-height: 620px; }
  .hero-content,
  .hero-content-slide { padding: 70px 20px 60px; margin: 0; }
  .hero-badge     { font-size: .62rem; padding: 5px 12px; margin-bottom: 18px; }
  .hero-title     { font-size: clamp(1.9rem, 7vw, 2.8rem); margin-bottom: 14px; }
  .hero-subtitle  { font-size: .95rem; margin-bottom: 24px; max-width: 100%; }
  .hero-actions   { gap: 12px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold { padding: 12px 22px; font-size: .82rem; }
  .hero-scroll    { display: none; }
  .hero-controls  { bottom: 24px; gap: 8px; }

  /* Section headings */
  .section-title  { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .section-lead   { font-size: .95rem; }

  /* Grids */
  .programs-grid  { grid-template-columns: 1fr; gap: 16px; }
  .news-grid      { grid-template-columns: 1fr; gap: 16px; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .related-grid   { grid-template-columns: 1fr; }

  /* Stats */
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item      { padding: 28px 16px; }
  .stat-number    { font-size: 2rem; }

  /* Cards */
  .program-card-img  { aspect-ratio: 16/9; height: auto; }
  .program-card-body { padding: 20px; }
  .news-card-body    { padding: 20px; }

  /* Donate page */
  .donate-hero    { padding: 100px 20px 60px; }
  .donate-panel   { padding: 24px 20px; }
  .amount-grid    { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .amount-btn     { padding: 12px 6px; font-size: .95rem; }
  .donate-stepper { gap: 0; }
  .step-label     { display: none; }
  .step-connector { width: 32px; }

  /* Contact */
  .contact-info-card  { padding: 28px 24px; }
  .contact-form-wrap  { padding: 28px 24px; }

  /* About img */
  .about-img-accent { display: none; }
  .about-img-stat   {
    top: auto;
    bottom: 12px;
    left: 12px;
    right: auto;
    padding: 12px 16px;
    font-size: .85rem;
  }
  .about-img-stat .num { font-size: 1.5rem; }

  /* Footer */
  .footer-main   { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; gap: 8px; }
  .footer-brand  { text-align: center; }

  /* Chatbot */
  #chatbot-window { width: calc(100vw - 20px); right: 10px; bottom: 72px; }
  #chatbot-toggle { width: 52px; height: 52px; font-size: 1.2rem; right: 16px; bottom: 16px; }

  /* Pillars */
  .pillar { padding: 32px 24px; }

  /* News single */
  .article-wrap   { padding: 0; }
  .article-img    { border-radius: 8px; margin-bottom: 28px; }
  .article-share  { flex-wrap: wrap; gap: 10px; }

  /* Get involved */
  .involve-ways   { grid-template-columns: 1fr; }
  .involve-card   { padding: 28px 24px; }
}

/* ── 480px ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero */
  #hero           { height: 70vh; min-height: 400px; }
  .hero-title     { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-actions   { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }

  /* Grids */
  .gallery-grid   { grid-template-columns: 1fr; gap: 10px; }
  .team-grid      { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }

  /* Donate */
  .amount-grid    { grid-template-columns: repeat(2, 1fr); }
  .donate-panel   { padding: 20px 16px; }
  .trust-badges   { gap: 14px; }

  /* Programs */
  .program-card-body { padding: 18px 16px; }

  /* Lightbox */
  #lightbox-prev  { left: 8px; width: 40px; height: 40px; font-size: 1rem; }
  #lightbox-next  { right: 8px; width: 40px; height: 40px; font-size: 1rem; }
  #lightbox-thumbs { gap: 5px; }
  .lb-thumb       { width: 40px; height: 40px; }

  /* Nav logo */
  .nav-logo-img   { width: 36px; height: 36px; }
  .nav-logo .sub  { display: none; }

  /* Section spacing */
  .py-section     { padding-top: 48px; padding-bottom: 48px; }
  .section-wrap   { padding: 0 16px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Admin tables on mobile */
  .admin-content  { padding: 16px; }
  .admin-table-wrap { overflow-x: auto; }
}

/* ── Real Logo Image ─────────────────────────────────────── */
.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.5);
}

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.gallery-filters .filter-btn { background: transparent; border: 1px solid rgba(201,168,76,0.35); color: var(--text-muted); padding: 8px 22px; border-radius: 30px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: all .3s; }
.gallery-filters .filter-btn:hover, .gallery-filters .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }


.gallery-item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay span { color: var(--gold); font-size: .82rem; font-family: var(--font-ui); letter-spacing: .08em; text-transform: uppercase; }

/* Lightbox */
#lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.95); align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
#lightbox-close { position: absolute; top: 24px; right: 32px; color: var(--gold); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
#lightbox-prev, #lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 2rem; cursor: pointer; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }

/* ── Donate Page ─────────────────────────────────────────── */
.donate-hero { background: linear-gradient(135deg, #0a0800 0%, #050505 60%, #0d0900 100%); padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.donate-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%); }
.donate-stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; }
.step-item { display: flex; align-items: center; gap: 10px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-family: var(--font-ui); font-weight: 700; border: 1.5px solid rgba(201,168,76,.3); color: var(--text-muted); background: transparent; transition: all .4s; }
.step-num.active { background: var(--gold); border-color: var(--gold); color: #000; }
.step-num.done { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold); }
.step-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); transition: color .4s; }
.step-label.active { color: var(--gold); }
.step-connector { width: 60px; height: 1px; background: rgba(201,168,76,.2); margin: 0 8px; }
.donate-panel { background: #fff; border: 1px solid rgba(184,144,42,.15); box-shadow: 0 2px 20px rgba(0,0,0,.06); border-radius: 16px; padding: 48px; max-width: 640px; margin: 0 auto; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn { background: transparent; border: 1px solid rgba(201,168,76,.25); color: var(--text-muted); padding: 14px 10px; border-radius: 8px; font-size: 1.1rem; font-family: var(--font-display); cursor: pointer; transition: all .3s; }
.amount-btn:hover, .amount-btn.selected { background: rgba(201,168,76,.12); border-color: var(--gold); color: var(--gold-light); }
.amount-custom { width: 100%; background: transparent; border: 1px solid rgba(201,168,76,.25); color: #fff; padding: 14px 20px; border-radius: 8px; font-size: 1.1rem; text-align: center; outline: none; }
.amount-custom:focus { border-color: var(--gold); }
.amount-custom::placeholder { color: rgba(255,255,255,.25); }
#card-element { background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.25); border-radius: 8px; padding: 16px; }
.donate-impact { margin: 40px 0; }
.donate-impact .impact-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.donate-impact .impact-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.donate-impact .impact-text strong { color: #fff; display: block; font-size: .9rem; }
.donate-impact .impact-text span { color: var(--text-muted); font-size: .8rem; }
.trust-badges { display: flex; justify-content: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: .78rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: .07em; }
.trust-badge i { color: var(--gold); }

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-card { background: #fff; border: 1px solid rgba(184,144,42,.12); box-shadow: 0 2px 16px rgba(0,0,0,.05); border-radius: 14px; padding: 40px 36px; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ci-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item .ci-text h6 { color: #fff; margin: 0 0 4px; font-size: .88rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: .08em; }
.contact-info-item .ci-text p { color: var(--text-muted); margin: 0; font-size: .9rem; line-height: 1.6; }
.contact-form-wrap { background: #fff; border: 1px solid rgba(184,144,42,.1); box-shadow: 0 2px 16px rgba(0,0,0,.05); border-radius: 14px; padding: 40px; }

/* ── Get Involved ────────────────────────────────────────── */
.involve-ways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 64px; }
.involve-card { background: #fff; border: 1px solid rgba(184,144,42,.12); box-shadow: 0 2px 16px rgba(0,0,0,.04); border-radius: 14px; padding: 36px; transition: transform .3s, border-color .3s; }
.involve-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.4); }
.involve-card .ic-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 20px; display: block; }
.involve-card h4 { font-family: var(--font-display); color: #1a1612; font-size: 1.3rem; margin-bottom: 12px; }
.involve-card p { color: rgba(26,22,18,.55); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── News Single ─────────────────────────────────────────── */
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.article-tag { background: rgba(201,168,76,.15); color: var(--gold); padding: 4px 14px; border-radius: 20px; font-size: .75rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: .1em; }
.article-date { color: var(--text-muted); font-size: .85rem; }
.article-views { color: var(--text-muted); font-size: .85rem; }
.article-img { width: 100%; border-radius: 14px; margin-bottom: 40px; max-height: 480px; object-fit: cover; }
.article-body { color: rgba(255,255,255,.8); line-height: 1.9; font-size: 1.0rem; }
.article-body p { margin-bottom: 1.4em; }
.article-share { display: flex; align-items: center; gap: 14px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.07); }
.article-share span { color: var(--text-muted); font-size: .82rem; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: .1em; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .3s; font-size: .9rem; }
.share-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Policy Pages ────────────────────────────────────────── */
.policy-wrap { max-width: 840px; margin: 0 auto; }
.policy-wrap h2 { font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; margin: 40px 0 16px; }
.policy-wrap p, .policy-wrap li { color: rgba(26,22,18,.72); line-height: 1.8; font-size: .95rem; }
.policy-wrap ul { padding-left: 20px; }
.policy-wrap ul li { margin-bottom: 8px; }

/* ── Admin Panel ─────────────────────────────────────────── */
.admin-sidebar { width: 260px; background: #1a1612; border-right: 1px solid rgba(201,168,76,.15); min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 100; display: flex; flex-direction: column; transition: transform .3s; }
.admin-main { margin-left: 260px; min-height: 100vh; background: #F4F3EE; }
.admin-sidebar-logo { padding: 28px 24px 20px; border-bottom: 1px solid rgba(201,168,76,.1); display: flex; align-items: center; gap: 12px; }
.admin-sidebar-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.admin-sidebar-logo .brand { font-family: var(--font-display); color: var(--gold); font-size: 1rem; line-height: 1.2; }
.admin-sidebar-logo .sub { font-size: .7rem; color: var(--text-muted); letter-spacing: .08em; }
.admin-nav { flex: 1; padding: 20px 12px; overflow-y: auto; }
.admin-nav .nav-section { font-size: .65rem; color: rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: .15em; padding: 14px 12px 6px; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: rgba(255,255,255,.55); font-size: .875rem; text-decoration: none; transition: all .25s; margin-bottom: 2px; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(201,168,76,.1); color: var(--gold); }
.admin-nav a i { width: 18px; font-size: 1rem; }
.admin-header { background: #fff; border-bottom: 1px solid rgba(184,144,42,.12); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-header h1 { font-size: 1.1rem; color: #1a1612; font-family: var(--font-ui); margin: 0; }
.admin-content { padding: 32px; }
.stat-card { background: #fff; border: 1px solid rgba(184,144,42,.12); box-shadow: 0 2px 12px rgba(0,0,0,.04); border-radius: 12px; padding: 24px; }
.stat-card .sc-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.stat-card .sc-num { font-family: var(--font-display); font-size: 2.2rem; color: #1a1612; line-height: 1; }
.stat-card .sc-label { font-size: .8rem; color: rgba(26,22,18,.45); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.admin-table-wrap { background: #fff; border: 1px solid rgba(184,144,42,.12); border-radius: 12px; overflow: hidden; }
.admin-table-wrap table { width: 100%; border-collapse: collapse; }
.admin-table-wrap thead tr { background: rgba(184,144,42,.07); }
.admin-table-wrap th { padding: 14px 20px; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-family: var(--font-ui); border-bottom: 1px solid rgba(201,168,76,.1); }
.admin-table-wrap td { padding: 14px 20px; font-size: .875rem; color: rgba(26,22,18,.75); border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
.admin-table-wrap tr:last-child td { border-bottom: none; }
.admin-table-wrap tr:hover td { background: rgba(184,144,42,.04); }
.badge-active { background: rgba(0,200,100,.15); color: #00c864; padding: 3px 10px; border-radius: 20px; font-size: .75rem; }
.badge-inactive { background: rgba(255,100,100,.1); color: #ff6464; padding: 3px 10px; border-radius: 20px; font-size: .75rem; }
.btn-admin { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 6px; font-size: .8rem; font-family: var(--font-ui); text-decoration: none; cursor: pointer; border: none; transition: all .25s; }
.btn-admin-gold { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
.btn-admin-gold:hover { background: var(--gold); color: #000; }
.btn-admin-red { background: rgba(255,80,80,.1); color: #ff5050; border: 1px solid rgba(255,80,80,.2); }
.btn-admin-red:hover { background: rgba(255,80,80,.25); }
.admin-form .form-group { margin-bottom: 22px; }
.admin-form label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(26,22,18,.5); margin-bottom: 8px; font-family: var(--font-ui); }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; background: #fff; border: 1px solid rgba(184,144,42,.25); color: #1a1612; padding: 12px 16px; border-radius: 8px; font-size: .9rem; outline: none; transition: border-color .3s; }
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: var(--gold); }
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form select option { background: #fff; color: #1a1612; }
.admin-modal-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 200; align-items: center; justify-content: center; }
.admin-modal-bg.open { display: flex; }
.admin-modal { background: #fff; border: 1px solid rgba(184,144,42,.2); border-radius: 16px; padding: 40px; width: 560px; max-width: 95vw; max-height: 90vh; overflow-y: auto; position: relative; }
.admin-modal h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.4rem; margin-bottom: 28px; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: rgba(26,22,18,.4); font-size: 1.4rem; cursor: pointer; }
.modal-close:hover { color: var(--gold); }
/* Admin sidebar mobile */
@media (max-width: 900px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.site-breadcrumb {
  background: rgba(184,144,42,.04);
  border-bottom: 1px solid rgba(184,144,42,.12);
  padding: 10px 0;
  margin-top: 70px; /* nav height */
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: .75rem;
  font-family: var(--font-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(26,22,18,.45);
}
.breadcrumb-list li + li::before {
  content: '/';
  margin: 0 10px;
  color: rgba(255,255,255,.15);
}
.breadcrumb-list a {
  color: rgba(26,22,18,.45);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list li.active { color: var(--gold); }

/* ── Testimonials Slider Controls ────────────────────────── */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.ts-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(184,144,42,.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all .25s;
  flex-shrink: 0;
}
.ts-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.ts-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ts-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,144,42,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.ts-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
