/* === Denno Matini — shared styles === */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Barlow:wght@200;300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Dirtyline';
  src: url('https://fonts.cdnfonts.com/s/15011/Dirtyline36DaysofType.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-2: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.12);
  --radius: 9999px;
  --radius-card: 22px;
  --max-w: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: #fff; color: #000; }

/* === Liquid glass === */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.04);
  background-blend-mode: luminosity;
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* === Nav === */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  pointer-events: none;
  gap: 14px;
}
.nav > * { pointer-events: auto; }

.nav-logo {
  position: absolute;
  top: 0;
  left: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 14px 28px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(1.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: 9999px;
  padding: 10px 14px 10px 22px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-wordmark {
  height: 18px;
  width: auto;
  filter: brightness(1.05);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta {
  margin-left: 6px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 9999px;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 0 18px 2px rgba(255, 255, 255, 0.18);
}
.nav-cta:active { transform: scale(0.97); }

.nav-hamburger { display: none; }

@media (max-width: 780px) {
  .nav { padding: 0 14px; justify-content: flex-end; }
  .nav-logo { left: 14px; padding: 10px 18px; }
  .nav-logo img { height: 22px; }
  .nav-inner { padding: 10px 14px; gap: 14px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    color: #fff;
    padding: 0;
  }
  .nav-hamburger svg { width: 18px; height: 18px; }
}

/* === Mobile menu (full-screen) === */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(.22,1,.36,1), visibility 0s linear 0.5s;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), visibility 0s linear 0s;
}

/* Layered backgrounds for depth */
.mobile-menu::before,
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mobile-menu::before {
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(120, 80, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(255, 120, 80, 0.14) 0%, transparent 65%),
    rgba(8, 6, 14, 0.94);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
}
.mobile-menu::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.mobile-menu-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 36px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu-top .brand img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.95;
  filter: brightness(1.05);
}

.mobile-menu .close {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open .close { transform: rotate(0deg); }
.mobile-menu .close:hover { transform: rotate(90deg) scale(1.08); }

.mobile-menu-eyebrow {
  margin-top: 56px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.mobile-menu-links {
  flex: 1;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.mobile-menu a {
  position: relative;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 14vw, 84px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 6px 0;
  text-shadow: none;
  /* stagger entrance */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1),
              transform 0.6s cubic-bezier(.22,1,.36,1),
              color 0.25s ease,
              letter-spacing 0.25s ease;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.10s, 0.10s, 0s, 0s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.16s, 0.16s, 0s, 0s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.22s, 0.22s, 0s, 0s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.28s, 0.28s, 0s, 0s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.34s, 0.34s, 0s, 0s; }

.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 0;
  background: rgba(255,255,255,0.5);
  transition: width 0.4s cubic-bezier(.22,1,.36,1);
}
.mobile-menu a:active::after,
.mobile-menu a:hover::after { width: 100%; }
.mobile-menu a:active,
.mobile-menu a:hover { letter-spacing: 0.005em; }

/* Index badge to the left of each link */
.mobile-menu a .idx {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.4);
  vertical-align: super;
  margin-right: 16px;
  display: inline-block;
  transform: translateY(-12px);
}

.mobile-menu-foot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1) 0.42s,
              transform 0.5s cubic-bezier(.22,1,.36,1) 0.42s;
}
.mobile-menu.open .mobile-menu-foot { opacity: 1; transform: translateY(0); }
.mobile-menu-foot .socials {
  display: flex;
  gap: 8px;
}
.mobile-menu-foot .socials a {
  font-size: 0;
  font-family: inherit;
  font-style: normal;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  /* override the big link entrance */
  opacity: 1 !important;
  transform: none !important;
}
.mobile-menu-foot .socials a::after { display: none; }
.mobile-menu-foot .socials a svg { width: 15px; height: 15px; }
.mobile-menu-foot .socials a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px) !important;
}

.mobile-menu-foot .lang-btn {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  /* override link styles */
  opacity: 1 !important;
  transform: none !important;
}
.mobile-menu-foot .lang-btn::after { display: none; }
.mobile-menu-foot .lang-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}
.mobile-menu-foot .lang-btn svg { width: 13px; height: 13px; }

/* Lock body scroll when menu is open */
body.menu-open { overflow: hidden; }

/* === Hero === */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: -6%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: contrast(1.06) brightness(0.82) saturate(1.08);
  will-change: transform;
  transform: scale(1.12);
}
.hero-bg.has-anim { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.12) translate(0, 0); }
  to   { transform: scale(1.2) translate(-1.5%, -1%); }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* top fade for nav legibility */
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 14%, rgba(0,0,0,0.1) 28%),
    /* bottom fade for meta + scroll legibility */
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.98) 100%),
    /* soft side vignettes */
    radial-gradient(ellipse 110% 80% at 50% 50%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 90%, rgba(0,0,0,0.85) 100%),
    /* central title-band darkening so the big italic pops */
    radial-gradient(ellipse 80% 35% at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%),
    /* warm tint to unify */
    linear-gradient(180deg, rgba(10,5,20,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.hero-vignette::after { display: none; }
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 140px;
  text-align: center;
}

.eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.eyebrow.left::before { display: none; }
.eyebrow.left::after { display: none; }

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 12.5vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  margin: 22px 0 18px;
  white-space: nowrap;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-title .ampersand { font-style: italic; opacity: 0.85; }

.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  padding: 14px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px 4px rgba(255, 255, 255, 0.25);
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  color: #fff;
}
.btn-ghost:hover {
  transform: scale(1.03);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 0 20px 2px rgba(255,255,255,0.07);
}
.btn-ghost:active { transform: scale(0.97); }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

.hero-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 48px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 44px;
  pointer-events: none;
}
.hero-bottom > * { pointer-events: auto; }
.hero-bottom .meta {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 230px;
}
.hero-bottom .meta.right { text-align: right; }
.hero-bottom .meta .key {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
@media (max-width: 780px) {
  .hero-bottom { padding: 0 20px; bottom: 28px; flex-direction: column; gap: 14px; align-items: flex-start; }
  .hero-bottom .meta.right { text-align: left; }
  .hero-scroll { display: none; }
}

/* === Section === */
.section {
  position: relative;
  padding: 120px 44px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-narrow { max-width: 1100px; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  text-align: center;
}
.section-head .kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.section-head h2 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
  text-transform: uppercase;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.18) 70%, transparent);
}

/* === Stream Now === */
.stream-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.icon-btn {
  width: 56px; height: 56px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s ease;
}
.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 0 22px 2px rgba(255,255,255,0.1);
}
.icon-btn svg { width: 22px; height: 22px; }

.text-pill {
  padding: 12px 22px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.text-pill:hover {
  transform: scale(1.04);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 0 22px 2px rgba(255,255,255,0.08);
}
.text-pill .arrow { transition: transform 0.25s ease; }
.text-pill:hover .arrow { transform: translateX(4px); }

.social-label {
  margin-top: 64px;
  margin-bottom: 22px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* === Latest Music (video) === */
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.video-frame:hover { transform: scale(1.005); }
.video-frame .thumb {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 6s ease;
}
.video-frame:hover .thumb { transform: scale(1.04); }
.video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}
.video-frame:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-meta {
  position: absolute;
  left: 28px; bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-meta .label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.video-meta .title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.video-time {
  position: absolute;
  right: 28px; bottom: 24px;
  z-index: 2;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  color: #fff;
}

/* === Release card === */
.releases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.release {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.release:hover { transform: translateY(-6px); }
.release img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
  transition: filter 0.5s ease, transform 4s ease;
}
.release:hover img { filter: contrast(1.1) saturate(1.15); transform: scale(1.04); }
.release::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.release .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}
.release .info .t {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.release .info .k {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.release .play {
  width: 44px; height: 44px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}
.release:hover .play { transform: scale(1.1) rotate(8deg); }

/* === On Stage (SoundCloud) === */
.sets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .sets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sets { grid-template-columns: 1fr; } }

.set {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
}
.set:hover { transform: translateY(-4px); }
.set img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(0.92);
  transition: filter 0.5s ease, transform 4s ease;
}
.set:hover img { filter: contrast(1.1) saturate(1.15) brightness(1); transform: scale(1.05); }
.set::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.set-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.set-meta .left { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.set-meta .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.set-meta .name {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.set-meta .play {
  width: 36px; height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.set:hover .set-meta .play { transform: scale(1.12); }
.set .badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 10px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 9999px;
  color: #fff;
}

/* === Gallery — masonry (no cropping) === */
.gallery {
  columns: 3;
  column-gap: 14px;
}
@media (max-width: 980px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }

.gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  break-inside: avoid;
  margin: 0 0 14px;
  cursor: zoom-in;
}
.gallery a img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: contrast(1.03) saturate(1.05) brightness(0.95);
  transition: filter 0.6s ease, transform 6s ease;
}
.gallery a:hover img { filter: contrast(1.08) saturate(1.15) brightness(1.02); transform: scale(1.04); }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
  animation: lbZoom 0.35s cubic-bezier(.22,1,.36,1);
}
@keyframes lbZoom {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover { transform: scale(1.08) rotate(90deg); }
.lightbox-prev:hover  { transform: translateY(-50%) scale(1.08) translateX(-2px); }
.lightbox-next:hover  { transform: translateY(-50%) scale(1.08) translateX(2px); }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
@media (max-width: 780px) {
  .lightbox { padding: 24px; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* === Tour cards === */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.tour-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 28px;
  border-radius: 22px;
  transition: transform 0.3s ease;
}
.tour-card:hover { transform: translateX(4px); }
.tour-card .date {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.tour-card .day {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(56px, 7vw, 84px);
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
}
.tour-card .month {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.tour-card .city {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.tour-card .city .country {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 300;
}
.tour-card .inquire {
  padding: 12px 20px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.tour-card .inquire:hover {
  transform: scale(1.04);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 0 20px 2px rgba(255,255,255,0.08);
}
@media (max-width: 700px) {
  .tour-card {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 18px 18px;
  }
  .tour-card .date { flex-direction: column; align-items: flex-start; gap: 2px; }
  .tour-card .inquire { grid-column: 1 / -1; justify-self: start; }
}

.past-years {
  margin-top: 64px;
}
.past-year {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.past-year:last-child { border-bottom: 1px solid var(--line); }
.past-year .y {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 38px;
  color: #fff;
}
.past-year .cities {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  font-weight: 300;
}
@media (max-width: 700px) {
  .past-year { grid-template-columns: 1fr; gap: 8px; }
}

/* === Contact form === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}
.contact-side h3 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  margin-bottom: 22px;
  color: #fff;
  text-transform: uppercase;
}
.contact-side p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 380px;
}
.contact-side .mail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: border 0.3s ease;
}
.contact-side .mail-link:hover { border-color: #fff; }
.contact-side .kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  display: block;
}

.form {
  padding: 36px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form input,
.form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  transition: border 0.25s ease, background 0.25s ease;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.form textarea {
  resize: vertical;
  min-height: 140px;
}
.form button {
  margin-top: 8px;
  padding: 16px;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.form button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 28px 4px rgba(255,255,255,0.2);
}

/* === Bio / About === */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; gap: 40px; } }
.bio-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  filter: contrast(1.04) saturate(1.05) brightness(0.95);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.bio-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  margin-bottom: 22px;
  max-width: 60ch;
}
.bio-text p:first-of-type::first-letter {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 68px;
  float: left;
  line-height: 0.8;
  padding: 8px 14px 0 0;
  color: #fff;
}

/* === Contact for Bookings block === */
.cta-block {
  text-align: center;
  padding: 100px 24px;
}
.cta-block h3 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  margin-bottom: 36px;
  text-transform: uppercase;
}

/* === Stats strip (used on about/tour) === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.stats .stat:last-child { border-right: 0; }
.stats .stat .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: #fff;
}
.stats .stat .lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat { padding: 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats .stat:nth-child(2) { border-right: 0; }
}

/* === Footer === */
.footer {
  position: relative;
  padding: 80px 44px 36px;
  border-top: 1px solid var(--line);
  background: #000;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}
.footer-wordmark img {
  height: 56px;
  width: auto;
  margin: 0 auto;
  opacity: 0.95;
}
.footer-streams {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .footer-streams { justify-content: center; } }
.footer-streams a {
  width: 40px; height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-streams a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.footer-streams a svg { width: 16px; height: 16px; }
.footer-textlinks {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 900px) { .footer-textlinks { justify-content: center; } }
.footer-textlinks a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s ease;
}
.footer-textlinks a:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.3);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .lang { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .footer-bottom > span {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px !important;
  }
}

/* === Fade-in on scroll === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* === Responsive section padding === */
@media (max-width: 780px) {
  .section { padding: 80px 20px; }
  .footer { padding: 60px 20px 32px; }
}

/* === Page header (sub-pages) === */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg { animation-duration: 40s; }
.page-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
}
.page-hero .sub {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  display: block;
}

/* === Featured release big === */
.featured-release {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .featured-release { grid-template-columns: 1fr; gap: 36px; } }
.featured-release .cover {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.featured-release .cover img { width: 100%; height: 100%; object-fit: cover; }
.featured-release .meta .kicker { 
  font-size: 11px; 
  font-weight: 500; 
  letter-spacing: 0.32em; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.55); 
}
.featured-release .meta h3 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.92;
  margin: 18px 0 24px;
  color: #fff;
  text-transform: uppercase;
}
.featured-release .meta p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
  margin-bottom: 32px;
}
.featured-release .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Tag/label */
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ====== Latest release / latest set highlight ====== */
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.55; }
}
.new-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 3;
}
.new-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px #22d3ee;
  animation: pulseDot 1.8s ease-in-out infinite;
}
.set.is-latest {
  outline: 2px solid rgba(34, 211, 238, 0.55);
  outline-offset: 2px;
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.18);
}
.set .badge.is-latest {
  background: rgba(34, 211, 238, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.55);
  color: #c7f5fb;
}

/* ====== Floating language switcher (capsule, matches liquid-glass-strong) ====== */
.lang-floater {
  position: fixed !important;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  background-blend-mode: luminosity;
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 0;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 14px 36px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease, color .22s ease;
}
.lang-floater::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.5)  0%,
    rgba(255, 255, 255, 0.2)  20%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 0.2)  80%,
    rgba(255, 255, 255, 0.5)  100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.lang-floater:hover,
.lang-floater:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  color: #fff;
  outline: none;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.22),
    0 22px 48px rgba(0, 0, 0, 0.5);
}
.lang-floater svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}
.lang-floater .label-text,
.lang-floater .sep,
.lang-floater .code {
  position: relative;
  z-index: 1;
}
.lang-floater .code {
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.96);
}
.lang-floater .sep {
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, 0.24);
}
@media (max-width: 720px) {
  .lang-floater {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px 10px 12px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .lang-floater .label-text,
  .lang-floater .sep { display: none; }
}

/* ====== Centered footer (matches dennomatini.com) ====== */
.footer-inner {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
  max-width: 720px;
  margin: 0 auto;
}
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}
.footer-wordmark img {
  height: 30px;
  width: auto;
  display: block;
  margin: 0;
  opacity: 0.92;
}
.footer-streams { justify-content: center !important; gap: 12px; }
.footer-textlinks { justify-content: center !important; flex-wrap: wrap; gap: 14px; }
.footer-impressum {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s ease;
  margin-top: 8px;
  text-decoration: none;
}
.footer-impressum:hover { color: #fff; }
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-weight: 400;
}
