/* Hero full-slide rotator markup (see Rcs\HeroSlide::renderFullSlide()). Loaded
   site-wide via header.php. Kept separate from style.css since page-section.php
   used to inline this per-page; a dedicated file avoids that duplication. */
.hero-full-rotator { position: relative; width: 100%; aspect-ratio: 16 / 8; overflow: hidden; background: var(--bg, #0E1B2E); }
.hero-full-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease;
  transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.hero-full-slide.active { opacity: 1; visibility: visible; }
.hero-full-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-full-slide-img-mobile { display: none; }
.hero-full-slide-overlay {
  position: absolute; inset: 0;
  /* Darker and reaches further up than before, so the eyebrow/heading/description
     block stays legible over busy or light photo content, not just the very bottom. */
  background: linear-gradient(0deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.62) 35%, rgba(0,0,0,0.28) 65%, rgba(0,0,0,0.05) 90%);
}
.hero-full-slide-text {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  max-width: 640px; margin: 0 auto; padding: 24px 24px 48px; text-align: center; color: #F7F4EE;
}
.hero-full-slide-eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px; color: var(--gold, #B08D4F); margin-bottom: 10px;
}
.hero-full-slide-heading { font-family: var(--font-display, serif); font-size: clamp(28px, 4.5vw, 48px); margin: 0 0 12px; color: #F7F4EE; }
.hero-full-slide-description { font-size: 15px; line-height: 1.7; color: #D8D5CE; margin-bottom: 20px; }
.hero-rotator-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(247,244,238,0.35);
  background: rgba(14,27,46,0.55); color: #F7F4EE; font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.hero-rotator-arrow:hover { border-color: var(--gold, #B08D4F); background: rgba(14,27,46,0.8); }
.hero-rotator-arrow-left { left: 16px; }
.hero-rotator-arrow-right { right: 16px; }
.hero-rotator-dots {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2;
  display: flex; gap: 8px; justify-content: center;
}
.hero-rotator-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(247,244,238,0.6);
  background: transparent; padding: 0; cursor: pointer;
}
.hero-rotator-dot.active { background: var(--gold, #B08D4F); border-color: var(--gold, #B08D4F); }
@media (max-width: 640px) {
  .hero-full-rotator { aspect-ratio: 4 / 5; }
  .hero-full-slide-img-desktop { display: none; }
  .hero-full-slide-img-mobile { display: block; }
  .hero-rotator-arrow { width: 36px; height: 36px; font-size: 18px; }
}
