/* ============================================================
   PRAKASH PYNE — LEADERSHIP BRAND WEBSITE
   Main Stylesheet
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:       #080808;
  --black-soft:  #0f0f0f;
  --black-card:  #141414;
  --black-border:#1e1e1e;
  --black-hover: #1a1a1a;
  --white:       #ffffff;
  --white-90:    rgba(255,255,255,0.9);
  --white-70:    rgba(255,255,255,0.7);
  --white-40:    rgba(255,255,255,0.4);
  --white-15:    rgba(255,255,255,0.15);
  --white-07:    rgba(255,255,255,0.07);
  --white-04:    rgba(255,255,255,0.04);
  --gold:        #c9a84c;
  --gold-light:  #e0c06a;
  --gold-dark:   #9a7830;
  --gold-10:     rgba(201,168,76,0.10);
  --gold-20:     rgba(201,168,76,0.20);
  --gold-40:     rgba(201,168,76,0.40);
  --grey:        #888888;
  --grey-light:  #aaaaaa;
  --grey-dark:   #444444;

  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 80px;
  --section-pad: 110px 0;
  --radius: 50px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background: var(--black);
  color: var(--white-70);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  /* Prevent pinch-zoom sideways shift */
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

::selection { background: var(--gold-20); color: var(--white); }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader-logo-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  filter: grayscale(30%);
}

.preloader-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  animation: spin 1.2s linear infinite;
}

.preloader-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}

.preloader-tagline {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 0 20px;
}

.preloader-bar-wrap {
  width: 180px;
  max-width: calc(100vw - 60px);
  height: 1px;
  background: var(--white-07);
  position: relative;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ============================================================
   OLD NAVBAR — hidden (replaced by assistive-touch sidebar)
   ============================================================ */
#mainNav { display: none !important; }

/* ============================================================
   ASSISTIVE TOUCH SIDEBAR (iPhone-style floating nav)
   ============================================================ */

/* Floating trigger bubble */
.at-bubble {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.22);
  border: 1.5px solid rgba(201,168,76,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  /* Pulse glow ring */
  animation: atPulse 2.4s ease-in-out infinite;
}

@keyframes atPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.45), 0 4px 20px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0), 0 4px 20px rgba(0,0,0,0.5); }
}

.at-bubble:hover,
.at-bubble.active {
  background: rgba(201,168,76,0.4);
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  animation: none;
}

/* Tooltip label beside bubble */
.at-bubble::before {
  content: 'Menu';
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
}

.at-bubble.active::before,
.at-bubble.hide-tip::before {
  opacity: 0;
}

/* Inner logo/icon inside bubble */
.at-bubble-inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.at-bubble-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(10%);
}

/* Sidebar panel */
.at-panel {
  position: fixed;
  right: -300px;
  top: 0;
  bottom: 0;
  width: 280px;
  z-index: 9991;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(201,168,76,0.12);
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -12px 0 60px rgba(0,0,0,0.7);
  overflow-y: auto;
  overflow-x: hidden;
}

.at-panel.open {
  right: 0;
}

/* Backdrop */
.at-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9989;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.at-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* Panel header */
.at-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.at-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(15%);
  border: 1.5px solid rgba(201,168,76,0.3);
}

.at-header-text .at-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.at-header-text .at-sub {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Close button */
.at-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.at-close:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
}

/* Nav links */
.at-nav {
  padding: 20px 0;
  flex: 1;
}

.at-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  color: var(--white-70);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  border-left: 2px solid transparent;
}

.at-nav-link:hover,
.at-nav-link.active {
  color: var(--white);
  background: rgba(201,168,76,0.06);
  border-left-color: var(--gold);
}

.at-nav-link .at-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.at-nav-link:hover .at-nav-icon,
.at-nav-link.active .at-nav-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
}

.at-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 8px 28px;
}

/* CTA inside panel */
.at-panel-cta {
  padding: 20px 28px 32px;
  flex-shrink: 0;
}

.at-panel-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.at-panel-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* Social row inside panel */
.at-social {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 28px 28px;
  flex-shrink: 0;
}

.at-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.at-social a:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

/* Page hero top padding adjustment (no top navbar) */
.page-hero { padding-top: 60px; }

/* Scroll progress stays at top */
#scroll-progress { z-index: 9999; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.08);
  transition: transform 8s ease;
  z-index: 0;
}

#hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--black) 0%, transparent 100%);
  z-index: 2;
}

#three-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.hero-name span { color: var(--gold); }

.hero-roles {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-70);
  padding: 0 16px;
  border-right: 1px solid var(--white-15);
}

.hero-role:first-child { padding-left: 0; }
.hero-role:last-child  { border-right: none; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 42px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-40);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-primary-dark:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.35);
  color: var(--black);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--white-15);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: var(--white-07);
  border-color: var(--white-40);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-text-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), opacity var(--transition);
}

.btn-text-gold:hover { gap: 14px; opacity: 0.8; color: var(--gold); }

/* ============================================================
   SECTION STRUCTURE
   ============================================================ */
.section { padding: var(--section-pad); }

.section-dark { background: var(--black); }

.section-soft { background: var(--black-soft); }

.section-card { background: var(--black-card); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-heading span { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--white-40);
  max-width: 520px;
  line-height: 1.8;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.stat-col {
  padding: 40px 0;
  text-align: center;
  border-right: 1px solid var(--black-border);
  transition: background var(--transition);
}

.stat-col:last-child { border-right: none; }
.stat-col:hover { background: var(--white-04); }

.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-40);
}

.stat-num .accent { color: var(--gold); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  border-radius: var(--radius);
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--black);
  filter: grayscale(10%);
}

.about-img-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
}

.about-img-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-img-badge .badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.about-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-70);
  padding: 7px 16px;
  border: 1px solid var(--black-border);
  border-radius: 30px;
  transition: all var(--transition);
}

.about-tag:hover {
  border-color: var(--gold-40);
  color: var(--gold);
}

/* ============================================================
   SERVICES / MENTORSHIP CARDS
   ============================================================ */
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold-20);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}

.service-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white-04);
  line-height: 1;
  user-select: none;
  transition: color var(--transition);
}

.service-card:hover .service-num { color: rgba(201,168,76,0.06); }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--white-40);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================================
   SPEAKING / EVENT CARDS
   ============================================================ */
.speaking-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.speaking-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.speaking-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.speaking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: grayscale(20%);
}

.speaking-card:hover .speaking-img img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.speaking-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.speaking-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 2px;
}

.speaking-body { padding: 24px 28px 28px; }

.speaking-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.speaking-meta span {
  font-size: 0.68rem;
  color: var(--white-40);
  display: flex;
  align-items: center;
  gap: 6px;
}

.speaking-meta i { color: var(--gold); font-size: 0.65rem; }

.speaking-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.speaking-desc {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   INSIGHTS / ARTICLE CARDS
   ============================================================ */
.insight-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  height: 100%;
}

.insight-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

.insight-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(25%);
}

.insight-card:hover .insight-img img { transform: scale(1.06); }

.insight-cat {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.8);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--gold-20);
}

.insight-body { padding: 24px; }

.insight-date {
  font-size: 0.65rem;
  color: var(--white-40);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.insight-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.insight-excerpt {
  font-size: 0.83rem;
  color: var(--white-40);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============================================================
   FAITH / SERMONS SECTION
   ============================================================ */
.faith-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color var(--transition), background var(--transition);
}

.faith-card:hover {
  border-color: rgba(201,168,76,0.15);
  background: var(--black-hover);
}

.faith-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(30%);
}

.faith-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.faith-card:hover .faith-play {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(201,168,76,0.4);
}

.faith-cat {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.faith-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.faith-meta {
  font-size: 0.72rem;
  color: var(--white-40);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-masonry {
  columns: 4;
  column-gap: 6px;
}

.gallery-masonry .g-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-masonry .g-item img {
  width: 100%;
  display: block;
  filter: grayscale(30%);
  transition: transform 0.6s ease, filter 0.5s ease;
}

.gallery-masonry .g-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-item:hover .g-overlay { opacity: 1; }

.g-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.g-item:hover .g-zoom-icon { transform: scale(1.1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.t-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 40px;
  flex: 0 0 calc(50% - 12px);
  transition: border-color var(--transition);
}

.t-card:hover { border-color: rgba(201,168,76,0.2); }

.t-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold-20);
  line-height: 0.5;
  margin-bottom: 28px;
  display: block;
}

.t-text {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 2px;
}

.t-role {
  font-size: 0.72rem;
  color: var(--white-40);
  letter-spacing: 1px;
}

.t-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 4px; }

.t-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: transparent;
  color: var(--white-40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.t-btn:hover {
  border-color: var(--gold-40);
  color: var(--gold);
  background: var(--gold-10);
}

.t-dots {
  display: flex;
  gap: 6px;
  margin-left: 8px;
}

.t-dot {
  width: 20px;
  height: 2px;
  background: var(--white-15);
  border-radius: 1px;
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}

.t-dot.active {
  background: var(--gold);
  width: 36px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/gallery2.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) brightness(0.3);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 100%);
}

.cta-content { position: relative; z-index: 1; }

.cta-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.form-group { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
  color: var(--white);
  background: var(--black-card);
}

.form-control::placeholder { color: var(--white-15); }

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23c9a84c' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control option { background: #141414; color: #fff; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-info-text h6 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--white-70);
  margin: 0;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white-70);
  transition: all var(--transition);
}

.social-pill:hover {
  border-color: var(--gold-40);
  color: var(--gold);
  background: var(--gold-10);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 60px 0 70px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.page-hero-title span { color: var(--gold); }

.breadcrumb {
  margin-top: 20px;
}

.breadcrumb-item { font-size: 0.72rem; color: var(--white-40); }
.breadcrumb-item a { color: var(--white-40); transition: color 0.3s; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--white-15); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 80px 0 0;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  filter: grayscale(20%);
  margin-bottom: 16px;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.footer-statement {
  font-size: 0.82rem;
  color: var(--white-40);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-heading {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.83rem;
  color: var(--white-40);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--white-40);
}

.footer-made {
  font-size: 0.7rem;
  color: var(--white-15);
  font-style: italic;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#lightbox.active { opacity: 1; visibility: visible; }

#lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.25s ease;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.lb-close { top: 24px; right: 24px; width: 44px; height: 44px; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold-20);
  border-color: var(--gold-40);
  color: var(--gold);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold-light); transform: translateY(-3px) !important; box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

/* ============================================================
   REVEAL ANIMATIONS (CSS fallback)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-40);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.map-placeholder i { color: var(--gold); font-size: 1.2rem; }

/* ============================================================
   FILTER BUTTONS
   ============================================================ */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--black-border);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   HORIZONTAL RULE
   ============================================================ */
.hr-dark {
  border: none;
  border-top: 1px solid var(--black-border);
  margin: 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold  { color: var(--gold); }
.text-dim   { color: var(--white-40); }
.text-serif { font-family: var(--font-heading); }
.border-gold-subtle { border: 1px solid rgba(201,168,76,0.15); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .gallery-masonry { columns: 3; }
  .t-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 991px) {
  :root { --section-pad: 80px 0; }
  .about-img-accent { display: none; }
  .about-img-badge { left: 0; }
  .gallery-masonry { columns: 3; }
}

@media (max-width: 767px) {
  :root { --section-pad: 60px 0; }
  .hero-name { letter-spacing: -0.5px; }
  .hero-roles { gap: 0; }
  .hero-role { padding: 4px 12px; font-size: 0.65rem; }
  .gallery-masonry { columns: 2; }
  .stats-bar .stat-col { border-right: none; border-bottom: 1px solid var(--black-border); }
  .stats-bar .stat-col:last-child { border-bottom: none; }
  .about-img-main { height: 400px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }

  /* Tighter page-hero on mobile */
  .page-hero { padding: 40px 0 50px; }

  /* Preloader fully centered on small screens */
  #preloader { padding: 0 24px; text-align: center; }
  .preloader-name { font-size: 1.1rem; letter-spacing: 2px; }
  .preloader-tagline { font-size: 0.62rem; letter-spacing: 2.5px; }

  /* Bubble tooltip: hide on mobile — bubble itself is the indicator */
  .at-bubble::before { display: none; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 2; column-gap: 4px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary-dark,
  .hero-buttons .btn-outline-dark { text-align: center; justify-content: center; }

  /* Even tighter page hero on very small screens */
  .page-hero { padding: 32px 0 44px; }
}
