/* ═══════════════════════════════════════════════════════
   CABRON — Official Website Styles v3
   Dark cinematic — Brushed Steel + Living Color
   Silver = structural luxury | Green = energy/life | Amber = atmosphere
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  --bg:          #080808;
  --bg-elevated: #111111;
  --bg-card:     #161616;
  --bg-surface:  #0D0D0D;

  --text:        #ECEAE6;
  --text-dim:    #78756F;
  --text-muted:  #3E3C39;

  /* Silver / Brushed Steel — structural luxury */
  --accent:       #B8B8B8;
  --accent-light: #D4D4D4;
  --accent-dark:  #8A8A8A;
  --accent-glow:  rgba(184, 184, 184, 0.15);
  --accent-deep:  rgba(184, 184, 184, 0.04);

  /* Warm Green — energy, life, CTAs */
  --green:       #5CB85C;
  --green-light: #78D078;
  --green-dark:  #4A9A4A;
  --green-glow:  rgba(92, 184, 92, 0.25);
  --green-deep:  rgba(92, 184, 92, 0.06);

  /* Amber — atmospheric warmth, stage lights */
  --amber:       #D4943A;
  --amber-light: #E8AD5A;
  --amber-glow:  rgba(212, 148, 58, 0.25);

  /* Deep blue — night atmosphere */
  --blue-deep:   #1a2744;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cormorant Garamond', serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dark) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--amber));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

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

.preloader__text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: 0.3em;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.preloader__text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  animation: preloaderSweep 1.2s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes preloaderSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--bg-card);
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 1px;
}

.preloader__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  animation: preloaderFill 1.4s var(--ease-out) forwards;
}

@keyframes preloaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  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-repeat: repeat;
  background-size: 256px 256px;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(184, 184, 184, 0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  color: var(--text);
  transition: color 0.3s;
}

.nav__logo:hover { color: var(--green); }

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(236, 234, 230, 0.85);
  transition: color 0.3s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.nav.scrolled .nav__link {
  color: var(--text-dim);
  text-shadow: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav.scrolled .nav__link:hover { color: var(--text); }
.nav__link.active { color: var(--green); }
.nav__link.active::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  transition: color 0.3s;
}

.nav__mobile a:hover { color: var(--green); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/photos/screens/cabron-conceptual.png');
  background-size: cover;
  background-position: center 20%;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* YouTube video background — covers hero, hides UI */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  min-width: 177.78vh; /* 16:9 ratio */
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center top, transparent 30%, var(--bg) 80%),
    linear-gradient(to top, var(--bg) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.3) 0%, transparent 30%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 200px 60px rgba(0, 0, 0, 0.7);
}

/* Amber + green glow orbs on hero — stage lights through smoke */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.hero__glow--teal {
  width: 550px;
  height: 550px;
  background: var(--amber);
  top: -10%;
  left: -5%;
  opacity: 0.2;
  animation: glowPulseAmber 8s ease-in-out infinite alternate;
}

.hero__glow--green {
  width: 450px;
  height: 450px;
  background: var(--green);
  bottom: -10%;
  right: -5%;
  opacity: 0.18;
  animation: glowPulseGreen 12s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulseAmber {
  0% { opacity: 0.15; transform: scale(1); }
  100% { opacity: 0.28; transform: scale(1.2); }
}

@keyframes glowPulseGreen {
  0% { opacity: 0.1; transform: scale(1); }
  100% { opacity: 0.22; transform: scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem 8vh;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: 0.08em;
  color: var(--text);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--accent-light);
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--green);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}

.btn--outline {
  border: 1px solid rgba(184, 184, 184, 0.35);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: heroFloat 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes heroFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero sound toggle */
.hero__sound {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.65);
  border: 1.5px solid rgba(184, 184, 184, 0.3);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}

.hero__sound:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(8, 8, 8, 0.8);
  transform: scale(1.08);
}

.hero__sound.active {
  border-color: var(--green);
  color: var(--green);
  background: rgba(92, 184, 92, 0.15);
  box-shadow: 0 0 20px rgba(92, 184, 92, 0.2);
}

/* Click anywhere on hero toggles sound */
.hero { cursor: pointer; }
.hero__content { cursor: auto; }
.hero__content a, .hero__content button, .hero__sound { cursor: pointer; }

/* ── SECTION COMMON ── */
.section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section--wide {
  max-width: 1400px;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-dark);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3rem;
  color: var(--text);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── DESPRE / ABOUT ── */
.despre {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  background: #0c0c0b;
}

/* Separator line — silver/chrome */
.despre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
}

/* Atmospheric glow — warm amber wash, full-width, smooth wave */
.despre__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 55%, rgba(212, 148, 58, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(212, 148, 58, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(180, 130, 50, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.despre__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Stats — full-width row across the section */
.despre__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.stat {
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(184, 184, 184, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
  border-color: rgba(92, 184, 92, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(92, 184, 92, 0.08);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(180deg, #E0E0E0 0%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

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

.despre__content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.despre__bio {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.despre__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.despre__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: grayscale(0.2);
  transition: filter 0.5s;
}

.despre__photo img:hover {
  filter: grayscale(0);
}

.despre__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 184, 184, 0.3);
  border-radius: 4px;
  pointer-events: none;
}

.despre__bio-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #9e9a93;
  margin-bottom: 2rem;
}

.despre__bio-text strong {
  color: var(--text);
  font-weight: 500;
}

.despre__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent-light);
  border-left: 2px solid var(--accent-dark);
  padding-left: 1.5rem;
  line-height: 1.6;
}

/* ── DISCOGRAFIE ── */
.discografie {
  background: var(--bg-surface);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Background photo watermark — ghostly silhouette with blur to smooth low-res */
.discografie__bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url('../assets/images/photos/screens/cabron-beach-please.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.06;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
  pointer-events: none;
}

.discografie__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.discografie__sub {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discografie__sub::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(192, 192, 192, 0.08);
}

.discografie__sub:first-of-type { margin-top: 0; }

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.album-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}

.album-card:hover {
  transform: translateY(-8px);
}

.album-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter 0.4s;
}

.album-card:hover .album-card__img {
  filter: brightness(1.1) contrast(1.05);
}

/* Album card hover glow — warm amber spotlight */
.album-card__glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 var(--amber-glow);
  transition: box-shadow 0.4s;
  pointer-events: none;
}

.album-card:hover .album-card__glow {
  box-shadow: 0 12px 40px var(--amber-glow), inset 0 0 0 1px rgba(212, 148, 58, 0.2);
}

.album-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 0.75rem 0.75rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.album-card:hover .album-card__info {
  opacity: 1;
  transform: translateY(0);
}

.album-card__name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.album-card__year {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 400;
}

/* ── HIT-URI / TOP SINGLES ── */
.hituri {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Separator line — silver/chrome */
.hituri::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
}

/* Spotlight glow — warm amber from above */
.hituri__spotlight {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse at top, var(--amber-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}

.hit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hit-item {
  display: grid;
  grid-template-columns: 3rem 80px 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s;
  cursor: pointer;
}

/* Hit item hover — subtle green tint */
.hit-item:hover {
  background: var(--green-deep);
}

.hit-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hit__rank {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1;
}

/* #1 rank — green */
.hit-item:first-child .hit__rank { color: var(--green); }

.hit__cover {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s;
}

.hit-item:hover .hit__cover {
  transform: scale(1.05);
}

.hit__info {
  min-width: 0;
}

.hit__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.hit__feat {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Hit links — YouTube & Spotify buttons, visible on hover */
.hit__links {
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.hit-item:hover .hit__links { opacity: 1; }

.hit__link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(184, 184, 184, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.hit__link svg {
  width: 15px;
  height: 15px;
  fill: var(--text-dim);
  transition: fill 0.3s;
}

.hit__link--yt:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  transform: scale(1.1);
}
.hit__link--yt:hover svg { fill: #ff0000; }

.hit__link--sp:hover {
  border-color: var(--green);
  background: rgba(92, 184, 92, 0.1);
  transform: scale(1.1);
}
.hit__link--sp:hover svg { fill: var(--green); }

.hit__streams {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hit__streams span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

/* ── VIDEO ── */
.video-section {
  background: var(--bg-surface);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Stage lights — LEFT = warm amber/orange, MUCH more visible */
.video-section__glow-left {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 450px;
  height: 500px;
  background: radial-gradient(circle, var(--amber-glow) 0%, rgba(212, 148, 58, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.7;
}

/* Stage lights — RIGHT = green, MUCH more visible */
.video-section__glow-right {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 400px;
  height: 450px;
  background: radial-gradient(circle, var(--green-glow) 0%, rgba(92, 184, 92, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
}

.video-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.video-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
}

.video-card:first-child {
  grid-column: 1 / -1;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(8, 8, 8, 0.8);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

/* ── GALERIE ── */
.galerie {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Separator line — silver/chrome */
.galerie::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
}

/* Smoke/haze at bottom — subtle */
.galerie__haze {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(92, 184, 92, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.galerie__masonry {
  columns: 4;
  column-gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.galerie__item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}

.galerie__item:hover {
  transform: scale(1.02);
}

.galerie__item img {
  width: 100%;
  display: block;
  transition: filter 0.4s;
}

.galerie__item:hover img {
  filter: brightness(1.1);
}

/* Gallery hover — green border glow */
.galerie__item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 var(--green-glow);
  transition: box-shadow 0.4s;
  pointer-events: none;
}

.galerie__item:hover::after {
  box-shadow: inset 0 0 0 2px rgba(92, 184, 92, 0.25);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(20px);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text);
  font-weight: 300;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  cursor: pointer;
}

.lightbox__close:hover { color: var(--green); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--text-dim);
  padding: 1rem;
  cursor: pointer;
  transition: color 0.3s;
  user-select: none;
}

.lightbox__nav:hover { color: var(--green); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ── CONTACT ── */
.contact {
  background: var(--bg-surface);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Separator line — silver/chrome */
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
}

/* Background photo watermark — slightly more visible */
.contact__bg-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-image: url('../assets/images/photos/screens/cabron-green-smoke.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.045;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact__detail {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact__detail a {
  color: var(--green);
  transition: color 0.3s;
}

.contact__detail a:hover { color: var(--green-light); }

.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__social {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 184, 184, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.contact__social:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  background: rgba(92, 184, 92, 0.1);
}

.contact__social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-dim);
  transition: fill 0.3s;
}

.contact__social:hover svg { fill: var(--green); }

/* Form */
.form__group {
  margin-bottom: 1.25rem;
}

.form__input,
.form__textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(184, 184, 184, 0.08);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

/* Form focus — green */
.form__input:focus,
.form__textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button — green */
.btn--submit {
  background: var(--green);
  color: var(--bg);
  padding: 0.9rem 3rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  width: 100%;
}

.btn--submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(192, 192, 192, 0.06);
  padding: 3rem 2rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer__credit {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.footer__credit a {
  color: var(--accent-dark);
  transition: color 0.3s;
}

.footer__credit a:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .despre__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .galerie__masonry { columns: 3; }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card:first-child {
    grid-column: 1;
  }

  .discografie__bg-photo { opacity: 0.06; }
  .contact__bg-photo { opacity: 0.03; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 5rem 1.25rem; }
  .despre { padding: 5rem 1.25rem; }
  .discografie { padding: 5rem 1.25rem; }
  .video-section { padding: 5rem 1.25rem; }
  .contact { padding: 5rem 1.25rem; }

  .despre__content {
    grid-template-columns: 1fr;
  }

  .despre__photo {
    max-width: 320px;
  }

  .hero__content { padding-bottom: 12vh; }
  .hero__title { font-size: clamp(4rem, 20vw, 8rem); }

  .hero__glow--teal { width: 300px; height: 300px; }
  .hero__glow--green { width: 200px; height: 200px; }

  .despre__stats { grid-template-columns: 1fr 1fr; }

  .album-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }

  .album-card__info {
    opacity: 1;
    transform: none;
  }

  .hit-item {
    grid-template-columns: 2rem 60px 1fr auto auto;
    gap: 1rem;
  }

  .hit__links { opacity: 1; }
  .hit__cover { width: 60px; height: 60px; }
  .hit__title { font-size: 0.9rem; }

  .galerie__masonry { columns: 2; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lightbox__nav { display: none; }

  .hituri__spotlight { opacity: 0.3; }
  .video-section__glow-left { opacity: 0.4; }
  .video-section__glow-right { opacity: 0.35; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }

  .despre__stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat { padding: 1rem; }
  .stat__number { font-size: 2rem; }

  .album-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .hit-item {
    grid-template-columns: 2rem 50px 1fr auto;
    gap: 0.75rem;
  }

  .hit__streams { display: none; }
  .hit__links { opacity: 1; }
  .hit__cover { width: 50px; height: 50px; }

  .galerie__masonry { columns: 2; column-gap: 0.5rem; }
  .galerie__item { margin-bottom: 0.5rem; }
}
