.videos-section {
  padding: var(--spacing-xxl) 0;
  background: var(--color-off-white, #f7f7f7);
}

.videos-header {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 var(--spacing-md);
  text-align: center;
}

.videos-subtitle {
  margin-top: 12px;
  color: var(--color-text-muted, #666);
}

.videos-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.video-card-btn {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.video-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.video-card-media img,
.video-card-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-body {
  padding: 16px 18px 18px;
}

.video-card-body span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent, #b8945d);
  margin-bottom: 6px;
}

.video-card-body strong {
  font-size: 1.05rem;
}

.contact-section {
  padding: var(--spacing-xxl) 0;
  background: #fff;
}

.contact-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.contact-intro {
  text-align: center;
  margin-bottom: 32px;
}

.contact-intro p:last-child {
  margin-top: 10px;
  color: #666;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d0d0d0;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--color-accent, #b8945d);
}

.testimonial-quote {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-author {
  display: block;
  margin-bottom: 4px;
}

.testimonial-role {
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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