/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0b0908;
  --bg-2:      #141110;
  --bg-3:      #1c1815;
  --cream:     #f2ece0;
  --cream-2:   #d8cfbd;
  --cream-3:   #8f8474;
  --gold:      #cda86a;
  --gold-2:    #a9793f;
  --line:      rgba(242,236,224,0.12);
  --line-soft: rgba(242,236,224,0.07);

  --spec-red:    #e6483c;
  --spec-orange: #e8823a;
  --spec-yellow: #e0b23a;
  --spec-green:  #4caf6e;
  --spec-blue:   #3f8ce8;
  --spec-violet: #8a5fd6;
  --spectrum: linear-gradient(90deg,
    var(--spec-red), var(--spec-orange), var(--spec-yellow),
    var(--spec-green), var(--spec-blue), var(--spec-violet));

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
}

@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
em { font-style: italic; color: var(--gold); }
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  border-radius: 8px; font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section { padding: 0 0 0 0; position: relative; }
.section-inner, .nav-inner, .footer-inner {
  width: 100%; max-width: 1240px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.4rem; max-width: 22ch; }

.spectrum-rule {
  height: 2px; width: 100%; max-width: 220px;
  background: var(--spectrum);
  border-radius: 2px;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
  opacity: .85;
}

[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   4. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; mix-blend-mode: difference; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; border-color: var(--gold); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out), clip-path 1s var(--ease-soft);
  animation: splashSafety .01s 3.6s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.splash-logo { width: 76px; height: auto; animation: splashPulse 1.8s var(--ease-soft) infinite; }
@keyframes splashPulse { 0%,100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1.03); } }
.splash-line {
  width: 140px; height: 2px; border-radius: 2px; overflow: hidden;
  background: var(--line);
  position: relative;
}
.splash-line::after {
  content: ""; position: absolute; inset: 0; background: var(--spectrum);
  animation: splashSweep 1.4s var(--ease-soft) infinite;
}
@keyframes splashSweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* =============================================================
   6. Scroll progress
   ============================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; background: var(--spectrum);
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), height .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(11,9,8,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  height: 70px;
}
.nav-inner {
  width: 100%; max-width: 1240px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: .6rem; }
.nav-brand-icon { width: 34px; height: auto; }
.nav-brand-word {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; letter-spacing: .04em; color: var(--cream);
}
.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: .3rem 0; font-size: .92rem; font-weight: 400; color: var(--cream-2);
  transition: color .3s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--spectrum);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: flex; align-items: center; gap: .4rem;
  padding: .45rem .75rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .78rem; font-weight: 500; letter-spacing: .04em; color: var(--cream-2);
  transition: border-color .3s var(--ease-out), background-color .3s var(--ease-out);
}
.lang-switch:hover { border-color: var(--gold); background: rgba(205,168,106,0.08); }
.lang-opt { display: inline-flex; align-items: center; gap: .35rem; opacity: .5; transition: opacity .3s; }
.lang-opt.is-active { opacity: 1; color: var(--cream); }
.lang-sep { opacity: .3; }
.flag-es { width: 18px; height: 12px; border-radius: 2px; box-shadow: 0 0 0 1px var(--line); }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; padding: .5rem;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { width: 22px; height: 1.5px; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg); display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.nav-mobile-link { font-family: var(--serif); font-size: 2rem; font-style: italic; color: var(--cream-2); }
.nav-mobile-link:hover { color: var(--gold); }
@media (min-width: 960px) { .nav-mobile { display: none; } }

/* =============================================================
   8. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.9rem; border-radius: 999px; font-size: .92rem; font-weight: 500;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.24);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .35s, border-color .35s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary { background: var(--gold); color: #1a1310; }
.btn-primary:hover { box-shadow: 0 22px 44px rgba(205,168,106,0.28), 0 10px 20px rgba(0,0,0,0.3); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .35s, border-color .35s, color .35s; }
.btn-ghost:hover { border-color: var(--gold); background: rgba(205,168,106,0.06); color: var(--gold); }
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--nav-h);
  overflow: clip;
}
.hero-spectrum-glow {
  position: absolute; inset: -20% -10% -40% -10%; z-index: 0;
  background:
    radial-gradient(38% 30% at 50% 8%, rgba(205,168,106,.22), transparent 70%),
    radial-gradient(60% 45% at 18% 85%, rgba(230,72,60,.10), transparent 70%),
    radial-gradient(60% 45% at 82% 85%, rgba(63,140,232,.10), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin-inline: auto; padding-inline: 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  width: min(260px, 46vw); margin-bottom: 1.6rem;
  filter: drop-shadow(0 20px 60px rgba(205,168,106,0.18));
  animation: heroLogoIn 1.3s var(--ease-soft) both;
}
@keyframes heroLogoIn { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
.hero-kicker {
  font-size: .78rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5.4vw, 3.9rem); line-height: 1.08; max-width: 16ch;
  margin-bottom: 1.3rem;
}
.hero-title em { display: block; }
.hero-sub {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--cream-2); max-width: 30ch; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-spectrum-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--spectrum);
  opacity: .9;
}

/* =============================================================
   11. Services
   ============================================================= */
.services-grid { display: grid; gap: 1.5rem; margin-bottom: clamp(3.5rem, 8vw, 5.5rem); }
@media (min-width: 720px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.service-card {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  transition: border-color .4s var(--ease-out), transform .4s var(--ease-soft);
}
.service-card:hover { border-color: rgba(205,168,106,0.4); transform: translateY(-4px); }
.service-num {
  display: block; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold);
  margin-bottom: .8rem;
}
.service-title { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: .9rem; }
.service-desc { color: var(--cream-3); font-size: .98rem; line-height: 1.7; max-width: 46ch; }

.spectrum-heading { margin-top: .5rem; }
.spectrum-list {
  display: flex; flex-wrap: wrap; gap: .9rem;
}
.spectrum-list li {
  display: flex; align-items: center; gap: .55rem;
  padding: .65rem 1.2rem; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .92rem; color: var(--cream-2);
  transition: border-color .35s var(--ease-out), background-color .35s var(--ease-out), transform .35s var(--ease-soft);
}
.spectrum-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sc);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sc) 22%, transparent);
}
.spectrum-list li:hover {
  border-color: var(--sc); color: var(--cream); transform: translateY(-2px);
  background: color-mix(in srgb, var(--sc) 8%, transparent);
}

/* =============================================================
   12. Shows section
   ============================================================= */
#contacte { padding-top: 2cm; }

.shows-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
  margin-bottom: 2.2rem;
}
@media (min-width: 640px) { .shows-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .shows-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; } }

.show-card {
  position: relative; isolation: isolate;
  border-radius: 16px;
  background: linear-gradient(165deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-soft), border-color .4s var(--ease-out), box-shadow .5s var(--ease-soft);
}
.show-card:hover { transition-duration: .15s; }
.show-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: var(--sc);
}
.show-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(240px circle at var(--mx,50%) var(--my,50%), color-mix(in srgb, var(--sc) 30%, transparent), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.show-card:hover {
  border-color: color-mix(in srgb, var(--sc) 55%, var(--line));
  box-shadow: 0 26px 60px -24px color-mix(in srgb, var(--sc) 45%, transparent), 0 14px 30px rgba(0,0,0,0.35);
}
.show-card:hover::after { opacity: 1; }

.show-media {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: var(--bg-2);
}
.show-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft), filter .5s var(--ease-out);
}
/* Cards que fan servir el cartell sencer (no una foto retallada): es mostra complet */
.show-media--poster { background: #0f0d0c; }
.show-media--poster img { object-fit: contain; }
.show-card:hover .show-media img { transform: scale(1.08); filter: brightness(.5) saturate(1.1); }
.show-tag {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sc); padding: .32rem .7rem; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--sc) 45%, transparent);
  background: color-mix(in srgb, var(--sc) 22%, rgba(11,9,8,.7));
  backdrop-filter: blur(6px);
}
.show-synopsis {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 3rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(6,5,4,.95) 30%, transparent 100%);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-soft);
}
.show-synopsis p { font-size: .86rem; line-height: 1.55; color: var(--cream-2); }
@media (hover: hover) and (pointer: fine) {
  .show-card:hover .show-synopsis { opacity: 1; transform: none; }
}
.show-card.is-active .show-synopsis { opacity: 1; transform: none; }
.show-card.is-active .show-media img { transform: scale(1.08); filter: brightness(.5) saturate(1.1); }

.show-body { padding: 1.3rem 1.5rem 1.6rem; }
.show-title { font-size: 1.4rem; margin-bottom: .3rem; }
.show-venue { font-size: .8rem; color: var(--cream-3); letter-spacing: .01em; }

.shows-note { font-size: .85rem; color: var(--cream-3); max-width: 60ch; }

/* =============================================================
   13. Why
   ============================================================= */
.why-grid { display: grid; gap: 2.2rem; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.why-card h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.why-card p { color: var(--cream-3); font-size: .95rem; line-height: 1.7; max-width: 34ch; }

/* =============================================================
   14. Contact
   ============================================================= */
.contact { text-align: center; }
.contact-title { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 3rem; }
.contact-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 780px; margin-inline: auto;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-item { display: flex; flex-direction: column; gap: .45rem; align-items: center; }
.contact-label {
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.contact-item a {
  font-family: var(--serif); font-size: 1.25rem; color: var(--cream);
  position: relative; padding-bottom: 2px;
}
.contact-item a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--spectrum); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.contact-item a:hover::after { transform: scaleX(1); transform-origin: left; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding: clamp(2.6rem, 6vw, 3.6rem) 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
}
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-icon { width: 30px; height: auto; }
.footer-name { font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.footer-tagline { font-size: .82rem; color: var(--cream-3); }
.footer-social { display: flex; gap: .9rem; }
.footer-social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--cream-2); transition: border-color .3s, color .3s, transform .3s var(--ease-soft);
}
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-legal { font-size: .82rem; color: var(--cream-3); text-align: right; }
.footer-legal p + p { margin-top: .3rem; }
.footer-credits a { color: var(--cream-3); border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.footer-credits a:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================================
   15. PRISMA Animated Reveal
   ============================================================= */
.prisma-reveal {
  background: var(--bg); padding: 6rem 0; text-align: center;
  min-height: 40vh; display: flex; align-items: center; justify-content: center;
}
.prisma-container {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: flex-start;
}
.prisma-letter {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.prisma-letter::before {
  content: attr(data-letter); font-family: var(--serif); font-size: 4rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.1em;
  opacity: 0; animation: revealLetter 0.6s ease-out forwards;
  animation-delay: var(--delay);
}
.prisma-letter::after {
  content: attr(data-word); font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.12em;
  text-transform: lowercase; color: var(--gold);
  opacity: 0; animation: revealWord 0.6s ease-out forwards;
  animation-delay: calc(var(--delay) + 0.3s);
}
@keyframes revealLetter {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealWord {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   16. Responsive fine-tuning
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .contact-item a { font-size: 1.05rem; }
}

/* =============================================================
   17. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash-logo { animation: none; }
  .splash-line::after { animation: none; }
  .hero-logo { animation: none; }
}

/* =============================================================
   18. Artist page (call for artists + form)
   ============================================================= */
.artist-hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin-inline: auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  display: grid; gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .artist-hero-inner { grid-template-columns: 1.05fr .95fr; }
}
.artist-hero-text { text-align: center; }
.artist-hero-text .hero-title,
.artist-hero-text .hero-sub { margin-inline: auto; }
.artist-hero-text .hero-actions { justify-content: center; }
@media (min-width: 860px) {
  .artist-hero-text { text-align: left; }
  .artist-hero-text .hero-title,
  .artist-hero-text .hero-sub { margin-inline: 0; }
  .artist-hero-text .hero-actions { justify-content: flex-start; }
}
.artist-hero-photo { position: relative; }
.artist-hero-media {
  position: relative; border-radius: 22px; overflow: clip;
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6), 0 10px 30px rgba(0,0,0,.35);
}
.artist-hero-media::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: var(--spectrum);
}
.artist-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-credit {
  margin-top: .7rem; font-size: .7rem; letter-spacing: .03em;
  color: var(--cream-3); text-align: center;
}
@media (min-width: 860px) { .photo-credit { text-align: right; } }

#formulari { padding-top: 2cm; }
.form-wrap { max-width: 680px; margin-inline: auto; }
.artist-form { display: grid; gap: 1.4rem; margin-top: .5rem; }
.form-row { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field label {
  display: block; font-size: .74rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cream-3); margin-bottom: .55rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  color: var(--cream); font-family: var(--sans); font-size: .95rem;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--cream-3); opacity: .7; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--bg-3);
}
.form-field select { appearance: none; cursor: pointer; }
.form-field textarea { min-height: 150px; resize: vertical; font-family: var(--sans); line-height: 1.6; }
.form-submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.3rem; margin-top: .3rem; }
.form-submit-row .btn[disabled] { opacity: .6; pointer-events: none; }
.form-status { font-size: .88rem; line-height: 1.5; max-width: 40ch; }
.form-status.is-success { color: var(--spec-green); }
.form-status.is-error { color: var(--spec-red); }
@media (max-width: 539px) {
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; }
}

/* =============================================================
   19. Cookie consent
   ============================================================= */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9500;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border-top: 1px solid var(--line);
  box-shadow: 0 -20px 50px rgba(0,0,0,.4);
  padding: 1.4rem clamp(1.25rem, 4vw, 2.5rem) 1.6rem;
  transform: translateY(115%);
  transition: transform .6s var(--ease-soft);
}
.cookie-banner[hidden] { display: block; }
.cookie-banner::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--spectrum);
}
.cookie-banner.is-open { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1240px; margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.3rem;
}
.cookie-banner-text { flex: 1 1 420px; font-size: .88rem; line-height: 1.6; color: var(--cream-2); max-width: 68ch; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.cookie-banner-link { max-width: 1240px; margin: .7rem auto 0; font-size: .76rem; }
.cookie-banner-link a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .3s; }
.cookie-banner-link a:hover { border-color: var(--gold); }

.cookie-btn {
  padding: .7rem 1.35rem; border-radius: 999px; font-size: .84rem; font-weight: 500;
  cursor: pointer; white-space: nowrap; font-family: var(--sans);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), border-color .3s, color .3s, background-color .3s;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn-primary { background: var(--gold); color: #1a1310; border: 1px solid var(--gold); }
.cookie-btn-primary:hover { box-shadow: 0 14px 28px rgba(205,168,106,.28); }
.cookie-btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--cream); }
.cookie-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.cookie-modal {
  position: fixed; inset: 0; z-index: 9600;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.cookie-modal[hidden] { display: flex; }
.cookie-modal.is-open { opacity: 1; pointer-events: auto; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(6,5,4,.8); backdrop-filter: blur(4px); }
.cookie-modal-card {
  position: relative; z-index: 1; max-width: 540px; width: 100%; max-height: 85vh; overflow-y: auto;
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  transform: translateY(18px) scale(.98);
  transition: transform .45s var(--ease-soft);
}
.cookie-modal.is-open .cookie-modal-card { transform: none; }
.cookie-modal-card h2 { font-size: clamp(1.4rem, 3vw, 1.7rem); margin-bottom: .8rem; }
.cookie-modal-card > p { color: var(--cream-2); font-size: .87rem; line-height: 1.6; margin-bottom: 1.6rem; }
.cookie-category { padding: 1.1rem 0; border-top: 1px solid var(--line-soft); }
.cookie-category:first-of-type { border-top: none; padding-top: 0; }
.cookie-category-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .45rem; }
.cookie-category-head span:first-child,
.cookie-category-head label { font-family: var(--serif); font-size: 1.05rem; color: var(--cream); }
.cookie-category p { font-size: .82rem; color: var(--cream-3); line-height: 1.55; }
.cookie-toggle {
  position: relative; width: 44px; height: 26px; flex-shrink: 0;
  border-radius: 999px; background: var(--bg); border: 1px solid var(--line);
  cursor: pointer; transition: background .3s, border-color .3s; padding: 0;
}
.cookie-toggle-dot {
  position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--cream-3); transition: transform .3s var(--ease-soft), background .3s;
}
.cookie-toggle[aria-checked="true"] { background: color-mix(in srgb, var(--gold) 35%, var(--bg)); border-color: var(--gold); }
.cookie-toggle[aria-checked="true"] .cookie-toggle-dot { transform: translateX(18px); background: var(--gold); }
.cookie-toggle.is-locked { opacity: .7; cursor: not-allowed; background: color-mix(in srgb, var(--gold) 25%, var(--bg)); border-color: var(--gold); }
.cookie-toggle.is-locked .cookie-toggle-dot { transform: translateX(18px); background: var(--gold); }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

@media (max-width: 640px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .cookie-btn { flex: 1; }
}

/* =============================================================
   20. Clickable show cards (link to detail page)
   ============================================================= */
.show-card-link {
  position: absolute; inset: 0; z-index: 3;
  border-radius: 16px; cursor: pointer;
}
.show-card-link:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}
/* "Fes clic · + info" hint centered on the image while hovering */
.show-cta {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%) translateY(6px);
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: .62rem 1.15rem; border-radius: 999px;
  border: 1px solid rgba(242, 236, 224, .55);
  background: rgba(11, 9, 8, .42); backdrop-filter: blur(5px);
  color: var(--cream); font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-soft);
}
.show-card:hover .show-cta,
.show-card.is-active .show-cta {
  opacity: 1; transform: translate(-50%, -50%);
}

/* =============================================================
   21. Show detail page
   ============================================================= */
.show-detail {
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: clamp(4rem, 10vw, 7rem);
}
.show-detail-inner {
  max-width: 1180px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.show-detail-back {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--gold); font-size: .85rem; letter-spacing: .02em;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.show-detail-back:hover { border-color: var(--gold); }
.show-detail-grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start;
}
@media (min-width: 820px) {
  .show-detail-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
}
.show-detail-media {
  position: relative; border-radius: 20px; overflow: clip;
  border: 1px solid var(--line); background: #0f0d0c;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6), 0 10px 30px rgba(0,0,0,.35);
}
.show-detail-media::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: var(--sc, var(--gold));
}
.show-detail-media img { display: block; width: 100%; height: auto; }
.show-detail-body { align-self: center; }
.show-detail-tag {
  display: inline-block; margin-bottom: 1.1rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sc, var(--gold)); padding: .34rem .8rem; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--sc, var(--gold)) 45%, transparent);
  background: color-mix(in srgb, var(--sc, var(--gold)) 16%, rgba(11,9,8,.6));
}
.show-detail-title {
  font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1.06; margin-bottom: 1.1rem;
}
.show-detail .spectrum-rule { margin-bottom: clamp(1.6rem, 4vw, 2.2rem); }
.show-detail-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Content block: technical sheet (left) + long text & video (right) */
.show-detail-content {
  margin-top: clamp(2.6rem, 6vw, 4.2rem);
  display: grid; gap: clamp(1.8rem, 5vw, 3.2rem);
}
@media (min-width: 820px) {
  .show-detail-content { grid-template-columns: minmax(0, .42fr) minmax(0, 1fr); }
  .show-detail-tech {
    border-right: 1px solid var(--line);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
  }
}
@media (max-width: 819px) {
  .show-detail-tech {
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.6rem;
  }
}
.show-detail-tech-title {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.tech-row {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .65rem 0; border-top: 1px solid var(--line-soft);
}
.tech-row:first-of-type { border-top: none; padding-top: 0; }
.tech-label {
  font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--cream-3);
}
.tech-value { color: var(--cream); font-size: .95rem; line-height: 1.5; }
.show-detail-desc {
  font-size: 1.05rem; line-height: 1.9; color: var(--cream-2); max-width: 62ch;
}
.show-detail-video {
  margin-top: clamp(2rem, 4vw, 2.6rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.video-heading {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cream);
  margin-bottom: 1rem;
}
.video-yt { flex-shrink: 0; }
.video-list { display: flex; flex-direction: column; gap: .7rem; }
.video-list a {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--gold); font-size: .95rem;
  border-bottom: 1px solid transparent; transition: border-color .3s;
  width: fit-content;
}
.video-list a:hover { border-color: var(--gold); }
.video-list .video-yt { width: 20px; height: 20px; }
.video-empty { color: var(--cream-3); font-size: .9rem; }

/* Reproductor de vídeo incrustat (click-to-play) */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video-embed-play {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .8rem;
  padding: 1rem;
  border: 0; cursor: pointer;
  background-color: #000;
  background-size: cover; background-position: center;
  color: var(--cream);
  transition: filter .3s;
}
.video-embed-play::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,9,8,.15), rgba(11,9,8,.65));
  transition: background .3s;
}
.video-embed-play:hover::before { background: linear-gradient(180deg, rgba(11,9,8,.05), rgba(11,9,8,.5)); }
.video-embed-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  transform: scale(1); transition: transform .3s;
}
.video-embed-btn .video-yt { width: 62px; height: 62px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); }
.video-embed-play:hover .video-embed-btn { transform: scale(1.08); }
.video-embed-label {
  position: relative;
  font-family: var(--sans); font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.video-embed-frame { width: 100%; height: 100%; border: 0; display: block; }

.show-detail-missing {
  padding-top: calc(var(--nav-h) + 4rem); text-align: center; color: var(--cream-2);
}
.show-detail-missing a { color: var(--gold); border-bottom: 1px solid var(--gold); }
