/* ============================================================
   FLAVIUS MUSIC — STYLESHEET PRINCIPALE
   Design: Dark Hip-Hop Premium | Responsive | 2025
   ============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;900&family=Playfair+Display:ital,wght@1,700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-2: #111111;
  --color-bg-3: #1a1a1a;
  --color-accent: #e8b84b;
  --color-accent-2: #ff3c3c;
  --color-text: #f0f0f0;
  --color-text-muted: #888888;
  --color-border: rgba(232, 184, 75, 0.2);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-italic: 'Playfair Display', serif;
  --nav-height: 70px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(232, 184, 75, 0.25);
  --shadow-red: 0 0 30px rgba(255, 60, 60, 0.25);
  --radius: 12px;
  --radius-sm: 6px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

/* ---- SELECTION ---- */
::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--color-text);
  transition: color var(--transition);
}

.navbar__logo span {
  color: var(--color-accent);
}

.navbar__logo:hover {
  color: var(--color-accent);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-text);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta {
  background: var(--color-accent) !important;
  color: var(--color-bg) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.navbar__cta:hover {
  background: #f5cc6a !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}

.navbar__cta::after {
  display: none !important;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 5%;
  z-index: 999;
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--transition);
}

.navbar__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.navbar__mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--color-accent);
}

.navbar__mobile .navbar__cta {
  text-align: center;
  border-bottom: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,184,75,0.06) 0%, transparent 70%);
}

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

.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.hero__text {
  animation: fadeInLeft 1s ease both;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.hero__title .accent {
  color: var(--color-accent);
  display: block;
}

.hero__subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.4;
}

.hero__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero__image-wrap:hover img {
  transform: scale(1.04);
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,184,75,0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  z-index: 3;
  box-shadow: var(--shadow-gold);
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(232,184,75,0.3); }
  50% { box-shadow: 0 0 40px rgba(232,184,75,0.6); }
}

.hero__image-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: fadeIn 1s ease 1.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.5; }
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(232,184,75,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,184,75,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(240,240,240,0.3);
}

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

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.15em;
}

.btn-ghost::after {
  content: ' →';
  transition: margin-left var(--transition);
}

.btn-ghost:hover::after {
  margin-left: 6px;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
  padding: 7rem 5%;
}

.section--dark {
  background: var(--color-bg-2);
}

.section--darker {
  background: var(--color-bg-3);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

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

.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

/* ============================================================
   ALBUM SECTION (HOME)
   ============================================================ */
.album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.album__cover {
  position: relative;
}

.album__cover-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-gold);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.album__cover-wrap:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(232,184,75,0.3);
}

.album__cover-wrap img {
  width: 100%;
  display: block;
}

.album__vinyl {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #222 30%, #111 50%, #1a1a1a 70%, #0a0a0a 100%);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  animation: spin 8s linear infinite;
  z-index: -1;
}

.album__vinyl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #111, 0 0 0 6px rgba(232,184,75,0.3);
}

@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.album__info {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.album__tag {
  display: inline-block;
  background: rgba(232,184,75,0.15);
  color: var(--color-accent);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid var(--color-border);
}

.album__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.album__artist {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.album__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.album__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.album__stat {
  text-align: center;
}

.album__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.album__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

/* ============================================================
   STATS TICKER
   ============================================================ */
.ticker {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__inner {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ticker__item::after {
  content: '✦';
  opacity: 0.5;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SOCIAL LINKS
   ============================================================ */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,184,75,0.2);
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  transition: filter var(--transition);
}

.social-link:hover img {
  filter: grayscale(0) brightness(1);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery__zoom {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover {
  opacity: 1;
}

/* ============================================================
   TIMELINE (DI FLAVIUS PAGE)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  transform: translateX(-50%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.timeline__item:nth-child(odd) .timeline__content {
  grid-column: 1;
  text-align: right;
  padding-right: 2.5rem;
}

.timeline__item:nth-child(odd) .timeline__empty {
  grid-column: 3;
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 3;
  text-align: left;
  padding-left: 2.5rem;
}

.timeline__item:nth-child(even) .timeline__empty {
  grid-column: 1;
}

.timeline__dot {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.3rem;
}

.timeline__dot-inner {
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,184,75,0.2), 0 0 20px rgba(232,184,75,0.4);
  flex-shrink: 0;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.timeline__text strong {
  color: var(--color-text);
}

/* ============================================================
   BIO SECTION (DI FLAVIUS PAGE)
   ============================================================ */
.bio {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bio__image {
  position: relative;
}

.bio__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.bio__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.bio__image-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.bio__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.bio__content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.bio__content p strong {
  color: var(--color-text);
}

/* ============================================================
   ARTICLES SECTION
   ============================================================ */
.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,184,75,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.article-card:hover::before {
  transform: scaleX(1);
}

.article-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.article-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,184,75,0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--color-accent);
  transition: opacity var(--transition);
}

.contact-detail__value a:hover {
  opacity: 0.8;
}

/* Form */
.form {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}

.form__input,
.form__textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,184,75,0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

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

.form__privacy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.form__privacy a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.form__submit:hover {
  background: #f5cc6a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.privacy-content .update-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin: 2.5rem 0 1rem;
}

.privacy-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 5rem) 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,184,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

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

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 4rem 5% 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 1rem;
  display: block;
}

.footer__logo span {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--color-accent);
  background: rgba(232,184,75,0.1);
  transform: translateY(-3px);
}

.footer__social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  transition: filter var(--transition);
}

.footer__social-link:hover img {
  filter: grayscale(0) brightness(1);
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer__copy a {
  color: var(--color-accent);
  transition: opacity var(--transition);
}

.footer__copy a:hover {
  opacity: 0.8;
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* Glitch effect for title */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--color-accent-2);
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  color: var(--color-accent);
  animation: glitch2 4s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  91% { transform: translate(-2px, 1px); opacity: 0.7; }
  93% { transform: translate(2px, -1px); opacity: 0.7; }
  95% { transform: translate(0); opacity: 0; }
}

@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(2px, -1px); opacity: 0.7; }
  94% { transform: translate(-2px, 1px); opacity: 0.7; }
  96% { transform: translate(0); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-wrap {
    max-width: 360px;
  }

  .hero__image-badge {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .album {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .album__cover-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .album__vinyl {
    display: none;
  }

  .album__stats {
    justify-content: center;
  }

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

  .bio__image-wrap img {
    height: 400px;
  }

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

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

  .footer__brand {
    grid-column: span 2;
    max-width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item {
    grid-template-columns: 40px 1fr;
  }

  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
    text-align: left;
    padding-right: 0;
    padding-left: 1.5rem;
  }

  .timeline__item:nth-child(odd) .timeline__empty,
  .timeline__item:nth-child(even) .timeline__empty {
    display: none;
  }

  .timeline__dot {
    grid-column: 1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .section {
    padding: 5rem 5%;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

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

  .gallery__item:first-child {
    grid-column: span 2;
  }

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

  .footer__brand {
    grid-column: span 1;
  }

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

  .hero__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }
}

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

  .gallery__item:first-child {
    grid-column: span 1;
  }

  .album__stats {
    gap: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
