/* ─────────────────────────────────────────
   HOTEL PAGE — Box Box Hotel Sport & Restaurant
   EEST NJT Racing Circuit Accommodation
───────────────────────────────────────── */

/* ── Hero ── */
.njt-hero-parallax--hotel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--racing-plum);
}

/* V4/G8 — hero background is now the real Box Box Hotel exterior (still image);
   .hero-video-bg is kept in the selector so the recipe survives if a hotel-shot
   video hero is ever commissioned. */
.njt-hero-parallax--hotel .hero-image-bg,
.njt-hero-parallax--hotel .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.05);
  pointer-events: none;
}

.njt-hero-parallax--hotel::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Stronger top scrim — bright room-video frames were pushing the breadcrumb/subtitle near AA (audit §2.1) */
  background:
    linear-gradient(180deg, rgba(42,0,24,0.55) 0%, rgba(42,0,24,0.35) 45%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}

.njt-hero-parallax--hotel .hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,215,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(212,0,121,0.04) 0%, transparent 50%);
  z-index: 2;
}

.njt-hero-parallax--hotel .hero-kinetic {
  position: absolute;
  bottom: -5%;
  left: -2%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,215,0,0.06);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.njt-hero-parallax--hotel .hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.njt-hero-parallax--hotel .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-white-60);
  margin-bottom: 1.5rem;
}

.njt-hero-parallax--hotel .hero-breadcrumb a {
  color: var(--text-white-60);
  transition: color 0.3s ease;
}

.njt-hero-parallax--hotel .hero-breadcrumb a:hover {
  color: var(--gold);
}

.njt-hero-parallax--hotel .hero-breadcrumb .sep {
  color: var(--text-white-40);
}

.njt-hero-parallax--hotel .hero-title {
  font-family: var(--font-display);
  font-size: var(--text-display-xl);   /* A5 / CONVENTIONS #19 — was clamp(2.5rem, 6vw, 4.5rem) */
  font-weight: 900;
  font-style: italic;
  /* A28: this rule is (0,2,0) and DID out-rank components.css §38a's `html[lang] h1`
     net (0,1,2) — the hotel hero H1 was the one heading sitewide escaping the shared
     language-aware leading (rendered 1.2 in BOTH languages). Hardcode deleted so §38a
     governs; no §38b row needed. */
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.njt-hero-parallax--hotel .hero-title span {
  display: block;
  background: linear-gradient(45deg, var(--gold), #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.njt-hero-parallax--hotel .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-white-80);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.njt-hero-parallax--hotel .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.njt-hero-parallax--hotel .hero-badge svg {
  flex-shrink: 0;
}

.njt-hero-parallax--hotel .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.njt-hero-parallax--hotel .hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--gold);
  animation: bounce 2s infinite;
}

.njt-hero-parallax--hotel .accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--magenta), transparent);
  z-index: 10;
}

/* ── About / Overview Section ── */
.njt-hotel-overview {
  position: relative;
  background: var(--section-gradient);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.njt-hotel-overview .glow-orb--top {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255,215,0,0.04);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

/* Width Normalization — Match Header (1400px) */
.njt-hotel-overview .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}

.hotel-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hotel-overview-visual {
  position: relative;
}

.hotel-overview-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-elevated);
}

.hotel-overview-visual .visual-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold), #FFC107);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(255,215,0,0.3);
}

/* Kicker consolidated onto the canonical .njt-kicker (components.css) — page override removed (audit §2.4) */

.hotel-overview-content .njt-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hotel-overview-content .njt-section__title span {
  color: var(--gold);
}

.hotel-overview-content .desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-white-80);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hotel-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hotel-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.hotel-highlight-item:hover {
  border-color: rgba(255,215,0,0.2);
  background: rgba(0,0,0,0.5);
}

.hotel-highlight-item .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,0,0.1);
  border-radius: var(--radius);
  color: var(--gold);
}

.hotel-highlight-item .icon svg {
  width: 18px;
  height: 18px;
}

.hotel-highlight-item .label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
}

.hotel-highlight-item .sublabel {
  font-size: 0.8125rem;
  color: var(--text-white-60);
  margin-top: 0.125rem;
}

/* ── Racing Stripe Divider ── */
.njt-racing-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--magenta) 50%, var(--gold) 80%, transparent 100%);
  opacity: 0.15;
}

/* ── Room Types Section ── */
.njt-hotel-rooms {
  position: relative;
  background: var(--section-gradient);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.njt-hotel-rooms .glow-orb--left {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(212,0,121,0.04);
  filter: blur(150px);
  border-radius: 50%;
  pointer-events: none;
}

/* Width Normalization — Match Header (1400px) */
.njt-hotel-rooms .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}

.hotel-rooms-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Kicker consolidated onto the canonical .njt-kicker (components.css) — page override removed (audit §2.4) */

.hotel-rooms-header .njt-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
}

.hotel-rooms-header .njt-section__title span {
  color: var(--gold);
}

.hotel-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(42,0,24,0.3));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.room-card:hover {
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212,0,121,0.15), 0 8px 20px rgba(0,0,0,0.3);
}

.room-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

/* Sports Restaurant card: the source still is a video frame with burned-in
   subtitles in the lower band (~y0.71–0.83, "It's a really beautiful track.").
   Crop them out top-anchored (shows ~top 68% of the frame) with NO new asset —
   the building + entrance stay clearly in view. transform-origin keeps the hover
   zoom anchored to the top so the subtitle band can never re-enter frame.
   (GOAL-V3 R1 integrator, punch 12) */
.room-card__image img[src*="restaurant-building"] {
  display: block;
  height: 147%;
  object-position: center top;
  transform-origin: top center;
}

.room-card__image .room-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), #FFC107);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

/* Room card footer action — reuses .package-card__cta styles (audit §2.3) */
.room-card__actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.room-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.room-card__desc {
  font-size: 0.9375rem;
  color: var(--text-white-60);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.room-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-white-60);
  background: rgba(255,255,255,0.05);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.06);
}

.room-card__feature svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Stay & Train Packages Section ── */
.njt-hotel-packages {
  position: relative;
  background: var(--section-gradient);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

/* Width Normalization — Match Header (1400px) */
.njt-hotel-packages .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}

.hotel-packages-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Kicker consolidated onto the canonical .njt-kicker (components.css) — page override removed (audit §2.4) */

.hotel-packages-header .njt-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.hotel-packages-header .njt-section__title span {
  color: var(--gold);
}

.hotel-packages-header .desc {
  font-size: 1.0625rem;
  color: var(--text-white-60);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.hotel-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.package-card {
  position: relative;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(42,0,24,0.4));
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.package-card:hover {
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.1);
}

.package-card:hover::before {
  transform: scaleY(1);
}

.package-card.featured {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(42,0,24,0.6));
}

/* Featured card: left accent bar visible at rest (audit §2.6) */
.package-card.featured::before {
  transform: scaleY(1);
}

/* Featured card CTA promoted to a full-width primary button (audit §2.6) */
.package-card__cta-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.package-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.package-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), #FFC107);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.package-card__desc {
  font-size: 0.9375rem;
  color: var(--text-white-60);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.package-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.package-card__includes li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-white-80);
}

.package-card__includes li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.package-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.package-card__cta:hover {
  color: #FFC107;
  gap: 0.75rem;
}

.package-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.package-card__cta:hover svg {
  transform: translateX(4px);
}

/* ── Official Website CTA Section ── */
.njt-hotel-cta {
  position: relative;
  background: var(--racing-plum);
  padding: var(--section-pad) 0;
  overflow: hidden;
  text-align: center;
}

.njt-hotel-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,0,121,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #000000 0%, rgba(42,0,24,0.95) 50%, #000000 100%);
}

/* Width Normalization — Match Header (1400px) */
.njt-hotel-cta .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}

.njt-hotel-cta .cta-inner {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
}

.njt-hotel-cta .njt-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.njt-hotel-cta .njt-section__title span {
  color: var(--gold);
}

.njt-hotel-cta .desc {
  font-size: 1.0625rem;
  color: var(--text-white-60);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.njt-hotel-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hotel-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hotel-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hotel-rooms-grid {
    grid-template-columns: 1fr;
  }
  .hotel-packages-grid {
    grid-template-columns: 1fr;
  }
  .hotel-highlights {
    grid-template-columns: 1fr;
  }
  .njt-hero-parallax--hotel .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .package-card {
    padding: 1.75rem;
  }
}

/* ── Hero positioning strip — STAY · PLAY · DINE · RACE (audit §2.1) ── */
.hotel-hero__positioning {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
}
.hotel-hero__positioning span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-white-80);
}
.hotel-hero__positioning span:not(:first-child)::before {
  content: '·';
  color: var(--gold);
  margin: 0 0.75rem;
  font-weight: 700;
}

/* ── One-complex band — stay trackside, EEST Circuit 2027 (GOAL-V3 §G3) ── */
.hotel-onecomplex {
  position: relative;
  background: var(--racing-plum);
  padding: 1.5rem 0;
}
.hotel-onecomplex .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}
.hotel-onecomplex__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: var(--surface-feature);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base, 300ms) var(--ease-out, ease),
              transform var(--dur-base, 300ms) var(--ease-out, ease);
}
.hotel-onecomplex__inner:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-2px);
}
.hotel-onecomplex__chip {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-eyebrow, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
}
.hotel-onecomplex__text {
  flex: 1;
  min-width: 260px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-white-80);
}
.hotel-onecomplex__more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gold);
}
.hotel-onecomplex__more svg {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-base, 300ms) var(--ease-out, ease);
}
.hotel-onecomplex__inner:hover .hotel-onecomplex__more svg {
  transform: translateX(4px);
}

/* ── Coming-soon note (replaces the dead href="#" primary — audit §2.7) ── */
.hotel-cta__soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-white-60);
  opacity: 0.5;
  pointer-events: none;
}
.hotel-cta__soon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   GALLERY — migrated from inline <style> (audit §2.4)
   Kicker consolidated to canonical .njt-kicker; gold-span title preserved (protected)
═══════════════════════════════════════════ */
.njt-hotel-gallery {
  position: relative;
  background: var(--section-gradient);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.njt-hotel-gallery .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}
.hotel-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hotel-gallery-header .njt-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
}
.hotel-gallery-header .njt-section__title span {
  color: var(--gold);
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px; /* uniform bento band so wide/tall spans read intentional */
  gap: 0.75rem;
}
.hotel-gallery-grid .gallery-item--wide { grid-column: span 2; }
.hotel-gallery-grid .gallery-item--tall { grid-row: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}
/* Touch devices can't hover — keep labels + scrim persistent (audit §2.4) */
@media (hover: none) {
  .gallery-item::after { opacity: 1; }
  .gallery-item__label { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .hotel-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hotel-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-gallery-grid .gallery-item--wide { grid-column: span 2; }
  .hotel-gallery-grid .gallery-item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .hotel-gallery-grid { grid-template-columns: 1fr; }
  .hotel-gallery-grid .gallery-item--wide { grid-column: span 1; }
}

/* ═══════════════════════════════════════════
   VIDEO — migrated from inline <style> (audit §2.5)
   Poster-first facade: play button on the poster, native controls attach on first click.
═══════════════════════════════════════════ */
.njt-hotel-videos {
  position: relative;
  background: var(--section-gradient);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.njt-hotel-videos .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}
.hotel-videos-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hotel-videos-header .njt-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
}
.hotel-videos-header .njt-section__title span {
  color: var(--gold);
}
.hotel-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.hotel-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
}
.hotel-video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.hotel-video-card__frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}
/* Portrait review clip: vertical strip centered over a blurred pillarbox of its poster */
.hotel-video-card--portrait .hotel-video-card__frame video {
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  object-fit: cover;
}
.hotel-video-card__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/hotel/hotel-track-view.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(24px) brightness(0.45);
  transform: scale(1.15);
}
.hotel-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,215,0,0.92);
  color: var(--black-true);
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  transition: transform var(--dur-base, 300ms) var(--ease-out, ease),
              box-shadow var(--dur-base, 300ms) var(--ease-out, ease);
}
.hotel-video-card__play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}
.hotel-video-card:hover .hotel-video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255,215,0,0.6);
}
.hotel-video-card__play:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.hotel-video-card__frame.is-playing .hotel-video-card__play {
  display: none;
}
.hotel-video-card__label {
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-white);
}
.hotel-video-card__label small {
  display: block;
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-white-60);
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .hotel-videos-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   V4/G8 — THIRD-PARTY GUEST SCORES BAND
   Sits directly under the hero: the first thing after "this is the building"
   is "here is what guests who stayed in it said."
═══════════════════════════════════════════ */
.hotel-scores {
  position: relative;
  z-index: 2;
  padding: 40px 0 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 100%);
}
.hotel-scores__lead {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white-60);
  text-align: center;
  margin: 0 0 20px;
}
.hotel-scores__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hotel-score {
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 215, 0, 0.20);
  border-radius: var(--radius-md, 12px);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hotel-score__value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--racing-yellow, #FFD700);
}
.hotel-score__scale {
  font-size: 0.45em;
  font-style: normal;
  font-weight: 700;
  color: var(--text-white-60);
  margin-left: 2px;
}
.hotel-score__source {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-white);
}
.hotel-score__count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-white-60);
}
.hotel-scores__note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-white-60);
  text-align: center;
  margin: 14px 0 0;
}

/* Status fact, not a disabled control — the dashed pseudo-button it replaces
   read as a broken CTA on the page's last conversion surface. */
.hotel-cta__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  padding: 8px 16px;
  border-radius: var(--radius-pill, 50px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-white-70, rgba(255,255,255,0.7));
}
.hotel-cta__status svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--text-white-60); }

/* Room / facility / package cards now carry real outline buttons (G8 CTA hierarchy);
   neutralise the old text-link geometry so the two systems do not fight. */
a.btn-cta.package-card__cta {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
}
a.btn-cta.package-card__cta::after { content: none; }

@media (max-width: 767px) {
  .hotel-scores { padding-top: 28px; }
  .hotel-score { flex: 1 1 100%; padding: 16px; }
}
