/* ══════════════════════════════════════════════
   CINEBUFF — Expert Page Styles (expert.html)
══════════════════════════════════════════════ */

/* ─── Navbar: always scrolled on this page ─── */
#navbar { background: rgba(7,7,7,0.97); backdrop-filter: blur(16px); }
.nav-links .active { color: var(--gold) !important; }

/* ─── Breadcrumb ─── */
.exp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.exp-breadcrumb a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.exp-breadcrumb a:hover { color: var(--gold); }
.exp-breadcrumb i { font-size: 0.6rem; }
.exp-breadcrumb span { color: var(--gold-dim); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.exp-hero {
  padding: 8rem 0 5.5rem;
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}
.exp-hero-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.exp-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

/* Photo — inherit expert-frame styles from styles.css, scaled up */
.exp-photo-col { flex-shrink: 0; }
.exp-frame {
  position: relative;
  width: 300px;
}
.exp-frame .expert-photo-placeholder {
  width: 300px;
  aspect-ratio: 3/4;
}
.exp-frame .expert-years-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 88px;
  height: 88px;
}
.exp-frame .expert-years-badge .years-num { font-size: 2rem; }
.exp-frame .expert-gold-accent-bar {
  position: absolute;
  top: 0; left: -6px;
  width: 3px; height: 100%;
}

/* Hero text */
.exp-hero-text { padding-bottom: 1rem; }

.exp-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 0.5rem 0 0.4rem;
  letter-spacing: -0.01em;
}
.exp-hero-role {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.exp-hero-rule {
  width: 56px;
  height: 1px;
  background: rgba(201,168,76,0.45);
  margin-bottom: 1.6rem;
}
.exp-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

/* Stats row */
.exp-hero-stats {
  display: flex;
  gap: 3rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2.4rem;
}
.exp-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.exp-stat-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}

/* CTAs */
.exp-hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.exp-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(37,211,102,0.35);
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.exp-wa-btn:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37,211,102,0.06);
}
.exp-wa-btn i { font-size: 1rem; }

/* ══════════════════════════════════════════════
   HIS STORY
══════════════════════════════════════════════ */
.exp-story {
  padding: 5.5rem 0;
  background: var(--dark-2);
}
.exp-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.exp-story-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  border-left: 3px solid var(--gold);
  padding-left: 1.8rem;
  margin: 0 0 1.2rem;
}
.exp-story-quote cite {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-left: 1.8rem;
}
.exp-story-body p {
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}
.exp-story-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════
   CREDENTIALS
══════════════════════════════════════════════ */
.exp-credentials {
  padding: 5.5rem 0;
  background: var(--dark-1);
}
.exp-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.exp-cred-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.exp-cred-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}
.exp-cred-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
}
.exp-cred-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.exp-cred-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════ */
.exp-philosophy {
  padding: 5.5rem 0;
  background: var(--dark-2);
}
.exp-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.exp-philosophy-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.exp-philosophy-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.exp-phil-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
}
.exp-phil-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.exp-philosophy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.exp-philosophy-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.85;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.exp-testimonials {
  padding: 5.5rem 0;
  background: var(--dark-1);
}
.exp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.exp-cta-section {
  padding: 5.5rem 0;
  background: var(--dark-2);
}
.exp-cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 4rem 3rem;
  text-align: center;
}
.exp-cta-box .section-eyebrow { margin-bottom: 0.8rem; }
.exp-cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.exp-cta-box p {
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.exp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.exp-portfolio-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.exp-portfolio-link:hover { color: var(--gold); }
.exp-portfolio-link i { font-size: 0.78rem; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-hero-grid { gap: 3rem; }
  .exp-story-grid { gap: 3rem; }
}

@media (max-width: 960px) {
  .exp-hero { padding: 7.5rem 0 4.5rem; }
  .exp-hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
  }
  .exp-frame { width: 260px; }
  .exp-frame .expert-photo-placeholder { width: 260px; height: 330px; }
  .exp-hero-text { text-align: left; }
  .exp-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .exp-cred-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-philosophy-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .exp-testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .exp-hero-stats { flex-wrap: wrap; gap: 1.8rem; }
  .exp-hero-ctas { flex-direction: column; align-items: flex-start; }
  .exp-cred-grid { grid-template-columns: 1fr; }
  .exp-cta-box { padding: 3rem 1.5rem; }
  .exp-cta-actions { flex-direction: column; gap: 1.2rem; }
}
