/*
Theme Name: Goyo Barrero
Theme URI: https://goyobarrero.com
Author: Goyo Barrero
Author URI: https://goyobarrero.com
Description: Tema oficial del cantautor de vallenato Goyo Barrero y su agrupación La 039. Migrado desde el sitio estático original (HTML/CSS/JS) a WordPress conservando diseño, discografía interactiva, galería y tienda.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goyo-barrero
Tags: musica, portafolio, vallenato, one-page
*/

/* ======================================================================
   Estilos originales del sitio (styles.css). No se modificaron.
   ====================================================================== */

/* =====================================================================
   GOYO BARRERO — Sitio oficial
   Paleta: Morado #8B5CF6 · Dorado #D4AF37 · Blanco #FFFFFF · Negro #121212
   Tipografía: Libre Caslon Text (títulos) · Hanken Grotesk (texto)
   ===================================================================== */

:root {
  --purple: #8B5CF6;
  --purple-soft: rgba(139, 92, 246, .2);
  --purple-glow: rgba(139, 92, 246, .45);
  --gold: #D4AF37;
  --white: #FFFFFF;
  --black: #121212;
  --black-deep: #0A0A0A;
  --surface: #1A1A1A;
  --surface-2: #141414;
  --muted: rgba(255, 255, 255, .6);
  --muted-2: rgba(255, 255, 255, .4);
  --line: rgba(255, 255, 255, .08);
  --maxw: 1200px;
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --serif: 'Libre Caslon Text', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ----- Etiquetas de sección ----- */
.eyebrow {
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--purple); font-weight: 600; display: inline-block; margin-bottom: 18px;
}
.eyebrow.gold { color: var(--gold); }

.section { padding: 120px 0; position: relative; }
.section-title { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin-bottom: 18px; }
.section-lead { color: var(--muted); max-width: 560px; font-size: 17px; }
.center { text-align: center; margin: 0 auto; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, .8); backdrop-filter: blur(14px);
  padding: 12px 32px; border-bottom: 1px solid var(--line);
}
.nav .brand { font-family: var(--serif); font-size: 22px; letter-spacing: .12em; }
.nav .brand b { color: var(--purple); font-weight: 400; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 999px;
  color: var(--muted); transition: .25s var(--ease);
}
.nav-links a:hover { color: var(--white); background: var(--purple-soft); }
.nav-cta {
  background: var(--purple); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; transition: .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--purple-glow); }
.nav-toggle { display: none; font-size: 26px; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  overflow: hidden; padding: 120px 0 90px;
}
/* Imagen anclada a la derecha, a altura completa (se ve el artista entero) */
.hero-media { position: absolute; top: 0; bottom: 0; right: 0; left: auto; z-index: 0; }
.hero-media img {
  height: 100%; width: auto; max-width: none; object-fit: cover; object-position: center top;
  filter: grayscale(.55) contrast(1.05) brightness(.82);
}
.hero-media::after { /* tinte morado/escena */
  content: ""; position: absolute; inset: 0; mix-blend-mode: color;
  background: linear-gradient(120deg, #2a1255 0%, #6d3bd6 45%, #1a0f30 100%);
  opacity: .55;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,6,16,.95) 0%, rgba(8,6,16,.7) 38%, rgba(8,6,16,.2) 70%, rgba(8,6,16,.55) 100%),
    linear-gradient(0deg, rgba(8,6,16,.95) 0%, transparent 45%),
    radial-gradient(800px 500px at 78% 35%, rgba(139,92,246,.28), transparent 65%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin-top: auto; margin-bottom: 4vh; padding-right: 70px; }
.hero .kicker {
  display: inline-flex; gap: 10px; align-items: center; font-size: 12px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.hero h1 {
  font-size: clamp(46px, 8vw, 96px); line-height: .98; letter-spacing: -.01em; margin-bottom: 8px;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero h1 em { font-style: italic; color: #b89bff; }
.hero .tagline {
  font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.78); max-width: 560px;
  margin: 20px 0 34px; font-family: var(--sans); font-style: normal; line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Botón con texto en mayúsculas estilo "lanzamiento" */
.btn-cap { text-transform: uppercase; letter-spacing: .12em; font-size: 13px; padding: 16px 26px; }
.btn-cap .play-badge {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.85);
  display: grid; place-items: center; margin-right: 2px;
}
.btn-cap .play-badge svg { width: 11px; height: 11px; fill: #fff; margin-left: 1px; }
.btn-dark { background: rgba(18,16,28,.7); color: #fff; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); }
.btn-dark:hover { background: rgba(40,32,66,.85); transform: translateY(-3px); border-color: var(--purple); }

/* Controles flotantes laterales (derecha) */
.hero-side {
  position: absolute; right: 26px; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
}
.hero-side .hs-btn {
  width: 30px; height: 30px; display: grid; place-items: center; color: rgba(255,255,255,.7);
  transition: .25s var(--ease); background: none;
}
.hero-side .hs-btn:hover { color: var(--purple); transform: scale(1.15); }
.hero-side .hs-btn svg { width: 22px; height: 22px; fill: currentColor; }
.hero-side .aa { font-family: var(--serif); font-size: 18px; line-height: 1; }
.hero-side .aa small { font-size: 12px; }
body.big-text { font-size: 18px; }

.scroll-hint-actions { display: none; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15px; transition: .28s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px var(--purple-glow); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .25); }
.btn-ghost:hover { border-color: var(--purple); background: var(--purple-soft); transform: translateY(-3px); }
.btn-gold { background: var(--gold); color: #1a1400; }
.btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(212, 175, 55, .35); }

.socials { display: flex; gap: 14px; align-items: center; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line); transition: .25s var(--ease);
}
.socials a:hover { background: var(--purple); transform: translateY(-3px); border-color: transparent; }
.socials svg { width: 18px; height: 18px; fill: #fff; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span { width: 1px; height: 40px; background: linear-gradient(var(--purple), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ===================== SOBRE MÍ (más negro) ===================== */
.about { background: var(--black-deep); }
.about .grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center;
}
.about-portrait { position: relative; }
.about-portrait img {
  width: 100%; border-radius: var(--radius); filter: grayscale(1) contrast(1.05);
  border: 1px solid var(--line);
}
.about-portrait::after {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius);
  box-shadow: inset 0 -120px 80px -40px var(--black-deep);
}
.about-portrait .badge {
  position: absolute; left: -22px; bottom: 36px; background: var(--surface-2);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  padding: 18px 22px; border-radius: 12px; max-width: 230px;
}
.about-portrait .badge .b-eyebrow { color: var(--gold); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.about-portrait .badge .b-title { font-family: var(--serif); font-size: 19px; margin-top: 4px; }
.about-portrait .badge .b-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

.about h2 { font-size: clamp(34px, 4.5vw, 54px); line-height: 1.05; margin-bottom: 8px; }
.about h2 em { font-style: italic; color: var(--gold); }
.about p { color: var(--muted); margin-top: 18px; }
.about .stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.about .stat .num { font-family: var(--serif); font-size: 40px; color: var(--white); }
.about .stat .lbl { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.about .influences { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 26px; }
.about .influences h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.about .influences ul { list-style: none; display: grid; gap: 8px; }
.about .influences li { color: var(--muted); font-size: 15px; padding-left: 18px; position: relative; }
.about .influences li::before { content: "—"; position: absolute; left: 0; color: var(--purple); }

/* ===================== MÚSICA / VINILOS ===================== */
.music { background: var(--black); }
.music-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 60px; }
.albums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }

.album {
  position: relative; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.album:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, .4); box-shadow: 0 30px 60px rgba(0, 0, 0, .5); }
.album.playing { border-color: var(--purple); box-shadow: 0 0 50px var(--purple-glow); }

.disc-wrap { position: relative; height: 210px; margin-bottom: 22px; }
.sleeve {
  position: absolute; left: 0; top: 0; width: 210px; height: 210px; border-radius: 10px;
  z-index: 3; overflow: hidden; box-shadow: 0 16px 40px rgba(0, 0, 0, .6);
  background: linear-gradient(140deg, var(--c1, #2a2150), var(--c2, #120f20));
  display: flex; flex-direction: column; justify-content: space-between; padding: 16px;
}
.sleeve .cover {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: grayscale(.35) contrast(1.05); object-position: center 22%;
}
.sleeve::after { /* viñeta + tinte de color por álbum para legibilidad */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,8,20,.15) 0%, rgba(10,8,20,.85) 100%),
    linear-gradient(140deg, color-mix(in srgb, var(--c1) 55%, transparent), transparent 60%);
}
.sleeve .s-top { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255, 255, 255, .8); position: relative; z-index: 2; }
.sleeve .s-art { position: relative; z-index: 2; align-self: center; margin: auto 0; }
.sleeve .s-art svg { width: 92px; height: 92px; opacity: .92; }
.sleeve .s-name { position: relative; z-index: 2; font-family: var(--serif); font-size: 21px; line-height: 1.05; }

.vinyl {
  position: absolute; top: 5px; left: 70px; width: 200px; height: 200px; border-radius: 50%;
  z-index: 2; transition: transform .6s var(--ease), left .6s var(--ease);
  background:
    repeating-radial-gradient(circle at center, #0c0c0c 0, #0c0c0c 2px, #1b1b1b 3px, #0c0c0c 4px),
    radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .7); display: grid; place-items: center;
}
.vinyl::before { /* brillo del surco */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, .08) 20%, transparent 40%, rgba(255, 255, 255, .06) 70%, transparent);
}
.vinyl .label {
  width: 64px; height: 64px; border-radius: 50%; position: relative; z-index: 2;
  background: radial-gradient(circle, var(--c1, var(--purple)) 0%, var(--c2, #5b3fb0) 100%);
  display: grid; place-items: center; box-shadow: 0 0 0 4px rgba(0, 0, 0, .6) inset;
}
.vinyl .label::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #0a0a0a; box-shadow: 0 0 0 3px rgba(255, 255, 255, .15); }

.album:hover .vinyl { left: 120px; transform: rotate(40deg); }
.album.playing .vinyl { left: 150px; animation: spin 3.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.album-meta { display: flex; align-items: center; gap: 14px; }
.album-meta .info { flex: 1; min-width: 0; }
.album-meta h3 { font-size: 19px; line-height: 1.1; }
.album-meta .sub { font-size: 13px; color: var(--muted); }
.album-meta .sub .len { color: var(--gold); }
.album.playing .album-meta .sub .state { color: var(--purple); font-weight: 600; }
.play-btn {
  width: 52px; height: 52px; border-radius: 50%; background: var(--purple); color: #fff;
  display: grid; place-items: center; flex-shrink: 0; transition: .25s var(--ease);
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 8px 24px var(--purple-glow); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; }

.progress { height: 4px; border-radius: 999px; background: rgba(255, 255, 255, .1); margin-top: 18px; overflow: hidden; opacity: 0; transition: opacity .3s; }
.album.playing .progress { opacity: 1; }
.progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--purple), var(--gold)); border-radius: 999px; }

/* Bloque "sigue escuchando" */
.keep-listening {
  margin-top: 70px; text-align: center; padding: 56px 24px; border-radius: var(--radius);
  background: radial-gradient(700px 240px at 50% 0%, rgba(139, 92, 246, .14), transparent), var(--surface-2);
  border: 1px solid var(--line);
}
.keep-listening h3 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 26px; }
.platforms { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.platforms a {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line); transition: .25s var(--ease);
}
.platforms a:hover { transform: translateY(-4px); background: var(--purple); }
.platforms svg { width: 24px; height: 24px; fill: #fff; }

/* ===================== GALERÍA ===================== */
.gallery { background: var(--black-deep); }
.masonry { columns: 3; column-gap: 16px; }
.masonry figure {
  break-inside: avoid; margin-bottom: 16px; border-radius: 14px; overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.masonry img, .masonry .art-tile { width: 100%; display: block; transition: transform .6s var(--ease), filter .6s; filter: grayscale(.4); }
.masonry figure:hover img, .masonry figure:hover .art-tile { transform: scale(1.06); filter: grayscale(0); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px; font-size: 13px; letter-spacing: .05em;
  background: linear-gradient(transparent, rgba(10, 10, 10, .9)); opacity: 0; transition: .35s var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; }
.art-tile { aspect-ratio: var(--ar, 1); display: grid; place-items: center; }
.art-tile svg { width: 40%; height: 40%; opacity: .5; }

/* ===================== ENCABEZADO DE PÁGINA (páginas sin hero) ===================== */
.page-head {
  padding: 150px 0 60px; position: relative; background: var(--black-deep);
  border-bottom: 1px solid var(--line);
}
.page-head::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 80% 0%, var(--purple-soft), transparent 70%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head .back-link {
  display: inline-block; margin-bottom: 26px; font-size: 14px; color: var(--muted);
  transition: .25s var(--ease);
}
.page-head .back-link:hover { color: var(--white); }
.nav-links a.active { color: var(--white); background: var(--purple-soft); }

/* Bloque de cierre de las páginas internas (tienda, galería) */
.page-note {
  margin-top: 70px; text-align: center; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 46px 30px;
}
.page-note h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.page-note p { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }
.note-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== TIENDA ===================== */
.shop { background: var(--black); }
.shop-page { padding-top: 70px; }
.gallery-page { padding-top: 70px; }
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .35s var(--ease); display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, .4); box-shadow: 0 24px 50px rgba(0, 0, 0, .5); }
.product .ph { aspect-ratio: 1; display: grid; place-items: center; position: relative; background: linear-gradient(150deg, var(--c1, #221b3d), var(--c2, #0e0c18)); }
.product .ph svg { width: 46%; height: 46%; opacity: .85; }
.product .ph .ribbon { position: absolute; top: 12px; left: 12px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: #1a1400; padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.product .body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product h4 { font-family: var(--serif); font-size: 19px; }
.product .desc { font-size: 13px; color: var(--muted); flex: 1; }
.product .row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.product .price { font-family: var(--serif); font-size: 22px; color: var(--gold); }
.product .buy { background: var(--purple); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; transition: .25s var(--ease); }
.product .buy:hover { transform: scale(1.05); box-shadow: 0 8px 22px var(--purple-glow); }
.product.out .buy { background: rgba(255, 255, 255, .08); color: var(--muted); pointer-events: none; }
.product .stock-out { color: var(--muted); font-size: 12px; }

/* ===================== TESTIMONIOS ===================== */
.testimonials { background: var(--black-deep); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; }
.t-card .quote { font-family: var(--serif); font-size: 90px; line-height: .6; color: var(--purple); opacity: .3; height: 40px; }
.t-card p { color: rgba(255, 255, 255, .85); font-style: italic; font-family: var(--serif); font-size: 17px; }
.t-card .author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.t-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--gold)); display: grid; place-items: center; font-weight: 700; color: #fff; }
.t-card .author .n { font-weight: 600; font-size: 15px; }
.t-card .author .r { font-size: 13px; color: var(--muted); }

/* ===================== CONTRATACIONES ===================== */
.booking { background: linear-gradient(180deg, #0E0E0E, var(--black)); }
.booking .grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.booking .intro h2 { font-size: clamp(34px, 4.5vw, 54px); line-height: 1.05; }
.booking .intro p { color: var(--muted); margin-top: 18px; }
.booking .contact-list { margin-top: 34px; display: grid; gap: 16px; }
.booking .contact-list a { display: flex; align-items: center; gap: 14px; color: var(--muted); transition: .2s; }
.booking .contact-list a:hover { color: #fff; }
.booking .contact-list .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; }
.booking .contact-list svg { width: 18px; height: 18px; fill: var(--purple); }

form.book {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 20px; padding: 34px;
}
.field { margin-bottom: 18px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: rgba(255, 255, 255, .8); }
label .req { color: var(--purple); }
input, select, textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; background: var(--black-deep);
  border: 1px solid var(--line); color: #fff; font-family: inherit; font-size: 15px; transition: .2s;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-soft); }
textarea { resize: vertical; min-height: 110px; }
.field .err { color: #ff8585; font-size: 12px; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b6b; }
.field.invalid .err { display: block; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 50px 24px;
}
.form-success.show { display: block; }
.form-success .check { width: 70px; height: 70px; border-radius: 50%; background: var(--purple-soft); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check svg { width: 34px; height: 34px; fill: var(--purple); }
.form-success h3 { font-size: 26px; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ===================== FOOTER ===================== */
.footer { background: var(--black-deep); border-top: 1px solid var(--line); padding: 70px 0 36px; }
.footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.footer .brand { font-family: var(--serif); font-size: 30px; letter-spacing: .1em; }
.footer .brand b { color: var(--purple); font-weight: 400; }
.footer .brand + p { color: var(--muted); max-width: 320px; margin-top: 14px; }
.footer .cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer .col h5 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer .col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: .2s; }
.footer .col a:hover { color: #fff; }
.footer .bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.footer .bottom p { font-size: 13px; color: var(--muted-2); }
.footer .bottom .socials a { width: 38px; height: 38px; }
.footer .bottom .socials svg { width: 15px; height: 15px; }

/* ===================== REVEAL ON SCROLL ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== MINI PLAYER ===================== */
.mini-player {
  position: fixed; left: 50%; bottom: 22px; translate: -50% 140%;
  z-index: 90; background: rgba(20, 20, 20, .92); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px;
  display: flex; align-items: center; gap: 14px; transition: translate .5s var(--ease);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5); max-width: 92vw;
}
.mini-player.show { translate: -50% 0; }
.mini-player .mp-disc { width: 40px; height: 40px; border-radius: 50%; background: repeating-radial-gradient(circle, #0c0c0c 0 2px, #1b1b1b 3px); display: grid; place-items: center; }
.mini-player.show .mp-disc { animation: spin 3.2s linear infinite; }
.mini-player .mp-disc::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--purple); }
.mini-player .mp-info { min-width: 120px; }
.mini-player .mp-info .t { font-size: 14px; font-weight: 600; }
.mini-player .mp-info .s { font-size: 11px; color: var(--muted); }
.mini-player .mp-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--purple); display: grid; place-items: center; }
.mini-player .mp-btn svg { width: 16px; height: 16px; fill: #fff; }
.mini-player .mp-close { color: var(--muted); padding: 0 8px; font-size: 20px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-side { display: none; }
  .hero-inner { padding-right: 0; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 10, 10, .97); padding: 20px; gap: 4px; border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a { width: 100%; }
  .about .grid { grid-template-columns: 1fr; gap: 40px; }
  .albums { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; }
  .booking .grid { grid-template-columns: 1fr; gap: 40px; }
  .masonry { columns: 2; }
}
@media (max-width: 600px) {
  .section { padding: 84px 0; }
  .hero-bg img { opacity: .35; height: 70%; }
  .albums { grid-template-columns: 1fr; }
  .album { max-width: 360px; margin: 0 auto; width: 100%; }
  .products { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .field.row2 { grid-template-columns: 1fr; }
  .footer .top { flex-direction: column; }
}
