/* Henry Orozco — Editorial dark theme (inspirado en estructura editorial) */

:root {
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ececee;
  --text-muted: #8b8b96;
  --accent: #c9a962;
  --accent-soft: rgba(201, 169, 98, 0.15);
  --spotify: #1db954;
  --youtube: #ff0033;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1080px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav__brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
  justify-self: start;
}

.nav__menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  justify-self: center;
}

.nav__link {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__social {
  justify-self: end;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__social:hover {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav__toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Hero — doble foto difuminada de fondo */
.hero {
  --hero-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.42);
  --hero-shadow-title: 0 2px 5px rgba(0, 0, 0, 0.58), 0 8px 26px rgba(0, 0, 0, 0.45);
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero__bg-stack {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
}

.hero__bg-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 46% 58% at 50% 50%,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.1) 42%,
      transparent 72%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 10%,
      transparent 42%,
      rgba(0, 0, 0, 0.22) 50%,
      transparent 58%,
      transparent 90%,
      rgba(0, 0, 0, 0.35) 100%
    );
  pointer-events: none;
}

.hero__bg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1) contrast(1.03) saturate(1.1);
  transform: none;
  opacity: 1;
}

.hero__bg--a {
  object-position: 42% 20%;
  -webkit-mask-image: radial-gradient(
    ellipse 92% 88% at 38% 48%,
    #000 46%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 92% 88% at 38% 48%,
    #000 46%,
    transparent 100%
  );
}

.hero__bg--b {
  object-position: 58% 22%;
  -webkit-mask-image: radial-gradient(
    ellipse 92% 88% at 62% 48%,
    #000 46%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 92% 88% at 62% 48%,
    #000 46%,
    transparent 100%
  );
}

.hero__shade--vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      ellipse 44% 56% at 50% 50%,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 135% 115% at 50% 50%,
      transparent 38%,
      rgba(0, 0, 0, 0.28) 100%
    );
  pointer-events: none;
}

.hero__shade--fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.12) 10%,
    transparent 22%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding-block: clamp(1.5rem, 4vh, 2.5rem) clamp(4rem, 8vh, 5.5rem);
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.hero__content {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.hero__credit {
  position: absolute;
  bottom: clamp(1.25rem, 3vh, 2rem);
  left: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: 0;
  align-self: auto;
  padding-top: 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: var(--hero-shadow);
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-shadow: var(--hero-shadow);
}

.hero__name {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.92;
  margin-bottom: 1.75rem;
}

.hero__name-line {
  display: block;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: var(--hero-shadow-title);
}

.hero__name-line--accent {
  color: var(--accent);
  font-style: italic;
  padding-left: 0.08em;
  text-shadow: var(--hero-shadow-title);
}

.hero__quote {
  margin: 0 auto 2.25rem;
  max-width: 28rem;
}

.hero__quote p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-style: italic;
  color: rgba(236, 236, 238, 0.95);
  line-height: 1.45;
  text-shadow: var(--hero-shadow);
}

.hero__highlight {
  padding-top: 1.5rem;
  max-width: 26rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__highlight .label {
  margin-bottom: 0.65rem;
  color: var(--accent);
  text-shadow: var(--hero-shadow);
}

.hero__highlight p {
  color: rgba(236, 236, 238, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.65;
  text-shadow: var(--hero-shadow);
}

.hero__cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: var(--hero-shadow);
  transition: color var(--transition);
}

.hero__cta:hover {
  color: var(--accent);
}

.hero__scroll {
  position: absolute;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: var(--hero-shadow);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Biography */
.section {
  padding-block: 5rem;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-desc {
  margin-inline: auto;
}

.section--bio {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  padding-block: clamp(4.5rem, 11vw, 6.5rem);
}

.section--bio .bio.container {
  width: 70%;
  max-width: 70%;
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.bio .section-head {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.bio .section-head--center::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.bio__body {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.bio__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.bio__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
}

.bio__lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.bio__text p {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.9vw, 1.15rem);
  line-height: 1.9;
}

.bio__text strong {
  color: var(--text);
  font-weight: 500;
}

.bio__pullquote {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid var(--border);
  background: none;
  width: 100%;
}

.bio__pullquote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.9vw, 1.6rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.bio__pullquote figcaption {
  margin-top: 1.15rem;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section--bio .bio.container {
    width: min(92%, 100% - 2rem);
    max-width: none;
  }
}

/* Instagram gallery */
.section--gallery {
  padding-block: 4rem 5rem;
  border-bottom: 1px solid var(--border);
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}

.inline-link:hover {
  opacity: 0.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__credit {
  padding: 0.65rem 0.75rem 0.75rem;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-cta {
  text-align: center;
  margin-top: 1.75rem;
}

.gallery-license {
  margin-top: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.gallery-license a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.gallery-license strong {
  color: var(--text);
  font-weight: 500;
}

/* Content */
.section--content {
  --content-radius: 10px;
  --content-gap: 0.85rem;
  --eltiempo: #0072ce;
  --verified: #3897f0;
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.section--content .container {
  width: min(1480px, 100% - 1.25rem);
}

.section--content .section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.section--content .section-desc {
  max-width: 34rem;
  font-size: 0.9rem;
}

.content-showcase {
  display: grid;
  gap: var(--content-gap);
  max-width: 100%;
  margin-inline: auto;
}

.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1rem, 2.5vw, 1.2rem);
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 14px;
}

.media-card__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  min-height: 1.75rem;
}

.media-card__head h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.media-card__title {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
}

.verified-badge {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--verified);
}

.media-card__desc {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  min-height: 2.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--content-radius);
  overflow: hidden;
}

.media-card .icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.icon--instagram { color: #E4405F; }
.icon--facebook { color: #1877F2; }
.icon--telegram { color: #26A5E4; }

.media-card__head--brand .media-card__title {
  align-items: center;
}

.media-card__brand-logo {
  display: block;
  width: auto;
  height: 1.15rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.08);
}

.blog-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.45rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.blog-profile__label {
  align-self: stretch;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  text-align: left;
}

.blog-profile__photo {
  margin: 0 0 0.45rem;
}

.blog-profile__photo img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.blog-profile__name {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.blog-profile__lead {
  font-size: 0.66rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-profile__bio {
  font-size: 0.64rem;
  line-height: 1.4;
  color: var(--text);
}

.media-card--blog .media-card__stage {
  align-items: stretch;
  justify-content: flex-start;
}

.media-card--facebook .media-card__stage,
.media-card--telegram .media-card__stage {
  align-items: stretch;
  justify-content: flex-start;
}

.social-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.45rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.social-profile__label {
  align-self: stretch;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  text-align: left;
}

.social-profile__photo {
  margin: 0 0 0.45rem;
}

.social-profile__photo img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.social-profile__photo--telegram img {
  border-color: rgba(38, 165, 228, 0.35);
}

.social-profile__name {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.social-profile__stat {
  font-size: 0.62rem;
  font-weight: 500;
  color: #26A5E4;
  margin-bottom: 0.35rem;
}

.social-profile__lead {
  font-size: 0.66rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-profile__bio {
  font-size: 0.64rem;
  line-height: 1.4;
  color: var(--text);
}

.link-arrow--blog:hover {
  color: var(--eltiempo);
}

.link-arrow--facebook:hover {
  color: #1877F2;
}

.link-arrow--telegram:hover {
  color: #26A5E4;
}

.instagram-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.instagram-embed iframe {
  width: auto;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: calc(var(--content-radius) - 2px);
}

.link-arrow--instagram:hover {
  color: #E4405F;
}

.content-block {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.content-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.content-block__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.content-block__head h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.icon {
  width: 22px;
  height: 22px;
}

.icon--spotify { color: var(--spotify); }
.icon--youtube { color: var(--youtube); }
.icon--tiktok { color: #25f4ee; }

.tiktok-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.5rem;
}

.tiktok-card__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}

.tiktok-card__link:hover {
  color: #25f4ee;
}

.tiktok-card__handle {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.tiktok-card__cta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tiktok-card__link:hover .tiktok-card__cta {
  color: #25f4ee;
}

.content-list {
  list-style: none;
  margin-bottom: 2rem;
}

.content-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.content-list__date {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  min-width: 90px;
}

.content-list__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.content-list__title:hover {
  color: var(--accent);
}

.media-card--spotify .media-card__stage {
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spotify-stack-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.35rem;
}

.spotify-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  transform: scale(0.9);
  transform-origin: center center;
}

.spotify-track {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.spotify-track__title {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.spotify-track__meta {
  color: var(--text-muted);
  font-size: 0.68rem;
  margin-bottom: 0.05rem;
}

.spotify-embed {
  width: 100%;
  flex-shrink: 0;
}

.spotify-embed--artist {
  height: 232px;
}

.spotify-embed--track {
  height: 80px;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.content-list__tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-list__views {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.youtube-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}

.youtube-grid--featured {
  max-width: none;
  margin-inline: 0;
}

.video-card {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: none;
  overflow: hidden;
}

.video-card__preview {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--content-radius) - 2px);
  overflow: hidden;
  text-decoration: none;
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.28);
  transition: background var(--transition);
}

.video-card__preview:hover .video-card__overlay {
  background: rgba(0, 0, 0, 0.42);
}

.video-card__play svg {
  display: block;
  width: clamp(2.5rem, 28%, 3.25rem);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.video-card__hint {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.video-card__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  padding-bottom: 0;
  border-radius: calc(var(--content-radius) - 2px);
  overflow: hidden;
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-cta {
  margin-top: auto;
  padding-top: 0.75rem;
  min-height: 1.75rem;
}

.link-arrow {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.link-arrow:hover {
  color: var(--text);
}

.link-arrow--spotify:hover {
  color: var(--spotify);
}

.platform-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: -0.75rem 0 1.75rem;
  max-width: 640px;
}

/* Contact */
.section--contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.contact__intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 3rem;
}

.contact__link {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--accent);
}

.contact__link span {
  color: var(--text-muted);
}

.contact__follow {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}

.social-card:hover {
  border-color: var(--social-color, var(--border));
  background: rgba(255, 255, 255, 0.04);
}

.social-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--social-color, var(--text));
}

.social-card__icon svg,
.social-card__icon img {
  width: 24px;
  height: 24px;
}

.social-card__logo {
  display: block;
  object-fit: contain;
}

.social-card__info h3 {
  font-size: 0.88rem;
  font-weight: 500;
}

.social-card__info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.site-footer__name {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.site-footer__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.section--gallery .gallery-grid,
.section--gallery .gallery-item {
  opacity: 1;
  transform: none;
}

/* WikiPerioData */
.section--wiki {
  background: var(--bg);
  border-block: 1px solid var(--border);
  padding-block: clamp(4.5rem, 11vw, 6.5rem);
}

.section--wiki .wiki.container {
  width: min(1080px, 100% - 2.5rem);
}

.section--wiki .section-head {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.wiki__body {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: clamp(3.5rem, 8vw, 5rem);
}

.wiki__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.wiki__lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.75;
  color: var(--text);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.wiki__lead a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.wiki__content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.wiki__block {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--border);
}

.wiki__heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.wiki__subheading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.wiki__block p,
.wiki__media p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.wiki__block p:last-child,
.wiki__media p:last-child {
  margin-bottom: 0;
}

.wiki__media {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.wiki__article-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wiki__article-list--bullets {
  list-style: disc;
}

.wiki__article-list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.wiki__article-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.wiki__press-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.wiki__press-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: 1.25rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.4rem 1.25rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  min-height: 11rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.press-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.press-card--eltiempo { border-top-color: #c8102e; }
.press-card--elespectador { border-top-color: #00a651; }
.press-card--las2orillas { border-top-color: #e85d04; }
.press-card--alponiente { border-top-color: #3a86ff; }
.press-card--conmarcapropia { border-top-color: #8338ec; }
.press-card--diariosocial { border-top-color: #ff006e; }
.press-card--dailymotion { border-top-color: #00d4ff; }
.press-card--antnoticias { border-top-color: #ffd60a; }

.press-card__outlet {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.press-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.35;
  flex: 1;
}

.press-card__title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.press-card__title a:hover {
  color: var(--accent);
}

.press-card__date {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.press-card__author {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.press-card__type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.75);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.section--wiki .section-head,
.section--wiki .wiki__body,
.section--wiki .wiki__content,
.section--wiki .wiki__press,
.section--wiki .wiki__press-head,
.section--wiki .press-grid,
.section--wiki .press-card {
  opacity: 1;
  transform: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__social {
    display: none;
  }

  .hero__content {
    width: min(100%, 520px);
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  }

  .hero__name-line {
    font-size: clamp(2.85rem, 6vw, 4rem);
  }
}

/* iPad y tablets — incluye landscape (1024px+) */
@media (min-width: 768px) and (hover: none) and (pointer: coarse) {
  .hero__bg--b {
    object-position: 14% 15%;
    -webkit-mask-image: radial-gradient(
      ellipse 88% 84% at 48% 44%,
      #000 46%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 88% 84% at 48% 44%,
      #000 46%,
      transparent 100%
    );
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero__content {
    width: min(100%, 560px);
  }

  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .content-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .media-card {
    padding: 1rem;
  }

  .media-card__head h3 {
    font-size: 1.05rem;
  }

  .media-card__desc {
    font-size: 0.72rem;
    min-height: 2.1rem;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .content-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .media-card--spotify .spotify-stack {
    transform: none;
    width: 100%;
    max-width: 100%;
    gap: 0.5rem;
  }

  .media-card--spotify .spotify-stack-wrap {
    padding: 0.5rem;
  }

  .media-card--spotify .spotify-embed--artist {
    height: 200px;
  }

  .media-card--spotify .spotify-embed--track {
    height: 76px;
  }

  .media-card--spotify .spotify-track__title {
    font-size: 0.84rem;
  }

  .media-card--spotify .spotify-track__meta {
    font-size: 0.66rem;
  }
}

/* iPad landscape en grid de 4 columnas */
@media (min-width: 1100px) and (hover: none) and (pointer: coarse) {
  .media-card--spotify .spotify-stack {
    transform: scale(0.88);
    transform-origin: center center;
    gap: 0.35rem;
  }

  .media-card--spotify .spotify-embed--artist {
    height: 172px;
  }

  .media-card--spotify .spotify-embed--track {
    height: 68px;
  }

  .media-card--spotify .spotify-track__title {
    font-size: 0.8rem;
  }

  .media-card--spotify .spotify-track__meta {
    font-size: 0.62rem;
  }
}

@media (min-width: 768px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile y tablet — menú hamburguesa para que todas las pestañas sean visibles */
@media (max-width: 1023px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__social {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    justify-self: stretch;
    z-index: 99;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-inline: 1.25rem;
    padding-block: clamp(1.5rem, 4vh, 2.5rem) max(4.5rem, calc(4rem + env(safe-area-inset-bottom)));
  }

  .hero__content {
    width: min(100%, 26rem);
    padding: clamp(1.25rem, 4vw, 1.75rem) clamp(0.75rem, 3vw, 1rem);
  }

  .hero__name-line {
    font-size: clamp(2.5rem, 9vw, 3.25rem);
  }

  .hero__quote {
    max-width: 22rem;
    margin-bottom: 1.5rem;
  }

  .hero__quote p {
    font-size: clamp(1.05rem, 3.6vw, 1.2rem);
    line-height: 1.45;
    text-wrap: pretty;
  }

  .hero__highlight {
    max-width: 22rem;
  }

  .hero__highlight p {
    font-size: 0.9rem;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .hero__credit {
    position: static;
    align-self: center;
    text-align: center;
    margin-top: 1.25rem;
  }

  .hero__bg-stack {
    grid-template-columns: 1fr 1fr;
  }

  .hero__bg {
    filter: brightness(1) contrast(1.02) saturate(1.08);
  }

  .hero__bg--a {
    object-position: center 18%;
    -webkit-mask-image: radial-gradient(
      ellipse 90% 86% at 50% 44%,
      #000 44%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 90% 86% at 50% 44%,
      #000 44%,
      transparent 100%
    );
  }

  .hero__bg--b {
    object-position: 14% 18%;
    -webkit-mask-image: radial-gradient(
      ellipse 90% 86% at 50% 44%,
      #000 44%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 90% 86% at 50% 44%,
      #000 44%,
      transparent 100%
    );
  }

  .section {
    padding-block: clamp(3rem, 8vw, 4.5rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .gallery-item__overlay {
    opacity: 1;
  }

  .content-list__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact__links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
