/* ===================================================
   VIDEO SECTION
   =================================================== */
.video-section {
  background: var(--cream2);
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Infant', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.4;
  letter-spacing: 4px;
}

.red-bold {
  color: #d3111a;
  font-weight: 700;
  font-family: 'Cormorant Infant', serif;
}

.section-sub {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 48px;
  letter-spacing: 0.9px;
  font-family: 'Inter', sans-serif;
}

.video-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.video-leaf {
  flex-shrink: 0;
  width: clamp(24px, 4vw, 68px);
  height: auto;
  align-self: center;
  opacity: .85;
}

.video-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 760px;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  border: 3px solid #ffe1a6;
}

.video-thumb-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform .2s;
}

.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

.play-icon-yt {
  font-size: 5rem;
  background: linear-gradient(to right, #eece66, #88763a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .95;
  display: block;
}

.video-embed {
  flex: 1;
  min-width: 0;
  max-width: 760px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  border: 3px solid #ffe1a6;
}

.video-embed iframe { width: 100%; height: 100%; display: block; }

.below-btn {
  color: #131314;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ===================================================
   DIVIDER
   =================================================== */
.divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 40px;
  background: var(--cream2);
}

.divider-line {
  flex: 1;
  max-width: 220px;
  height: 1.5px;
  background: #6b0f0f;
}

.divider-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6b0f0f;
  flex-shrink: 0;
}

.cross {
  color: #6b0f0f;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

/* --- responsive --- */
@media (max-width: 720px) {
  .video-leaf { width: 28px; }
  .play-icon-yt { font-size: 3.5rem; }
}

@media (max-width: 480px) {
  .video-row { gap: 8px; }
  .video-leaf { display: none; }
  .video-wrapper,
  .video-embed { border-radius: 14px; }
  .section-title { font-size: 1.2rem; }
}
