:root {
  --hf-red: #ff1d25;
  --hf-red-dark: #bd1018;
  --hf-red-soft: rgba(255, 29, 37, 0.18);
  --hf-black: #020303;
  --hf-panel: #0b0f10;
  --hf-panel-strong: #111719;
  --hf-white: #ffffff;
  --hf-muted: #c9cdd0;
  --hf-line: rgba(255, 255, 255, 0.16);
  --hf-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--hf-black);
  scroll-behavior: smooth;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

body {
  margin: 0;
  background: transparent;
  color: var(--hf-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  inset: -6vh -6vw;
  pointer-events: none;
  position: fixed;
}

body::before {
  animation: siteBackgroundMove 22s ease-in-out infinite alternate;
  background: url("assets/images/hero-dj-background.png") center / cover no-repeat;
  filter: saturate(1.22) contrast(1.12);
  opacity: 0.52;
  transform: scale(1.02);
  z-index: -2;
}

body::after {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 48%, transparent 56%),
    radial-gradient(circle at 12% 18%, rgba(255, 29, 37, 0.22), transparent 32rem),
    radial-gradient(circle at 88% 62%, rgba(255, 255, 255, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72));
  animation: premiumAtmosphere 12s ease-in-out infinite alternate;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(255, 29, 37, 0.08), transparent 28%, transparent 72%, rgba(255, 29, 37, 0.06)),
    rgba(0, 0, 0, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(255, 29, 37, 0.72), rgba(255, 255, 255, 0.4), rgba(255, 29, 37, 0.72), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
}

.nav-wrap {
  align-items: center;
  display: grid;
  column-gap: 10px;
  grid-template-columns: 112px minmax(0, 1fr) 112px;
  margin: 0 auto;
  max-width: 1500px;
  min-height: 82px;
  padding: 10px 24px;
  position: relative;
}

.brand img {
  height: 68px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  width: 84px;
}

.brand:hover img,
.brand:focus img {
  filter: drop-shadow(0 0 18px rgba(255, 29, 37, 0.3));
  transform: scale(1.04);
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 9px;
  justify-content: center;
  padding-right: 0;
}

.main-nav a {
  color: var(--hf-white);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 15px 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease, text-shadow 0.18s ease, transform 0.18s ease;
}

.main-nav a::after {
  background: var(--hf-red);
  bottom: 8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
  width: 100%;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--hf-red);
  text-shadow: 0 0 16px rgba(255, 29, 37, 0.38);
  transform: translateY(-2px);
}

.main-nav a.is-active {
  animation: navActivePulse 2.4s ease-in-out infinite;
  color: var(--hf-white);
}

.button {
  align-items: center;
  background: var(--hf-red);
  border: 1px solid var(--hf-red);
  border-radius: var(--hf-radius);
  color: var(--hf-white);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus {
  background: var(--hf-red-dark);
  border-color: var(--hf-red-dark);
  box-shadow: 0 14px 34px rgba(255, 29, 37, 0.26);
  transform: translateY(-2px);
}

.hero-cta {
  animation: heroCtaPulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 29, 37, 0.34), 0 18px 42px rgba(255, 29, 37, 0.22);
  position: relative;
  overflow: hidden;
}

.hero-cta::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  height: 100%;
  left: -60%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 42%;
}

.hero-cta:hover::after,
.hero-cta:focus::after {
  animation: heroCtaSweep 0.9s ease;
}

.radio-player {
  align-items: center;
  background:
    radial-gradient(circle at 79% 73%, rgba(255, 255, 255, 0.11), transparent 28%),
    radial-gradient(circle at 39% 52%, rgba(255, 29, 37, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 48%, rgba(255, 29, 37, 0.08)),
    rgba(16, 16, 18, 0.92);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--hf-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: grid;
  column-gap: 6px;
  row-gap: 2px;
  grid-template-areas:
    "cover info bars play volume"
    "cover streams bars play volume";
  grid-template-columns: 38px minmax(104px, 1fr) 12px 28px 58px;
  justify-self: end;
  min-height: 52px;
  overflow: hidden;
  padding: 5px 6px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: 386px;
}

.radio-player::before {
  background:
    linear-gradient(90deg, rgba(255, 29, 37, 0.95), rgba(255, 255, 255, 0.78), rgba(255, 29, 37, 0.95));
  content: "";
  height: 2px;
  left: 12px;
  opacity: 0.72;
  position: absolute;
  right: 12px;
  top: 0;
}

.radio-player::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  height: 100%;
  left: -70%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 45%;
}

.radio-player.is-playing {
  border-color: rgba(255, 29, 37, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 29, 37, 0.28), 0 24px 62px rgba(255, 29, 37, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(calc(-50% - 1px));
}

.radio-player.is-playing::after {
  animation: radioSweep 3.2s ease-in-out infinite;
}

.radio-cover-wrap {
  grid-area: cover;
  align-self: center;
  height: 36px;
  position: relative;
  width: 36px;
  z-index: 1;
}

.radio-cover {
  aspect-ratio: 1 / 1;
  background: #111111;
  border: 1px solid rgba(180, 190, 205, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.08);
  height: 36px;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 36px;
}

.radio-player.is-playing .radio-cover {
  animation: radioCoverPulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(255, 29, 37, 0.18), 0 12px 28px rgba(0, 0, 0, 0.38);
}

.radio-live {
  background: var(--hf-red);
  border-radius: 999px;
  bottom: -4px;
  box-shadow: 0 8px 18px rgba(255, 29, 37, 0.42);
  font-size: 0.38rem;
  font-weight: 950;
  left: 50%;
  letter-spacing: 0.06em;
  padding: 2px 4px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.radio-info {
  align-self: center;
  grid-area: info;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.radio-info strong,
.radio-info span,
.radio-station {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-info strong {
  color: var(--hf-white);
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1.15;
  margin: 2px 0 1px;
  text-transform: uppercase;
}

.radio-bars {
  align-items: end;
  display: inline-flex;
  gap: 2px;
  grid-area: bars;
  height: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.radio-streams {
  align-items: center;
  align-self: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: flex;
  gap: 3px;
  grid-area: streams;
  justify-self: start;
  max-width: 136px;
  padding: 2px;
  position: relative;
  z-index: 1;
}

.radio-streams button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.46rem;
  font-weight: 950;
  line-height: 1;
  padding: 4px 5px;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.radio-streams button.is-active {
  background: var(--hf-red);
  box-shadow: 0 8px 18px rgba(255, 29, 37, 0.26);
  color: var(--hf-white);
}

.radio-bars span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 29, 37, 0.62));
  border-radius: 999px;
  display: block;
  height: 6px;
  width: 3px;
}

.radio-player.is-playing .radio-bars span {
  animation: radioBars 0.82s ease-in-out infinite;
  background: var(--hf-red);
}

.radio-player.is-playing .radio-bars span:nth-child(2) {
  animation-delay: 0.12s;
}

.radio-player.is-playing .radio-bars span:nth-child(3) {
  animation-delay: 0.24s;
}

.radio-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 800;
}

.radio-station {
  align-items: center;
  color: var(--hf-red);
  display: inline-flex;
  font-size: 0.52rem;
  font-weight: 950;
  gap: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.radio-station::before {
  animation: radioLiveDot 1.3s ease-in-out infinite;
  background: var(--hf-red);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 29, 37, 0.14);
  content: "";
  height: 5px;
  width: 5px;
}

.radio-toggle {
  align-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.35), transparent 32%),
    linear-gradient(145deg, #ff3a40, var(--hf-red-dark));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--hf-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 950;
  grid-area: play;
  height: 28px;
  justify-content: center;
  position: relative;
  box-shadow: 0 16px 36px rgba(255, 29, 37, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 28px;
  z-index: 1;
}

.radio-toggle:hover,
.radio-toggle:focus {
  box-shadow: 0 16px 34px rgba(255, 29, 37, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.radio-player.is-playing .radio-toggle {
  animation: radioButtonGlow 1.8s ease-in-out infinite;
}

.radio-toggle .radio-play-icon {
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--hf-white);
  border-top: 4px solid transparent;
  display: block;
  height: 0;
  margin-left: 3px;
  transition: border 0.18s ease, height 0.18s ease, margin 0.18s ease, width 0.18s ease;
  width: 0;
}

.radio-player.is-playing .radio-toggle .radio-play-icon {
  border-bottom: 0;
  border-left: 5px solid var(--hf-white);
  border-right: 5px solid var(--hf-white);
  border-top: 0;
  height: 11px;
  margin-left: 0;
  width: 9px;
}

.radio-volume {
  align-items: center;
  align-self: center;
  display: grid;
  gap: 2px;
  grid-area: volume;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  height: auto;
  justify-content: center;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.radio-mute {
  display: none;
}

.radio-mute {
  align-items: center;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--hf-white);
  cursor: pointer;
  display: none;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  width: 34px;
  z-index: 2;
}

.radio-mute:hover,
.radio-mute:focus {
  background: rgba(255, 29, 37, 0.22);
  border-color: rgba(255, 29, 37, 0.42);
  box-shadow: 0 10px 24px rgba(255, 29, 37, 0.18);
  transform: scale(1.04);
}

.radio-mute-icon {
  border-bottom: 5px solid transparent;
  border-right: 8px solid var(--hf-white);
  border-top: 5px solid transparent;
  display: inline-block;
  height: 12px;
  position: relative;
  width: 12px;
}

.radio-mute-icon::before {
  background: var(--hf-white);
  border-radius: 1px;
  content: "";
  height: 8px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 5px;
}

.radio-mute-icon::after {
  border: 1px solid var(--hf-red);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: transparent;
  content: "";
  height: 12px;
  position: absolute;
  right: -9px;
  top: -6px;
  width: 10px;
}

.radio-mute.is-muted .radio-mute-icon::after {
  border: 0;
  background: var(--hf-red);
  border-radius: 999px;
  height: 2px;
  right: -10px;
  top: 0;
  transform: rotate(-42deg);
  width: 14px;
}

.radio-volume-range {
  accent-color: var(--hf-red);
  appearance: none;
  background:
    linear-gradient(90deg, var(--hf-red) var(--radio-volume, 80%), rgba(255, 255, 255, 0.72) var(--radio-volume, 80%)),
    rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  cursor: pointer;
  grid-column: 1;
  grid-row: 2;
  height: 3px;
  min-height: 3px;
  opacity: 1;
  padding: 0;
  position: relative;
  touch-action: pan-x;
  transform: none;
  transition: box-shadow 0.18s ease;
  width: 100%;
}

.radio-volume-range::-webkit-slider-thumb {
  appearance: none;
  background: var(--hf-white);
  border: 2px solid var(--hf-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 29, 37, 0.16), 0 4px 12px rgba(0, 0, 0, 0.34);
  height: 9px;
  width: 9px;
}

.radio-volume-range::-moz-range-thumb {
  background: var(--hf-white);
  border: 2px solid var(--hf-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 29, 37, 0.16), 0 4px 12px rgba(0, 0, 0, 0.34);
  height: 8px;
  width: 8px;
}

.radio-volume-value {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.radio-volume-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.5rem;
  font-weight: 950;
  grid-column: 1;
  grid-row: 1;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes radioSweep {
  0% {
    left: -70%;
  }

  55%,
  100% {
    left: 125%;
  }
}

@keyframes radioCoverPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes premiumAtmosphere {
  0% {
    background-position: 0% 50%, center, center, center;
    opacity: 0.92;
  }

  100% {
    background-position: 100% 50%, center, center, center;
    opacity: 1;
  }
}

@keyframes premiumLineGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 29, 37, 0);
    transform: scaleX(0.86);
  }

  50% {
    box-shadow: 0 0 22px rgba(255, 29, 37, 0.62);
    transform: scaleX(1.18);
  }
}

@keyframes premiumCardSheen {
  0% {
    transform: translateX(-130%) skewX(-16deg);
  }

  42%,
  100% {
    transform: translateX(220%) skewX(-16deg);
  }
}

@keyframes partnerFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes radioBars {
  0%,
  100% {
    height: 8px;
  }

  50% {
    height: 26px;
  }
}

@keyframes radioLiveDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(0.78);
  }
}

@keyframes radioButtonGlow {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(255, 29, 37, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 18px 40px rgba(255, 29, 37, 0.42), 0 0 0 6px rgba(255, 29, 37, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transform: scale(1.04);
  }
}

@keyframes navActivePulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 29, 37, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(255, 29, 37, 0.45);
  }
}

@keyframes heroCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 29, 37, 0.34), 0 18px 42px rgba(255, 29, 37, 0.22);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 29, 37, 0), 0 24px 52px rgba(255, 29, 37, 0.32);
    transform: translateY(-3px);
  }
}

@keyframes heroCtaSweep {
  0% {
    left: -60%;
  }

  100% {
    left: 130%;
  }
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

@keyframes serviceVisualMove {
  0% {
    background-position: 45% 48%;
    transform: scale(1);
  }

  100% {
    background-position: 58% 52%;
    transform: scale(1.08);
  }
}

@keyframes galleryImageDrift {
  0% {
    background-position: 48% 48%;
  }

  100% {
    background-position: 54% 52%;
  }
}

@keyframes teamCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes teamRingSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes teamPhotoGlow {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(255, 29, 37, 0.12);
  }

  50% {
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 29, 37, 0.22);
  }
}

@keyframes teamPhotoSparkle {
  0%,
  100% {
    opacity: 0.28;
    transform: translate(-14%, -14%) rotate(0deg);
  }

  50% {
    opacity: 0.58;
    transform: translate(10%, 8%) rotate(8deg);
  }
}

@keyframes backToTopPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(255, 29, 37, 0.3), 0 0 0 0 rgba(255, 29, 37, 0.22);
  }

  50% {
    box-shadow: 0 22px 48px rgba(255, 29, 37, 0.38), 0 0 0 8px rgba(255, 29, 37, 0);
  }
}

@keyframes siteBackgroundMove {
  0% {
    background-position: 45% 45%;
    transform: scale(1.02);
  }

  50% {
    background-position: 55% 50%;
    transform: scale(1.08);
  }

  100% {
    background-position: 50% 58%;
    transform: scale(1.04);
  }
}

@keyframes heroBackgroundMove {
  0% {
    background-position: 44% 48%;
    transform: scale(1.02);
  }

  50% {
    background-position: 58% 44%;
    transform: scale(1.1);
  }

  100% {
    background-position: 50% 56%;
    transform: scale(1.05);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.button.secondary {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover,
.button.secondary:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--hf-white);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius);
  color: var(--hf-white);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  width: 20px;
}

.hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 42%, #050606 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 29, 37, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.82) 100%);
  min-height: 760px;
  overflow: hidden;
  padding-top: 92px;
  position: relative;
}

.hero::before {
  animation: heroBackgroundMove 22s ease-in-out infinite alternate;
  background: url("assets/images/hero-dj-background.png") center / cover no-repeat;
  content: "";
  filter: saturate(1.16) contrast(1.08);
  inset: -7%;
  position: absolute;
  z-index: 0;
}

.hero::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 6, 0.34) 78%, #050606 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 120px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 650px;
  padding: 56px 22px 96px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: min(100%, 780px);
}

.hero-logo {
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.72));
  margin-bottom: 12px;
  animation: logoFloat 5s ease-in-out infinite;
  max-height: 415px;
  object-fit: contain;
  width: min(360px, 74vw);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

.hero-tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-tags span {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.hero-tags span + span::before {
  background: var(--hf-red);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.side-social {
  display: grid;
  gap: 12px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.side-social a {
  align-items: center;
  border-radius: 999px;
  display: grid;
  font-weight: 950;
  gap: 4px;
  grid-template-columns: 30px 1fr;
  justify-content: center;
  min-width: 128px;
  padding: 7px 12px 7px 7px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.side-social a {
  animation: socialFloat 3.2s ease-in-out infinite;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 29, 37, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  min-height: 44px;
}

.side-social a:nth-child(2) {
  animation-delay: 0.6s;
}

.side-social strong {
  align-items: center;
  background: var(--hf-red);
  border-radius: 50%;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.side-social svg {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.side-social em {
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.side-social a:hover,
.side-social a:focus {
  background: var(--hf-red);
  border-color: var(--hf-red);
  box-shadow: 0 18px 42px rgba(255, 29, 37, 0.28);
  transform: translateX(-5px);
}

.section {
  background:
    linear-gradient(90deg, rgba(255, 29, 37, 0.035), transparent 18%, transparent 82%, rgba(255, 29, 37, 0.03)),
    linear-gradient(180deg, rgba(5, 6, 6, 0.76), rgba(5, 6, 6, 0.68)),
    radial-gradient(circle at 80% 18%, rgba(255, 29, 37, 0.08), transparent 28rem);
  padding: 72px 22px;
  position: relative;
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  content: "";
  height: 1px;
  left: 10%;
  opacity: 0.55;
  position: absolute;
  right: 10%;
  top: 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(10, 13, 14, 0.78), rgba(10, 13, 14, 0.66)),
    radial-gradient(circle at 12% 20%, rgba(255, 29, 37, 0.1), transparent 28rem);
}

.container {
  margin: 0 auto;
  max-width: 1160px;
}

.section-head {
  margin: 0 auto 30px;
  max-width: 860px;
  text-align: center;
}

.section-head.align-left {
  margin: 0;
  text-align: left;
}

.eyebrow {
  color: var(--hf-red);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 16px;
  text-shadow: 0 0 26px rgba(255, 29, 37, 0.2);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 16px;
  text-shadow: 0 0 26px rgba(255, 29, 37, 0.2);
  text-transform: uppercase;
}

.section-head::after {
  animation: premiumLineGlow 3.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--hf-red), rgba(255, 255, 255, 0.82), var(--hf-red), transparent);
  content: "";
  display: block;
  height: 2px;
  margin: 18px auto 0;
  width: 42px;
}

.section-head.align-left::after {
  margin-left: 0;
}

.lead {
  color: var(--hf-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.about-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  margin-top: 34px;
}

.about-story,
.about-facts {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--hf-panel);
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.about-story {
  overflow: hidden;
  padding: 0;
}

.about-intro {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 29, 37, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--hf-line);
  padding: 30px;
}

.about-intro span {
  color: var(--hf-red);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-intro p {
  color: var(--hf-white);
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.45;
  margin-bottom: 0;
}

.about-timeline {
  display: grid;
  gap: 0;
  padding: 8px 30px 0;
}

.about-timeline article {
  border-left: 1px solid rgba(255, 29, 37, 0.46);
  padding: 24px 0 24px 28px;
  position: relative;
}

.about-timeline article:last-child {
  padding-bottom: 18px;
}

.about-timeline article > span {
  background: var(--hf-red);
  border: 5px solid #181112;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 29, 37, 0.36);
  height: 17px;
  left: -9px;
  position: absolute;
  top: 29px;
  width: 17px;
}

.about-timeline h3 {
  font-size: 1.08rem;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-timeline p {
  color: var(--hf-muted);
  margin-bottom: 0;
}

.about-signature {
  background: rgba(255, 29, 37, 0.12);
  border-top: 1px solid rgba(255, 29, 37, 0.28);
  color: var(--hf-white);
  font-weight: 800;
  margin-bottom: 0;
  padding: 24px 30px;
}

.about-facts {
  padding: 26px;
  position: sticky;
  top: 112px;
}

.about-facts img {
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34));
  margin: 0 auto 20px;
  max-width: 190px;
}

.about-facts h3 {
  font-size: 1.2rem;
  font-weight: 950;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-facts dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.about-facts div {
  border-top: 1px solid var(--hf-line);
  padding-top: 14px;
}

.about-facts dt {
  color: var(--hf-red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts dd {
  color: var(--hf-white);
  font-size: 1rem;
  font-weight: 850;
  margin: 4px 0 0;
}

.grid {
  display: grid;
  gap: 26px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.event-card,
.contact-panel,
.quote-form,
.gallery-card,
.review-card,
.team-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--hf-panel);
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  position: relative;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover,
.event-card:hover,
.contact-panel:hover,
.quote-form:hover,
.gallery-card:hover,
.review-card:hover,
.team-card:hover {
  border-color: rgba(255, 29, 37, 0.44);
  box-shadow: 0 26px 68px rgba(255, 29, 37, 0.14), 0 24px 55px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.service-card::after,
.event-card::after,
.contact-panel::after,
.quote-form::after,
.team-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  inset: 0 auto 0 -45%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: skewX(-16deg);
  transition: opacity 0.22s ease;
  width: 34%;
}

.service-card:hover::after,
.event-card:hover::after,
.contact-panel:hover::after,
.quote-form:hover::after,
.team-card:hover::after {
  animation: premiumCardSheen 1.25s ease;
  opacity: 1;
}

.service-card {
  min-height: 300px;
  overflow: hidden;
  padding: 158px 26px 26px;
  position: relative;
  text-align: left;
}

.service-card::before {
  background: radial-gradient(circle, rgba(255, 29, 37, 0.18), transparent 64%);
  content: "";
  height: 160px;
  position: absolute;
  right: -54px;
  top: -54px;
  width: 160px;
}

.service-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.service-visual {
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: 132px;
  inset: 0 0 auto;
  overflow: hidden;
  position: absolute;
}

.service-visual::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 15, 16, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
}

.service-card:hover .service-visual {
  animation: serviceVisualMove 5s ease-in-out infinite alternate;
}

.service-dj .service-visual {
  background-image: linear-gradient(120deg, rgba(255, 29, 37, 0.32), rgba(0, 0, 0, 0.18)), url("https://images.unsplash.com/photo-1571266028243-d220c6a7edbf?auto=format&fit=crop&w=1000&q=80");
}

.service-sound .service-visual {
  background-image: linear-gradient(120deg, rgba(14, 165, 233, 0.28), rgba(255, 29, 37, 0.18)), url("https://images.unsplash.com/photo-1520170350707-b2da59970118?auto=format&fit=crop&w=1000&q=80");
}

.service-light .service-visual {
  background-image: linear-gradient(120deg, rgba(168, 85, 247, 0.32), rgba(255, 29, 37, 0.2)), url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1000&q=80");
}

.service-party .service-visual {
  background-image: linear-gradient(120deg, rgba(234, 179, 8, 0.24), rgba(255, 29, 37, 0.28)), url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1000&q=80");
}

.service-support .service-visual {
  background-image: linear-gradient(120deg, rgba(34, 197, 94, 0.2), rgba(255, 29, 37, 0.2)), url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1200&q=80");
}

.service-icon {
  align-items: center;
  border: 1px solid rgba(255, 29, 37, 0.45);
  border-radius: 999px;
  color: var(--hf-red);
  display: inline-flex;
  font-size: 1.9rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  width: 56px;
  z-index: 1;
}

.service-card h3,
.event-card h3,
.review-card h3 {
  font-size: 1.08rem;
  font-weight: 950;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-card p,
.event-card p,
.review-card p {
  color: var(--hf-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.reviews-carousel {
  align-items: center;
  display: block;
  margin-top: 34px;
  overflow: hidden;
  position: relative;
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 3;
}

.reviews-carousel::before {
  background: linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0));
  left: 0;
}

.reviews-carousel::after {
  background: linear-gradient(270deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0));
  right: 0;
}

.review-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 18px 6px 12px;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 29, 37, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(7, 8, 9, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  flex: 0 0 min(410px, 84vw);
  min-height: 318px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.review-card::before {
  color: rgba(255, 255, 255, 0.08);
  content: "“";
  font-size: 8.2rem;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 4px;
}

.review-card::after {
  background: linear-gradient(90deg, var(--hf-red), transparent);
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.review-card:hover {
  border-color: rgba(255, 29, 37, 0.52);
  box-shadow:
    0 28px 78px rgba(255, 29, 37, 0.17),
    0 28px 78px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.review-card h3,
.review-stars,
.review-card p {
  position: relative;
  z-index: 1;
}

.review-card h3 {
  color: var(--hf-white);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  padding-right: 56px;
}

.review-stars {
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.26);
  border-radius: 999px;
  color: #ffd166;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  padding: 7px 11px;
  text-shadow: 0 0 14px rgba(255, 209, 102, 0.36);
}

.review-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.services-highlight {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 29, 37, 0.18), rgba(255, 255, 255, 0.04)),
    var(--hf-panel);
  border: 1px solid rgba(255, 29, 37, 0.34);
  border-radius: var(--hf-radius);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 28px;
  padding: 26px;
}

.services-highlight p {
  color: var(--hf-white);
  font-size: 1.05rem;
  font-weight: 850;
  margin-bottom: 0;
}

.mini-link {
  border: 1px solid var(--hf-red);
  border-radius: var(--hf-radius);
  color: var(--hf-red);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  padding: 8px 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.mini-link:hover,
.mini-link:focus {
  background: var(--hf-red);
  color: var(--hf-white);
}

.gallery-top {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gallery-grid {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-card {
  aspect-ratio: 1.18 / 1;
  background-position: center;
  background-size: cover;
  flex: 0 1 calc((100% - 78px) / 4);
  height: 100%;
  max-width: calc((100% - 78px) / 4);
  min-height: 210px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  will-change: background-position, transform;
}

.gallery-card {
  animation: galleryImageDrift 7s ease-in-out infinite alternate;
}

.gallery-card:hover {
  border-color: rgba(255, 29, 37, 0.58);
  box-shadow: 0 26px 70px rgba(255, 29, 37, 0.18), 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(-8px) scale(1.015);
}

.gallery-card:nth-child(2n) {
  animation-delay: 0.7s;
}

.gallery-card:nth-child(3n) {
  animation-delay: 1.2s;
}

.gallery-card::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 29, 37, 0.12), transparent 42%);
  content: "";
  inset: 0;
  opacity: 0.72;
  position: absolute;
  transition: transform 0.32s ease, opacity 0.32s ease;
  z-index: 1;
}

.gallery-card::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.76) 100%);
  content: "";
  inset: 0;
  position: absolute;
  transition: background 0.24s ease;
  z-index: 1;
}

.gallery-card:hover::after {
  background: linear-gradient(180deg, rgba(255, 29, 37, 0.08) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.gallery-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.gallery-card div {
  bottom: 14px;
  left: 16px;
  position: absolute;
  right: 16px;
  z-index: 2;
}

.gallery-card span {
  display: block;
  font-size: 1rem;
  font-weight: 950;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gallery-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  margin-bottom: 0;
}

.photo-gallery {
  margin-top: 62px;
  position: relative;
}

.photo-gallery::before {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 29, 37, 0.24), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.09), transparent 24%);
  content: "";
  inset: -44px -18px auto;
  height: 260px;
  pointer-events: none;
  position: absolute;
}

.photo-carousel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--hf-radius);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin-top: 26px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.photo-carousel::before,
.photo-carousel::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 110px;
  z-index: 4;
}

.photo-carousel::before {
  background: linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0));
  left: 14px;
}

.photo-carousel::after {
  background: linear-gradient(270deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0));
  right: 14px;
}

.photo-arrow {
  align-items: center;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.24), transparent 34%),
    rgba(10, 11, 12, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 29, 37, 0.12);
  color: var(--hf-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.7rem;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  line-height: 1;
  opacity: 0.78;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 44px;
  z-index: 6;
}

.photo-arrow:hover,
.photo-arrow:focus {
  background: rgba(255, 29, 37, 0.72);
  border-color: rgba(255, 255, 255, 0.36);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.photo-arrow-prev {
  left: 24px;
}

.photo-arrow-next {
  right: 24px;
}

.photo-track {
  display: flex;
  gap: 18px;
  overflow: visible;
  transition: transform 0.7s cubic-bezier(0.22, 0.9, 0.24, 1);
  will-change: transform;
}

.photo-track::-webkit-scrollbar {
  display: none;
}

.photo-slide {
  animation: premiumFloat 6s ease-in-out infinite;
  aspect-ratio: 1.45 / 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--hf-radius);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  flex: 0 0 min(560px, 82vw);
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: scale(0.94);
  transition: border-color 0.34s ease, box-shadow 0.34s ease, opacity 0.34s ease, transform 0.34s ease;
  opacity: 0.7;
}

.photo-slide.is-current {
  border-color: rgba(255, 29, 37, 0.56);
  box-shadow: 0 30px 88px rgba(255, 29, 37, 0.16), 0 28px 76px rgba(0, 0, 0, 0.42);
  opacity: 1;
  transform: scale(1);
}

.photo-slide:nth-child(2n) {
  animation-delay: 0.5s;
}

.photo-slide:nth-child(3n) {
  animation-delay: 0.9s;
}

.photo-slide::before {
  background:
    linear-gradient(120deg, rgba(255, 29, 37, 0.14), transparent 38%),
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.32));
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.photo-slide::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  height: 100%;
  left: -60%;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  transition: transform 0.65s ease;
  width: 42%;
  z-index: 2;
}

.photo-slide:hover::after {
  transform: translateX(280%) skewX(-16deg);
}

.photo-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
  width: 100%;
}

.photo-slide:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.075);
}

.gallery-card.mariage {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=900&q=80");
}

.gallery-card.bapteme {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1519671282429-b44660ead0a7?auto=format&fit=crop&w=900&q=80");
}

.gallery-card.anniversaire {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?auto=format&fit=crop&w=900&q=80");
}

.gallery-card.comite {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1472653431158-6364773b2a56?auto=format&fit=crop&w=900&q=80");
}

.gallery-card.association {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=80");
}

.gallery-card.privee {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=80");
}

.gallery-card.entreprise {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)), url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1200&q=80");
}

.press-section {
  overflow: hidden;
  position: relative;
}

.press-section::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 29, 37, 0.2), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.08), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.press-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.press-card {
  animation: premiumFloat 5.8s ease-in-out infinite;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 29, 37, 0.25), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028)),
    rgba(7, 8, 9, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--hf-radius);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-height: 300px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.press-card:nth-child(2) {
  animation-delay: 0.55s;
}

.press-card::before {
  background: linear-gradient(90deg, var(--hf-red), rgba(255, 255, 255, 0.78), var(--hf-red));
  content: "";
  height: 3px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.press-card::after {
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.16), transparent 62%);
  content: "";
  height: 100%;
  left: -70%;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  transition: transform 0.6s ease;
  width: 48%;
}

.press-card:hover::after {
  transform: translateX(260%) skewX(-16deg);
}

.press-source {
  align-items: center;
  color: var(--hf-red);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.press-source::before {
  background: var(--hf-red);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255, 29, 37, 0.14);
  content: "";
  height: 8px;
  width: 8px;
}

.press-card h3 {
  color: var(--hf-white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.press-card p {
  color: var(--hf-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.press-card .mini-link {
  position: relative;
  z-index: 1;
}

.event-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agenda-card {
  background:
    linear-gradient(135deg, rgba(255, 29, 37, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    var(--hf-panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--hf-radius);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  margin: 28px auto 0;
  max-width: 1060px;
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.agenda-card::before {
  animation: agendaLinePulse 3.8s ease-in-out infinite;
  background: linear-gradient(180deg, var(--hf-red), rgba(255, 29, 37, 0));
  content: "";
  bottom: 18px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 3px;
}

.agenda-info-panel {
  align-content: start;
  background:
    radial-gradient(circle at 0 0, rgba(255, 29, 37, 0.18), transparent 38%),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hf-radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 20px;
}

.agenda-kicker {
  color: var(--hf-red);
  display: block;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.agenda-info-panel h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 950;
  line-height: 1.05;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.agenda-info-panel p {
  color: var(--hf-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.agenda-types {
  display: grid;
  gap: 8px;
}

.agenda-types span {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hf-radius);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 8px;
  padding: 9px 10px;
  text-transform: uppercase;
}

.agenda-types span::before {
  animation: agendaTypePulse 1.9s ease-in-out infinite;
  background: var(--hf-red);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 29, 37, 0.12);
  content: "";
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

.agenda-frame {
  background:
    linear-gradient(180deg, rgba(255, 29, 37, 0.1), transparent 38%),
    rgba(4, 5, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--hf-radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.agenda-frame-top {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 29, 37, 0.2), rgba(255, 255, 255, 0.04)),
    #111315;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 52px;
  padding: 0 18px;
}

.agenda-frame-top span {
  display: inline-flex;
  gap: 5px;
}

.agenda-frame-top span::before,
.agenda-frame-top span::after {
  background: var(--hf-red);
  border-radius: 999px;
  content: "";
  display: block;
  height: 8px;
  opacity: 0.9;
  width: 8px;
}

.agenda-frame-top strong {
  font-size: 0.9rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.agenda-frame-top em {
  color: var(--hf-muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.agenda-viewport {
  background:
    linear-gradient(180deg, rgba(255, 29, 37, 0.08), transparent 34%),
    #0b0c0d;
  flex: 1;
  max-height: 430px;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.agenda-viewport::before {
  display: none;
}

.agenda-viewport::after {
  display: none;
}

.agenda-list {
  display: grid;
  gap: 12px;
  max-height: 430px;
  overflow-y: auto;
  padding: 16px;
  scrollbar-color: var(--hf-red) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.agenda-list::-webkit-scrollbar {
  width: 8px;
}

.agenda-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.agenda-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--hf-red), #8e1116);
  border-radius: 999px;
}

.agenda-item {
  align-items: center;
  animation: agendaItemMove 4.8s ease-in-out infinite;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hf-radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 14px;
  position: relative;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.agenda-item:nth-child(2n) {
  animation-delay: 0.55s;
}

.agenda-item:nth-child(3n) {
  animation-delay: 1.1s;
}

.agenda-item::before {
  background: linear-gradient(180deg, rgba(255, 29, 37, 0.8), rgba(255, 29, 37, 0));
  border-radius: 999px;
  content: "";
  height: 58%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 21%;
  transition: opacity 0.22s ease;
  width: 3px;
}

.agenda-item:hover,
.agenda-item:focus-within {
  animation: none;
  border-color: rgba(255, 29, 37, 0.38);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  transform: translateX(4px);
}

.agenda-item:hover::before,
.agenda-item:focus-within::before {
  opacity: 1;
}

.agenda-item.is-past {
  opacity: 0.58;
}

.agenda-item.is-past .agenda-date {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.agenda-date {
  align-items: center;
  background: rgba(255, 29, 37, 0.14);
  border: 1px solid rgba(255, 29, 37, 0.38);
  border-radius: var(--hf-radius);
  display: grid;
  min-height: 72px;
  padding: 8px;
  text-align: center;
}

.agenda-day {
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}

.agenda-month {
  color: var(--hf-red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.agenda-content h4 {
  font-size: 1rem;
  font-weight: 950;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.agenda-content p {
  color: var(--hf-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.agenda-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.agenda-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 950;
  padding: 6px 9px;
  text-transform: uppercase;
}

.agenda-badge.type {
  background: var(--hf-red);
  color: var(--hf-white);
}

.agenda-badge.status {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.agenda-badge.upcoming {
  background: rgba(255, 29, 37, 0.15);
  border: 1px solid rgba(255, 29, 37, 0.34);
  color: var(--hf-red);
}

.agenda-badge.past {
  background: var(--hf-red);
  border: 1px solid var(--hf-red);
  color: var(--hf-white);
}

@keyframes agendaLinePulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes agendaTypePulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(255, 29, 37, 0.12);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 29, 37, 0.06);
    transform: scale(0.9);
  }
}

@keyframes agendaItemMove {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

.agenda-empty {
  color: var(--hf-muted);
  font-weight: 850;
  padding: 28px;
  text-align: center;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-card,
.review-card,
.contact-panel,
.quote-form {
  padding: 28px;
}

.team-card {
  align-items: center;
  animation: teamCardFloat 5.2s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px 20px 26px;
  text-align: center;
}

.team-card:nth-child(2) {
  animation-delay: 0.4s;
}

.team-card:nth-child(3) {
  animation-delay: 0.8s;
}

.team-card:nth-child(4) {
  animation-delay: 1.2s;
}

.team-photo {
  align-items: center;
  animation: teamPhotoGlow 3.8s ease-in-out infinite;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 29, 37, 0.22), rgba(255, 255, 255, 0.06));
  border: 2px solid rgba(255, 29, 37, 0.62);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  color: var(--hf-white);
  display: flex;
  font-size: 2.4rem;
  font-weight: 950;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  width: 128px;
}

.team-photo::before {
  animation: teamPhotoSparkle 4.6s ease-in-out infinite;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.42), transparent 7%),
    radial-gradient(circle at 68% 18%, rgba(255, 29, 37, 0.34), transparent 6%),
    linear-gradient(135deg, transparent 36%, rgba(255, 255, 255, 0.16), transparent 56%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.team-photo::after {
  animation: teamRingSpin 12s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left-color: rgba(255, 29, 37, 0.82);
  border-top-color: rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  content: "";
  inset: -6px;
  position: absolute;
  z-index: 3;
}

.team-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.26s ease;
  width: 100%;
}

.team-card:hover .team-photo img {
  transform: scale(1.07);
}

.team-card h3 {
  font-size: 1.18rem;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.team-card p {
  color: var(--hf-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  margin-top: 34px;
}

.contact-panel {
  align-self: center;
  text-align: center;
}

.contact-detail {
  border-bottom: 1px solid var(--hf-line);
  margin-inline: auto;
  max-width: 420px;
  padding: 18px 0;
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-detail span {
  color: var(--hf-red);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--hf-white);
  display: inline-block;
  font-size: 1.14rem;
  font-weight: 900;
  margin-top: 5px;
  text-decoration: none;
}

.phone-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.phone-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius);
  color: var(--hf-white);
  display: flex;
  font-size: 1.14rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  margin-top: 0;
  padding: 10px 12px;
  width: 100%;
}

.phone-list span {
  align-items: center;
  background: rgba(255, 29, 37, 0.18);
  border: 1px solid rgba(255, 29, 37, 0.45);
  border-radius: 999px;
  color: var(--hf-red);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  width: 36px;
}

.region-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 92px minmax(0, 1fr);
  margin-top: 12px;
  text-align: left;
  padding: 14px;
}

.region-map {
  aspect-ratio: 1 / 1;
  width: 92px;
}

.region-map path {
  fill: rgba(255, 29, 37, 0.22);
  stroke: var(--hf-red);
  stroke-linejoin: round;
  stroke-width: 7;
}

.region-map circle {
  fill: var(--hf-white);
  stroke: var(--hf-red);
  stroke-width: 5;
}

.region-card strong {
  display: block;
  margin-top: 0;
}

.region-card p {
  color: var(--hf-muted);
  font-size: 0.94rem;
  margin: 5px 0 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-full {
  grid-column: 1 / -1;
}

.hp-field {
  height: 0;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
}

label {
  display: block;
  font-size: 0.84rem;
  font-weight: 850;
  margin-bottom: 7px;
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius);
  color: var(--hf-white);
  font: inherit;
  min-height: 48px;
  padding: 12px;
  width: 100%;
}

select option {
  color: #111111;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.captcha-box {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 29, 37, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hf-radius);
  padding: 14px;
}

.captcha-box label {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: space-between;
}

.captcha-box label strong {
  color: var(--hf-white);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.quote-form button {
  cursor: pointer;
  margin-top: 18px;
  width: 100%;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.quote-success {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 29, 37, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 29, 37, 0.44);
  border-radius: var(--hf-radius);
  box-shadow: 0 18px 44px rgba(255, 29, 37, 0.16);
  color: var(--hf-white);
  display: flex;
  font-weight: 950;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  opacity: 0;
  padding: 14px 16px;
  text-align: center;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.quote-success::before {
  animation: radioLiveDot 1.4s ease-in-out infinite;
  background: var(--hf-red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 29, 37, 0.13);
  content: "";
  height: 9px;
  width: 9px;
}

.quote-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-limit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 29, 37, 0.34);
  border-radius: var(--hf-radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 850;
  margin-top: 14px;
  padding: 13px 14px;
  text-align: center;
}

.site-footer {
  background: rgba(1, 1, 1, 0.86);
  border-top: 1px solid var(--hf-line);
  padding: 28px 22px;
}

.back-to-top {
  align-items: center;
  animation: backToTopPulse 2.1s ease-in-out infinite;
  background: var(--hf-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(255, 29, 37, 0.3);
  color: var(--hf-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.18s ease;
  width: 52px;
  z-index: 40;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--hf-red-dark);
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1160px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.footer-legal:hover,
.footer-legal:focus {
  color: var(--hf-red);
  text-shadow: 0 0 18px rgba(255, 29, 37, 0.38);
}

.legal-page {
  padding-top: 150px;
}

.legal-nav {
  grid-template-columns: 112px minmax(0, 1fr);
}

.legal-menu {
  justify-content: flex-end;
}

.legal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.legal-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 29, 37, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(7, 8, 9, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--hf-radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.legal-card::before {
  background: linear-gradient(90deg, var(--hf-red), rgba(255, 255, 255, 0.72), transparent);
  content: "";
  height: 2px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.legal-card h2 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.legal-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 9px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--hf-white);
  font-weight: 850;
}

.partners-section {
  overflow: hidden;
}

.partners-marquee {
  margin-top: 28px;
  overflow: hidden;
  position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 90px;
  z-index: 2;
}

.partners-marquee::before {
  background: linear-gradient(90deg, rgba(5, 6, 6, 0.95), rgba(5, 6, 6, 0));
  left: 0;
}

.partners-marquee::after {
  background: linear-gradient(270deg, rgba(5, 6, 6, 0.95), rgba(5, 6, 6, 0));
  right: 0;
}

.partners-track {
  animation: partnersScroll 24s linear infinite;
  display: flex;
  gap: 18px;
  padding: 10px 0 18px;
  width: max-content;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-card {
  animation: partnerFloat 4.6s ease-in-out infinite;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 29, 37, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 8, 9, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--hf-radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: 250px;
  overflow: hidden;
  padding: 20px 22px;
  position: relative;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.partner-card:nth-child(2n) {
  animation-delay: 0.45s;
}

.partner-card:nth-child(3n) {
  animation-delay: 0.9s;
}

.partner-card::before {
  background: linear-gradient(90deg, var(--hf-red), rgba(255, 255, 255, 0.72), transparent);
  content: "";
  height: 2px;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 0;
}

.partner-card::after {
  animation: premiumCardSheen 4.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  inset: 0 auto 0 -50%;
  pointer-events: none;
  position: absolute;
  transform: skewX(-16deg);
  width: 38%;
}

.partner-card:hover {
  border-color: rgba(255, 29, 37, 0.5);
  box-shadow: 0 30px 78px rgba(255, 29, 37, 0.18), 0 24px 62px rgba(0, 0, 0, 0.36);
}

.partner-card span {
  align-items: center;
  color: var(--hf-red);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.partner-card span::before {
  animation: radioLiveDot 1.8s ease-in-out infinite;
  background: var(--hf-red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 29, 37, 0.12);
  content: "";
  height: 7px;
  width: 7px;
}

.partner-card strong {
  color: var(--hf-white);
  display: block;
  font-size: 1rem;
  font-weight: 950;
  position: relative;
  z-index: 1;
}

@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.footer-social {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.footer-social a {
  align-items: center;
  animation: socialFloat 3.2s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 29, 37, 0.42);
  border-radius: 50%;
  color: var(--hf-white);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: 40px;
}

.footer-social a:nth-child(2) {
  animation-delay: 0.55s;
}

.footer-social svg {
  fill: currentColor;
  height: 19px;
  width: 19px;
}

.footer-social a:hover,
.footer-social a:focus {
  background: var(--hf-red);
  border-color: var(--hf-red);
  box-shadow: 0 14px 34px rgba(255, 29, 37, 0.28);
  transform: translateY(-4px);
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    align-items: stretch;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid var(--hf-line);
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    padding: 12px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
  }

  .radio-player {
    grid-column: 1 / -1;
    justify-self: end;
    order: 3;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: min(100%, 386px);
  }

  .radio-player.is-playing {
    transform: translateY(-1px);
  }

  .agenda-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .agenda-info-panel {
    padding: 18px;
  }

  .agenda-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 170px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    flex-basis: calc((100% - 26px) / 2);
    max-width: calc((100% - 26px) / 2);
  }

  .photo-slide {
    flex-basis: min(520px, 78vw);
  }

  .services-highlight {
    grid-template-columns: 1fr;
  }

  .event-grid,
  .review-grid,
  .about-layout,
  .press-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-facts {
    position: static;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 76px;
    padding: 8px 16px;
  }

  .brand img {
    height: 62px;
    width: 76px;
  }

  .radio-player {
    gap: 6px;
    grid-template-areas:
      "cover info play"
      "streams streams volume";
    grid-template-columns: 40px minmax(0, 1fr) 32px;
    min-height: 80px;
    padding: 6px;
  }

  .radio-bars {
    display: none;
  }

  .radio-cover,
  .radio-cover-wrap {
    height: 40px;
    width: 40px;
  }

  .radio-info strong {
    font-size: 0.74rem;
  }

  .radio-station {
    font-size: 0.66rem;
  }

  .radio-info span {
    font-size: 0.68rem;
  }

  .radio-toggle {
    height: 30px;
    width: 30px;
  }

  .radio-volume {
    grid-template-columns: minmax(0, 1fr);
    justify-self: stretch;
    width: 100%;
  }

  .radio-streams {
    justify-self: stretch;
  }

  .radio-streams button {
    flex: 1;
    padding: 6px 6px;
  }

  .radio-volume-range {
    height: 6px;
    min-height: 6px;
  }

  .radio-volume-range::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
  }

  .radio-volume-range::-moz-range-thumb {
    height: 18px;
    width: 18px;
  }

  .agenda-frame {
    padding: 10px;
  }

  .agenda-frame-top {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .agenda-frame-top em {
    display: none;
  }

  .agenda-viewport {
    height: auto;
    max-height: 390px;
    min-height: 0;
  }

  .agenda-list {
    max-height: 390px;
    padding: 12px;
  }

  .agenda-item {
    align-items: start;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .agenda-date {
    min-height: 58px;
  }

  .agenda-day {
    font-size: 1.35rem;
  }

  .agenda-time {
    grid-column: 2;
    text-align: left;
  }

  .hero {
    min-height: 680px;
    padding-top: 158px;
  }

  .hero-inner {
    min-height: 604px;
    padding: 42px 16px 72px;
  }

  .hero-logo {
    max-height: 360px;
    width: min(320px, 84vw);
  }

  .hero-tags span {
    justify-content: center;
    width: 100%;
  }

  .hero-tags span + span::before {
    display: none;
  }

  .section {
    padding: 58px 16px;
  }

  .services-grid,
  .gallery-grid,
  .press-grid,
  .team-grid,
  .form-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 122px;
  }

  .review-card {
    flex-basis: 88vw;
    min-height: 330px;
    padding: 26px;
  }

  .reviews-carousel::before,
  .reviews-carousel::after {
    width: 34px;
  }

  .gallery-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .photo-gallery {
    margin-top: 44px;
  }

  .photo-carousel {
    padding: 8px;
  }

  .photo-carousel::before,
  .photo-carousel::after {
    bottom: 8px;
    top: 8px;
    width: 54px;
  }

  .photo-carousel::before {
    left: 8px;
  }

  .photo-carousel::after {
    right: 8px;
  }

  .photo-track {
    gap: 10px;
  }

  .photo-arrow {
    font-size: 1.35rem;
    height: 36px;
    width: 36px;
  }

  .photo-arrow-prev {
    left: 14px;
  }

  .photo-arrow-next {
    right: 14px;
  }

  .photo-slide {
    aspect-ratio: 1.08 / 1;
    flex-basis: 82vw;
  }

  .gallery-top,
  .footer-inner {
    align-items: center;
    flex-direction: column;
  }

  .side-social {
    align-items: center;
    bottom: 18px;
    display: flex;
    left: 16px;
    right: 16px;
    top: auto;
    transform: none;
  }

  .side-social a {
    flex: 1;
    min-width: 0;
  }

}
