/* ============================================
   V11 DESIGN OVERRIDES
   ============================================ */

/* ── Section titles: fluid size, no underline ── */
.v8 .section-title::after {
  display: none;
}

.v8 .section-title {
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ── Facts strip: floating card over hero ── */
.v8-facts {
  background: var(--c-blue-light);
  border-bottom: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
  margin-top: -2.75rem;
}

.v8-facts .facts-strip__list {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.v8-facts .facts-strip__value {
  font-size: var(--text-lg);
  color: var(--c-orange);
}

.v8-facts .facts-strip__item:nth-child(even) .facts-strip__icon {
  background: var(--c-blue-light);
}

/* ── Infrastructure: extra bottom padding ── */
.v8 .infrastructure {
  padding-bottom: var(--s-16) !important;
}

/* ── Hero sport filter pills ── */
.hero-sports {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

.hero-sport {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--r-xl);
  padding: var(--s-1) var(--s-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease);
}

.hero-sport:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.5);
}

.hero-sport.is-active {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}

/* ── Accommodation info list ── */
.v8-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v8-info-list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--c-text-body);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-border);
  line-height: 1.6;
}

.v8-info-list li:last-child { border-bottom: none; }

.v8-info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Scroll reveal ── */
.v8-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.v8-reveal.is-in {
  opacity: 1;
  transform: none;
}

.v8-reveal:nth-child(2) { transition-delay: 0.07s; }
.v8-reveal:nth-child(3) { transition-delay: 0.14s; }
.v8-reveal:nth-child(4) { transition-delay: 0.21s; }
.v8-reveal:nth-child(5) { transition-delay: 0.28s; }
.v8-reveal:nth-child(6) { transition-delay: 0.35s; }
.v8-reveal:nth-child(7) { transition-delay: 0.42s; }
.v8-reveal:nth-child(8) { transition-delay: 0.49s; }

@media (prefers-reduced-motion: reduce) {
  .v8-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Accommodation: info items on tablet ── */
@media (min-width: 768px) {
  .v8-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
  }

  .v8-info-list li {
    flex-direction: column;
    gap: var(--s-3);
    padding: var(--s-5);
    border-bottom: none;
    background: var(--c-bg-section);
    border: 1px solid transparent;
    border-radius: var(--r-md);
    transition: transform var(--ease-slow), box-shadow var(--ease-slow),
                background var(--ease-slow), border-color var(--ease-slow);
  }

  .v8-info-list li:hover {
    transform: translateY(-4px);
    background: var(--c-white);
    border-color: var(--c-blue);
    box-shadow: var(--shadow-md);
  }

  .v8-info-icon {
    width: 44px;
    height: 44px;
    margin-top: 0;
    border-radius: 50%;
    background: var(--c-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform var(--ease-slow);
  }

  .v8-info-list li:hover .v8-info-icon {
    transform: scale(1.15) rotate(-6deg);
  }
}

@media (min-width: 1024px) {
  .v8-info-list {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
}

/* ── Facility sport label: active/highlighted state ── */
.v11-facilities-sec .v8-camp-label--sport {
  background: var(--c-blue-light);
}

.v11-facilities-sec