/* ==========================================
   Hero Section
========================================== */
.home-video-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1b312d;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
  filter: saturate(0.85) contrast(1.03) brightness(0.72);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 26, 0.26) 0%,
      rgba(18, 27, 26, 0.48) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(224, 201, 162, 0.06) 0%,
      rgba(0, 0, 0, 0) 48%
    );
}

.hero-video-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
  padding-top: 100px;
  text-align: center;
  margin: 0 auto;
}

.hero-video-eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  padding: 0 18px;
  color: #f0dfc0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero-video-eyebrow::before,
.hero-video-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-video-eyebrow::before {
  right: 100%;
  margin-right: 16px;
}

.hero-video-eyebrow::after {
  left: 100%;
  margin-left: 16px;
}

.home-video-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 8vw, 122px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.home-video-hero p {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-video-actions {
  margin-top: 34px;
}

.hero-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 16px;
  background: #3f6a61;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(38, 64, 59, 0.26);
  transition: all 0.25s ease;
}

.hero-main-btn:hover {
  transform: translateY(-2px);
  background: #34584f;
  color: #ffffff;
}

.hero-mute-toggle {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-video-content {
    padding-top: 90px;
    max-width: 100%;
  }

  .home-video-hero h1 {
    font-size: clamp(54px, 10vw, 88px);
  }

  .home-video-hero p {
    font-size: 19px;
    max-width: 620px;
  }

  .hero-video-eyebrow::before,
  .hero-video-eyebrow::after {
    width: 70px;
  }
}

@media (max-width: 767px) {
  .home-video-hero {
    min-height: 88svh;
  }

  .hero-video-content {
    padding-top: 70px;
  }

  .hero-video-eyebrow {
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .hero-video-eyebrow::before,
  .hero-video-eyebrow::after {
    width: 34px;
  }

  .home-video-hero h1 {
    font-size: 50px;
    line-height: 0.98;
  }

  .home-video-hero p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 100%;
  }

  .hero-main-btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-mute-toggle {
    right: 16px;
    bottom: 16px;
    min-height: 42px;
    font-size: 13px;
  }
}

/* ==========================================
   Symptoms / Conditions Elegant Section
========================================== */

.home-symptoms-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, #2c4a44 0%, #243f3a 100%);
  color: #f6f1e8;
}

.home-symptoms-section .container {
  position: relative;
  z-index: 3;
}

.symptoms-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.symptoms-decor img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: brightness(0.95) contrast(1.05);
  mix-blend-mode: soft-light;
}

.symptoms-decor-left {
  top: -40px;
  left: -80px;
  width: 520px;
  opacity: 0.9;
}

.symptoms-decor-right {
  right: -60px;
  bottom: -40px;
  width: 420px;
  opacity: 0.9;
}

.symptoms-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  position: relative;
  display: inline-block;
  padding: 0 18px;
  margin-bottom: 24px;
  color: #e0c9a2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: rgba(224, 201, 162, 0.55);
}

.section-eyebrow::before {
  right: 100%;
  margin-right: 14px;
}

.section-eyebrow::after {
  left: 100%;
  margin-left: 14px;
}

.symptoms-head h2 {
  margin: 0;
  color: #f7f2ea;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.symptoms-layout {
  display: grid;
  grid-template-columns: 220px 1px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.symptoms-sidebar {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.symptoms-tab {
  min-width: 168px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(246, 241, 232, 0.68);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.28s ease;
}

.symptoms-tab:hover {
  color: #ffffff;
}

.symptoms-tab.is-active {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.symptoms-divider {
  width: 1px;
  min-height: 280px;
  background: linear-gradient(
    180deg,
    rgba(224, 201, 162, 0) 0%,
    rgba(224, 201, 162, 0.9) 18%,
    rgba(224, 201, 162, 0.9) 82%,
    rgba(224, 201, 162, 0) 100%
  );
  margin-top: 18px;
}

.symptoms-content-wrap {
  padding-top: 10px;
}

.symptoms-content {
  display: none;
}

.symptoms-content.is-active {
  display: block;
}

.symptoms-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 70px;
}

.symptoms-list-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.symptoms-list-grid li {
  position: relative;
  margin: 0 0 22px;
  padding-left: 22px;
  color: rgba(246, 241, 232, 0.92);
  font-size: 21px;
  line-height: 1.7;
  font-weight: 400;
}

.symptoms-list-grid li:last-child {
  margin-bottom: 0;
}

.symptoms-list-grid li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0c9a2;
  box-shadow: 0 0 0 4px rgba(224, 201, 162, 0.08);
}

.symptoms-cta-wrap {
  margin-top: 42px;
  text-align: center;
}

.symptoms-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  background: #f3ede3;
  color: #2c4a44;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transition: all 0.28s ease;
}

.symptoms-cta-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #243f3a;
}

.home-symptoms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 0;
}

@media (max-width: 1199px) {
  .symptoms-decor-left {
    width: 260px;
  }

  .symptoms-decor-right {
    width: 240px;
  }

  .symptoms-layout {
    grid-template-columns: 180px 1px 1fr;
    gap: 28px;
  }

  .symptoms-list-grid li {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .home-symptoms-section {
    padding: 90px 0;
  }

  .symptoms-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .symptoms-sidebar {
    padding-top: 0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .symptoms-divider {
    display: none;
  }

  .symptoms-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .symptoms-cta-wrap {
    text-align: left;
  }

  .symptoms-decor-left {
    width: 220px;
    transform: translate(-30%, -12%);
    opacity: 0.45;
  }

  .symptoms-decor-right {
    width: 200px;
    transform: translate(28%, 12%);
    opacity: 0.45;
  }
}

@media (max-width: 767px) {
  .home-symptoms-section {
    padding: 74px 0;
  }

  .symptoms-head {
    margin-bottom: 36px;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .section-eyebrow::before,
  .section-eyebrow::after {
    width: 34px;
  }

  .symptoms-head h2 {
    font-size: 36px;
    line-height: 1.15;
  }

  .symptoms-tab {
    min-width: 140px;
    min-height: 48px;
    font-size: 14px;
  }

  .symptoms-list-grid li {
    font-size: 17px;
    line-height: 1.65;
    padding-left: 18px;
  }

  .symptoms-list-grid li::before {
    top: 12px;
  }

  .symptoms-cta-btn {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
  }

  .symptoms-decor-left,
  .symptoms-decor-right {
    display: none;
  }
}

/* ==========================================
   Home Testimonials + Video Popup
========================================== */

.home-testimonials-section {
  padding: 120px 0;
  background: #f7f2ea;
}

.testimonials-head {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.testimonials-head h2 {
  margin: 0;
  color: #20352f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.testimonial-video-stack {
  display: grid;
  grid-template-rows: 1fr 0.55fr;
  gap: 22px;
  height: 760px;
}

.testimonial-video-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: unset;
  padding: 0;
  border: none;
  border-radius: 34px;
  overflow: hidden;
  cursor: pointer;
  background: #2c4a44;
  box-shadow: 0 28px 60px rgba(31, 36, 52, 0.14);
}

.testimonial-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.9);
  transition: transform 0.5s ease;
}

.testimonial-video-card:hover img {
  transform: scale(1.04);
}

.testimonial-video-main {
  min-height: 460px;
}

.testimonial-video-short {
  min-height: 278px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #2c4a44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.video-play-btn svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  margin-left: 4px;
}

.video-play-btn.small {
  width: 64px;
  height: 64px;
}

.video-play-btn.small svg {
  width: 26px;
  height: 26px;
}

.video-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2c4a44;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.testimonial-carousel-wrap {
  position: relative;
  height: 760px;
  overflow: hidden;
  padding-right: 70px;
}

.testimonial-carousel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-height: 236px;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(44, 74, 68, 0.08);
  box-shadow: 0 18px 38px rgba(31, 36, 52, 0.06);
}

.testimonial-card p {
  margin: 0 0 26px;
  color: #20352f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
}

.testimonial-card strong {
  display: block;
  color: #2c4a44;
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-card span {
  display: block;
  color: #9a855c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.testimonial-carousel-controls {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.testimonial-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #2c4a44;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-arrow:hover {
  background: #203b35;
  transform: translateY(-2px);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 27, 25, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal-box {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  background: #0f1d1a;
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.video-modal-box.is-vertical {
  width: min(100%, 430px);
}

.video-modal-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #20352f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.video-modal-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.video-modal-box.is-vertical .video-modal-content {
  aspect-ratio: 9 / 16;
}

.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-video-stack,
  .testimonial-carousel-wrap {
    height: auto;
  }

  .testimonial-video-main {
    min-height: 480px;
  }

  .testimonial-video-short {
    min-height: 320px;
  }

  .testimonial-carousel-wrap {
    padding-right: 0;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .home-testimonials-section {
    padding: 80px 0;
  }

  .testimonial-video-stack {
    grid-template-rows: unset;
  }

  .testimonial-video-card {
    border-radius: 24px;
  }

  .testimonial-video-main {
    min-height: 420px;
  }

  .testimonial-video-short {
    min-height: 260px;
  }

  .testimonial-carousel {
    transform: none !important;
  }

  .testimonial-carousel-controls {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 20px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card p {
    font-size: 25px;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .video-play-btn svg {
    width: 28px;
    height: 28px;
  }
}
