/* Hero video + clickable animal hit areas */

.ph-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ph-hero {
  padding: 0;
  background: var(--ph-bg-deep);
}

.ph-hero__frame {
  width: 100%;
  margin: 0;
  /* Slightly shorter than 16:9 — crops via cover, no stretch */
  aspect-ratio: 18 / 9;
  position: relative;
  background: #0a0b0f; /* keep stage near-black for marble video */
}

.ph-hero__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0b0f;
}

.ph-hero__poster,
.ph-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  /* Keep media on its own compositor layer — avoid CSS filters (they soften). */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ph-hero__video {
  z-index: 1;
}

.ph-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Lighter read pool — was ~0.78 and muddied animals/marble */
  background:
    radial-gradient(
      ellipse 50% 54% at 35% 38%,
      rgba(7, 9, 18, 0.4) 0%,
      rgba(7, 9, 18, 0.18) 38%,
      rgba(7, 9, 18, 0.05) 62%,
      transparent 78%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 20%, transparent 78%, rgba(0, 0, 0, 0.26) 100%);
}

.ph-hero__orbit {
  position: absolute;
  left: 35%;
  top: 36%;
  width: min(72vmin, 44rem);
  height: min(72vmin, 44rem);
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  border-radius: 50%;
  border: 1px dashed rgba(240, 199, 94, 0.22);
  box-shadow:
    0 0 0 2.8rem rgba(212, 255, 0, 0.015),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(circle at 18% 32%, var(--ph-glow-lime) 0 0.22rem, transparent 0.28rem),
    radial-gradient(circle at 78% 28%, var(--ph-glow-cyan) 0 0.18rem, transparent 0.24rem),
    radial-gradient(circle at 86% 62%, #ff7eb6 0 0.2rem, transparent 0.26rem),
    radial-gradient(circle at 22% 74%, var(--ph-orbit-gold) 0 0.16rem, transparent 0.22rem),
    radial-gradient(circle at 50% 12%, #ff7eb6 0 0.14rem, transparent 0.2rem);
  opacity: 0.28;
  animation: ph-hero-orbit-spin 64s linear infinite;
}

.ph-hero__copy {
  position: absolute;
  left: 35%;
  top: 38%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: min(81%, 41.6rem);
  max-width: calc(100% - 2rem);
  pointer-events: none;
  text-align: center;
  animation: ph-hero-copy-in 900ms var(--ph-ease-out) both;
}

.ph-hero__copy a {
  pointer-events: auto;
}

.ph-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-family: var(--ph-font-ui);
  font-size: clamp(0.6rem, 1.04vw, 0.73rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.ph-hero__eyebrow-dot {
  width: 0.47rem;
  height: 0.47rem;
  border-radius: 50%;
  background: var(--ph-glow-lime);
  box-shadow: 0 0 10px rgba(212, 255, 0, 0.55);
  flex-shrink: 0;
}

.ph-hero__headline {
  margin: 0;
}

.ph-hero__brand {
  display: block;
  font-family: var(--ph-font-ui);
  font-weight: 800;
  font-size: clamp(2.7rem, 8.53vw, 6.03rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.92;
  color: #f7f8fb;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 36px rgba(0, 0, 0, 0.7);
  -webkit-font-smoothing: antialiased;
}

.ph-hero__tagline {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--ph-font-ui);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.91vw, 2.08rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f7f8fb;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.ph-hero__tagline-accent {
  font-family: var(--ph-font-display);
  font-style: italic;
  font-weight: 550;
  font-size: 1.12em;
  color: #ff7eb6;
  margin: 0 0.12em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.ph-hero__lead {
  margin: 0.95rem auto 0;
  max-width: 29.1rem;
  font-family: var(--ph-font-display);
  font-style: italic;
  font-weight: 450;
  font-size: clamp(0.96rem, 1.4vw, 1.16rem);
  line-height: 1.45;
  color: #e8c878;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.35rem;
  margin-top: 1.35rem;
}

.ph-hero__chips {
  display: none;
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ph-hero__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 255, 0, 0.35);
  background: rgba(10, 11, 15, 0.55);
  color: var(--ph-text);
  font-family: var(--ph-font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.ph-hero__chip:hover,
.ph-hero__chip:focus-visible {
  border-color: var(--ph-glow-lime);
  color: var(--ph-glow-lime);
  outline: 2px solid var(--ph-glow-lime);
  outline-offset: 2px;
}

.ph-hero__cta-label--short {
  display: none;
}

.ph-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.96rem;
  padding: 0.75rem 1.51rem;
  border-radius: 999px;
  font-family: var(--ph-font-ui);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.14vw, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0c10;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transition: transform 260ms var(--ph-ease-out), box-shadow 260ms, background 220ms;
}

.ph-hero__cta:hover {
  color: #0a0c10;
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.ph-hero__cta-arrow {
  font-size: 0.95em;
  line-height: 1;
}

.ph-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ph-font-ui);
  font-size: clamp(0.71rem, 1.04vw, 0.79rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 0.15rem;
  transition: color 220ms ease, border-color 220ms ease;
}

.ph-hero__link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.ph-hero__link-arrow {
  font-size: 1.05em;
  line-height: 1;
}

.ph-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  border-top: 0;
}

.ph-hero__stat {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0;
}

.ph-hero__stat-value {
  margin: 0;
  font-family: var(--ph-font-ui);
  font-size: clamp(1.09rem, 2.08vw, 1.51rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ph-glow-lime);
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.ph-hero__stat-label {
  margin: 0;
  font-family: var(--ph-font-ui);
  font-size: clamp(0.64rem, 1.04vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.ph-hero__animals {
  position: absolute;
  inset: 0;
  z-index: 4;
  cursor: default;
  pointer-events: none;
}

.ph-animal {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: transparent;
  pointer-events: none;
  z-index: 4;
}

.ph-animal.is-hot {
  pointer-events: auto;
  cursor: pointer;
  z-index: 5; /* stay under copy so brand/CTAs keep covering */
}

.ph-animal__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.ph-animal.is-bird { z-index: 4; }
.ph-animal.is-cat { z-index: 4; }
.ph-animal.is-fish { z-index: 4; }
.ph-animal.is-rabbit { z-index: 4; }

.ph-animal.is-hot.is-bird,
.ph-animal.is-hot.is-cat,
.ph-animal.is-hot.is-fish,
.ph-animal.is-hot.is-rabbit {
  z-index: 5;
}

@keyframes ph-hero-copy-in {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes ph-hero-orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 900px) {
  .ph-hero__copy {
    width: min(88%, 34rem);
  }

  .ph-hero__orbit {
    width: min(78vmin, 34rem);
    height: min(78vmin, 34rem);
    opacity: 0.7;
  }
}

@media (max-width: 720px) {
  /* Mobile composition: readable copy + chips; animal masks decorative only. */
  .ph-hero__frame {
    aspect-ratio: 4 / 5;
    max-height: min(78vh, 36rem);
  }

  .ph-hero__copy {
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: min(92%, 22rem);
    max-width: calc(100% - 1.5rem);
    text-align: center;
  }

  .ph-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 0.45rem;
    font-size: 0.58rem;
  }

  .ph-hero__brand {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    letter-spacing: 0.08em;
    line-height: 0.95;
  }

  .ph-hero__tagline {
    margin-top: 0.25rem;
    font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    line-height: 1.15;
  }

  .ph-hero__tagline-accent {
    font-size: 1.04em;
    margin: 0 0.06em;
  }

  .ph-hero__lead {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    margin: 0.55rem auto 0;
    max-width: 18rem;
    font-size: 0.86rem;
    line-height: 1.4;
    color: rgba(245, 242, 236, 0.88);
  }

  .ph-hero__actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .ph-hero__cta-label--full {
    display: none;
  }

  .ph-hero__cta-label--short {
    display: inline;
  }

  .ph-hero__cta {
    min-height: 44px;
    padding: 0.65rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    gap: 0.35rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  }

  .ph-hero__cta-arrow {
    font-size: 0.85em;
  }

  .ph-hero__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.5rem;
  }

  .ph-hero__chips {
    display: flex;
  }

  .ph-hero__animals {
    opacity: 0.55;
    pointer-events: none;
  }

  .ph-hero__stats {
    display: none;
  }

  .ph-hero__orbit {
    opacity: 0.35;
    width: min(55vmin, 20rem);
    height: min(55vmin, 20rem);
  }

  .ph-hero__veil {
    background:
      radial-gradient(
        ellipse 55% 50% at 50% 40%,
        rgba(7, 9, 18, 0.55) 0%,
        rgba(7, 9, 18, 0.28) 45%,
        transparent 75%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 28%, transparent 70%, rgba(0, 0, 0, 0.35) 100%);
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  @keyframes ph-hero-copy-in {
    from {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 8px));
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-hero__video {
    display: none;
  }

  .ph-hero__copy {
    animation: none;
  }

  .ph-hero__orbit {
    animation: none;
  }
}

/* Manifesto */
.ph-manifesto {
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.02), transparent 40%),
    var(--ph-bg);
  border-top: 1px solid rgba(255, 248, 240, 0.06);
}

.ph-manifesto__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (min-width: 900px) {
  .ph-manifesto__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.ph-manifesto__quote {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--ph-radius-xl);
  background: linear-gradient(160deg, rgba(255, 77, 166, 0.14), rgba(212, 255, 0, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--ph-elev-soft);
}

.ph-manifesto__quote p {
  margin: 0;
  font-family: var(--ph-font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.ph-manifesto__quote footer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ph-text-muted);
}

/* Species runway */
.ph-runway {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6.5rem);
  background: var(--ph-bg-mid);
  border-top: 1px solid rgba(255, 248, 240, 0.05);
}

.ph-runway__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ph-runway__track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ph-runway__track {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem;
  }
}

.ph-runway__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--ph-radius-lg);
  text-decoration: none;
  color: #fff;
  min-height: 20rem;
  background: var(--ph-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 320ms var(--ph-ease-out), border-color 320ms, box-shadow 320ms;
}

.ph-runway__item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 255, 0, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.ph-runway__visual {
  position: absolute;
  inset: 0;
}

.ph-runway__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  transition: transform 520ms var(--ph-ease-out);
}

.ph-runway__item--peces .ph-runway__visual img {
  object-position: center center;
}

.ph-runway__item--pajaros .ph-runway__visual img {
  object-position: center 25%;
}

.ph-runway__item--conejos .ph-runway__visual img {
  object-position: center 40%;
}

.ph-runway__item:hover .ph-runway__visual img {
  transform: scale(1.08);
}

.ph-runway__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 1.2rem 1.3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 9, 12, 0.55) 40%, rgba(7, 9, 12, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ph-runway__meta .ph-eyebrow {
  margin: 0;
  font-size: 0.65rem;
}

.ph-runway__name {
  font-family: var(--ph-font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ph-runway__cta {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ph-glow-lime);
}

.ph-runway--page {
  padding-top: 0.5rem;
}

.ph-especies-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 2.5rem 0 0;
}

.ph-runway--page .ph-runway__cta {
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  font-size: 0.86rem;
  color: rgba(255, 248, 240, 0.72);
  max-width: 22ch;
  line-height: 1.35;
}

.ph-runway__keywords {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 248, 240, 0.55);
  max-width: 24ch;
}

/* Magazine grids + tiles */
.ph-magazine {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(4.5rem, 9vw, 7rem);
}

.ph-magazine--hub {
  padding-top: 0;
}

.ph-magazine__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .ph-magazine__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ph-magazine__grid:not(.ph-magazine__grid--compact) .ph-tile--feature {
    grid-column: 1 / -1;
    display: grid;
  }

  .ph-magazine__grid:not(.ph-magazine__grid--compact) .ph-tile--feature .ph-tile__link {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    min-height: 22rem;
  }

  .ph-magazine__grid:not(.ph-magazine__grid--compact) .ph-tile--feature .ph-tile__media {
    aspect-ratio: auto;
    height: 100%;
  }

  .ph-magazine__grid:not(.ph-magazine__grid--compact) .ph-tile--feature .ph-tile__body {
    justify-content: center;
    padding: 2rem 2.1rem;
  }
}

@media (min-width: 1100px) {
  .ph-magazine__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ph-magazine__grid:not(.ph-magazine__grid--compact) .ph-tile--feature {
    grid-column: 1 / 3;
  }

  .ph-magazine__grid--related {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ph-tile {
  margin: 0;
}

.ph-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--ph-radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition: transform 280ms var(--ph-ease-out), border-color 280ms, box-shadow 280ms;
}

.ph-tile__link:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--ph-elev-soft);
  color: #fff;
}

.ph-tile__media {
  display: block;
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  background: var(--ph-surface);
}

.ph-tile__media img,
.ph-tile__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ph-ease-out);
}

.ph-tile__fallback {
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 255, 0, 0.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 77, 166, 0.22), transparent 50%),
    #151b24;
}

.ph-tile__link:hover .ph-tile__media img {
  transform: scale(1.05);
}

.ph-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem 1.25rem 1.35rem;
  flex: 1;
}

.ph-tile__body .ph-eyebrow {
  margin: 0;
}

.ph-tile__title {
  font-family: var(--ph-font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ph-tile--feature .ph-tile__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ph-tile__excerpt {
  color: var(--ph-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ph-tile__more {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ph-glow-lime);
}

/* Food band */
.ph-food-band {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4.5rem, 9vw, 7rem);
  background: linear-gradient(180deg, transparent, rgba(255, 248, 240, 0.015));
}

.ph-food-band__inner {
  display: grid;
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--ph-radius-xl);
  background:
    linear-gradient(135deg, rgba(240, 199, 94, 0.08), rgba(255, 126, 182, 0.06)),
    var(--ph-surface);
  border: 1px solid rgba(255, 248, 240, 0.1);
}

@media (min-width: 900px) {
  .ph-food-band__inner {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }
}

.ph-food-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Enciclopedia teaser (home SEO silo) */
.ph-encyc-teaser {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.02), transparent);
}

.ph-encyc-teaser__inner {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--ph-radius-xl);
  border: 1px solid rgba(255, 248, 240, 0.08);
  background: rgba(255, 248, 240, 0.02);
}

@media (min-width: 900px) {
  .ph-encyc-teaser__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.ph-encyc-teaser__species {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ph-encyc-teaser__species a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 248, 240, 0.08);
  background: rgba(6, 7, 10, 0.35);
  transition: border-color 180ms var(--ph-ease-out), transform 180ms var(--ph-ease-out);
}

.ph-encyc-teaser__species a:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 192, 122, 0.45);
}

/* Home FAQ (matches FAQPage schema) */
.ph-home-faq {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.ph-home-faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 72ch;
}

.ph-home-faq .ph-faq {
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 1rem;
  background: rgba(255, 248, 240, 0.02);
  padding: 0.15rem 1rem;
}

.ph-home-faq .ph-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
}

.ph-home-faq .ph-faq div {
  padding-bottom: 0.9rem;
  color: rgba(255, 248, 240, 0.82);
  line-height: 1.6;
}

.ph-trust-strip {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.ph-trust-strip__inner {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 800px) {
  .ph-trust-strip__inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.ph-trust-strip__lead {
  margin: 0;
  font-family: var(--ph-font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.35;
  color: var(--ph-text);
}

.ph-trust-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ph-trust-strip__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ph-text-muted);
  text-decoration: none;
}

.ph-trust-strip__links a:hover {
  color: var(--ph-accent-pink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .ph-animal {
    animation: none !important;
  }
  .ph-animal:hover,
  .ph-animal:focus-visible {
    transform: none;
  }
  .ph-runway__item:hover,
  .ph-tile__link:hover {
    transform: none;
  }
}

.ph-mm-teaser {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, rgba(212, 255, 0, 0.04), transparent);
}
.ph-mm-teaser__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.ph-magazine__more {
  margin: 1.25rem 0 0;
  text-align: center;
}

/* Home “Empieza por aquí”: equal 2×2 editorial tiles — no span, no stretched voids. */
.ph-magazine__grid--compact {
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .ph-magazine__grid.ph-magazine__grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile--feature {
    grid-column: auto;
    grid-row: auto;
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile__link {
    height: auto;
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile__media {
    aspect-ratio: 16 / 11;
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile--feature .ph-tile__title {
    font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile__body {
    flex: 0 0 auto;
    padding: 1.05rem 1.15rem 1.2rem;
    gap: 0.4rem;
  }

  .ph-magazine__grid.ph-magazine__grid--compact .ph-tile__more {
    margin-top: 0.65rem;
    padding-top: 0;
  }
}

@media (min-width: 1100px) {
  .ph-magazine__grid.ph-magazine__grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
