:root {
  color-scheme: dark;
  --bg: #0c0c0f;
  --fg: #f4efe6;
  --muted: #a39e94;
  --accent: #c9a227;
  --accent-dim: #8b6914;
  --card: #16161c;
  --card-border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, "Segoe UI", Roboto, Ubuntu, sans-serif;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1a1520 0%, var(--bg) 55%);
  color: var(--fg);
  line-height: 1.6;
}

a { color: var(--accent); }

body:has(.site-header) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 1.25rem;
  background: rgba(12, 12, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.site-logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.site-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--fg);
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
}

.page-wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.page-hero {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  margin-bottom: 2rem;
}

.page-title {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.page-subtitle {
  text-align: center;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.prose {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.prose p { margin: 0 0 1rem; }

.prose strong { color: var(--fg); }

.character {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

@media (min-width: 640px) {
  .character {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2rem;
    padding: 1.75rem;
  }
  .character--reverse .character__media { order: 2; }
  .character--reverse .character__body { order: 1; }
}

.character__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 22rem;
  background: #0a0a0c;
}

.character__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.character__media--wide {
  aspect-ratio: 16 / 10;
  max-height: none;
}

.character__media--group img {
  object-position: 12% center;
}

.character__media--group-right img {
  object-position: 88% center;
}

.character__role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.character h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.character__body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.character__body p:last-child { margin-bottom: 0; }

.character__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.character__extras img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--card-border);
}

.gallery {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}

.gallery h2 {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.75rem;
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

.gallery__grid img--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

@media (max-width: 480px) {
  .gallery__grid img--wide { grid-column: span 1; }
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.music-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.music-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.music-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
}

.music-card h2 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--fg);
}

.music-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.cta-block {
  margin-top: 2.5rem;
  padding: 1.5rem;
  text-align: center;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

.cta-block p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #1a1204;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.site-footer {
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--card-border);
}

/* Rider técnico */
.page-wrap--wide { max-width: 58rem; }

.rider-meta {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

@media (min-width: 560px) {
  .rider-meta { grid-template-columns: repeat(2, 1fr); }
}

.rider-meta dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.2rem;
}

.rider-meta dd {
  margin: 0;
  color: var(--fg);
  font-size: 0.95rem;
}

.rider-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.rider-toc a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.rider-toc a:hover {
  color: var(--fg);
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.1);
}

.rider-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 5rem;
}

.rider-section h2 {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
  color: var(--fg);
}

.rider-section h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--accent);
}

.rider-section p,
.rider-section li {
  color: var(--muted);
  font-size: 0.96rem;
}

.rider-section ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.rider-section li { margin-bottom: 0.4rem; }

.rider-section li strong { color: var(--fg); }

.rider-note {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card);
}

.rider-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 36rem;
}

.rider-table th,
.rider-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.rider-table th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.25);
}

.rider-table tbody tr:last-child td { border-bottom: none; }

.rider-table td:first-child {
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.stage-plot {
  margin: 1.25rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #fff;
}

.stage-plot img {
  width: 100%;
  height: auto;
  display: block;
}

.stage-layout {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 520px) {
  .stage-layout { grid-template-columns: repeat(2, 1fr); }
}

.stage-layout li {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

.stage-layout strong {
  display: block;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.ref-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ref-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--muted);
}

.ref-list li:last-child { border-bottom: none; }

.rider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(201, 162, 39, 0.12);
}

/* Imprensa / press kit */
.press-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.75rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

@media (min-width: 640px) {
  .press-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    padding: 1.75rem;
  }
}

.press-hero__brand img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.press-hero__actions h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.press-hero__actions p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.press-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 5rem;
}

.press-section h2 {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

.press-section__lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.press-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.bio-card {
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

.bio-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.75rem;
}

.bio-card__head h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--accent);
}

.bio-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio-card__text {
  margin: 0;
  padding: 0;
  border: none;
}

.bio-card__text p {
  margin: 0 0 0.85rem;
  color: var(--fg);
  font-size: 0.96rem;
  line-height: 1.65;
  text-align: left;
}

.bio-card__text p:last-child {
  margin-bottom: 0;
}

.press-logo-row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

@media (min-width: 520px) {
  .press-logo-row {
    grid-template-columns: minmax(0, 14rem) 1fr;
  }
}

.press-logo-row img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

.press-logo-row p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.press-photo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.press-photo-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

.press-photo-list img {
  width: 5.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 6px;
}

.press-photo-list__label {
  font-size: 0.9rem;
  color: var(--fg);
}

.press-photo-list a {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.press-photo-list a:hover {
  text-decoration: underline;
}

.press-meta {
  margin-bottom: 0;
}
