/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 37, 69, 0.88) 0%,
    rgba(11, 37, 69, 0.72) 50%,
    rgba(11, 37, 69, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-20);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.9s 0.1s ease both;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.9s 0.2s ease both;
  max-width: 600px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-display);
  line-height: 1;
}

.hero-stat span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* MISSION STRIP */
.mission-strip {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding-block: var(--space-8);
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.8rem + 1vw, 1.4rem);
  font-weight: 600;
  color: white;
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 800px;
  margin-inline: auto;
  opacity: 0.95;
}

/* ABOUT INTRO */
.about-intro {
  background: var(--color-bg);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.about-intro-heading {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

[data-theme='dark'] .about-intro-heading {
  color: var(--color-text);
}

.about-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.pillar-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.pillar-item p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin: 0;
  max-width: none;
}

/* About image stack */
.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-img-badge {
  position: absolute;
  top: var(--space-6);
  left: -var(--space-8);
  left: -2rem;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.about-img-card {
  position: absolute;
  bottom: var(--space-6);
  right: -var(--space-6);
  right: -1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  max-width: 240px;
}

.play-eq {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--color-gold-light);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WHO WE SERVE */
.serve-section {
  background: var(--color-surface-2);
}

.serve-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.serve-header h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

[data-theme='dark'] .serve-header h2 {
  color: var(--color-text);
}

.serve-header p {
  color: var(--color-text-muted);
  max-width: 580px;
  margin-inline: auto;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.serve-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}

.serve-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.serve-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.serve-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.serve-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
  line-height: 1.6;
}

/* AREAS SECTION */
.areas-section {
  background: var(--color-bg);
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.areas-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

[data-theme='dark'] .areas-text h2 {
  color: var(--color-text);
}

.areas-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.area-pin {
  font-size: 1rem;
}

/* MAP CARD */
.areas-map-card {
  background: linear-gradient(145deg, var(--color-navy) 0%, #1a3a6e 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.map-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.map-dots-grid {
  position: absolute;
  inset: 60px 20px 20px 20px;
}

.map-city {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.map-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid white;
  margin: 0 auto 4px;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.25);
}

.map-dot.pulse {
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,166,35,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0.1); }
}

.map-city span {
  font-size: 9px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  font-weight: 500;
  display: block;
  text-align: center;
}

/* PROGRAMS PREVIEW */
.programs-preview {
  background: var(--color-surface-2);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

[data-theme='dark'] .section-header h2 {
  color: var(--color-text);
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 580px;
  margin-inline: auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.program-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-decoration: none;
  transition: all var(--transition-base);
}

.program-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.program-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.program-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.program-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
  margin-bottom: var(--space-5);
}

.program-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  font-family: var(--font-display);
}

/* VIDEO SECTION */
.video-section {
  background: var(--color-navy);
}

.video-section .section-header h2,
.video-section .section-label,
.video-section .section-header p {
  color: white;
}

.video-section .section-header p {
  opacity: 0.7;
}

.video-section .section-label {
  color: var(--color-gold);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.video-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.3);
  box-shadow: var(--shadow-lg);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* TESTIMONIALS */
.testimonials-section {
  background: linear-gradient(135deg, #0B2545 0%, #1a3a6e 100%);
  color: white;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: white;
}

.testimonials-section .section-header p {
  opacity: 0.7;
}

.testimonial-carousel {
  max-width: 800px;
  margin-inline: auto;
}

.testimonial-track {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: var(--space-5);
  height: 40px;
}

.testimonial-text {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-8);
  font-style: italic;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-2);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 24px;
}

/* WHY SECTION */
.why-section {
  background: var(--color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.why-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

[data-theme='dark'] .why-text h2 {
  color: var(--color-text);
}

.why-text > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.why-point {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-coral));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.why-point p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-8);
}

.why-quote p {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.1rem);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-2);
  font-style: italic;
  max-width: none;
}

.why-quote span {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
}

/* CTA BANNER */
.cta-banner {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,37,69,0.92), rgba(46,95,163,0.85));
}

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

.cta-banner-content h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-5);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cta-contact-link:hover {
  color: var(--color-gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-intro-grid,
  .areas-inner,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-visual {
    order: -1;
  }

  .about-img-main {
    height: 360px;
  }

  .about-img-badge {
    left: var(--space-4);
  }

  .about-img-card {
    right: var(--space-4);
  }

  .about-intro-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .why-image img {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: var(--space-4);
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-pillars {
    grid-template-columns: 1fr;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURED VIDEO PLAYER
   ============================================ */
.featured-video-wrap {
  max-width: 820px;
  margin-inline: auto;
}

.featured-video-player {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  /* Portrait video: 720x1280 → cap height so it's not full-screen tall */
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-video-player video {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

/* Big play overlay */
.vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,37,69,0.35);
  transition: opacity 0.3s;
  z-index: 2;
  border-radius: 16px;
}
.vid-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.vid-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  transition: transform 0.2s, filter 0.2s;
  padding: 0;
}
.vid-play-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.vid-play-btn svg {
  width: 80px;
  height: 80px;
}

/* Bottom control bar */
.vid-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  z-index: 3;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  transition: opacity 0.25s;
}
.featured-video-player:hover .vid-controls,
.featured-video-player:focus-within .vid-controls {
  opacity: 1;
}

.vid-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.15s;
}
.vid-btn:hover { opacity: 1; transform: scale(1.12); }
.vid-btn svg { width: 20px; height: 20px; }

.vid-progress-wrap {
  flex: 1;
}
.vid-progress-bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
}
.vid-progress-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 4px;
  width: 0%;
  pointer-events: none;
  transition: width 0.1s linear;
}
.vid-scrubber {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.vid-time {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Caption below player */
.featured-video-caption {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 12px 12px 0;
}
.featured-video-caption p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.vid-badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .featured-video-caption {
    flex-direction: column;
    gap: var(--space-3);
  }
  .vid-time { display: none; }
}
