/* Homepage cinematic hero; shared pages retain their existing appearance. */
.hero.hero-cinema {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 480px;
  overflow: hidden;
  background: #07131f;
}
.hero-cinema-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.hero-cinema-frame {
  position: absolute; inset: 0;
  transform-origin: 72% 58%;
  animation: carrier-cinematic-drift 10s cubic-bezier(.42, 0, .58, 1) -3s infinite alternate;
  animation-play-state: paused;
}
.hero-cinema.is-motion-running .hero-cinema-frame { animation-play-state: running; }
@keyframes carrier-cinematic-drift {
  from { transform: translate3d(2.5%, 0, 0) scale(1.09); }
  to { transform: translate3d(-2.5%, 0, 0) scale(1.18); }
}
.hero-cinema-poster, .hero-cinema-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 58%;
}
.hero-cinema-video { opacity: 0; transition: opacity .6s ease; }
.hero-cinema-video.is-ready { opacity: 1; }
.hero.hero-cinema::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(4,13,23,.94) 0%, rgba(4,13,23,.83) 24%, rgba(4,13,23,.35) 49%, rgba(4,13,23,0) 72%), linear-gradient(0deg, rgba(4,13,23,.7), transparent 28%);
}
.hero-cinema .hero-copy { width: 100%; max-width: 750px; padding: 30px clamp(24px, 5vw, 84px) 40px; }
.hero-cinema .eyebrow { font-size: 14px; line-height: 1.6; letter-spacing: .1em; max-width: 370px; margin-bottom: 25px; }
.hero-cinema h1 { font-size: clamp(40px, 3.7vw, 60px); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 24px; overflow-wrap: normal; }
.hero-cinema h1 span { color: #f4c675; }
.hero-cinema .hero-text { max-width: 430px; font-size: 17px; line-height: 1.75; color: #e0e5eb; }
.hero-cinema .hero-actions { gap: 10px; margin: 30px 0 0; }
.hero-cinema .button { min-height: 50px; font-size: 14px; border-radius: 6px; padding: 12px 16px; }
.hero-cinema .button.secondary { background: rgba(6,17,29,.7); border-color: #69737e; }
.hero-cinema .button.primary { background: #c9302c; box-shadow: 0 8px 30px #0003; }
.hero-motion-control {
  position: absolute; right: 30px; bottom: 28px; z-index: 2;
  min-height: 44px; padding: 10px 17px; border: 1px solid #ffffff60;
  background: #07131fd9; color: #fff; border-radius: 30px;
  font: inherit; font-size: 14px; cursor: pointer;
}
.hero-motion-control[hidden] { display: none; }
.hero-motion-control:hover { background: #182b3f; }
.hero-motion-control:focus-visible { outline: 3px solid #f4c675; outline-offset: 4px; }
.hero-booking {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: 28px; padding: 0 clamp(20px, 5vw, 76px) 36px;
  background: #f3f5f7; border-bottom: 1px solid #dde3e8;
}
.hero-booking-intro { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 2fr); gap: 28px; align-items: center; }
.hero-booking h2 { font-size: clamp(30px, 3vw, 43px); line-height: 1.16; letter-spacing: -.035em; }
.hero-booking .quote-panel { margin: 0; scroll-margin-top: 150px; color: var(--ink); border: 1px solid #dce1e6; border-top: 4px solid var(--red); border-radius: 14px; box-shadow: 0 20px 50px #182b3f0c; }
.hero-booking .panel-heading h2 { font-size: 26px; }
.hero-booking .quote-form { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hero-booking .field-group.two { display: contents; }
.hero-booking .form-note { grid-column: 2 / -1; align-self: center; }
.hero-booking input { min-width: 0; min-height: 48px; font-size: 16px; }
.hero-booking .form-submit { min-height: 50px; }
.hero-booking-intro h2 { font-size: 24px; margin: 0; }
.hero-booking .trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border: 0; background: transparent; }
.hero-booking .trust-strip div { padding: 16px 0; background: transparent; border-bottom: 1px solid #dce1e6; }
.hero-booking .trust-strip dt { color: #172b40; }
.hero-booking .trust-strip dd { font-size: 14px; color: #586574; line-height: 1.6; }
@media (min-width: 1700px) { .hero-cinema .hero-copy { margin-left: calc((100vw - 1700px)/2); } }
@media (max-width: 1000px) {
  .hero-cinema .hero-copy { max-width: 580px; }
  .hero-booking { padding: 0 24px 24px; }
  .hero-booking .quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-booking .form-submit, .hero-booking .form-note { grid-column: 1 / -1; }
  .hero-booking-intro { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 780px) {
  .hero.hero-cinema { display: block; min-height: 0; }
  .hero-cinema-media { inset: 0 0 auto; height: clamp(170px, 45vw, 270px); }
  .hero-cinema-poster, .hero-cinema-video { object-fit: cover; object-position: center 58%; }
  .hero.hero-cinema::after { background: linear-gradient(0deg, #07131f 2%, transparent 45%); inset: 0 0 auto; height: clamp(172px, 45vw, 272px); }
  .hero-cinema .hero-copy { max-width: none; padding: calc(clamp(170px, 45vw, 270px) + 4px) 16px 20px; }
  .hero-cinema .eyebrow { max-width: none; font-size: 12px; margin-bottom: 14px; }
  .hero-cinema h1 { font-size: clamp(30px, 7vw, 44px); line-height: 1.12; letter-spacing: -.035em; margin-bottom: 14px; }
  .hero-cinema .hero-text { max-width: 560px; font-size: 15px; line-height: 1.55; }
  .hero-cinema .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 14px; }
  .hero-cinema .hero-actions .primary { grid-column: 1 / -1; }
  .hero-cinema .button { flex: 1 1 auto; }
  .hero-motion-control { top: 16px; right: 16px; bottom: auto; font-size: 13px; }
  .hero-booking { padding: 0 12px 20px; }
  .hero-booking .quote-panel { padding: 18px; }
  .hero-booking .quote-panel { scroll-margin-top: 16px; }
}
@media (min-width: 561px) and (max-width: 780px) {
  .hero-cinema .hero-actions { display: flex; }
  .hero-cinema .button { flex: 0 1 auto; width: auto; }
}
@media (max-width: 560px) {
  .hero-booking .quote-form, .hero-booking .trust-strip { grid-template-columns: 1fr; }
  .hero-booking .panel-heading h2 { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-cinema-video { transition: none; }
}
