.hero,
.awards,
.about,
.movement,
.pillars,
.about-page .about-manifesto-pillars {
  padding: var(--space-2xl) 0;
}

.pillars {
  --pillars-accent-light: var(--ac);
  --pillars-accent-dark: var(--on);
  padding-top: clamp(3rem, 5vh, 5rem);
  /* No background — inherits from body */
}

.about-page .about-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: clip;
}

.about-page .about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.18), rgba(7, 8, 12, 0.62)),
    url("https://on-offmode.com/wp-content/uploads/2026/03/back_hero_about.webp") center / cover no-repeat;
}

.about-page .about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.about-page .about-hero__content {
  display: grid;
  gap: var(--space-sm);
  max-width: 34rem;
}

.about-page .about-hero__content h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 7.2vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

/* About hero: fondo sigue oscuro en light → título en blanco solo aquí */
body.about-page[data-theme="light"] .about-hero__content h1 {
  color: var(--wh);
}

.about-page .about-hero__media {
  margin: 0;
  justify-self: end;
}

.about-page .about-hero__media img {
  width: min(100%, 34rem);
  max-height: 78svh;
  object-fit: contain;
  object-position: center top;
}

.about-page .about-movement {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  padding-block: clamp(4.5rem, 11vw, 7rem);
}

.about-page .about-movement__content {
  display: grid;
  gap: var(--space-sm);
}

.about-page .about-movement__content h2,
.about-page .press-kit__content h2 {
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.about-page .about-movement__content h2 {
  max-width: 18ch;
}

.about-page .about-movement__media {
  margin: 0;
  display: grid;
  justify-items: center;
}

.about-page .about-movement__media img {
  width: min(100%, 26rem);
  height: auto;
  object-fit: contain;
  animation: aboutOrbit 9s ease-in-out infinite;
}

.about-page .press-kit {
  position: relative;
  isolation: isolate;
  min-height: clamp(28rem, 78svh, 44rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about-page .press-kit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.56), rgba(8, 10, 15, 0.42)),
    url("https://on-offmode.com/wp-content/uploads/2026/03/beethoven_back-scaled.webp") center / cover no-repeat;
  background-attachment: fixed;
}

/* Light: fondo anclado al bloque (no al viewport) para que foto + velo no “sigan” al scroll sobre Pillars. */
body[data-theme="light"] .about-page .press-kit__bg {
  background-attachment: scroll;
}

/* Light mode: velo blanco solo dentro de .press-kit__bg; contenido por encima (z-index 2). */
body[data-theme="light"] .about-page .press-kit__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.82);
}

.about-page .press-kit__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-sm);
  max-width: 50rem;
  text-align: center;
  color: var(--wh);
}

.about-page .press-kit__content h2,
.about-page .press-kit__content p {
  color: var(--wh);
}

.about-page .press-kit__content .button {
  justify-self: center;
  width: auto;
}

.about-page .artist-section {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  overflow: visible;
  padding-block: clamp(3.75rem, 9svh, 7rem);
  min-height: clamp(36rem, 92svh, 56rem);
}

.about-page .artist-section::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline: calc(50% - 50vw);
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.52), rgba(7, 8, 12, 0.46)),
    url("https://on-offmode.com/wp-content/uploads/2026/03/red_dots_back-scaled.webp") center / cover no-repeat;
  background-attachment: fixed;
  opacity: 0.22;
}

.about-page .artist-section > * {
  position: relative;
  z-index: 1;
}

.about-page .artist-section__content h2 {
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.about-page .artist-section__media {
  margin: 0;
}

.about-page .artist-section__media img {
  width: 100%;
  min-height: 24rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-page .artist-section__content {
  display: grid;
  gap: var(--space-sm);
  max-width: 38rem;
}

@keyframes aboutOrbit {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0.55rem, -0.75rem, 0) rotate(0.45deg);
  }
  100% {
    transform: translate3d(-0.55rem, 0.5rem, 0) rotate(-0.35deg);
  }
}

@media (min-width: 64.0625rem) {
  .hero.section-anchor,
  .awards.section-anchor,
  .products.section-anchor,
  .about.section-anchor,
  .movement.section-anchor,
  .pillars.section-anchor,
  .about-manifesto-pillars.section-anchor,
  .site-footer.section-anchor {
    scroll-snap-align: start;
  }

  body {
    scroll-snap-type: y proximity;
  }
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--bg);
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__overlay {
  background: var(--overlay);
}

/* Light mode: velo blanco sobre el video para contraste del texto oscuro (oscuro sin cambios). */
body[data-theme="light"] .hero__overlay {
  background: rgba(255, 255, 255, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 0.85rem;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  max-width: 46rem;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 8vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero__copy {
  max-width: 38rem;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 1;
  display: none;
  align-items: center;
  transform: translateX(-50%);
}

.scroll-indicator__image {
  display: block;
  width: auto;
  height: 4rem;
}

.scroll-indicator__image--light {
  display: none;
}

body[data-theme="light"] .scroll-indicator__image--dark {
  display: none;
}

body[data-theme="light"] .scroll-indicator__image--light {
  display: block;
}

.film-modal {
  width: min(92vw, 60rem);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.film-modal::backdrop {
  background: rgba(4, 7, 10, 0.78);
  backdrop-filter: blur(8px);
}

.film-modal__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.film-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.film-modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: #000;
}

.awards__heading {
  margin-inline: auto;
  text-align: center;
}

.awards-carousel {
  display: block;
}

.awards-carousel__viewport {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding-block: 2.6rem 3rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.28) 5%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 88%,
    rgba(0, 0, 0, 0.28) 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.28) 5%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 88%,
    rgba(0, 0, 0, 0.28) 95%,
    transparent 100%
  );
}

/* Tablet/mobile: priorizar scroll vertical del documento; el swipe horizontal lo maneja el JS. */
@media (max-width: 64rem) {
  .awards-carousel__viewport {
    touch-action: pan-y;
  }
}

.awards-carousel__track {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: clamp(1.25rem, 1.8vw, 2rem);
  transition: transform 700ms cubic-bezier(0.22, 0.8, 0.2, 1);
  will-change: transform;
}

.award-card {
  display: grid;
  place-items: center;
  padding: 0.5rem;
  transition:
    transform 700ms cubic-bezier(0.22, 0.8, 0.2, 1),
    opacity 700ms cubic-bezier(0.22, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.22, 0.8, 0.2, 1);
}

.award-card__media {
  display: grid;
  place-items: center;
  width: 100%;
}

.award-card__media .award-card__img {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 12rem;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Dark site theme: `NN.webp` — Light site theme: `NN_dark.webp` (see body[data-theme]) */
.award-card__img--for-light-theme {
  display: none;
}

body[data-theme="light"] .award-card__img--for-dark-theme {
  display: none;
}

body[data-theme="light"] .award-card__img--for-light-theme {
  display: block;
}

.award-card.is-center {
  transform: scale(1.5);
  z-index: 2;
  filter: blur(0);
}

.award-card.is-side {
  opacity: 0.62;
  filter: blur(0.03rem);
}

.awards-carousel__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.awards-carousel__dots button {
  width: 0.6rem;
  height: 0.6rem;
  flex: 0 0 0.6rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform var(--base) var(--ease-standard),
    background-color var(--base) var(--ease-standard),
    border-color var(--base) var(--ease-standard);
}

.awards-carousel__dots button.is-active {
  transform: scale(1.33);
  border-color: var(--on);
  background: var(--on);
}

body[data-theme="light"] .awards-carousel__dots button:not(.is-active) {
  border-color: #a8a8a8;
  background: #cfcfcf;
  opacity: 1;
}

.products {
  overflow: hidden;
  padding: 0;
  /* No background — inherits from body */
}

.products-slider {
  display: grid;
  gap: 0;
  position: relative;
}

.products-slider__viewport {
  overflow: hidden;
}

.products-slider__track {
  display: flex;
  transition: transform 800ms cubic-bezier(0.22, 0.8, 0.2, 1);
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: var(--space-2xl) var(--space-md) calc(var(--space-2xl) + 3rem);
  min-height: clamp(28rem, 60vw, 42rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Full-width background image layer */
.product-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.product-slide__media {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.product-slide__media img {
  width: min(100%, 22rem);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.32));
  transition: transform var(--slow) var(--ease-standard);
}

.product-slide.is-active .product-slide__media img {
  transform: translateY(-0.5rem);
}

.product-slide__content {
  display: grid;
  gap: var(--space-sm);
  max-width: 32rem;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.product-slide__content .button {
  justify-self: center;
  width: auto;
  margin-top: var(--space-xs);
}

.product-slide__content h3 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pillar-card h3 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.products-slider__controls {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  z-index: 10;
  pointer-events: none; /* el wrapper no captura clicks */
}

.products-slider__controls > * {
  pointer-events: auto; /* solo los botones y dots los capturan */
}

.products-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.products-slider__dots button {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 0.65rem;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
}

.products-slider__dots button.is-active {
  background: var(--ac);
  border-color: var(--ac);
}

.about {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  /* No background needed — inherits from body which handles dark/light correctly */
}

.about > * {
  position: relative;
}

.about__media {
  position: relative;
  z-index: 1;
}

.about__media img {
  width: 100%;
  min-height: 22rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about__content {
  display: grid;
  gap: var(--space-md);
  max-width: 38rem;
}

.about__content .button--dark {
  justify-self: start;
}

.about__attribution {
  display: grid;
  justify-items: end;
  text-align: right;
  gap: 0.1rem;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-soft);
}

.about__signature {
  display: block;
  width: 10rem;
  margin-bottom: var(--space-2xs);
}

.about__signature img,
.about__signature-img {
  width: 100%;
  height: auto;
}

.about__signature-img--dark { display: none; }

html[data-theme="dark"] .about__signature-img--light { display: none; }
html[data-theme="dark"] .about__signature-img--dark  { display: block; }

.about__name {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.about__role {
  display: block;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.about__chips {
  display: none;
}

.about__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  background: transparent;
}

/* ── Movement: sticky-scroll cinematográfico ─────────────────────────────── */

.movement {
  position: relative;
  min-height: 250svh;
  background: rgb(242, 216, 79);
  color: #1f1b02;
  isolation: isolate;
  z-index: 1;
}

.movement::before,
.movement::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 5;
}

/* Degradado de apertura: bg → amarillo (~300-400px) */
.movement::before {
  top: 0;
  height: clamp(18rem, 30vh, 26rem);
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    color-mix(in srgb, rgb(242, 216, 79) 50%, var(--bg)) 55%,
    transparent 100%
  );
}

/* Degradado de cierre: amarillo → bg (~300-400px), por encima de las caritas */
.movement::after {
  bottom: 0;
  height: clamp(18rem, 30vh, 26rem);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, rgb(242, 216, 79) 50%, var(--bg)) 45%,
    var(--bg) 100%
  );
  z-index: 5;
}

/* Viewport sticky — el contenido se queda fijo mientras dura el scroll */
.movement__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.movement .eyebrow {
  color: #4a2a00;
}

.movement__content {
  position: relative;
  z-index: 4;
  text-align: center;
  width: min(calc(100% - 2rem), 46rem);
  margin-inline: auto;
}

/* Frase palabra por palabra */
.movement__headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em 0.45em;
  font-size: clamp(2.5rem, 7.5vw, 5rem);
  line-height: 0.92;
  max-width: 18ch;
  margin-inline: auto;
}

.movement__word {
  --word-progress: 0;
  display: inline-block;
  opacity: var(--word-progress);
  transform: translateY(calc((1 - var(--word-progress)) * 1.25rem));
  filter: blur(calc((1 - var(--word-progress)) * 0.35rem));
  transition: filter 0.1s ease-out;
  will-change: opacity, transform, filter;
}

.movement__faces {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.movement__face {
  position: absolute;
  top: var(--face-top, auto);
  right: var(--face-right, auto);
  bottom: var(--face-bottom, auto);
  left: var(--face-left, auto);
  width: var(--face-size, 5rem);
  height: var(--face-size, 5rem);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 68%),
    url("https://on-offmode.com/wp-content/uploads/2026/04/smile_low.webp") center / contain no-repeat;
  --face-travel-y: 0px;
  --face-dispersal: 0;
  opacity: calc(var(--face-opacity-base, 0.7) * (1 - var(--face-dispersal) * 0.6));
  transform:
    translate(
      0px,
      calc(var(--face-travel-y))
    )
    scale(calc(1 + var(--face-dispersal) * 0.15));
  filter: blur(calc(var(--face-blur-base, 0.1rem) * var(--face-blur-reduction, 1)));
  transition: opacity 0.2s ease-out;  /* solo opacity — transform sin transition para no laggy */
  will-change: opacity, transform, filter;
}

/* Capas de profundidad */
.movement__face--bg {
  --face-opacity-base: 0.38;
  --face-blur-base: 0.28rem;
}

.movement__face--mid {
  --face-opacity-base: 0.58;
  --face-blur-base: 0.14rem;
}

.movement__face--fg {
  --face-opacity-base: 0.78;
  --face-blur-base: 0.04rem;
}

/* Caritas detrás del texto: mitad del blur para que no distraigan */
.movement__face--near-text {
  --face-blur-reduction: 0.5;
}


.pillars-story {
  --pillar-count: 5;
  position: relative;
  min-height: calc(var(--pillar-count) * 74svh);
  overflow-x: clip;   /* prevent horizontal bleed from cards */
  overflow-y: visible; /* allow ascenders / watermark to breathe */
  isolation: isolate;
}

.pillars-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.02));
  opacity: 0.16;
}

.pillars-pin {
  position: sticky;
  top: calc(var(--header-height) + 6vh);
  display: grid;
  gap: clamp(2.5rem, 6vh, 4rem);
  z-index: 1;
}

.pillars__intro {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.8, 0.2, 1),
    transform 820ms cubic-bezier(0.22, 0.8, 0.2, 1);
}

.pillars__intro p {
  max-width: 54rem;
  text-wrap: balance;
}

.pillars-story.is-intro-ready .pillars__intro {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pillars-stage {
  min-height: clamp(34rem, 70svh, 44rem);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(0, 2.75rem, 0);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.22, 0.8, 0.2, 1);
}

.pillars-story.is-stage-ready .pillars-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pillar-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: var(--pillar-opacity, 0);
  filter: blur(var(--pillar-blur, 1.6rem));
  transform: translate3d(0, var(--pillar-y, 16rem), 0);
  pointer-events: none;
  overflow: visible;
}

/* Giant watermark number — aparece el último (delay 300ms) */
.pillar-card::before {
  content: attr(data-pillar-num);
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(18rem, 38vw, 32rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: color-mix(in srgb, var(--text) 6%, transparent);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  /* Aparición sucesiva: número aparece el último */
  opacity: var(--pillar-opacity, 0);
  transition: opacity 0.5s ease-out 0.3s;
}

.pillar-card--reverse::before {
  left: auto;
  right: 4%;
}

.pillar-card.is-active {
  pointer-events: auto;
}

.pillar-card.is-outgoing {
  pointer-events: none;
}

.pillar-card__index {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
}

.pillar-card__layout {
  display: grid;
  gap: clamp(1.5rem, 5vw, 2.5rem);
  align-items: center;
  width: min(100%, 72rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.pillar-card__copy {
  display: grid;
  gap: 1.1rem;
  max-width: 32rem;
  align-content: center;
  /* Aparición sucesiva: texto aparece 150ms después del personaje */
  opacity: var(--pillar-opacity, 0);
  transition: opacity 0.5s ease-out 0.15s;
}

.pillar-card__copy h3 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pillar-card__copy p {
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.5;
}

.pillar-card__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--pillar-color, var(--on));
}

/* ═══════════════════════════════════════════════════════════
   About — Pilares manifiesto (solo About; no usa .pillars / pillar-card de Home)
   ═══════════════════════════════════════════════════════════ */

.about-page .about-manifesto-pillars {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 52%);
  border-block: 1px solid var(--line);
}

/* Misma columna útil que cada pilar (≈ demo Manifesto 48rem), centrada */
.about-page .about-manifesto-pillars__intro.shell-container {
  width: min(calc(100% - 2rem), 48rem);
}

@media (min-width: 48rem) {
  .about-page .about-manifesto-pillars__intro.shell-container {
    width: min(calc(100% - 3rem), 48rem);
  }
}

.about-page .about-manifesto-pillars__intro {
  display: grid;
  gap: var(--space-sm);
  justify-items: center;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto clamp(2.25rem, 5.5vw, 3.75rem);
}

.about-page .about-manifesto-pillars__intro .eyebrow {
  color: var(--on);
}

.about-page .about-manifesto-pillars__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 3.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.about-page .about-manifesto-pillars__lede {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.94rem, 1.15vw, 1.06rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.about-page .about-manifesto-pillars__list {
  display: flex;
  flex-direction: column;
}

.about-page .about-manifesto-pillar {
  --amp-shift-y: 0.9rem;
  --amp-shift-x-lead: 0.26rem;
  --amp-shift-x-figure: 0.36rem;
  margin: 0;
  padding: clamp(2.1rem, 5vw, 3.6rem) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
}

.about-page .about-manifesto-pillar:last-child {
  border-bottom: 0;
  padding-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.about-page .about-manifesto-pillar__inner {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

/* Ancho alineado al demo Manifesto (.pd-manifesto max-width 48rem) */
.about-page .about-manifesto-pillar__inner.shell-container {
  width: min(calc(100% - 2rem), 48rem);
}

@media (min-width: 48rem) {
  .about-page .about-manifesto-pillar__inner.shell-container {
    width: min(calc(100% - 3rem), 48rem);
  }

  .about-page .about-manifesto-pillar__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
  }
}

.about-page .about-manifesto-pillar__lead {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.about-page .about-manifesto-pillar__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ac);
}

.about-page .about-manifesto-pillar__num {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 6.5vw, 4.1rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: color-mix(in srgb, var(--text) 13%, transparent);
  user-select: none;
}

.about-page .about-manifesto-pillar__body {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  min-width: 0;
}

.about-page .about-manifesto-pillar__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 22ch;
}

.about-page .about-manifesto-pillar__text {
  margin: 0;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.68;
  color: var(--text-soft);
  max-width: 40rem;
}

.about-page .about-manifesto-pillar__figure {
  margin: clamp(0.45rem, 1.35vw, 0.95rem) 0 0;
  max-width: 12rem;
  justify-self: start;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  outline: none;
}

.about-page .about-manifesto-pillar__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  opacity: calc(0.78 * var(--amp-s3, 0));
}

.about-page .about-manifesto-pillar[data-amp-settled] .about-manifesto-pillar__figure:hover img {
  opacity: 0.9;
}

/* Capas: home.js escribe --amp-s0…3 por artículo (scroll, sin blur) */
.about-page .about-manifesto-pillar [data-amp-layer="0"] {
  opacity: var(--amp-s0, 0);
  transform: translate3d(0, calc((1 - var(--amp-s0, 0)) * var(--amp-shift-y)), 0);
  will-change: opacity, transform;
}

.about-page .about-manifesto-pillar [data-amp-layer="1"] {
  opacity: var(--amp-s1, 0);
  transform: translate3d(0, calc((1 - var(--amp-s1, 0)) * var(--amp-shift-y)), 0);
  will-change: opacity, transform;
}

.about-page .about-manifesto-pillar [data-amp-layer="2"] {
  opacity: var(--amp-s2, 0);
  transform: translate3d(0, calc((1 - var(--amp-s2, 0)) * var(--amp-shift-y)), 0);
  will-change: opacity, transform;
}

.about-page .about-manifesto-pillar [data-amp-layer="3"] {
  opacity: 1;
  transform: translate3d(0, calc((1 - var(--amp-s3, 0)) * var(--amp-shift-y)), 0);
  will-change: opacity, transform;
}

@media (min-width: 48rem) {
  .about-page .about-manifesto-pillar [data-amp-layer="0"] {
    transform: translate3d(
      calc((1 - var(--amp-s0, 0)) * calc(-1 * var(--amp-shift-x-lead))),
      calc((1 - var(--amp-s0, 0)) * var(--amp-shift-y)),
      0
    );
  }

  .about-page .about-manifesto-pillar [data-amp-layer="3"] {
    transform: translate3d(
      calc((1 - var(--amp-s3, 0)) * var(--amp-shift-x-figure)),
      calc((1 - var(--amp-s3, 0)) * var(--amp-shift-y)),
      0
    );
  }
}

@media (max-width: 47.9375rem) {
  .about-page .about-manifesto-pillar {
    --amp-shift-y: 0.68rem;
  }

  .about-page .about-manifesto-pillar [data-amp-layer="3"] {
    transform: translate3d(0, calc((1 - var(--amp-s3, 0)) * var(--amp-shift-y)), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-manifesto-pillar [data-amp-layer] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .about-page .about-manifesto-pillar__figure img {
    opacity: 0.78;
  }

  /* Movement: bloque estático, sin sticky ni animación */
  .movement {
    min-height: 100svh;
  }

  .movement__sticky {
    position: relative;
    height: auto;
    min-height: 100svh;
  }

  .movement__word {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .movement__face {
    opacity: var(--face-opacity-base, 0.7);
    transform: none;
  }
}

.pillar-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
  /* Aparición sucesiva: personaje aparece primero (sin delay) */
  opacity: var(--pillar-opacity, 0);
  transition: opacity 0.5s ease-out 0s;
}

.pillar-card__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.30));
}

@media (max-width: 47.9375rem) {
  .site-header__actions .theme-toggle--header {
    display: inline-flex;
  }

  .hero {
    text-align: center;
  }

  .hero__content {
    justify-items: center;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero h1,
  .hero__copy {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .awards-carousel__viewport {
    padding-block: 2rem 2.6rem;
  }

  .about-page .about-hero {
    text-align: center;
  }

  .about-page .about-hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about-page .about-hero__media {
    order: -1;
    justify-self: center;
    width: min(100%, 21rem);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
  }

  .about-page .about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    max-height: none;
  }

  .about-page .about-hero__bg {
    background-position: center, 82% center;
  }

  .about-page .about-hero__content {
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }

  .about-page .about-hero__content h1 {
    margin-inline: auto;
    max-width: 16ch;
  }

  .about-page .about-movement {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page .about-movement__media {
    order: -1;
  }

  .about-page .about-movement__content {
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }

  .about-page .about-movement__media img {
    width: min(100%, 17rem);
  }

  .about-page .press-kit__bg {
    background-attachment: scroll;
  }

  .about-page .artist-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page .artist-section::before {
    background-attachment: scroll;
    background-position: center, 60% center;
  }

  .about-page .artist-section__content {
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }

  .movement {
    min-height: 220svh; /* un poco menos de scroll en mobile */
  }

  .movement__content {
    width: min(calc(100% - 1.5rem), 30rem);
    text-align: center;
  }

  .movement__headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .movement__face {
    top: var(--face-mobile-top, var(--face-top));
    bottom: var(--face-mobile-bottom, var(--face-bottom));
    left: var(--face-mobile-left, var(--face-left));
    right: var(--face-mobile-right, var(--face-right));
    width: var(--face-mobile-size, calc(var(--face-size, 5rem) * 0.76));
    height: var(--face-mobile-size, calc(var(--face-size, 5rem) * 0.76));
  }

  /* Pillars: lectura continua, sin sticky ni carrusel visual (desktop sin cambios ≥48rem). */
  .pillars-story {
    min-height: 0;
    overflow: visible;
  }

  .pillars-pin {
    position: static;
    top: auto;
    gap: 2rem;
  }

  .pillars__intro {
    opacity: 1;
    transform: none;
  }

  .pillars-stage {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    opacity: 1;
    transform: none;
  }

  .pillar-card {
    position: relative;
    inset: auto;
    opacity: 1;
    filter: none;
    transform: none;
    pointer-events: auto;
  }

  .pillar-card__layout {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
    gap: clamp(1.5rem, 5vw, 2.5rem);
    width: 100%;
    max-width: none;
  }

  .pillar-card--media-right .pillar-card__copy,
  .pillar-card--reverse .pillar-card__copy {
    grid-area: copy;
    text-align: center;
    justify-items: center;
    max-width: none;
  }

  .pillar-card--media-right .pillar-card__media,
  .pillar-card--reverse .pillar-card__media {
    grid-area: media;
    max-width: min(80%, 20rem);
  }

  .pillar-card::before {
    font-size: clamp(10rem, 40vw, 16rem);
    top: 18%;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }

  .pillar-card--reverse::before {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }

  .about {
    text-align: center;
  }

  .about__content {
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }

  .about__content .button--dark {
    justify-self: center;
  }

  .about__attribution {
    justify-items: center;
    text-align: center;
  }

  .about__signature {
    margin-inline: auto;
    width: 8rem;
  }

  .site-footer {
    text-align: center;
  }

  .footer-block {
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-form {
    justify-items: center;
  }

  .footer-form label {
    width: min(100%, 24rem);
    text-align: center;
  }

  .footer-form .button {
    justify-self: center;
    margin-inline: auto;
  }
}

@media (min-width: 48rem) {
  .hero__overlay {
    background: linear-gradient(180deg, rgba(7, 8, 12, 0.22), rgba(7, 8, 12, 0.7));
  }

  .about-page .about-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  }

  .about-page .about-movement {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
  }

  .about-page .artist-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }

  .pillars-story {
    min-height: calc(var(--pillar-count) * 88svh);
  }

  .pillars-pin {
    top: calc(var(--header-height) + 5vh);
    gap: clamp(2rem, 4.5vh, 3rem);
  }

  .pillar-card__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .pillar-card--media-right .pillar-card__layout {
    grid-template-areas: "copy media";
  }

  .pillar-card--media-right .pillar-card__copy {
    grid-area: copy;
    text-align: right;
    justify-items: end;
  }

  .pillar-card--media-right .pillar-card__media { grid-area: media; }

  .pillar-card--reverse .pillar-card__layout {
    grid-template-areas: "media copy";
  }

  .pillar-card--reverse .pillar-card__copy {
    grid-area: copy;
    text-align: left;
    justify-items: start;
  }

  .pillar-card--reverse .pillar-card__media { grid-area: media; }
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .about__content {
    max-width: 42rem;
  }
}

@media (min-width: 64.0625rem) {
  .hero,
  .awards,
  .about,
  .about-page .about-manifesto-pillars {
    padding: var(--space-3xl) 0;
  }

  .pillars {
    padding-top: clamp(3rem, 5vh, 5rem);
    padding-bottom: var(--space-3xl);
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 1rem);
  }

  .hero__content {
    max-width: 50rem;
    padding-bottom: clamp(5.5rem, 14vh, 9rem);
    margin-inline: clamp(5rem, 7vw, 6.5rem) auto;
    transform: translateY(clamp(1rem, 2vh, 1.5rem));
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero__copy {
    max-width: 40rem;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(7, 8, 12, 0.16), rgba(7, 8, 12, 0.58));
  }

  .awards-carousel__dots {
    display: flex;
  }

  .scroll-indicator {
    display: inline-flex;
    /* Ancla al borde inferior *visible* (svh − header), sin quedar bajo el fold si el hero es más alto que el viewport por padding. */
    bottom: auto;
    top: max(
      0.75rem,
      min(
        calc(100svh - var(--header-height) - 5.5rem - env(safe-area-inset-bottom, 0px)),
        calc(100% - 5rem)
      )
    );
  }

  .products-slider__controls {
    justify-content: center;
  }

  .product-slide {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "media content";
    justify-items: start;
    text-align: left;
    padding-inline: clamp(var(--space-xl), 8vw, 8rem);
    min-height: clamp(34rem, 50vw, 46rem);
    gap: var(--space-2xl);
  }

  .product-slide__media {
    grid-area: media;
    justify-self: center;
    align-self: center;
  }

  .product-slide__media img {
    width: min(100%, 48rem);
  }

  .product-slide__content {
    grid-area: content;
    justify-items: start;
    align-self: center;
  }

  .product-slide__content .button {
    justify-self: start;
    margin-top: var(--space-sm);
  }

  .about {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: var(--space-2xl);
  }

  .movement__headline {
    font-size: clamp(3rem, 7.5vw, 5rem);
  }

  .pillars-story {
    min-height: calc(var(--pillar-count) * 108svh);
  }

  .pillars-pin {
    top: calc(var(--header-height) + 6vh);
    gap: clamp(1.75rem, 4vh, 3rem);
  }

  .pillars-stage {
    min-height: clamp(36rem, 68svh, 46rem);
  }

  .pillar-card__copy {
    max-width: 30rem;
  }

  /* Mobile pillar animation: fade + slide-up por sub-elemento via IntersectionObserver */
  .pillar-card__media {
    transform: translateY(var(--pillar-y, 20px));
    transition:
      opacity 0.55s ease-out 0s,
      transform 0.65s cubic-bezier(0.22, 0.8, 0.2, 1) 0s;
  }

  .pillar-card__copy {
    transform: translateY(var(--pillar-y, 20px));
    transition:
      opacity 0.55s ease-out 0.12s,
      transform 0.65s cubic-bezier(0.22, 0.8, 0.2, 1) 0.12s;
  }
}

/* ─── Film feature ─────────────────────────────────────────────────────────── */

.film-feature {
  display: grid;
  gap: var(--space-xl);
  padding-block: var(--space-3xl);
}

.film-feature__player {
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.film-feature__poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bk);
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.film-feature__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease-standard),
              opacity var(--slow) var(--ease-standard);
}

.film-feature__poster:hover img,
.film-feature__poster:focus-visible img {
  transform: scale(1.03);
  opacity: 0.82;
}

.film-feature__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--wh);
  pointer-events: none;
}

.film-feature__play svg {
  width: clamp(3.5rem, 8vw, 5rem);
  height: clamp(3.5rem, 8vw, 5rem);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transition: transform var(--base) var(--ease-standard),
              opacity var(--base) var(--ease-standard);
}

.film-feature__poster:hover .film-feature__play svg,
.film-feature__poster:focus-visible .film-feature__play svg {
  transform: scale(1.1);
}

.film-feature__poster:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.film-feature__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  .film-feature__poster img,
  .film-feature__play svg {
    transition: none;
  }
}

/* ─── Footer form feedback messages (WordPress AJAX) ──────────────────────── */

.footer-form__message {
  margin-top: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.footer-form__message.is-success {
  background: rgba(87, 255, 6, 0.12);
  color: var(--on);
  border: 1px solid rgba(87, 255, 6, 0.25);
}

.footer-form__message.is-error {
  background: rgba(230, 0, 20, 0.1);
  color: #ff4d5a;
  border: 1px solid rgba(230, 0, 20, 0.2);
}

/* ─── Dark mode — explicit section overrides ─────────────────────────────────
   Triple-layer defense against WordPress inline styles that force body white.
   These selectors win because they are more specific than anything WP injects.
   ──────────────────────────────────────────────────────────────────────────── */

html[data-theme="dark"] .pillars,
html[data-theme="dark"] .about {
  background-color: #0a0a0a !important;
}

/* Light mode equivalents */
html[data-theme="light"] .pillars,
html[data-theme="light"] .about {
  background-color: #f5f6f2 !important;
}

/* Productos: tema claro forzado, independiente del tema global */
.products {
  --bg: #f5f6f2;
  --bg-elevated: rgba(255, 255, 255, 0.85);
  --bg-card: rgba(255, 255, 255, 0.92);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #10141c;
  --text-soft: rgba(16, 20, 28, 0.72);
  --line: rgba(16, 20, 28, 0.12);
  --shadow-soft: 0 18px 40px rgba(53, 68, 92, 0.12);
  --shadow-card: 0 20px 50px rgba(53, 68, 92, 0.18);

  background-color: #f5f6f2 !important;
  color: #10141c !important;
}
