/* ============================================================
   NIL MATAMALA — Sistema de disseny complet
   ============================================================ */

/* --- Variables --- */
:root {
  --bg:        #080808;
  --bg-card:   #111111;
  --bg-light:  #161616;
  --gold:      #C49A2A;
  --gold-light:#D4AF50;
  --white:     #F2EDE6;
  --muted:     #7A746C;
  --border:    rgba(196,154,42,0.18);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h:     72px;
  --radius:    3px;
  --transition: 0.3s ease;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Tipografia --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; letter-spacing: 0.12em; text-transform: uppercase; }

p { color: rgba(242,237,230,0.78); line-height: 1.8; }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* --- Línia decorativa --- */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}
.gold-line--left { margin-left: 0; }

/* --- Botons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: #080808;
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(242,237,230,0.35);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: #080808;
}

/* ============================================================
   NAVEGACIÓ
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,237,230,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--gold); }

.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--gold);
  color: #080808 !important;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  color: rgba(242,237,230,0.8);
  letter-spacing: 0.1em;
}
.nav__mobile a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.2) 40%,
    rgba(8,8,8,0.85) 80%,
    rgba(8,8,8,1) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero__content .label { margin-bottom: 20px; display: block; }
.hero__content h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero__content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__content p {
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ============================================================
   ESPECTACLES (home — 3 cards)
   ============================================================ */
.shows { background: var(--bg); }
.shows__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.show-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.show-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.show-card:hover .show-card__img { transform: scale(1.04); }
.show-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.1) 60%);
  transition: background var(--transition);
}
.show-card:hover .show-card__overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.3) 70%);
}
.show-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.show-card__content .label { margin-bottom: 8px; display: block; font-size: 0.65rem; }
.show-card__content h3 { font-size: 1.7rem; margin-bottom: 10px; }
.show-card__content p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.show-card:hover .show-card__content p {
  opacity: 1;
  transform: translateY(0);
}
.show-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ============================================================
   SOBRE MI (teaser)
   ============================================================ */
.about-teaser {
  background: var(--bg-light);
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__img-wrap {
  position: relative;
}
.about-teaser__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-teaser__img-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--border);
  z-index: -1;
}
.about-teaser__text .label { margin-bottom: 16px; display: block; }
.about-teaser__text h2 { margin-bottom: 24px; }
.about-teaser__text p { margin-bottom: 20px; }
.about-teaser__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat__num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PROVA SOCIAL (logos festivals)
   ============================================================ */
.social-proof {
  background: var(--bg);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof .label { text-align: center; display: block; margin-bottom: 36px; }
.social-proof__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px 64px;
}
.social-proof__logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.social-proof__logo:hover { color: var(--white); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-light);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,154,42,0.06) 0%, transparent 70%);
}
.cta-banner .label { margin-bottom: 16px; display: block; }
.cta-banner h2 { margin-bottom: 20px; }
.cta-banner p { max-width: 500px; margin: 0 auto 40px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  padding: 64px 0 36px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 32px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; max-width: 280px; }
.footer__col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--muted);
}
.footer__social { display: flex; gap: 20px; }
.footer__social a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--gold); }

/* ============================================================
   PÀGINES INTERIORS — Hero petit
   ============================================================ */
.page-hero {
  position: relative;
  height: 68vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.95) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-hero__content .label { margin-bottom: 12px; display: block; }
.page-hero__content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 12px; }
.page-hero__content p { font-size: 1rem; color: var(--muted); }

/* ============================================================
   ESPECTACLE DETALL
   ============================================================ */
.show-detail { background: var(--bg); }
.show-detail__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.show-detail__text .label { margin-bottom: 16px; display: block; }
.show-detail__text h2 { margin-bottom: 24px; }
.show-detail__text p { margin-bottom: 20px; }

.show-specs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius);
}
.show-specs h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 500;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row__key { color: var(--muted); }
.spec-row__val { color: var(--white); font-weight: 500; }
.show-specs .btn { width: 100%; text-align: center; margin-top: 28px; }

/* Gallery */
.show-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.show-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.show-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ============================================================
   SOBRE MI — Full page
   ============================================================ */
.bio__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.bio__img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.bio__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.bio__text .label { margin-bottom: 16px; display: block; }
.bio__text h2 { margin-bottom: 28px; }
.bio__text p { margin-bottom: 20px; }
.bio__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.bio__highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  border-radius: var(--radius);
}
.bio__highlight-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.bio__highlight-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bio__festivals {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.bio__festivals h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}
.bio__festivals ul { display: flex; flex-direction: column; gap: 10px; }
.bio__festivals ul li {
  font-size: 0.9rem;
  color: rgba(242,237,230,0.75);
  padding-left: 16px;
  position: relative;
}
.bio__festivals ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   CONTACTE
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact__info .label { margin-bottom: 16px; display: block; }
.contact__info h2 { margin-bottom: 24px; }
.contact__info p { margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.contact__detail a { color: rgba(242,237,230,0.8); transition: color var(--transition); }
.contact__detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }
.contact-form .btn { width: 100%; text-align: center; margin-top: 8px; }

/* ============================================================
   MÀGIA CORPORATIVA
   ============================================================ */
.corp-features {
  background: var(--bg-light);
}
.corp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.corp-feature {
  background: var(--bg-card);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}
.corp-feature:hover { border-top-color: var(--gold); }
.corp-feature__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.3rem;
  border-radius: var(--radius);
}
.corp-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.corp-feature p { font-size: 0.9rem; }

.twd-banner {
  background: var(--bg);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.twd-banner__logo {
  font-family: var(--font-head);
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold);
}
.twd-banner p { max-width: 540px; margin: 0 auto 36px; }

/* ============================================================
   SELECTOR D'IDIOMA
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(196,154,42,0.3);
  border-radius: 3px;
  overflow: hidden;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 5px 9px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-body);
}
.lang-btn.active {
  background: var(--gold);
  color: #080808;
}
.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* Contingut bilingüe — per defecte català, castellà ocult */
.lang-es { display: none !important; }
body.es .lang-es { display: unset !important; }
body.es .lang-ca { display: none !important; }
/* Aplica ES durant la càrrega inicial si és l'idioma guardat */
html.es-pending .lang-es { display: unset !important; }
html.es-pending .lang-ca { display: none !important; }

/* ============================================================
   BOTIGA
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-light);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #080808;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.product-card__body { padding: 24px; }
.product-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.product-card__name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.product-card__desc {
  font-size: 0.88rem;
  color: rgba(242,237,230,0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.product-card__price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
}
.product-card__price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-body);
  margin-left: 4px;
}

/* Modal de producte */
.product-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-modal-overlay.open { display: flex; }
.product-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.product-modal__body { padding: 40px; }
.product-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}
.product-modal__close:hover { color: var(--white); }
.product-modal__cat { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.product-modal__name { font-family: var(--font-head); font-size: 2rem; margin-bottom: 16px; }
.product-modal__price { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); margin-bottom: 24px; }
.product-modal__desc { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.8; }
.product-modal__includes { margin: 24px 0; padding: 20px; background: var(--bg-light); border-radius: var(--radius); }
.product-modal__includes h4 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-family: var(--font-body); font-weight: 500; }
.product-modal__includes ul { display: flex; flex-direction: column; gap: 8px; }
.product-modal__includes ul li { font-size: 0.88rem; color: rgba(242,237,230,0.75); padding-left: 14px; position: relative; }
.product-modal__includes ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.product-modal__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.product-modal__actions .btn { text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .product-modal { grid-template-columns: 1fr; }
  .product-modal__img { min-height: 240px; max-height: 300px; }
  .shows__grid { grid-template-columns: repeat(2, 1fr); }
  .shows__grid .show-card:last-child { grid-column: 1 / -1; }
  .about-teaser__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser__img-wrap { max-width: 480px; }
  .show-detail__inner { grid-template-columns: 1fr; }
  .bio__inner { grid-template-columns: 1fr; }
  .bio__img-wrap { position: static; max-width: 400px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  section { padding: 64px 0; }
  .container, .container--narrow { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .shows__grid { grid-template-columns: 1fr; }
  .shows__grid .show-card:last-child { grid-column: auto; }
  .show-card { aspect-ratio: 4/3; }
  .about-teaser__stats { flex-wrap: wrap; gap: 24px; }
  .bio__highlights { grid-template-columns: 1fr 1fr; }
  .corp-features__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .show-gallery { grid-template-columns: 1fr; }
  .show-gallery img:first-child { aspect-ratio: 4/3; }
  .hero__scroll { display: none; }
  .shop-grid { grid-template-columns: 1fr; }
  .product-modal { max-height: 95vh; }
  .product-modal__body { padding: 24px; }
}
