/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.9) 100%),
    radial-gradient(circle at center, rgba(255, 45, 111, 0.14), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}

.hero-brand-label {
  width: min(520px, 82vw);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.15rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  width: 100%;
  max-width: 12ch;
  padding-inline: 6px;
  margin: 0 auto 24px;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.hero-services {
  position: relative;
  width: min(100%, 640px);
  overflow: hidden;
  padding-inline: 18px;
  margin: 0 auto 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.hero-services-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-services-group {
  display: flex;
  align-items: center;
  flex: none;
}

.hero-service-item {
  display: inline-flex;
  align-items: center;
  flex: none;
  white-space: nowrap;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-service-item::after {
  content: "\00B7";
  margin-inline: 14px;
  color: rgba(255, 45, 111, 0.72);
}

.hero-services-group .hero-service-item:last-child::after {
  content: "";
  margin: 0;
}

.hero-services-group:not(:last-child) {
  padding-right: 14px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text-soft);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-text);
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 32px var(--color-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 38px rgba(255, 45, 111, 0.35);
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 45, 111, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s;
}

.pill:hover {
  background: var(--color-accent);
  color: var(--color-text);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}

.scroll-indicator.scroll-hint-gone {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

.scroll-hint-text {
  display: none;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 6px;
}

.scroll-arrow {
  color: var(--color-accent);
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 45, 111, 0.45));
}

.scroll-arrow--top {
  animation: chevronPulse 1.8s ease-in-out infinite;
}

.scroll-arrow--bot {
  animation: chevronPulse 1.8s ease-in-out infinite;
  animation-delay: 0.28s;
}

@keyframes chevronPulse {
  0%, 100% { opacity: 0.18; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(5px); }
}

