/*
 * Pirschheidi & Co. — Premium art direction
 * A quiet, editorial layer on top of the established component system.
 */

:root {
  --premium-ink: #0a0a09;
  --premium-ink-soft: #11110f;
  --premium-panel: #151513;
  --premium-panel-light: #1b1a17;
  --premium-ivory: #f4efe5;
  --premium-muted: #b9b2a6;
  --premium-gold: #d8bb74;
  --premium-gold-bright: #f0d89c;
  --premium-line: rgba(216, 187, 116, 0.22);
  --premium-line-soft: rgba(244, 239, 229, 0.11);
  --premium-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --font-editorial: Georgia, "Times New Roman", serif;
  --bg-dark: var(--premium-ink);
  --bg-darker: #050504;
  --bg-card: rgba(21, 21, 19, 0.94);
  --bg-card-hover: rgba(27, 26, 23, 0.98);
  --border-glass: var(--premium-line-soft);
  --border-glass-bright: var(--premium-line);
  --text-main: var(--premium-ivory);
  --text-muted: var(--premium-muted);
  --text-dim: #8f897f;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  scroll-padding-top: 88px;
}

[hidden] {
  display: none !important;
}

body {
  background: var(--premium-ink);
  color: var(--premium-ivory);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.005em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.018) 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(216, 187, 116, 0.012) 6px);
}

::selection {
  color: var(--premium-ink);
  background: var(--premium-gold);
}

.container {
  max-width: 1320px;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  color: var(--premium-ink);
  background: var(--premium-gold-bright);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--premium-gold-bright);
  outline-offset: 4px;
}

.ambient-glow {
  opacity: 0.22;
  filter: blur(120px);
}

.glow-turquoise {
  background: rgba(0, 170, 195, 0.14);
}

.glow-purple,
.glow-amber {
  opacity: 0.08;
}

/* Navigation */
.navbar-header {
  background: rgba(10, 10, 9, 0.9);
  border-bottom: 1px solid var(--premium-line-soft);
  box-shadow: none;
}

@supports (backdrop-filter: blur(18px)) {
  .navbar-header {
    background: rgba(10, 10, 9, 0.74);
    backdrop-filter: blur(18px) saturate(120%);
  }
}

.nav-container {
  height: 84px;
}

.brand-logo {
  gap: 0.85rem;
  color: var(--premium-ivory);
  font-size: 0.92rem;
  letter-spacing: 0.17em;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border: 1px solid var(--premium-gold);
  border-radius: 50%;
  color: var(--premium-gold-bright);
  background: transparent;
  box-shadow: none;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.logo-accent {
  color: var(--premium-gold);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.nav-menu {
  gap: clamp(0.5rem, 1.2vw, 1.35rem);
}

.nav-link {
  position: relative;
  color: rgba(244, 239, 229, 0.72);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--premium-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-link:hover {
  color: var(--premium-ivory);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dot {
  display: none;
}

.nav-actions .btn {
  min-height: 42px;
}

/* Buttons */
.btn {
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border-radius: 3px;
  border-width: 1px;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.btn-sm {
  min-height: 40px;
  padding: 0.62rem 1rem;
  font-size: 0.69rem;
}

.btn-lg {
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  font-size: 0.75rem;
}

.btn-primary,
.btn-ticket,
.btn-turquoise {
  border-color: var(--premium-gold);
  color: #14120d;
  background: var(--premium-gold);
  box-shadow: none;
}

.btn-primary:hover,
.btn-ticket:hover,
.btn-turquoise:hover {
  border-color: var(--premium-gold-bright);
  color: #0a0a09;
  background: var(--premium-gold-bright);
  box-shadow: 0 10px 30px rgba(216, 187, 116, 0.18);
  transform: translateY(-2px);
}

.btn-outline,
.btn-glass,
.btn-turquoise-outline,
.btn-purple-outline,
.btn-amber-outline {
  border-color: rgba(244, 239, 229, 0.3);
  color: var(--premium-ivory);
  background: transparent;
}

.btn-outline:hover,
.btn-glass:hover,
.btn-turquoise-outline:hover,
.btn-purple-outline:hover,
.btn-amber-outline:hover {
  border-color: var(--premium-gold);
  color: var(--premium-gold-bright);
  background: rgba(216, 187, 116, 0.05);
}

.btn-purple,
.btn-amber {
  border: 1px solid var(--premium-line);
  color: var(--premium-ivory);
  background: transparent;
}

.btn-purple:hover,
.btn-amber:hover {
  border-color: var(--premium-gold);
  background: rgba(216, 187, 116, 0.07);
  box-shadow: none;
}

.pulse-button {
  animation: none;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 940px;
  padding: 0 0 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0a0a09 0%, rgba(10, 10, 9, 0.99) 39%, rgba(10, 10, 9, 0.66) 64%, rgba(10, 10, 9, 0.36) 100%),
    radial-gradient(circle at 85% 28%, rgba(216, 187, 116, 0.11), transparent 40%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(transparent, var(--premium-ink));
}

.hero-kira-bg-art {
  top: 0;
  right: 0;
  bottom: 0;
  left: 43%;
  width: auto;
  height: auto;
  opacity: 0.76;
  transform: none;
  filter: saturate(0.78) contrast(1.04);
}

.hero-kira-bg-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #0a0a09 0%, transparent 43%),
    linear-gradient(0deg, #0a0a09 0%, transparent 35%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.22), transparent 35%);
}

.hero-kira-bg-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 44%;
  filter: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  grid-template-rows: auto 1fr auto;
  min-height: 850px;
  padding-top: 3.8rem;
}

.hero-stamp-badge {
  position: absolute;
  top: 3.25rem;
  left: clamp(1.25rem, 4vw, 3.5rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 146px;
  height: 146px;
  margin: 0;
  padding: 1.15rem;
  border: 2px solid var(--premium-gold);
  border-radius: 50%;
  color: var(--premium-gold-bright);
  text-align: center;
  background: rgba(10, 10, 9, 0.88);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.32), inset 0 0 0 4px rgba(216, 187, 116, 0.08);
  backdrop-filter: blur(12px);
  transform: rotate(-7deg);
  transition: color 200ms ease, background 200ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hero-stamp-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(240, 216, 156, 0.72);
  border-radius: 50%;
  pointer-events: none;
}

.hero-stamp-badge:hover {
  color: #17130b;
  background: var(--premium-gold-bright);
  box-shadow: 0 20px 55px rgba(216, 187, 116, 0.2);
  transform: rotate(0deg) scale(1.035);
}

.hero-stamp-badge:hover::before {
  border-color: rgba(23, 19, 11, 0.5);
}

.hero-news-label {
  margin-bottom: 0.3rem;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-news-title {
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.hero-news-action {
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid currentColor;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.universe-selector {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: auto;
  max-width: none;
  margin: 2.65rem 0 4rem 180px;
  padding: 0;
  gap: 1.65rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.uni-tab {
  position: relative;
  padding: 0.35rem 0;
  border-radius: 0;
  color: rgba(244, 239, 229, 0.56);
  background: transparent;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.uni-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: var(--premium-gold);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.uni-tab:hover,
.uni-tab.active {
  color: var(--premium-ivory);
  background: transparent;
  box-shadow: none;
}

.uni-tab.active::after {
  transform: scaleX(1);
}

.hero-content {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  max-width: 780px;
  margin: 0 0 5rem;
  text-align: left;
}

.hero-badge {
  margin-bottom: 1.35rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--premium-gold);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-next-date {
  justify-self: start;
  color: var(--premium-ink);
  background: var(--premium-gold-bright);
  border-color: var(--premium-ivory);
  border-radius: 3px;
}

.live-dot {
  width: 5px;
  height: 5px;
  background: var(--premium-gold);
  box-shadow: none;
}

.hero-title {
  max-width: 770px;
  margin-bottom: 1.55rem;
  color: var(--premium-ivory);
  font-family: var(--font-editorial);
  font-size: clamp(4rem, 6.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.91;
  text-wrap: balance;
}

.gradient-text,
.hero-highlight {
  color: var(--premium-gold-bright);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-style: italic;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 0 2.3rem;
  color: rgba(244, 239, 229, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-cta-group {
  justify-content: flex-start;
  gap: 0.75rem;
}

.shadow-glow {
  box-shadow: none;
}

.hero-spotlight-card {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  width: 100%;
  margin: 0;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  background: rgba(15, 15, 13, 0.92);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-spotlight-card::before {
  display: none;
}

.spotlight-header {
  min-height: 52px;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--premium-line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.spotlight-tag,
.spotlight-universe-tag {
  color: var(--premium-gold-bright);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.live-beacon {
  width: 6px;
  height: 6px;
  background: var(--premium-gold);
  box-shadow: none;
  animation: none;
}

.spotlight-universe-tag {
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--premium-line);
  border-radius: 2px;
  color: var(--premium-gold-bright) !important;
  background: transparent !important;
}

.spotlight-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(245px, 0.65fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  padding: 1.7rem 1.5rem 1.8rem;
}

.spotlight-date {
  color: var(--premium-ink);
  background: var(--premium-gold-bright);
  border-color: var(--premium-ivory);
  border-radius: 3px;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: none;
}

.countdown-label {
  color: var(--premium-gold);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-title {
  margin: 0.3rem 0 0.25rem;
  color: var(--premium-ivory);
  font-family: var(--font-editorial);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.spotlight-venue,
.spotlight-desc,
.spotlight-note {
  color: var(--premium-muted);
}

.spotlight-desc {
  max-width: 640px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.countdown-wrapper {
  min-width: 270px;
}

.countdown-grid {
  gap: 0.35rem;
}

.cd-box {
  min-width: 56px;
  padding: 0.5rem 0.35rem;
  border: 1px solid var(--premium-line-soft);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.02);
}

.cd-num {
  color: var(--premium-ivory);
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  font-weight: 400;
}

.cd-unit {
  color: var(--text-dim);
  font-size: 0.53rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-note {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  text-align: center;
}

/* Editorial section rhythm */
.section {
  position: relative;
  padding: clamp(6rem, 9vw, 9rem) 0;
  border-top: 1px solid rgba(244, 239, 229, 0.055);
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.012);
}

.section-header {
  max-width: 850px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.section-subtitle,
.klaus-role-tag,
.ps-badge {
  display: inline-block;
  color: var(--premium-gold);
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-title,
.klaus-profile-name {
  margin-top: 0.7rem;
  color: var(--premium-ivory);
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-desc {
  max-width: 740px;
  margin: 1.35rem auto 0;
  color: var(--premium-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* Cards and feature surfaces */
.universe-cards-grid,
.stories-grid,
.shop-grid,
.klaus-moments-grid,
.sunphlour-features-grid {
  gap: 1.25rem;
}

.universe-card,
.ritual-card,
.event-card,
.story-card,
.product-card,
.klaus-moment-card,
.sunphlour-feature-card,
.producer-card,
.duo-member-card,
.contact-card-wrap,
.producers-showcase-box,
.klaus-profile-showcase,
.music-player-card,
.lyrics-card,
.streaming-hub-box {
  border: 1px solid var(--premium-line-soft);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(27, 26, 23, 0.92), rgba(15, 15, 13, 0.96));
  box-shadow: none;
}

.universe-card:hover,
.ritual-card:hover,
.event-card:hover,
.story-card:hover,
.product-card:hover,
.klaus-moment-card:hover,
.sunphlour-feature-card:hover {
  border-color: var(--premium-line);
  background: linear-gradient(145deg, rgba(31, 30, 26, 0.98), rgba(18, 18, 16, 0.98));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.card-glow {
  opacity: 0.08;
}

.card-header {
  padding: 1.8rem 1.8rem 1.15rem;
}

.card-badge,
.event-universe-badge,
.product-badge,
.kmc-badge {
  border-radius: 2px;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-brand {
  margin-top: 0.8rem;
  font-family: var(--font-editorial) !important;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.card-slogan {
  color: var(--premium-muted);
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  font-style: italic;
}

.card-image-wrap,
.event-card-header,
.product-img-wrap,
.kmc-image-wrap,
.stage-photo-banner,
.gallery-item,
.klaus-profile-media {
  overflow: hidden;
  border-radius: 0;
}

.card-img,
.event-card-img,
.product-img-wrap img,
.kmc-img,
.stage-img,
.gallery-item img,
.klaus-portrait-img {
  filter: saturate(0.82) contrast(1.03);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.universe-card:hover .card-img,
.event-card:hover .event-card-img,
.product-card:hover .product-img-wrap img,
.klaus-moment-card:hover .kmc-img,
.gallery-item:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.card-body,
.event-card-body,
.product-info,
.kmc-body {
  padding: 1.6rem 1.8rem 1.8rem;
}

.card-text,
.card-feature-list,
.event-desc,
.story-excerpt,
.product-info p,
.kmc-desc,
.pc-bio,
.duo-bio-snippet,
.klaus-story-text {
  color: var(--premium-muted);
}

.card-feature-list li {
  border-color: rgba(244, 239, 229, 0.07);
}

.card-actions,
.event-footer,
.product-footer {
  border-color: var(--premium-line-soft);
}

/* Rituals */
.section-kira-bg-kuss {
  opacity: 0.035;
  filter: grayscale(1);
}

.rituals-grid {
  gap: 0;
  border-top: 1px solid var(--premium-line-soft);
  border-left: 1px solid var(--premium-line-soft);
}

.ritual-card {
  min-height: 270px;
  border-width: 0 1px 1px 0;
  border-radius: 0;
  background: transparent;
}

.ritual-card:hover {
  background: rgba(216, 187, 116, 0.04);
  transform: none;
  box-shadow: none;
}

.ritual-title,
.event-title,
.story-title,
.form-title,
.pc-name,
.kmc-title,
.product-info h3 {
  color: var(--premium-ivory);
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.ritual-icon {
  opacity: 0.7;
}

/* Masterminds / Klaus */
.masterminds-grid {
  gap: clamp(3rem, 7vw, 7rem);
}

.masterminds-text > p,
.contact-info-col > p {
  color: var(--premium-muted);
}

.lead-text {
  color: var(--premium-ivory) !important;
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.5;
}

.duo-badges,
.klaus-stats-row {
  border-block: 1px solid var(--premium-line-soft);
}

.duo-badge,
.klaus-stat-item {
  border-color: var(--premium-line-soft);
}

.badge-num,
.ksi-num {
  color: var(--premium-gold-bright);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.booking-callout,
.history-archive-callout,
.klaus-quote-card {
  border: 1px solid var(--premium-line);
  border-radius: 4px;
  background: rgba(216, 187, 116, 0.045);
}

.duo-img,
.pc-avatar {
  border-color: var(--premium-line);
  filter: saturate(0.8);
}

.stage-photo-banner {
  border: 1px solid var(--premium-line-soft);
  box-shadow: var(--premium-shadow);
}

.klaus-profile-showcase {
  overflow: hidden;
  box-shadow: var(--premium-shadow);
}

.klaus-profile-info {
  padding: clamp(2rem, 4vw, 4rem);
}

.klaus-profile-name {
  font-size: clamp(2.8rem, 4vw, 4.3rem);
}

/* Events */
.events-section {
  background:
    radial-gradient(circle at 0 20%, rgba(0, 212, 255, 0.045), transparent 35%),
    rgba(255, 255, 255, 0.012) !important;
}

.event-filter-bar {
  gap: 0;
  border-bottom: 1px solid var(--premium-line-soft);
}

.filter-btn {
  padding: 0.85rem 1.2rem;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: var(--premium-muted);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--premium-gold);
  color: var(--premium-gold-bright);
  background: transparent;
}

.event-card.featured {
  border-color: var(--premium-line);
  box-shadow: none;
}

.events-empty-state {
  grid-column: 1 / -1;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--premium-line-soft);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.018);
}

.events-empty-state h3 {
  max-width: 680px;
  margin: 0.65rem auto 0.7rem;
  color: var(--premium-ivory);
  font-family: var(--font-editorial);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
}

.events-empty-state p {
  margin-bottom: 1.35rem;
  color: var(--premium-muted);
}

.event-date-badge {
  border-top-color: var(--premium-ivory);
  border-radius: 0;
  color: var(--premium-ink);
  background: var(--premium-gold-bright);
  box-shadow: none;
}

.ed-date {
  font-family: var(--font-editorial);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ed-time {
  font-weight: 800;
}

.event-price {
  color: var(--premium-gold-bright);
}

.ticket-guarantee-box {
  border-color: var(--premium-line-soft) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.018) !important;
}

.tg-item {
  border-color: var(--premium-line-soft);
}

/* Music */
.producers-showcase-box,
.music-player-card,
.streaming-hub-box {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.producers-showcase-header h3,
.streaming-hub-box h3 {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.playlist-item {
  border-color: var(--premium-line-soft);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.018);
}

.playlist-item:hover,
.playlist-item.active {
  border-color: var(--premium-line);
  background: rgba(216, 187, 116, 0.05);
}

.lyrics-drawer-body,
.lyrics-card {
  color: var(--premium-muted);
}

/* Gallery */
.gallery-grid {
  gap: 0.65rem;
}

.gallery-item {
  border: 1px solid var(--premium-line-soft);
  border-radius: 3px;
  background: var(--premium-panel);
}

.gallery-overlay {
  background: linear-gradient(transparent 35%, rgba(8, 8, 7, 0.9));
}

.gallery-caption {
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Contact and footer */
.contact-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 187, 116, 0.07), transparent 40%),
    var(--premium-ink-soft) !important;
}

.contact-card-wrap {
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  border-color: var(--premium-line);
  box-shadow: var(--premium-shadow);
}

.contact-item,
.social-links-row {
  border-color: var(--premium-line-soft);
}

.ci-icon {
  filter: grayscale(1);
  opacity: 0.72;
}

.social-btn {
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  color: var(--premium-muted);
  background: transparent;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.social-btn:hover {
  color: var(--premium-gold-bright);
  background: transparent;
}

.contact-form {
  border-color: var(--premium-line-soft);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.16);
}

.form-group label {
  color: var(--premium-muted);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-input {
  border: 1px solid var(--premium-line-soft);
  border-radius: 3px;
  color: var(--premium-ivory);
  background: rgba(255, 255, 255, 0.025);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus {
  border-color: var(--premium-gold);
  box-shadow: 0 0 0 3px rgba(216, 187, 116, 0.08);
}

.site-footer {
  border-top: 1px solid var(--premium-line);
  background: #060605;
}

.footer-links-col h2,
.footer-legal-col h2 {
  color: var(--premium-gold);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  border-color: var(--premium-line-soft);
}

/* Persistent player */
.floating-audio-bar {
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  width: auto;
  max-width: 1180px;
  margin: auto;
  border: 1px solid var(--premium-line);
  border-radius: 5px;
  background: rgba(10, 10, 9, 0.93);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  transform: none;
}

.floating-audio-bar.minimized {
  transform: translateY(140%);
}

.floating-audio-bar .container {
  padding-inline: 1.15rem;
}

.play-main-btn {
  color: var(--premium-ink);
  background: var(--premium-gold);
}

.audio-progress-fill,
.volume-slider::-webkit-slider-thumb {
  background: var(--premium-gold);
}

/* Modals */
.story-modal,
.lightbox-modal,
.legal-modal {
  background: rgba(5, 5, 4, 0.9);
  backdrop-filter: blur(12px);
}

.story-content-box,
.legal-content {
  border: 1px solid var(--premium-line);
  border-radius: 7px;
  background: var(--premium-panel);
  box-shadow: var(--premium-shadow);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.68rem;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  }

  .spotlight-body {
    grid-template-columns: 1fr auto;
  }

  .spotlight-action {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.5fr) 1fr;
    align-items: center;
    gap: 1rem;
  }

  .spotlight-note {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .mobile-toggle {
    border: 1px solid var(--premium-line-soft);
    border-radius: 3px;
    background: transparent;
  }

  .mobile-toggle span {
    background: var(--premium-ivory);
  }

  .nav-menu {
    top: 84px;
    max-height: calc(100dvh - 84px);
    border-bottom: 1px solid var(--premium-line);
    background: rgba(10, 10, 9, 0.98);
  }

  .nav-link {
    padding: 1rem 1.4rem;
  }

  .hero-section {
    min-height: 0;
    padding-bottom: 4rem;
  }

  .hero-kira-bg-art {
    left: 34%;
    opacity: 0.42;
  }

  .hero-container {
    display: block;
    min-height: 0;
    padding-top: 2rem;
  }

  .universe-selector {
    margin: 0 0 5rem;
  }

  .hero-stamp-badge {
    position: relative;
    top: auto;
    left: auto;
    width: 132px;
    height: 132px;
    margin: 0 0 1.75rem;
  }

  .hero-content {
    max-width: 670px;
    margin-bottom: 5rem;
  }

  .hero-title {
    font-size: clamp(3.7rem, 11vw, 6rem);
  }

  .hero-spotlight-card {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .container {
    padding-inline: 1.1rem;
  }

  .nav-container {
    height: 72px;
  }

  .nav-menu {
    top: 72px;
    max-height: calc(100dvh - 72px);
  }

  .nav-actions > .btn {
    display: none;
  }

  .hero-section {
    padding-bottom: 2.5rem;
  }

  .hero-kira-bg-art {
    top: 0;
    right: -27%;
    bottom: auto;
    left: 12%;
    height: 530px;
    opacity: 0.34;
  }

  .hero-kira-bg-art::before {
    background:
      linear-gradient(90deg, #0a0a09 0%, transparent 52%),
      linear-gradient(0deg, #0a0a09 0%, transparent 72%);
  }

  .hero-container {
    padding-top: 1.4rem;
  }

  .universe-selector {
    width: 100%;
    margin: 0 0 4.5rem;
    gap: 0;
    justify-content: space-between;
    overflow-x: auto;
  }

  .uni-tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.6rem 0.45rem;
    font-size: 0.75rem;
  }

  .hero-stamp-badge {
    width: 122px;
    height: 122px;
    margin-bottom: 1.25rem;
    padding: 1rem;
  }

  .hero-news-title {
    font-size: 1.25rem;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
    line-height: 0.92;
  }

  .hero-subtitle {
    max-width: 94%;
    font-size: 0.96rem;
  }

  .hero-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-cta-group .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .spotlight-header {
    padding-inline: 1rem;
  }

  .spotlight-body {
    display: block;
    padding: 1.25rem 1rem 1.35rem;
  }

  .event-card-img {
    height: 100%;
  }

  .countdown-wrapper {
    min-width: 0;
    margin: 1.4rem 0;
    padding: 1rem 0;
    border-block: 1px solid var(--premium-line-soft);
  }

  .countdown-grid {
    justify-content: start;
  }

  .spotlight-action {
    display: block;
  }

  .spotlight-note {
    margin-top: 0.65rem;
    text-align: center;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-header {
    margin-bottom: 2.8rem;
    text-align: left;
  }

  .section-desc {
    margin-left: 0;
  }

  .section-title {
    font-size: clamp(1.85rem, 7.5vw, 2.75rem);
    hyphens: manual;
    text-wrap: balance;
    line-height: 1.15;
  }

  @media (max-width: 360px) {
    .section-title {
      font-size: clamp(1.55rem, 6.8vw, 1.85rem);
    }
  }

  .card-header,
  .card-body,
  .event-card-body,
  .product-info,
  .kmc-body {
    padding-inline: 1.25rem;
  }

  .ritual-card {
    min-height: 225px;
  }

  .contact-card-wrap {
    padding: 1.35rem;
  }

  .floating-audio-bar {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
  }
}

@media (max-width: 470px) {
  .logo-text {
    font-size: 0.78rem;
  }

  .hero-badge {
    letter-spacing: 0.13em;
  }

  .hero-next-date {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .hero-cta-group {
    grid-template-columns: 1fr;
  }

  .hero-cta-group .btn:first-child {
    grid-column: auto;
  }

  .cd-box {
    min-width: 0;
  }

  .event-date-badge {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .audio-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .klaus-profile-info { padding: 1.25rem; }
  .klaus-profile-name { font-size: clamp(2rem, 8vw, 2.8rem); }
  .klaus-stats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sunphlour-actions-row .btn { padding-inline: 1rem; }
  .floating-audio-bar .audio-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-inline: 0;
    gap: 0.4rem;
  }
  .audio-controls { gap: 0; }
  .audio-ctrl-btn, .audio-close-btn { width: 44px; height: 44px; flex-shrink: 0; }
  .audio-actions { display: flex; }
  .audio-actions .volume-slider, .audio-actions #audio-mute-btn,
  .audio-track-info .audio-badge, .audio-visualizer-bars { display: none; }
  .audio-title { font-size: 0.8rem; }
  .audio-artist { font-size: 0.65rem; }
  .site-footer { padding-bottom: 7rem; }
}

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