/* ========================================
   NXT-LVL.INK - Tattoo Studio Frankfurt
   Exact Figma Design Implementation
   ======================================== */

/* === CSS Variables (Design Tokens) === */
:root {
  --gold: #B8860B;
  --dark: #0A1119;
  --dark-gray: #545454;
  --white: #FFFFFF;
  --black: #000000;
  --text-muted: rgba(0, 0, 0, 0.5);
  --text-light-muted: rgba(255, 255, 255, 0.8);
  --border-light: rgba(0, 0, 0, 0.15);
  --border-dark: rgba(255, 255, 255, 0.15);
  --bg-light: #F9F9F9;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --max-width: 1440px;
  --content-padding: 80px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* === Shared Components === */

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.68px;
  line-height: 1.1;
}

/* Gold Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.3);
}

.btn--gold {
  background: var(--gold);
  padding: 16px 20px;
}

.btn--gold:hover {
  background: #d49b0d;
}

.btn--center {
  margin: 0 auto;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Gold accent */
.gold {
  color: var(--gold);
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: var(--gold);
  padding: 6px var(--content-padding);
}

.top-bar__inner {
  max-width: calc(var(--max-width) - var(--content-padding) * 2);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 40px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.top-bar__item:hover {
  opacity: 0.8;
}

.top-bar__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.top-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.top-bar__city-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__city-label {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.top-bar__city-label--active {
  opacity: 1;
}

.top-bar__flag {
  width: 15px;
  height: 10px;
  object-fit: cover;
}

.top-bar__city-sep {
  color: var(--white);
  opacity: 0.3;
  font-size: 11px;
  margin: 0 2px;
}

.top-bar__switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  cursor: pointer;
}

.top-bar__switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.top-bar__switch-slider {
  position: absolute;
  inset: 0;
  background: #444;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.top-bar__switch-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.top-bar__switch-input:checked + .top-bar__switch-slider::before {
  transform: translateX(16px);
}

/* Navigation */
.nav {
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px var(--content-padding);
}

.nav__inner {
  max-width: calc(var(--max-width) - var(--content-padding) * 2);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.nav__link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav__link--active {
  background: var(--gold);
  border-radius: 999px;
}

.nav__link--active:hover {
  color: var(--white);
  background: #d49b0d;
}

.nav__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav__dropdown {
  position: relative;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 756px;
  margin-top: 123px;
  overflow: visible;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -59px;
  left: 0;
  width: 100%;
  height: 61px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 78% 100%, 0 0);
  z-index: 3;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -64px;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(0, 0, 0, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 78% 100%, 0 0);
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__gradient-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 720px;
  height: 690px;
  background: linear-gradient(83deg, rgb(10, 17, 25) 65.4%, rgba(10, 17, 25, 0) 92.4%);
}

.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 430px;
  background: linear-gradient(3deg, rgb(10, 17, 25) 43.3%, rgba(10, 17, 25, 0) 71.9%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding-left: var(--content-padding);
  padding-top: 160px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: var(--white);
}

.hero__cities {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__city {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s ease;
  opacity: 0.5;
}

.hero__city--active {
  opacity: 1;
}

.hero__city:hover {
  opacity: 0.85;
}

.hero__city-map {
  width: 55px;
  height: 68px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero__city-map--gold {
  display: none;
}

.hero__city--active .hero__city-map--grey {
  display: none;
}

.hero__city--active .hero__city-map--gold {
  display: block;
}

.hero__city-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.hero__city-arrows {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__city-arrow {
  transition: stroke 0.3s ease;
}

.hero__city-arrow--1 {
  stroke: rgba(255, 255, 255, 0.35);
}

.hero__city-arrow--2 {
  stroke: rgba(255, 255, 255, 0.6);
}

.hero__city--active .hero__city-arrow--1 {
  stroke: rgba(184, 134, 11, 0.5);
}

.hero__city--active .hero__city-arrow--2 {
  stroke: var(--gold);
}

.hero__logo {
  width: 557px;
  height: auto;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  right: 48px;
  top: calc(50% - 20px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__scroll-line {
  width: 3px;
  height: 10px;
  background: var(--white);
  opacity: 0.5;
}

.hero__scroll-line:nth-child(2) {
  opacity: 0.8;
}

.hero__scroll-line:nth-child(3) {
  opacity: 1;
}

/* ========================================
   WELCOME SECTION
   ======================================== */

.welcome {
  padding: 100px var(--content-padding);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.welcome__inner {
  max-width: 901px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.welcome__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 590px;
}

.welcome__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  color: var(--black);
}

.welcome__brand {
  white-space: nowrap;
}

.welcome__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

/* ========================================
   ARTISTS SECTION
   ======================================== */

.artists {
  padding: 0 0 80px 0;
}

.artists__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  color: var(--black);
  margin-bottom: 72px;
}

.artists__container {
  width: 100%;
  background: var(--bg-light);
  padding: 32px var(--content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

/* Filters */
.artists__filters {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 16px;
}

.artists__filters-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-search {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.filter-search__input {
  width: 100%;
  padding: 16px 48px 16px 24px;
  border: 1px solid var(--border-light);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease;
}

.filter-search__input::placeholder {
  color: var(--black);
  opacity: 0.6;
}

.filter-search__input:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.filter-search__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
}

.filter-search__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--black);
  opacity: 0.6;
  pointer-events: none;
}

.filter-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  opacity: 0.6;
  white-space: nowrap;
  transition: border-color 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.filter-select:hover {
  border-color: var(--gold);
  opacity: 1;
  background: rgba(184, 134, 11, 0.05);
}

.filter-select__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.filter-select__checkbox {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}

/* Artists Grid */
.artists__grid {
  display: grid;
  grid-template-columns: repeat(4, 296px);
  gap: 32px;
  width: 1280px;
  max-width: 100%;
}

/* Artist Card */
.artist-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 296px;
}

.artist-card__image {
  width: 100%;
  aspect-ratio: 296 / 370;
  overflow: hidden;
  position: relative;
}

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

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

.artist-card__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artist-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.artist-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--black);
}

.artist-card__arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.artist-card:hover .artist-card__arrow {
  transform: translate(2px, -2px);
}

.artist-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artist-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.artist-card__location span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

.artist-card__meta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.artist-card__date-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.artist-card__date-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 3px 8px;
  white-space: nowrap;
}

/* ---- Artist Gallery Slider ---- */
.artist-card__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 296 / 370;
  overflow: hidden;
  cursor: grab;
}
.artist-card__gallery:active { cursor: grabbing; }

.artist-card__slides {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
  user-select: none;
}

.artist-card__slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.artist-card__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.artist-card__gallery:hover .artist-card__gallery-nav { opacity: 1; }
.artist-card__gallery-nav--prev { left: 8px; }
.artist-card__gallery-nav--next { right: 8px; }

.artist-card__gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.artist-card__gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
  cursor: pointer;
}
.artist-card__gallery-dot--active {
  background: var(--gold);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
  background: var(--dark-gray);
  padding: 96px var(--content-padding);
  max-width: 1344px;
  margin: 0 48px;
  margin-inline: max(48px, calc((100% - 1344px) / 2));
}

.cta__inner {
  max-width: 951px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

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

.cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
  max-width: 731px;
}

.cta__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light-muted);
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  position: relative;
  padding: 0;
  min-height: 841px;
  background: var(--black);
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--black);
  clip-path: polygon(0 100%, 78% 0, 100% 20%, 100% 100%);
  z-index: 1;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.footer__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.footer__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.footer__content {
  position: relative;
  z-index: 1;
  padding: 143px var(--content-padding) 40px;
}

.footer__grid {
  display: flex;
  gap: 112px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.footer__col:first-child {
  width: 277px;
}

.footer__col--wide {
  width: 470px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  color: var(--white);
}

.footer__divider {
  width: 100%;
  height: 4px;
  background: var(--gold);
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__hours-day,
.footer__hours-time {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: var(--white);
}

.footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__address {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__address-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer__address span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
}

.footer__map {
  width: 100%;
  aspect-ratio: 512 / 283;
  overflow: hidden;
}

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

.footer__social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 4px;
  color: var(--white);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.footer__social-link:hover {
  background: #d49b0d;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.footer__social-link:active {
  transform: translateY(0);
}

.footer__social-link svg {
  width: 24px;
  height: 24px;
}

/* Copyright */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  padding-top: 40px;
}

.footer__copyright {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 16px;
  color: var(--white);
}

.footer__copyright strong {
  font-weight: 700;
}

.footer__rights {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 16px;
  color: var(--white);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ========================================
   LINK TREE OVERLAY
   ======================================== */

.linktree {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  justify-content: center;
  padding: 120px 40px 60px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.linktree.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.linktree__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px 24px 60px;
  max-width: 1100px;
  width: 100%;
  background: var(--black);
  height: fit-content;
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), 0 0 20px rgba(184, 134, 11, 0.15);
  position: relative;
}

/* Logo + City */
.linktree__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.linktree__logo-link {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.linktree__logo-link:hover {
  opacity: 0.8;
}

.linktree__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(184, 134, 11, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.linktree__close:hover {
  background: rgba(184, 134, 11, 0.25);
  border-color: var(--gold);
}

.linktree__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 2.5;
}

.linktree__logo {
  width: 176px;
  height: auto;
}

.linktree__city {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  line-height: 1.1;
}

/* Title Block */
.linktree__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 660px;
}

.linktree__gold-frame {
  width: 100%;
  max-width: 660px;
  height: 30px;
  border: 2px solid var(--gold);
  border-bottom: none;
  margin-bottom: -8px;
}

.linktree__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(14px, 3.2vw, 22px);
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.linktree__desc {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.6;
}

/* Grid Wrapper with gold bars */
.linktree__grid-wrapper {
  position: relative;
  width: 100%;
  max-width: 1080px;
}

.linktree__gold-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 91px;
  height: 316px;
  background: var(--gold);
  z-index: 0;
}

.linktree__gold-bar--left {
  left: 0;
}

.linktree__gold-bar--right {
  right: 0;
}

/* Links Grid */
.linktree__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 48px;
}

/* Link Card */
.linktree__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #333;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.linktree__card:hover {
  background: #444;
  transform: translateY(-2px);
}

.linktree__card:active {
  transform: translateY(0);
}

.linktree__card-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linktree__card-icon svg {
  width: 24px;
  height: 24px;
}

.linktree__card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
}

/* Phone (mobile only) */
.linktree__phone {
  display: none;
  align-items: center;
  gap: 17px;
}

.linktree__phone-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2.667px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linktree__phone-icon svg {
  width: 21px;
  height: 21px;
}

.linktree__phone-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

/* Social Icons */
.linktree__social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.linktree__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 4px;
  color: var(--white);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.linktree__social-link:hover {
  background: #d49b0d;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.linktree__social-link:active {
  transform: translateY(0);
}

.linktree__social-link svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1400px) {
  :root {
    --content-padding: 40px;
  }

  .artists__grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .artist-card {
    width: 100%;
  }

  .filter-search {
    width: 100%;
    max-width: 580px;
  }

  .footer__grid {
    gap: 60px;
  }
}

@media (max-width: 1200px) {
  .artists__filters-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .artists__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    flex-wrap: wrap;
    gap: 48px;
  }

  .footer__col:first-child,
  .footer__col--wide {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --content-padding: 16px;
  }

  /* === TOP BAR MOBILE === */
  .top-bar {
    padding: 6px 12px;
  }

  .top-bar__inner {
    flex-direction: column;
    gap: 4px;
  }

  .top-bar__contact {
    gap: 12px;
  }

  .top-bar__item {
    font-size: 10px;
    gap: 4px;
  }

  .top-bar__icon {
    width: 16px;
    height: 16px;
  }

  .top-bar__dot {
    display: none;
  }

  .top-bar__city-toggle {
    gap: 8px;
  }

  .top-bar__city-label {
    font-size: 9px;
  }

  .top-bar__flag {
    width: 12px;
    height: 8px;
  }

  .top-bar__switch {
    width: 30px;
    height: 16px;
  }

  .top-bar__switch-slider::before {
    height: 12px;
    width: 12px;
  }

  .top-bar__switch-input:checked + .top-bar__switch-slider::before {
    transform: translateX(14px);
  }

  /* === NAV MOBILE === */
  .nav {
    padding: 12px 16px;
  }

  .nav__links {
    display: none;
  }

  .nav__logo-img {
    height: 32px;
  }

  .btn--gold {
    padding: 12px 16px;
    font-size: 14px;
  }

  /* === HERO MOBILE === */
  .hero {
    height: auto;
    min-height: 400px;
    margin-top: 95px;
  }

  .hero::after {
    bottom: -29px;
    height: 31px;
  }

  .hero::before {
    bottom: -34px;
    height: 34px;
  }

  .hero__content {
    padding-top: 32px;
    padding-bottom: 40px;
    gap: 20px;
    padding-right: var(--content-padding);
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__logo {
    width: 200px;
  }

  .hero__gradient-left {
    width: 100%;
    height: 100%;
    background: linear-gradient(83deg, rgb(10, 17, 25) 55%, rgba(10, 17, 25, 0) 85%);
  }

  .hero__gradient-bottom {
    height: 250px;
  }

  .hero__bg {
    overflow: hidden;
  }

  .hero__cities {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero__city-map {
    width: 40px;
    height: 50px;
  }

  .hero__city-name {
    font-size: 14px;
  }

  .hero__scroll {
    display: none;
  }

  /* === WELCOME MOBILE === */
  .welcome {
    padding: 70px var(--content-padding);
  }

  .welcome__title,
  .artists__title,
  .cta__title {
    font-size: 32px;
  }

  .welcome__text {
    font-size: 14px;
  }

  /* === ARTISTS MOBILE === */
  .artists__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .artists__container {
    padding: 24px var(--content-padding);
  }

  .artists__filters {
    padding: 8px 0;
  }

  .artists__filters-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-search__input {
    padding: 12px 40px 12px 16px;
    font-size: 13px;
  }

  .filter-select {
    padding: 12px 16px;
    font-size: 13px;
  }

  .artist-card {
    gap: 16px;
  }

  .artist-card__name {
    font-size: 16px;
  }

  .artist-card__meta {
    flex-direction: column;
    gap: 8px;
  }

  .artist-card__meta span {
    font-size: 13px;
  }

  .artist-card__meta-icon {
    width: 20px;
    height: 20px;
  }

  .artist-card__arrow {
    width: 24px;
    height: 24px;
  }

  /* === CTA MOBILE === */
  .cta {
    margin: 0;
    margin-inline: 0;
    padding: 60px var(--content-padding);
  }

  .cta__text {
    font-size: 14px;
  }

  /* === FOOTER MOBILE === */
  .footer {
    min-height: auto;
  }

  .footer__content {
    padding: 80px var(--content-padding) 30px;
  }

  .footer__grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer__col:first-child,
  .footer__col--wide {
    width: 100%;
  }

  .footer__heading {
    font-size: 20px;
  }

  .footer__hours-day,
  .footer__hours-time {
    font-size: 15px;
  }

  .footer__address span {
    font-size: 15px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__copyright,
  .footer__rights {
    font-size: 13px;
  }

  /* === LINKTREE MOBILE === */
  .linktree {
    padding: 40px 16px;
  }

  .linktree__content {
    padding: 40px 16px;
    gap: 32px;
    position: relative;
  }

  .linktree__close {
    display: block;
  }

  .linktree__phone {
    display: flex;
  }

  .linktree__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }

  .linktree__card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  .linktree__card-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .linktree__card-icon svg,
  .linktree__card-icon img {
    width: 16px;
    height: 16px;
  }

  .linktree__card-label {
    font-size: 16px;
    text-align: left;
  }

  .linktree__gold-bar {
    display: none;
  }

  .linktree__title {
    font-size: clamp(12px, 4vw, 18px);
    white-space: nowrap;
  }

  .linktree__desc {
    font-size: 14px;
  }

  .linktree__gold-frame {
    display: block;
  }
}

@media (max-width: 480px) {
  .artists__grid {
    grid-template-columns: 1fr;
  }

  .welcome__title,
  .artists__title,
  .cta__title {
    font-size: 26px;
  }

  .hero__title {
    font-size: 26px;
  }

  .badge {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .btn--gold {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal.hidden {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  z-index: 1;
  background: #0d1620;
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(184, 134, 11, 0.15);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.modal__box--wide {
  max-width: 760px;
}

.modal__box::-webkit-scrollbar {
  width: 4px;
}
.modal__box::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(184, 134, 11, 0.1);
  color: var(--gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.modal__close:hover {
  background: rgba(184, 134, 11, 0.25);
  border-color: var(--gold);
  color: var(--gold);
}
.modal__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 2.5;
}

.modal__header {
  text-align: center;
  margin-bottom: 24px;
}

.modal__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin: 12px 0 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

.modal__gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
  opacity: 0.5;
}

.modal__note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
}

/* --- Ticket Steps --- */
.ticket-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.ticket-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(184, 134, 11, 0.15);
  background: rgba(184, 134, 11, 0.04);
}

.ticket-step__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  min-width: 36px;
  line-height: 1;
}

.ticket-step__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticket-step__text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.ticket-step__text span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* --- Ticket Plans --- */
.ticket-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 520px) {
  .ticket-plans { grid-template-columns: 1fr; }
}

.ticket-plan {
  position: relative;
  border: 1px solid rgba(184, 134, 11, 0.3);
  background: rgba(255,255,255,0.02);
  padding: 24px 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.ticket-plan:hover {
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.06);
}

.ticket-plan--featured {
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.08);
}

.ticket-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticket-plan__label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
}

.ticket-plan__rate {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.ticket-plan__unit {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -4px;
}

.ticket-plan__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  text-align: center;
  margin: 4px 0 12px;
}

/* --- Voucher Form --- */
.voucher-amounts__label {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.voucher-amounts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.voucher-amount {
  background: transparent;
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.voucher-amount:hover,
.voucher-amount--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.voucher-custom__label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.voucher-custom__input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.voucher-custom__input:focus {
  border-color: var(--gold);
}
.voucher-custom__input::placeholder {
  color: rgba(255,255,255,0.2);
}

/* --- Shared Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 540px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full {
  grid-column: 1 / -1;
}

.form-field__label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.form-field__label--upload {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-field__upload-hint {
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

.form-field__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-field__input:focus {
  border-color: var(--gold);
}
.form-field__input::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-field__textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.form-field__select option {
  background: #0A1119;
  color: var(--white);
}

.form-field__upload-area {
  border: 1px dashed rgba(184, 134, 11, 0.35);
  background: rgba(184, 134, 11, 0.03);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.form-field__upload-area:hover {
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.07);
}
.form-field__upload-area svg {
  width: 32px;
  height: 32px;
  opacity: 0.7;
}
.form-field__upload-area span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.form-field__upload-area u {
  color: var(--gold);
  text-decoration: underline;
}

.form-field__file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.form-field__file-chip {
  background: rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
}

/* --- Shared button modifiers --- */
.btn--sm {
  font-size: 13px;
  padding: 10px 18px;
}

.btn--full {
  width: 100%;
  padding: 16px;
}

.btn--gold {
  background: var(--gold);
  padding: 12px 24px;
}

/* --- Success message --- */
.voucher-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.4);
  padding: 16px 20px;
  margin-top: 16px;
}
.voucher-success svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.voucher-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* =============================================
   TICKET PLAN SELECTABLE
   ============================================= */
.ticket-plan--selectable {
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
}
.ticket-plan--selectable:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ticket-plan--selected {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

/* =============================================
   HERO – CINEMATIC SINGLE IMAGE
   ============================================= */

/* Ken Burns – sanfter dauerhafter Zoom */
.hero__bg-img--kenburns {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroBgZoom 14s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes heroBgZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.1); }
}

/* Film-Grain Overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  animation: grainShift 0.15s steps(1) infinite;
}

@keyframes grainShift {
  0%   { background-position: 0px 0px; }
  10%  { background-position: -50px -50px; }
  20%  { background-position: 30px -80px; }
  30%  { background-position: -80px 30px; }
  40%  { background-position: 50px 50px; }
  50%  { background-position: -20px 70px; }
  60%  { background-position: 60px -20px; }
  70%  { background-position: -70px 60px; }
  80%  { background-position: 20px -60px; }
  90%  { background-position: -40px 20px; }
  100% { background-position: 0px 0px; }
}

/* ---- Entrance Animations ---- */
.hero__anim {
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__anim--1 { animation-delay: 0.2s; }
.hero__anim--2 { animation-delay: 0.45s; }
.hero__anim--3 { animation-delay: 0.6s; }
.hero__anim--4 { animation-delay: 0.75s; }
.hero__anim--5 { animation-delay: 0.95s; }
.hero__anim--6 { animation-delay: 1.15s; }
.hero__anim--7 { animation-delay: 1.4s; }

/* Tag line */
.hero__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -8px;
}

.hero__tag-line {
  height: 1px;
  width: 32px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__tag-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Title – each word on own line, clip reveal */
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__title-line {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: var(--white);
  overflow: hidden;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line-wrap {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.hero__scroll-line-inner {
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDrop 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform: translateY(-100%);
}

@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}

.hero__scroll-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-actions {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; color: #fff;
}
.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.floating-btn--finder  { background: var(--gold); }
.floating-btn--whatsapp { background: #25D366; }

/* =============================================
   STYLE FINDER MODAL
   ============================================= */
.modal__box--finder {
  max-width: 520px; padding: 48px 40px 40px; text-align: center;
}
.sf-screen { display: none; flex-direction: column; align-items: center; gap: 20px; }
.sf-screen--active { display: flex; }
.sf-intro-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.sf-progress { width: 100%; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.sf-progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s ease; }
.sf-step { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.sf-question { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.3; }
.sf-options { width: 100%; display: flex; flex-direction: column; gap: 9px; }
.sf-option {
  display: flex; align-items: center; gap: 14px; padding: 13px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,134,11,0.2);
  color: rgba(255,255,255,0.85); font-family: var(--font-body); font-size: 14px;
  text-align: left; cursor: pointer; transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.sf-option:hover { background: rgba(184,134,11,0.12); border-color: var(--gold); transform: translateX(4px); }
.sf-option-icon { font-size: 20px; flex-shrink: 0; }
.sf-option-label { font-weight: 600; }
.sf-result-badge {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.3); padding: 5px 14px;
}
.sf-result-style {
  font-family: var(--font-heading); font-size: 46px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.sf-result-desc { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 360px; }
.sf-result-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; }
.sf-restart {
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 12px; font-family: var(--font-body); cursor: pointer;
  text-decoration: underline; transition: color 0.2s;
}
.sf-restart:hover { color: rgba(255,255,255,0.65); }

/* Ticket selectable */
.ticket-plan--selectable { cursor: pointer; border: 2px solid transparent; }
.ticket-plan--selectable:hover { border-color: var(--gold); transform: translateY(-3px); }
.ticket-plan--selected { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(184,134,11,0.2); }

@media (max-width: 768px) {
  .hero__scroll-indicator { right: 16px; bottom: 24px; }
  .hero__tag-text { font-size: 9px; letter-spacing: 2px; }
  .hero__title-line { font-size: 36px; }
  .floating-actions { bottom: 20px; right: 16px; }
  .floating-btn span { display: none; }
  .floating-btn { padding: 14px; border-radius: 50%; }
}

/* =============================================
   ARTIST FILTERS – FUNCTIONAL
   ============================================= */
.filter-select--native {
  position: relative;
}
.filter-select__native {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  font-size: 16px; /* prevent iOS zoom */
}
.filter-select--toggle {
  cursor: pointer;
  user-select: none;
}
.filter-select--toggle.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.filter-select--toggle.active .filter-select__checkbox {
  background: var(--white);
}
.filter-select__checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  flex-shrink: 0;
  transition: background 0.2s;
  position: relative;
}
.filter-select__checkbox::after {
  content: '';
  position: absolute;
  display: none;
  left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: 2px solid var(--gold);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.filter-select--toggle.active .filter-select__checkbox::after {
  display: block;
  border-color: var(--dark);
}

/* Style badge on card */
.artist-card__style-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hidden card */
.artist-card.hidden {
  display: none;
}

/* Empty state */
.artists__empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(0,0,0,0.4);
  font-size: 15px;
  grid-column: 1 / -1;
}
