/* ═══════════════════════════════════════════════════════════════
   viveks.co — Design System
   Palette: Midnight Slate + Warm Gold
   Dr. Vivek S. | Where Psychology Meets Leadership
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --midnight:   #0E1117;
  --slate:      #141928;
  --slate-mid:  #1C2438;
  --slate-card: #1E2840;
  --gold:       #C8A84C;
  --gold-light: #E2C97E;
  --gold-dim:   rgba(200,168,76,0.15);
  --white:      #FFFFFF;
  --off-white:  #F4F1EC;
  --text:       #E8E4DC;
  --text-muted: rgba(232,228,220,0.55);
  --border:     rgba(200,168,76,0.12);
  --shadow:     0 8px 40px rgba(0,0,0,0.45);

  --font-head:  Georgia, 'Times New Roman', serif;
  --font-body:  'Segoe UI', system-ui, -apple-system, sans-serif;

  --section-py: clamp(72px, 9vw, 120px);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); color: var(--white); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); color: var(--white); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--white); }
h4 { font-size: 1.05rem; color: var(--gold-light); }
p  { color: var(--text); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title  { margin-bottom: 16px; }
.section-sub    { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }
.section-header { margin-bottom: 56px; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-item.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--midnight);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,17,23,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(14,17,23,0.97); }

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-name { font-weight: 400; }
.nav-logo-dot  { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(200,168,76,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--white); background: rgba(200,168,76,0.08); }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.25s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.nav-dropdown-item:hover { background: var(--gold-dim); color: var(--gold-light); }
.nav-dropdown-item-icon { font-size: 1rem; width: 20px; text-align: center; }

.nav-cta {
  background: var(--gold);
  color: var(--midnight);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--slate);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.nav-mobile-link:hover { color: var(--white); background: var(--gold-dim); }
.nav-mobile-section {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 16px 4px;
}
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--gold);
  color: var(--midnight);
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   01 · HERO (Homepage)
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  padding: clamp(48px, 8vw, 100px) clamp(28px, 5vw, 72px);
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.75;
}
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-credential-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(200,168,76,0.3);
  padding: 5px 12px;
  border-radius: 100px;
}
.hero-image-wrap {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1f35 0%, #0e1117 100%);
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--midnight), transparent);
  z-index: 2;
}
.hero-image-glow {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(200,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.hero-photo {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: clamp(28px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 10;
  animation: bounceHint 2.5s ease-in-out infinite;
}
@keyframes bounceHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
  }
  .hero-image-wrap {
    height: 55vw;
    min-height: 280px;
    order: -1;
  }
  .hero-content { padding: 40px 28px 56px; }
  .hero-scroll-hint { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   02 · STATS BAR
══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 28px;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
@media (max-width: 640px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ══════════════════════════════════════════════════════════════
   03 · ABOUT STRIP
══════════════════════════════════════════════════════════════ */
.about-strip {
  padding: var(--section-py) 28px;
  background: var(--midnight);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.about-strip-label { margin-bottom: 32px; }
.about-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--white);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 28px;
  font-style: italic;
}
.about-body { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.about-tag {
  font-size: 0.75rem;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid rgba(200,168,76,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.about-accolades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.accolade-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.accolade-icon { font-size: 1.6rem; margin-bottom: 10px; }
.accolade-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.accolade-body  { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 860px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════════════════
   04 · SERVICES GRID
══════════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-py) 28px;
  background: var(--slate);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(200,168,76,0.4);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-title {
  font-size: 1.15rem;
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 10px;
}
.service-body { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.service-link {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   05 · PROGRAMMES GRID
══════════════════════════════════════════════════════════════ */
.programmes {
  padding: var(--section-py) 28px;
  background: var(--midnight);
}
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prog-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.prog-card:hover { border-color: rgba(200,168,76,0.35); transform: translateY(-4px); }
.prog-card:hover::before { opacity: 1; }
.prog-trademark {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.prog-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}
.prog-body { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.prog-link {
  font-size: 0.78rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.prog-link:hover { gap: 10px; }
@media (max-width: 900px) { .programmes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .programmes-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   06 · CLIENT LOGOS
══════════════════════════════════════════════════════════════ */
.clients {
  padding: var(--section-py) 28px;
  background: var(--slate);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px 24px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.client-item {
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
  filter: brightness(0) invert(1);
}
.client-item:hover { opacity: 1; transform: scale(1.07); }
.client-item img {
  max-width: 100px;
  max-height: 44px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }

/* ══════════════════════════════════════════════════════════════
   07 · TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 28px;
  background: var(--midnight);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testi-quote {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.testi-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { font-size: 0.82rem; color: var(--white); font-weight: 600; }
.testi-role   { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

/* ══════════════════════════════════════════════════════════════
   08 · CONTACT CTA
══════════════════════════════════════════════════════════════ */
.contact-cta {
  padding: var(--section-py) 28px;
  background: var(--slate);
  text-align: center;
}
.contact-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.contact-cta h2 { margin-bottom: 16px; }
.contact-cta p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-option a { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--midnight);
  border-top: 1px solid var(--border);
  padding: 56px 28px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-purclive-link { font-size: 0.78rem; color: var(--gold); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   INNER PAGE HERO (shared)
══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(68px + 72px) 28px 72px;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 720px; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.page-hero-title { margin-bottom: 20px; }
.page-hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   INNER PAGE — CONTENT SECTIONS
══════════════════════════════════════════════════════════════ */
.content-section {
  padding: var(--section-py) 28px;
}
.content-section--dark  { background: var(--midnight); }
.content-section--slate { background: var(--slate); }

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--reverse .two-col-right { order: -1; }
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col-right { order: 0; }
}

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.feature-text p  { font-size: 0.87rem; color: var(--text-muted); }

/* Offering cards */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.offering-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.offering-card:hover { border-color: rgba(200,168,76,0.35); transform: translateY(-3px); }
.offering-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.offering-card p  { font-size: 0.87rem; color: var(--text-muted); }

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: 32px; }
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  min-width: 52px;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p  { font-size: 0.9rem; color: var(--text-muted); }

/* Audience grid — 3 columns, 2 rows, perfectly symmetric */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.audience-item {
  background: var(--gold-dim);
  border: 1px solid rgba(200,168,76,0.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.audience-icon { font-size: 1.8rem; margin-bottom: 8px; }
.audience-label { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; }

/* Full-width CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--slate-mid) 0%, var(--slate) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 28px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p  { color: var(--text-muted); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* Collab types */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collab-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition);
}
.collab-card:hover { border-color: rgba(200,168,76,0.35); }
.collab-icon { font-size: 2rem; margin-bottom: 16px; }
.collab-title { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.collab-body  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 760px) { .collab-grid { grid-template-columns: 1fr; } }

/* Marquee (reused) */
.marquee-wrap {
  background: var(--slate);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee-overflow { position: relative; overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap;
  padding: 0 24px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-sep { color: var(--gold); opacity: 0.4; display: flex; align-items: center; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Footer Social Icons ───────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200,168,76,0.08);
}

/* ── Podcast Section ───────────────────────────────────────── */
.podcasts { background: var(--slate); padding: 80px 28px; }
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.podcast-card {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  align-items: flex-start;
}
.podcast-card--soon {
  border-color: rgba(200,168,76,0.25);
  background: rgba(200,168,76,0.03);
}
.podcast-artwork {
  font-size: 2.4rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}
.podcast-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.podcast-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.podcast-badge:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.podcast-badge--spotify:hover  { color: #1db954; border-color: #1db954; background: rgba(29,185,84,0.08); }
.podcast-badge--youtube:hover  { color: #ff0000; border-color: #ff0000; background: rgba(255,0,0,0.08); }
.podcast-badge--apple:hover    { color: #fc3c44; border-color: #fc3c44; background: rgba(252,60,68,0.08); }
.podcast-badge--amazon:hover   { color: #ff9900; border-color: #ff9900; background: rgba(255,153,0,0.08); }
.podcast-soon-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(200,168,76,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(200,168,76,0.3);
}

@media(max-width: 760px) {
  .podcast-grid { grid-template-columns: 1fr; }
  .podcast-card { flex-direction: column; }
}

/* ── T-POP Programme Tier Layout ──────────────────────────── */
.tpop-track { position: relative; padding-top: 32px; }
.tpop-track-line {
  display: none; /* visual connector hidden on mobile */
}
.tpop-tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 24px;
}
.tpop-tier-row::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,168,76,0.15), rgba(200,168,76,0.5), rgba(200,168,76,0.15));
}
.tpop-tier { position: relative; }
.tpop-tier-node {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--midnight);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
}
.tpop-tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  box-sizing: border-box;
}
.tpop-tier-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.tpop-tier-duration {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.tpop-tier-badge {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.tpop-tier-type {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 10px 0;
}
.tpop-tier-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
}
.tpop-tag--green  { background: rgba(100,200,100,0.15); color: #7eca7e; }
.tpop-tag--purple { background: rgba(160,120,220,0.15); color: #b89ee0; }
.tpop-tag--gold   { background: rgba(200,168,76,0.15);  color: var(--gold-light); }

/* Mastery full-width tier */
.tpop-mastery {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}
.tpop-tier-node--mastery {
  margin: 0 auto 12px;
}
.tpop-mastery-card {
  background: rgba(200,168,76,0.06);
  border: 1px solid rgba(200,168,76,0.3);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
}
.tpop-mastery-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.tpop-mastery-card p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 10px;
}

/* Offering card "more" variant */
.offering-card--more {
  border-style: dashed;
  border-color: rgba(200,168,76,0.3);
  background: rgba(200,168,76,0.03);
  text-align: center;
}
.offering-card--more h3 { color: var(--gold-light); }

/* Responsive: audience grid and T-POP */
@media(max-width: 760px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .tpop-tier-row { grid-template-columns: 1fr; }
  .tpop-tier-row::before { display: none; }
  .tpop-mastery-card { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   ADDITIONS v7 — dropdown fix, hero placeholder, client badges,
   academy strip, contact form
══════════════════════════════════════════════════════════════ */

/* ── DROPDOWN: bridge gap so hover doesn't break ─────────── */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--white); background: rgba(200,168,76,0.08); }

/* ── ACADEMY NAV LINK ─────────────────────────────────────── */
.nav-link--academy { color: var(--gold) !important; font-weight: 600; }
.nav-link--academy:hover { background: rgba(200,168,76,0.12) !important; }

/* ── HERO IMAGE PLACEHOLDER ──────────────────────────────── */
.hero-image-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--slate-mid);
  border: 2px solid var(--border);
}
.hero-image-wrap.hero-image-fallback .hero-image-placeholder { display: flex; }
.hero-image-wrap.hero-image-fallback .hero-photo { display: none; }
.hero-image-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ── CLIENT NAME BADGES (replaces broken images) ─────────── */
.client-name-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--slate-mid);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  min-height: 44px;
}
.client-name-badge:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(200,168,76,0.06);
}
.clients-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 24px;
}

/* ── ACADEMY STRIP ───────────────────────────────────────── */
.academy-strip {
  background: linear-gradient(90deg, var(--slate-mid) 0%, rgba(61,21,137,0.18) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
}
.academy-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.academy-strip-text { display: flex; flex-direction: column; gap: 4px; }
.academy-strip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold);
  font-weight: 700;
}
.academy-strip-headline {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-head);
}
@media (max-width: 600px) {
  .academy-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 32px auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: left;
}
.req { color: var(--gold); }
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  background: var(--slate-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact-form-group select option { background: var(--slate-mid); color: var(--white); }
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,76,0.15);
}
.contact-form-group textarea { resize: vertical; min-height: 120px; }
.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form-submit { min-width: 160px; cursor: pointer; border: none; }
.contact-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.contact-form-status {
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 6px;
  display: none;
}
.contact-form-status.success {
  display: block;
  background: rgba(46,125,50,0.2);
  color: #81c784;
  border: 1px solid rgba(46,125,50,0.4);
}
.contact-form-status.error {
  display: block;
  background: rgba(183,28,28,0.2);
  color: #ef9a9a;
  border: 1px solid rgba(183,28,28,0.4);
}

/* ══════════════════════════════════════════════════════════════
   HERO IMAGE ANIMATION — fade + rise on load
══════════════════════════════════════════════════════════════ */

@keyframes heroImageReveal {
  0%   { opacity: 0; transform: translateY(32px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

.hero-photo {
  animation: heroImageReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Video hero — match image styling exactly */
video.hero-photo {
  display: block;
  border-radius: inherit;
  background: transparent;
}

/* ══════════════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════════════ */

.gallery-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

/* Masonry via CSS columns */
.gallery-masonry {
  column-count: 3;
  column-gap: 12px;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .gallery-masonry { column-count: 2; }
}
@media (max-width: 560px) {
  .gallery-masonry { column-count: 2; column-gap: 8px; }
}

/* Each tile */
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-secondary);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
  filter: brightness(0.92);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Subtle overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 6px;
}
.gallery-item:hover::after {
  background: rgba(200, 168, 76, 0.08);
}

/* Video play button */
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(200, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e1117;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.gallery-play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}
.gallery-item:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
}

/* ── Lightbox ── */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.96);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active {
  display: flex;
}

.gallery-lb-inner {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lb-img,
.gallery-lb-video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  display: none;
  object-fit: contain;
}
.gallery-lb-img.active,
.gallery-lb-video.active {
  display: block;
}

.gallery-lb-caption {
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Lightbox controls */
.gallery-lb-close,
.gallery-lb-prev,
.gallery-lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s;
  z-index: 9001;
  padding: 8px;
}
.gallery-lb-close:hover,
.gallery-lb-prev:hover,
.gallery-lb-next:hover { color: var(--gold); }

.gallery-lb-close { top: 16px; right: 20px; font-size: 2.4rem; }
.gallery-lb-prev  { top: 50%; left: 12px;  transform: translateY(-50%); font-size: 2.8rem; }
.gallery-lb-next  { top: 50%; right: 12px; transform: translateY(-50%); font-size: 2.8rem; }

@media (max-width: 600px) {
  .gallery-lb-prev { left: 4px; }
  .gallery-lb-next { right: 4px; }
}
