/* ============================================
   BOZZARTISTS.COM — Main Stylesheet
   Aesthetic: NY Punk Editorial / Newspaper
   ============================================ */

/* Google Fonts — font-display: swap ya viene en la URL */
/* Removido @import — cargado via <link> en el HTML para mejor performance */

/* ============================================
   VARIABLES
============================================ */
:root {
  --ink:          #111111;
  --ink-light:    #2a2a2a;
  --paper:        #e8e4dc;
  --paper-dark:   #d4cfc5;
  --paper-mid:    #dedad2;
  --red:          #b80000;
  --red-bright:   #cc0000;
  --mustard:      #c8960a;
  --mustard-light:#e8b020;
  --white:        #f5f2ec;
  --gray-mid:     #888070;
  --gray-light:   #aaa090;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Libre Baskerville', Georgia, serif;
  --font-head:    'Oswald', 'Impact', sans-serif;
  --font-type:    'Special Elite', 'Courier New', monospace;

  --max-w: 1140px;
  --pad:   24px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  /* Fix gap above sticky header */
  padding-top: 0;
  margin-top: 0;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* Skip to content — accesibilidad */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus visible global */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
}

/* ============================================
   UTILITY
============================================ */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow{ max-width: 840px; margin: 0 auto; padding: 0 var(--pad); }

.section-header {
  border-top: 5px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 10px 0;
  margin-bottom: 48px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-header .sh-sub {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.section-header .sh-date {
  font-family: var(--font-type);
  font-size: 11px;
  color: var(--gray-light);
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 2px solid;
  transition: all 0.15s;
  cursor: pointer;
  line-height: 1;
}
.btn--red   { background: var(--red); border-color: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-bright); border-color: var(--red-bright); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.btn--ghost:hover { border-color: var(--mustard); color: var(--mustard-light); }
.btn--ink   { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--white); }

/* Scroll fade in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   MASTHEAD — HEADER
============================================ */
#masthead {
  background: var(--ink);
  border-bottom: 3px solid var(--red);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
}

.masthead-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.masthead-logo img {
  height: 34px;
  width: auto;
  filter: invert(1) brightness(1.05);
  display: block;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}

.masthead-nav a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.masthead-nav a:hover,
.masthead-nav a.active { color: var(--mustard-light); }

.masthead-cta {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  border: 2px solid var(--red);
  white-space: nowrap;
  transition: all 0.15s;
}
.masthead-cta:hover { background: transparent; color: var(--red-bright); border-color: var(--red-bright); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 4px 6px;
  margin-left: auto;
  line-height: 1;
}

/* ============================================
   HERO
============================================ */
#hero {
  margin-top: 60px; /* masthead height */
  background: var(--ink);
  min-height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1600&q=80&auto=format');
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
  filter: grayscale(100%);
}

.hero-datebar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 7px var(--pad);
  position: relative;
  z-index: 1;
}
.hero-datebar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-datebar span {
  font-family: var(--font-type);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
.hero-datebar .edition { color: var(--mustard); font-weight: 700; }

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--pad) 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-kicker {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 86px);
  font-weight: 900;
  line-height: 0.93;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--mustard-light); }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 22px 18px;
  transition: background 0.2s;
}
.stat-box:hover { background: rgba(255,255,255,0.07); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-num sup { color: var(--red-bright); font-size: 0.55em; vertical-align: super; }

.stat-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.stat-box--red {
  background: var(--red);
  border-color: var(--red);
  grid-column: span 2;
}
.stat-box--red .stat-num { color: #fff; }
.stat-box--red .stat-label { color: rgba(255,255,255,0.65); }

.stat-box--quote {
  grid-column: span 2;
  background: rgba(200,150,10,0.07);
  border-color: rgba(200,150,10,0.2);
  border-left: 4px solid var(--mustard);
  padding: 16px 18px;
}
.stat-box--quote p {
  font-family: var(--font-type);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.55;
}
.stat-box--quote strong { color: var(--mustard-light); font-style: normal; }

/* ============================================
   TICKER
============================================ */
#ticker {
  background: var(--red);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 3px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: scroll-ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
}
.ticker-item::after { content: '◆'; margin-left: 32px; font-size: 6px; color: rgba(255,255,255,0.35); }
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICIOS
============================================ */
#servicios {
  padding: 88px 0;
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
}

.svc {
  padding: 30px 26px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background 0.2s;
  position: relative;
}
.svc:nth-child(3n) { border-right: none; }
.svc:nth-child(n+4) { border-bottom: none; }
.svc:hover { background: var(--paper-dark); }

.svc--dark {
  background: var(--ink);
  color: var(--white);
}
.svc--dark:hover { background: var(--ink-light); }

.svc-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper-dark);
  margin-bottom: 10px;
}
.svc--dark .svc-num { -webkit-text-stroke-color: rgba(255,255,255,0.12); }

.svc-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.svc-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red);
  margin-top: 8px;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-light);
}
.svc--dark .svc-desc { color: rgba(255,255,255,0.58); }

/* ============================================
   HISTORIA / TIMELINE
============================================ */
#historia {
  padding: 88px 0;
  background: var(--paper-mid);
}

.historia-lead {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.historia-lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  border-left: 5px solid var(--red);
  padding-left: 22px;
  color: var(--ink);
}

.historia-panel {
  background: var(--ink);
  color: var(--white);
  padding: 22px 20px;
}
.historia-panel-title {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard-light);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.historia-panel ul { list-style: none; }
.historia-panel li {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.historia-panel li strong {
  font-family: var(--font-head);
  font-size: 10px;
  color: var(--red-bright);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* Timeline */
.timeline { padding-left: 36px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--ink);
}

.tl-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 44px;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 8px;
  width: 10px; height: 10px;
  background: var(--ink);
  border: 3px solid var(--paper-mid);
  border-radius: 50%;
}
.tl-item--key::before {
  background: var(--red);
  width: 14px; height: 14px;
  left: -42px; top: 6px;
}

.tl-year {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.tl-body {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
}
.tl-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--mustard);
  color: var(--ink);
  margin-top: 10px;
}

/* ============================================
   IMAGEN BANDA — separador visual
============================================ */
.img-break {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(80%) contrast(1.1);
  display: block;
}
.img-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.3) 50%, rgba(17,17,17,0.7) 100%);
  display: flex;
  align-items: center;
}
.img-break-text {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}
.img-break-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  max-width: 560px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.img-break-attr {
  font-family: var(--font-type);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ============================================
   ARTISTAS
============================================ */
#artistas {
  padding: 88px 0;
  background: var(--ink);
  color: var(--white);
}
#artistas .section-header {
  border-color: rgba(255,255,255,0.15);
}
#artistas .section-header h2 { color: var(--white); }
#artistas .section-header .sh-sub { color: rgba(255,255,255,0.3); }
#artistas .section-header .sh-date { color: rgba(255,255,255,0.2); }

.artistas-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.artistas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.artista {
  background: var(--ink);
  padding: 26px 20px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.artista:hover {
  background: rgba(255,255,255,0.04);
  border-bottom-color: var(--red);
}

.artista-genre {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 8px;
}
.artista-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.2;
}
.artista-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.artista--cta {
  border: 1px dashed rgba(255,255,255,0.1);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
  flex-direction: column;
  gap: 8px;
}
.artista--cta:hover { background: rgba(255,255,255,0.03); }
.artista--cta .artista-name { font-size: 14px; }
.artista--cta a { color: var(--red-bright); border-bottom: 1px solid; }

/* ============================================
   MANIFESTO
============================================ */
#manifesto {
  background: var(--red);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
#manifesto::before {
  content: 'BOZZ';
  position: absolute;
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 900;
  color: rgba(255,255,255,0.045);
  top: -50px; left: -20px;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.manifesto-quote em {
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  color: transparent;
}
.manifesto-attr {
  font-family: var(--font-type);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.manifesto-right {
  border-left: 3px solid rgba(255,255,255,0.2);
  padding-left: 40px;
}
.manifesto-text {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
}

/* ============================================
   PRENSA
============================================ */
#prensa {
  padding: 88px 0;
  background: var(--paper);
}

.prensa-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.prensa-feature {
  border-top: 5px solid var(--red);
  padding-top: 20px;
  margin-bottom: 40px;
}
.prensa-kicker {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.prensa-h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.prensa-body {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.prensa-link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.15s;
  display: inline-block;
}
.prensa-link::after { content: ' →'; }
.prensa-link:hover { color: var(--ink); }

.prensa-sidebar {
  background: var(--paper-dark);
  border: 2px solid var(--ink);
  padding: 22px;
}
.prensa-sidebar-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 18px;
}

.kit-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.kit-row:last-of-type { border-bottom: none; }
.kit-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.kit-text { font-size: 12px; color: var(--ink-light); line-height: 1.5; }
.kit-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 2px;
}

.prensa-email-box {
  margin-top: 20px;
  background: var(--ink);
  color: var(--white);
  padding: 18px;
}
.prensa-email-box p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  line-height: 1.5;
}
.prensa-email {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mustard-light);
}

/* ============================================
   CONTACTO
============================================ */
#contacto {
  padding: 88px 0;
  background: var(--paper-dark);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contacto-h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}
.contacto-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-item {
  padding: 12px 14px;
  background: var(--paper);
  border-left: 4px solid var(--red);
}
.contact-item-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 3px;
}
.contact-item-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.contact-item-val a { color: var(--red); }
.contact-item-val a:hover { color: var(--ink); }

.social-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
  transition: all 0.15s;
  display: inline-block;
}
.social-btn:hover { background: var(--ink); color: var(--white); }

/* Contact Form */
.contact-form {
  background: var(--ink);
  padding: 30px;
}
.cf-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.cf-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  font-style: italic;
}
.cf-field { margin-bottom: 14px; }
.cf-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.15s;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--red); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,0.18); }
.cf-field select option { background: #1a1a1a; }
.cf-field textarea { resize: vertical; min-height: 90px; }

.cf-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cf-captcha-q {
  font-family: var(--font-type);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.cf-captcha input {
  width: 72px !important;
  text-align: center;
}

.cf-honeypot { display: none !important; }

.cf-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 6px;
}
.cf-submit:hover { background: var(--red-bright); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cf-msg {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 0;
  display: none;
}
.cf-msg.ok  { background: rgba(46,180,80,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.cf-msg.err { background: rgba(220,50,50,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }

/* ============================================
   FOOTER
============================================ */
#footer {
  background: #090909;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-logo { margin-bottom: 14px; }
.footer-brand-logo img {
  height: 30px;
  filter: invert(1) brightness(0.7);
  opacity: 0.65;
}
.footer-brand-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
  margin-bottom: 16px;
}
.footer-brand-since {
  font-family: var(--font-type);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--mustard-light); }

.footer-contact-row { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 9px; line-height: 1.5; }
.footer-contact-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1px;
}
.footer-contact-row a { color: var(--red-bright); transition: color 0.15s; }
.footer-contact-row a:hover { color: var(--mustard-light); }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-family: var(--font-type); font-size: 10px; color: rgba(255,255,255,0.18); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--red-bright); }

.footer-bar { height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--mustard) 50%, var(--red) 100%); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .hero-body { grid-template-columns: 1fr; gap: 44px; }
  .hero-stats { order: -1; }
  .stat-box--red, .stat-box--quote { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(3n) { border-right: 1px solid var(--ink); }
  .svc:nth-child(2n) { border-right: none; }
  .historia-lead { grid-template-columns: 1fr; }
  .artistas-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-right { border-left: none; padding-left: 0; border-top: 3px solid rgba(255,255,255,0.2); padding-top: 32px; }
  .prensa-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .masthead-nav { display: none; }
  .masthead-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--ink);
    padding: 20px var(--pad);
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .masthead-cta { display: none; }
  .nav-burger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; }
  .artistas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .img-break { height: 260px; }
}
