/* ============================================================
   Ana Pao Marin · Sitio Oficial · modeling.css
   Mundo 1 · Modelaje · Pasarela & Editorial
   Stage / Runway concept con flashes de cámara y strobe
   ============================================================ */

.world-modeling {
  --w: var(--gold);
  --gold-soft: #fde68a;
  position: relative;
  padding: 90px 0 140px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(15,12,22,.6), transparent 60%),
    linear-gradient(180deg, #07060a 0%, #0c0a0f 50%, #07060a 100%);
  overflow: hidden;
  isolation: isolate;
}
/* MODA watermark */
.world-modeling::before {
  content: 'RUNWAY';
  position: absolute;
  top: 60px;
  left: -40px;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(10rem, 24vw, 22rem);
  letter-spacing: -.05em;
  color: rgba(245,158,11,.035);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* ============================================================
   STAGE BACKDROP — spotlights, strobe, camera flashes
   ============================================================ */
.stage-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* Spotlight cones from above */
.stage-bg .spot {
  position: absolute;
  top: -10%;
  width: 70vw;
  height: 90%;
  background: radial-gradient(ellipse 28% 100% at 50% 0%,
    rgba(253,230,138,.10) 0%,
    rgba(253,230,138,.05) 30%,
    transparent 65%);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: .9;
  animation: spot-sway 9s ease-in-out infinite alternate;
}
.stage-bg .spot-l { left: -25%; transform: rotate(-12deg); }
.stage-bg .spot-c { left: 50%; transform: translateX(-50%); animation-duration: 11s; }
.stage-bg .spot-r { right: -25%; transform: rotate(12deg); animation-duration: 13s; }

@keyframes spot-sway {
  0%   { transform: translateX(-2%) rotate(-12deg); opacity: .7; }
  100% { transform: translateX(2%) rotate(-10deg); opacity: 1; }
}
.stage-bg .spot-c { animation-name: spot-sway-c; }
@keyframes spot-sway-c {
  0%   { transform: translateX(calc(-50% - 12px)); opacity: .7; }
  100% { transform: translateX(calc(-50% + 12px)); opacity: 1; }
}
.stage-bg .spot-r { animation-name: spot-sway-r; }
@keyframes spot-sway-r {
  0%   { transform: translateX(2%) rotate(10deg); opacity: .7; }
  100% { transform: translateX(-2%) rotate(12deg); opacity: 1; }
}

/* Full-section strobe wash — very rare, very subtle */
.stage-bg .strobe {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  animation: strobe 14s linear infinite;
  mix-blend-mode: screen;
}
@keyframes strobe {
  0%, 88%, 100% { opacity: 0; }
  89%, 90%      { opacity: .8; }
  91%, 91.5%    { opacity: 0; }
  92%, 92.6%    { opacity: .55; }
  93%           { opacity: 0; }
}

/* Camera flashes — small bright dots that pop randomly */
.stage-bg .flash {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px 4px rgba(255,255,255,.8),
    0 0 24px 10px rgba(253,230,138,.4),
    0 0 60px 18px rgba(245,158,11,.18);
  opacity: 0;
  animation: flash-pop 5s ease-out infinite;
  mix-blend-mode: screen;
}
@keyframes flash-pop {
  0%, 92%, 100%  { opacity: 0; transform: scale(.4); }
  93%            { opacity: 1; transform: scale(1.4); }
  95%            { opacity: .5; transform: scale(1); }
  97%            { opacity: 0; transform: scale(.7); }
}
/* 8 flashes scattered, each with own delay/position */
.stage-bg .f1 { top: 18%; left:  8%; animation-delay: .2s;  animation-duration: 6s;  }
.stage-bg .f2 { top:  9%; left: 32%; animation-delay: 1.7s; animation-duration: 7s;  }
.stage-bg .f3 { top: 22%; left: 65%; animation-delay: 3.1s; animation-duration: 5s;  }
.stage-bg .f4 { top: 12%; left: 88%; animation-delay: 4.4s; animation-duration: 6.5s; }
.stage-bg .f5 { top: 48%; left:  4%; animation-delay: 2.3s; animation-duration: 8s;  }
.stage-bg .f6 { top: 58%; left: 92%; animation-delay: 5.6s; animation-duration: 7.5s; }
.stage-bg .f7 { top: 78%; left: 22%; animation-delay: 3.9s; animation-duration: 9s;  }
.stage-bg .f8 { top: 84%; left: 72%; animation-delay: 6.8s; animation-duration: 6s;  }

/* ============================================================
   HEADER — eyebrow + title + lookbook ticket + tags
   ============================================================ */
.md-header {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(245,158,11,.18);
}
.md-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 70%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.md-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(245,158,11,.09), rgba(0,0,0,.3));
  border: 1px solid rgba(245,158,11,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
  box-shadow: 0 4px 22px -8px rgba(245,158,11,.3);
}
.md-eb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245,158,11,.9);
  animation: pulse 1.8s ease-in-out infinite;
}
.md-eb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245,158,11,.55);
}

.md-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
}
.md-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
  color: #fff;
  /* aire para descenders/swashes italic */
  padding-bottom: .08em;
}
.md-title em {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--gold) 0%, #fde68a 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* el swash final del italic se sale del bbox → padding-right + overflow visible */
  padding-right: .12em;
}

/* Lookbook "ticket" stub */
.md-ticket {
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,.25));
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px -18px rgba(245,158,11,.4);
}
.md-ticket-stub {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
}
.md-ticket-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,158,11,.5);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 50% 50%, rgba(245,158,11,.18), transparent 70%);
  box-shadow: 0 0 18px rgba(245,158,11,.28), inset 0 0 10px rgba(245,158,11,.18);
  flex-shrink: 0;
}
.md-ticket-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.md-ticket-label {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.md-ticket-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #fff 30%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.md-ticket-meta {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
}
.md-ticket-perforation {
  width: 1px;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(245,158,11,.45) 0 4px,
    transparent 4px 8px
  );
  margin: 6px 0;
}
.md-ticket-end {
  display: grid;
  place-items: center;
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(245,158,11,.08), transparent);
}
.md-ticket-no {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}

/* Tags row */
.md-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.md-tag {
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(245,158,11,.22);
  background: rgba(245,158,11,.04);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: all .25s ease;
}
.md-tag:hover {
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.5);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   FEATURED LOOK 01 — opening look hero
   ============================================================ */
.look-feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 60px;
}
.look-feature-num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 24px;
}
.lfn-label {
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.lfn-no {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff 0%, var(--gold-soft) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(245,158,11,.3);
  /* aire para que el swash/cola del italic no se corte */
  padding: .04em .12em .08em 0;
  margin: -10px 0;
}
.lfn-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.lfn-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold-soft);
  letter-spacing: .05em;
}

.look-feature-photo {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.9),
    0 0 0 1px rgba(245,158,11,.18),
    0 0 60px -20px rgba(245,158,11,.4);
}
.look-feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.look-feature-photo:hover img { transform: scale(1.04); }

.look-feature-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 55%,
    rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.look-cap {
  position: absolute;
  bottom: 22px;
  left: 26px;
  right: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lc-tag {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(245,158,11,.4);
  padding: 5px 12px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.lc-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.7);
}

/* ────────────────────────────────────────────────
   Paparazzi flash burst on hover
   - 3 staggered flashes from different positions
     (.look-flash + ::before + ::after)
   - 1 diagonal shutter-light sweep over the photo
   ──────────────────────────────────────────────── */
.look-flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  /* center / hero burst */
  --fx: 50%;
  --fy: 50%;
  --fs: 14px;
  background: radial-gradient(circle at var(--fx) var(--fy),
    #fff 0,
    rgba(255,255,255,.95) calc(var(--fs) * .6),
    rgba(253,230,138,.55) calc(var(--fs) * 2.4),
    rgba(253,230,138,0) calc(var(--fs) * 5)) no-repeat;
  filter: blur(.4px);
  mix-blend-mode: screen;
}
.look-flash::before,
.look-flash::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(.2);
  box-shadow:
    0 0 24px 10px rgba(255,255,255,.95),
    0 0 70px 26px rgba(253,230,138,.55);
  opacity: 0;
}
.look-flash::before { top: 28%; left: 22%; }   /* upper-left burst */
.look-flash::after  { top: 72%; left: 78%; }   /* lower-right burst */

/* Diagonal shutter-light sweep — uses .look-card::before */
.look-card::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,.0) 45%,
    rgba(255,255,255,.55) 50%,
    rgba(253,230,138,.35) 53%,
    rgba(255,255,255,0) 60%,
    transparent 70%);
  transform: translateX(-120%);
  opacity: 0;
  mix-blend-mode: screen;
}

/* Also a sweep on the featured opening photo */
.look-feature-photo::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,.55) 50%,
    rgba(253,230,138,.35) 53%,
    rgba(255,255,255,0) 60%,
    transparent 70%);
  transform: translateX(-120%);
  opacity: 0;
  mix-blend-mode: screen;
}

/* Trigger the multi-burst sequence */
.look-feature-photo:hover .look-flash,
.look-card:hover .look-flash {
  animation: paparazzi-main 1s ease-out;
}
.look-feature-photo:hover .look-flash::before,
.look-card:hover .look-flash::before {
  animation: paparazzi-burst 1s ease-out .12s;
}
.look-feature-photo:hover .look-flash::after,
.look-card:hover .look-flash::after {
  animation: paparazzi-burst 1s ease-out .34s;
}
.look-card:hover::before,
.look-feature-photo:hover::after {
  animation: paparazzi-sweep 1s ease-out .08s;
}

@keyframes paparazzi-main {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  18%  { opacity: .35; }
  32%  { opacity: 0; }
  46%  { opacity: .9; }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes paparazzi-burst {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.2); }
  18%  { opacity: 1; transform: translate(-50%, -50%) scale(1.6); }
  55%  { opacity: .25; transform: translate(-50%, -50%) scale(2.6); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(3.4); }
}
@keyframes paparazzi-sweep {
  0%   { opacity: 0; transform: translateX(-120%); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .look-feature-photo:hover .look-flash,
  .look-feature-photo:hover .look-flash::before,
  .look-feature-photo:hover .look-flash::after,
  .look-feature-photo:hover::after,
  .look-card:hover .look-flash,
  .look-card:hover .look-flash::before,
  .look-card:hover .look-flash::after,
  .look-card:hover::before { animation: none; }
}

/* ============================================================
   RUNWAY HEAD + GRID (looks 02-10)
   ============================================================ */
.runway-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245,158,11,.22);
}
.runway-head h3 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
}
.runway-head h3 strong {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}
.rh-meta {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rh-meta::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245,158,11,.9);
  animation: pulse 1.8s ease-in-out infinite;
}

.runway-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* ── Runway carousel nav buttons (visible solo ≤480px vía responsive.css) ── */
.runway-carousel { position: relative; }
.runway-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,.45);
  background: rgba(10,6,4,.82);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1rem;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background .25s, box-shadow .25s, transform .25s;
}
.runway-nav:hover {
  background: var(--gold);
  color: #0a0608;
  box-shadow: 0 0 20px rgba(245,158,11,.55);
  transform: translateY(-50%) scale(1.08);
}
.runway-nav.prev { left: 4px; }
.runway-nav.next { right: 4px; }
.runway-nav.at-edge { opacity: .45; }


.look-card {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #0a080d;
  border: 1px solid rgba(245,158,11,.14);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,.85);
  cursor: pointer;
  transition:
    transform .6s cubic-bezier(.2,.7,.2,1),
    box-shadow .4s ease,
    border-color .4s ease;
}
.look-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,.55);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.9),
    0 0 40px -10px rgba(245,158,11,.5);
}
.look-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.look-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.04);
}
.look-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65));
  opacity: .55;
  transition: opacity .4s ease;
  pointer-events: none;
}
.look-card:hover::after { opacity: .9; }

.look-num {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 3;
  font-family: var(--display);
  font-style: italic;
  font-size: .9rem;
  color: var(--gold);
  background: rgba(0,0,0,.55);
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(245,158,11,.35);
  backdrop-filter: blur(6px);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.look-num b {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  margin-left: 4px;
}

/* Editorial runway layout (9 cards, looks 02-10) — all portrait 4:5 / square */
.look-card.r-1 { grid-column: span 3; aspect-ratio: 4/5; }
.look-card.r-2 { grid-column: span 3; aspect-ratio: 4/5; }
.look-card.r-3 { grid-column: span 2; aspect-ratio: 1/1; }
.look-card.r-4 { grid-column: span 2; aspect-ratio: 1/1; }
.look-card.r-5 { grid-column: span 2; aspect-ratio: 1/1; }
.look-card.r-6 { grid-column: span 3; aspect-ratio: 4/5; }
.look-card.r-7 { grid-column: span 3; aspect-ratio: 4/5; }
.look-card.r-8 { grid-column: span 3; aspect-ratio: 4/5; }
.look-card.r-9 { grid-column: span 3; aspect-ratio: 4/5; }

/* ============================================================
   COVER MARQUEE (kept, restyled)
   ============================================================ */
.cover-marquee {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(245,158,11,.22);
  border-bottom: 1px solid rgba(245,158,11,.22);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cover-marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(253,230,138,.7);
  letter-spacing: .02em;
}
.cover-marquee-track i {
  color: var(--gold);
  font-style: normal;
  margin: 0 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .md-row { grid-template-columns: 1fr; gap: 24px; }
  .md-ticket { align-self: start; }

  .look-feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .look-feature-num {
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
  }
  .lfn-no { margin: 0; font-size: clamp(5rem, 16vw, 8rem); }
  .lfn-line { display: none; }

  .runway-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .look-card.r-1, .look-card.r-2,
  .look-card.r-5, .look-card.r-6, .look-card.r-7,
  .look-card.r-8, .look-card.r-9 { grid-column: span 2; aspect-ratio: 4/5; }
  .look-card.r-3, .look-card.r-4 { grid-column: span 2; aspect-ratio: 1/1; }
  /* Look 10 (r-9) queda solo: centrarlo en columnas 2-3 */
  .look-card.r-9 { grid-column: 2 / span 2; }
}

@media (max-width: 600px) {
  .world-modeling { padding: 60px 0 100px; }
  .md-eyebrow { font-size: .6rem; padding: 6px 14px; gap: 8px; }
  .runway-grid { grid-template-columns: 1fr; gap: 12px; }
  .look-card.r-1, .look-card.r-2,
  .look-card.r-3, .look-card.r-4, .look-card.r-5,
  .look-card.r-6, .look-card.r-7, .look-card.r-8, .look-card.r-9 {
    grid-column: span 1; aspect-ratio: 4/5;
  }
  .look-feature-photo { aspect-ratio: 4/5; }
  .runway-head { flex-direction: column; align-items: start; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-bg .spot, .stage-bg .strobe, .stage-bg .flash,
  .md-eb-dot, .rh-meta::before { animation: none !important; }
  .look-feature-photo:hover img,
  .look-card:hover img { transform: none; }
}
