/* To Hell or Verona finished-page consistency pass.
   Changes only alignment rhythm, rounded treatment, pill buttons and the section scroller. */
.thov-page {
  --thov-finished-radius: 22px;
  --thov-finished-radius-small: 14px;
}

/* Match the established desktop opening rhythm used by the finished internal pages. */
@media (min-width: 1001px) {
  .thov-page .thov-hero {
    padding-top: 46px;
  }

  .thov-page .thov-hero-grid {
    align-items: start;
  }
}

/* Keep the compact hero correction and the head-safe crop already approved. */
.thov-page .thov-hero-media img {
  object-position: center top;
}

/* Gallery / Contact style rounded visual language. */
.thov-page .thov-hero-media,
.thov-page .thov-feature-media,
.thov-page .thov-identity-media,
.thov-page .thov-members,
.thov-page .thov-lineup-grid,
.thov-page .thov-highlights-grid,
.thov-page .thov-booking-grid,
.thov-page .thov-final-grid {
  border-radius: var(--thov-finished-radius);
  overflow: hidden;
}

.thov-page .thov-hero-media figcaption {
  border-radius: var(--thov-finished-radius-small);
}

/* Preserve the booking-category line icons from the earlier THOV pass. */
.thov-page .thov-booking-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.thov-page .thov-booking-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Pill actions, without changing button dimensions or placement. */
.thov-page .btn {
  border-radius: 999px;
}

/* Section-aware floating down arrow. */
.thov-page .section-scroll-next {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 9998;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(244,210,124,.72);
  border-radius: 50%;
  background: rgba(5,5,5,.12);
  color: var(--gold-light);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
}

.thov-page .section-scroll-next.is-visible {
  opacity: .86;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.thov-page .section-scroll-next svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.65));
  transition: transform .18s ease;
}

.thov-page .section-scroll-next:hover,
.thov-page .section-scroll-next:focus-visible {
  opacity: 1;
  border-color: var(--gold-light);
  background: rgba(5,5,5,.28);
  outline: none;
}

.thov-page .section-scroll-next:hover svg,
.thov-page .section-scroll-next:focus-visible svg {
  transform: translateY(2px);
}

@media (max-width: 760px) {
  .thov-page .section-scroll-next {
    width: 42px;
    height: 42px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .thov-page .section-scroll-next svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thov-page .section-scroll-next,
  .thov-page .section-scroll-next svg {
    transition: none;
  }
}


/* Align the #YorkshireIrish text column with the top edge of its image. */
@media (min-width: 901px) {
  .thov-page .thov-identity-grid {
    align-items: start;
  }

  .thov-page .thov-identity-grid > div {
    align-self: start;
  }
}
