.heading-display {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
}

.heading-large {
  font-size: 2rem;
  line-height: 1.25;
  color: #e9c176;
}

.label-caps {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c5a059;
}

/* Layout components */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background-color: rgba(14, 19, 31, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  z-index: 100;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-title {
  /* font-family: "EB Garamond", serif; */
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e9c176;
}

.icon-btn {
  color: #e9c176;
  cursor: pointer;
  transition: transform 0.2s;
}

.icon-btn:active {
  transform: scale(0.9);
}

/* Main Content */
.main-content {
  padding-top: 40px;
  padding-bottom: 50px;
}

.hero-section {
  margin-bottom: 20px;
  position: relative;
}

/*.gold-halo {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(233, 193, 118, 0.08) 0%,
    rgba(14, 19, 31, 0) 70%
  );
  pointer-events: none;
  z-index: -1;
}*/

.hero-content {
  max-width: 768px;
}

.hero-description {
  font-size: 14px;
  color: #454545;
  margin-top: 0px;
  max-width: 600px;
}

.accent-divider {
  width: 96px;
  height: 4px;
  background-color: #c5a059;
  margin-top: 2rem;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: #1a1f2b;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 0.75rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover {
  border-color: rgba(233, 193, 118, 0.6);
  transform: translateY(-8px);
  background-color: #252a36;
}

.profile-container {
  position: relative;
  margin-bottom: 2rem;
}

.profile-image {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid rgba(233, 193, 118, 0.3);
  object-fit: fill;
}

.play-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-color: #0e131f;
  border: 1px solid #e9c176;
  color: #e9c176;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

button#playBtn {
  cursor: pointer;
  border-radius: 15px;
  padding: 0px 17px;
  border: none;
}

.testimonial-card:hover .play-button {
  background-color: #e9c176;
  color: #0e131f;
  transform: scale(1.1);
}

.object-contain {
  width: 20px;
  height: 20px;
}

.member-name {
  /* font-family: "EB Garamond", serif; */
  font-size: 1.75rem;
  color: #e9c176;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(222, 226, 243, 0.6);
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: #d1c5b4;
  font-style: italic;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin-top: 8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box {
  padding: 3rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  background-color: rgba(26, 31, 43, 0.4);
  text-align: center;
}

.cta-box .gold-halo {
  opacity: 0.4;
  top: 0;
  left: 0;
}

.cta-title {
  /* font-family: "EB Garamond", serif; */
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(222, 226, 243, 0.7);
  margin-bottom: 2rem;
}

.primary-button {
  display: inline-block;
  background-color: #c5a059;
  color: #0e131f;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-button:hover {
  background-color: #e9c176;
}

.primary-button:active {
  transform: scale(0.95);
}

/* Footer */
.site-footer {
  padding: 4rem 1.5rem;
  background-color: #090e19;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  text-align: center;
}

.footer-logo {
  /* font-family: "EB Garamond", serif; */
  font-size: 4.5rem;
  color: #e9c176;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link {
  color: rgba(222, 226, 243, 0.5);
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #e9c176;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(222, 226, 243, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Bottom Mobile Nav */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(22, 27, 39, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(222, 226, 243, 0.6);
  font-size: 0.75rem;
  cursor: pointer;
}

.nav-item.active {
  color: #e9c176;
  background-color: rgba(48, 53, 65, 0.3);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .heading-display {
    font-size: 2.5rem;
  }

  .site-header {
    padding: 0 1rem;
  }

  .main-content {
    padding-top: 120px;
  }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonials-grid::-webkit-scrollbar {
    height: 4px;
  }

    .video-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-popup video {
    width: 100%;
    border-radius: 10px;
    background: #000;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}
  .testimonials-grid::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 10px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-content {
    text-align: center;
  }

  .accent-divider {
    margin: 2rem auto 0;
  }
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.fill-icon {
  font-variation-settings: "FILL" 1;
}
.video-testimonials-section {
  width: 100%;
  max-width: 896px; /* max-w-4xl */
  padding: 50px 15px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}
.video-testimonials-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; /* gap-6 */
  margin-bottom: 2rem; /* mb-8 */
}

.video-testimonials-divider-line {
  height: 1px;
  flex-grow: 1;
  max-width: 200px;
  background-color: #979797;
}

.video-testimonials-label-caps {
  font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c5a059;}

/* Main Title */
.video-testimonials-main-title {
  font-size: 28px !important;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
/* Description Container */
.video-testimonials-description-container {
  max-width: 36rem; /* max-w-xl */
  margin-left: auto;
  margin-right: auto;
}

.video-testimonials-description-text {
  line-height: 1.6;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  margin: 0;
}
/* Video Popup Overlay */
.video-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-popup.active {
    display: flex;
}

/* Popup Container */
.video-popup-content {
    position: relative;
    width: 65%;
    max-width: 700px;
    margin: auto;
}

/* Video */
.video-popup video {
    width: 100%;
    max-height: 70vh;
    height: auto;
    display: block;
    background: #000;
    border-radius: 12px;
    object-fit: contain;
}

/* Close Button */
.video-popup-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.video-popup-close:hover {
    opacity: 0.8;
}

/* Tablet */
@media (max-width: 1024px) {
    .video-popup-content {
        width: 80%;
        max-width: 650px;
    }

    .video-popup video {
        max-height: 65vh;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-popup {
        padding: 15px;
    }

    .video-popup-content {
        width: 100%;
        max-width: 100%;
    }

    .video-popup video {
        width: 100%;
        max-height: 55vh;
        border-radius: 8px;
    }

    .video-popup-close {
        top: -35px;
        right: 5px;
        font-size: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .video-popup video {
        max-height: 50vh;
    }

    .video-popup-close {
        font-size: 24px;
    }
}

/* Desktop / Laptop only */
@media (min-width: 769px) {
    .testimonial-card:first-child {
        grid-column: 1 / -1; /* occupy full row */
    }
}