/* ── Video Hero ───────────────────────────────────── */
.video-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: #022902;
}

.video-hero video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(65, 63, 39, 0.45);
  z-index: 1;
}

.video-hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #022902;
  padding: 2rem;
}

.video-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: #e9e3cc;
  text-transform: uppercase;
}

.video-hero-text p {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.85;
  color: #dbd798;
}

/* ── Content Blocks ───────────────────────────────── */

.content-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 6rem;
  border-bottom: 1px solid rgba(31,47,38,0.1);
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-block .text {
  flex: 1;
}

.content-block .text p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1f2f26;
}

.content-block .image {
  flex: 1;
}

.content-block .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.616);
}

/* ── Callout ──────────────────────────────────────── */
.callout {
  background: #022902;
  color: #dbd798;
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.03em;
}

.callout blockquote {
  margin: 0;
  font-style: italic;
  color: #968f2b;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .content-block,
  .content-block.reverse {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .content-block .image img {
    height: 250px;
  }
}