/* ─── HERO ────────────────────────────────────────────── */
.vp-hero {
  padding: 14rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.vp-hero-bg-word {
  position: absolute; top: 55%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(10rem, 22vw, 28rem);
  color: transparent; -webkit-text-stroke: 1px rgba(234,135,96,.05);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
  letter-spacing: -.04em;
}
.vp-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.vp-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--terracotta); }
.vp-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 9rem);
  color: var(--cream); line-height: .9; letter-spacing: -.04em;
  position: relative; z-index: 1;
}
.vp-title em { font-style: normal; color: var(--terracotta); font-weight: 300; display: block; }
.vp-sub {
  font-size: clamp(.9rem, 1.2vw, 1rem); color: rgba(255,251,248,.55);
  max-width: 440px; line-height: 1.7; margin-top: 2rem;
  position: relative; z-index: 1;
}

/* ─── FILTRES ─────────────────────────────────────────── */
.vp-filters {
  display: flex; gap: .6rem; flex-wrap: wrap;
  padding: 1.5rem 4rem 2rem;
  position: sticky; top: 88px; z-index: 100;
  background: linear-gradient(to bottom, var(--dark) 80%, transparent);
}
.vp-filter-btn {
  background: rgba(255,251,248,.06);
  border: 1px solid rgba(255,251,248,.12);
  color: rgba(255,251,248,.55);
  padding: .55rem 1.3rem; border-radius: 100px;
  font-family: var(--font-body); font-size: .75rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: none; transition: all .25s ease;
  white-space: nowrap;
}
.vp-filter-btn:hover { border-color: rgba(234,135,96,.5); color: var(--terracotta); }
.vp-filter-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }

/* ─── SECTION FEATURED ────────────────────────────────── */
.vp-featured-section {
  padding: 0 4rem 3rem;
}
.vp-featured-label {
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,251,248,.3); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.vp-featured-label::before { content: ''; display: block; width: 20px; height: 1px; background: rgba(255,251,248,.2); }

/* ─── CARTE FEATURED ──────────────────────────────────── */
.vp-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  background: #111;
}
.vp-featured iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
  z-index: 1;
  transition: opacity .4s ease;
}
/* overlay masque la vidéo jusqu'au clic */
.vp-featured-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(14,6,4,.98) 0%,
    rgba(14,6,4,.55) 40%,
    rgba(14,6,4,.15) 75%,
    transparent 100%
  );
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3rem 3.5rem;
  transition: background .5s ease;
}
.vp-featured:hover .vp-featured-overlay {
  background: linear-gradient(
    to top,
    rgba(14,6,4,.85) 0%,
    rgba(14,6,4,.3) 50%,
    transparent 100%
  );
}
.vp-featured-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: .9rem;
  background: rgba(234,135,96,.12); border: 1px solid rgba(234,135,96,.3);
  padding: .35rem .9rem; border-radius: 100px; width: fit-content;
}
.vp-featured-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--cream); line-height: 1; letter-spacing: -.03em;
  margin-bottom: .8rem;
}
.vp-featured-desc {
  font-size: clamp(.85rem, 1.1vw, .95rem);
  color: rgba(255,251,248,.65); line-height: 1.7;
  max-width: 560px; margin-bottom: 1.6rem;
}
.vp-featured-meta {
  display: flex; gap: 2rem; align-items: center;
}
.vp-featured-count {
  font-size: .7rem; letter-spacing: .1em; color: rgba(255,251,248,.35);
  text-transform: uppercase;
}
.vp-featured-play {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--terracotta); color: var(--cream);
  padding: .75rem 1.8rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: all .28s; border: none; cursor: none;
}
.vp-featured-play:hover { background: var(--terra-l); box-shadow: 0 0 30px rgba(234,135,96,.4); transform: translateY(-2px); }
.vp-featured-play svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── GRILLE ASYMÉTRIQUE ──────────────────────────────── */
.vp-section {
  padding: 0 4rem 5rem;
}
.vp-section-header {
  display: flex; align-items: baseline; gap: 1.2rem;
  margin-bottom: 1.8rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,251,248,.06);
}
.vp-section-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: 1.5rem; color: var(--cream); letter-spacing: -.02em;
}
.vp-section-count {
  font-size: .7rem; letter-spacing: .15em; color: rgba(255,251,248,.25);
  text-transform: uppercase;
}

/* grille principale asymétrique */
.vp-asym-grid {
  display: grid;
  gap: 1.5rem;
}

/* 1 projet seul = pleine largeur */
.vp-asym-grid.solo {
  grid-template-columns: 1fr;
}

/* 2 projets = 60/40 */
.vp-asym-grid.duo {
  grid-template-columns: 3fr 2fr;
}

/* 3 projets = grand à gauche + 2 petits à droite */
.vp-asym-grid.trio {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
}
.vp-asym-grid.trio .vp-card:first-child {
  grid-row: 1 / 3;
}

/* 4+ projets = mosaïque */
.vp-asym-grid.quad {
  grid-template-columns: repeat(2, 1fr);
}
.vp-asym-grid.many {
  grid-template-columns: repeat(3, 1fr);
}
.vp-asym-grid.many .vp-card:first-child {
  grid-column: 1 / 3;
}

/* ─── CARTE PROJET ────────────────────────────────────── */
.vp-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: none;
  background: #1a1a1a;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,251,248,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: border-color .35s, box-shadow .35s, transform .35s;
}
.vp-card:hover {
  border-color: rgba(234,135,96,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  transform: translateY(-3px);
}

/* thumbnail en fond */
.vp-card-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(0.23,1,.32,1);
  filter: brightness(0.85);
}
.vp-card:hover .vp-card-thumb {
  transform: scale(1.06);
  filter: brightness(1);
}

/* overlay repos : léger dégradé en bas seulement pour lisibilité */
.vp-card-overlay-base {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,6,4,.55) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

/* overlay hover cinématique */
.vp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,6,4,.95) 0%,
    rgba(14,6,4,.6) 40%,
    rgba(14,6,4,.1) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity .45s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
  z-index: 2;
}
.vp-card:hover .vp-card-overlay {
  opacity: 1;
}

/* icône play permanente */
.vp-card-play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(234,135,96,.2); border: 1.5px solid rgba(234,135,96,.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s cubic-bezier(0.23,1,.32,1), background .3s, border-color .3s;
  z-index: 3;
}
.vp-card-play-icon svg { width: 18px; height: 18px; fill: var(--terracotta); margin-left: 3px; }
.vp-card:hover .vp-card-play-icon {
  transform: translate(-50%,-50%) scale(1.15);
  background: rgba(234,135,96,.35);
  border-color: var(--terracotta);
}

/* texte qui glisse depuis le bas */
.vp-card-info {
  transform: translateY(18px);
  opacity: 0;
  transition: transform .45s cubic-bezier(0.23,1,.32,1), opacity .4s ease;
}
.vp-card:hover .vp-card-info {
  transform: translateY(0);
  opacity: 1;
}
.vp-card-cat {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: .35rem;
}
.vp-card-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: 1.1rem; color: var(--cream); line-height: 1.15;
  margin-bottom: .4rem;
}
.vp-card-desc {
  font-size: .78rem; color: rgba(255,251,248,.55);
  line-height: 1.55;
}

/* badge nombre de vidéos */
.vp-card-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 4;
  background: rgba(14,6,4,.7); border: 1px solid rgba(255,251,248,.12);
  backdrop-filter: blur(8px);
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,251,248,.6);
  padding: .3rem .7rem; border-radius: 100px;
}

/* ─── GALERIE POPUP ───────────────────────────────────── */
#gallery-popup {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
#gallery-popup.open { opacity: 1; pointer-events: all; }

/* fond sombre — pas de backdrop-filter pour éviter le flou sur les cartes */
#gallery-backdrop {
  position: absolute; inset: 0;
  background: rgba(14,6,4,.82);
}

/* contenu flottant */
.gp-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px;
  padding: 0 2rem;
  isolation: isolate;
}

/* header : titre + fermer */
.gp-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.6rem;
}
.gp-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--cream); letter-spacing: -.02em;
}
.gp-close {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,251,248,.2); background: none;
  color: var(--cream); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: border-color .2s, color .2s; flex-shrink: 0;
}
.gp-close:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* slider */
.gp-slider-wrap {
  position: relative;
}
.gp-track {
  display: flex; gap: 1.2rem;
  overflow: hidden;
}

/* carte vidéo */
.gp-item {
  flex: 0 0 calc((100% - 2 * 1.2rem) / 3);
  border-radius: 14px; overflow: hidden;
  background: #111;
  border: 1.5px solid rgba(255,251,248,.1);
  cursor: none;
  transition: transform .4s cubic-bezier(0.23,1,.32,1),
              opacity .4s ease,
              filter .4s ease,
              border-color .3s;
  position: relative;
}
/* format reel vertical */
.gp-item.reel {
  flex: 0 0 calc((100% - 2 * 1.2rem) / 3 * 0.5625);
}
.gp-item iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  pointer-events: none;
}
/* ratio par défaut 16/9 */
.gp-item:not(.reel) {
  aspect-ratio: 16/9;
}
/* ratio reel 9/16 */
.gp-item.reel {
  aspect-ratio: 9/16;
  max-height: 420px;
}

/* miniature avant lecture */
.gp-item-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
  z-index: 1;
}
.gp-item-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(234,135,96,.25); border: 1.5px solid rgba(234,135,96,.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform .3s ease, background .3s;
}
.gp-item-play svg { width: 16px; height: 16px; fill: var(--terracotta); margin-left: 3px; }
.gp-item:hover .gp-item-play {
  transform: translate(-50%,-50%) scale(1.12);
  background: rgba(234,135,96,.45);
}

/* état actif (vidéo en lecture) */
.gp-item.active {
  transform: scale(1.06);
  border-color: var(--terracotta);
  z-index: 2;
}
.gp-item.active .gp-item-thumb { opacity: 0; pointer-events: none; }
.gp-item.active .gp-item-play  { display: none; }
.gp-item.active iframe { pointer-events: auto; }

/* les autres s'estompent quand une est active */
.gp-track.has-active .gp-item:not(.active) {
  opacity: .35;
  filter: blur(3px);
  transform: scale(0.95);
}

/* flèches de navigation */
.gp-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,251,248,.2); background: rgba(14,6,4,.6);
  color: var(--cream); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all .2s; z-index: 3;
}
.gp-arrow:hover { border-color: var(--terracotta); color: var(--terracotta); }
.gp-arrow:disabled { opacity: .2; pointer-events: none; }
.gp-arrow.prev { left: -20px; }
.gp-arrow.next { right: -20px; }

/* compteur de pages */
.gp-dots {
  display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem;
}
.gp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,251,248,.2); transition: background .2s, transform .2s;
}
.gp-dot.active { background: var(--terracotta); transform: scale(1.4); }

/* responsive */
@media (max-width: 768px) {
  .gp-item { flex: 0 0 calc((100% - 1.2rem) / 2); }
  .gp-item.reel { flex: 0 0 calc((100% - 1.2rem) / 2 * 0.5625); max-height: 300px; }
  .gp-inner { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .gp-item { flex: 0 0 80%; }
  .gp-item.reel { flex: 0 0 calc(80% * 0.5625); }
}

/* ─── LIGHTBOX SIMPLE (featured seulement) ────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(14,6,4,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
  padding: 2rem;
}
#lightbox.open { opacity: 1; pointer-events: all; }

.lb-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,251,248,.2); background: none;
  color: var(--cream); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: border-color .2s;
}
.lb-close:hover { border-color: var(--terracotta); color: var(--terracotta); }

.lb-title {
  font-family: var(--font-title); font-weight: 300;
  font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,251,248,.4); margin-bottom: 1.2rem;
  text-align: center;
}

.lb-video-wrap {
  width: 100%; max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  background: #000;
}
.lb-video-wrap iframe {
  width: 100%; height: 100%; border: none;
}

.lb-nav {
  display: flex; gap: 1rem; margin-top: 1.4rem; align-items: center;
}
.lb-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,251,248,.18); background: none;
  color: rgba(255,251,248,.5); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all .2s;
}
.lb-nav-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.lb-nav-btn:disabled { opacity: .2; cursor: not-allowed; }
.lb-nav-count {
  font-size: .72rem; color: rgba(255,251,248,.3); letter-spacing: .1em;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark); padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,251,248,.06);
}
.footer-logo img { height: 36px; width: auto; }
.footer-copy { font-size: .72rem; color: rgba(255,251,248,.2); }
.footer-socials { display: flex; gap: .8rem; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,251,248,.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s;
}
.footer-social img {
  width: 16px; height: 16px; object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.4);
  transition: filter .2s;
}
.footer-social:hover { border-color: var(--terracotta); }
.footer-social:hover img { filter: brightness(0) saturate(100%) invert(45%) sepia(60%) saturate(500%) hue-rotate(330deg) brightness(90%); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .vp-asym-grid.duo,
  .vp-asym-grid.trio,
  .vp-asym-grid.quad { grid-template-columns: 1fr 1fr; }
  .vp-asym-grid.trio .vp-card:first-child { grid-row: auto; grid-column: 1 / 3; }
  .vp-asym-grid.many { grid-template-columns: repeat(2,1fr); }
  .vp-asym-grid.many .vp-card:first-child { grid-column: 1 / 3; }
}
@media (max-width: 768px) {
  nav {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    pointer-events: none;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .vp-hero { padding: 12rem 1.5rem 3rem; }
  .vp-filters { padding: 1.5rem 1.5rem 2rem; top: 80px; }
  .vp-featured-section,
  .vp-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .vp-featured { aspect-ratio: 16/10; }
  .vp-featured-overlay { padding: 1.8rem; }
  .vp-featured-title { font-size: 1.6rem; }
  .vp-asym-grid.duo,
  .vp-asym-grid.trio,
  .vp-asym-grid.quad,
  .vp-asym-grid.many { grid-template-columns: 1fr; }
  .vp-asym-grid.trio .vp-card:first-child,
  .vp-asym-grid.many .vp-card:first-child { grid-column: auto; }
  .vp-card { aspect-ratio: 16/10; }
  /* En mobile l'overlay texte est toujours visible — fond plus sombre pour
     couvrir le texte déjà présent sur certaines miniatures (Tiara Pro, Open Heart Talk) */
  .vp-card-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(14,6,4,.97) 0%,
      rgba(14,6,4,.80) 45%,
      rgba(14,6,4,.35) 70%,
      transparent 100%
    );
  }
  .vp-card-info { transform: translateY(0); opacity: 1; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .lb-video-wrap { aspect-ratio: 16/9; }
}

/* ─── TABLETTE (769px – 1024px) ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  .vp-hero { padding: 14rem 2.5rem 4rem; }
  .vp-filters { padding: 1.5rem 2.5rem 2rem; }
  .vp-featured-section,
  .vp-section { padding-left: 2.5rem; padding-right: 2.5rem; }
  .vp-featured-overlay { padding: 2rem 2.5rem; }
  .cross-redirect-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

/* ─── PETIT MOBILE (≤ 480px) ─── */
@media (max-width: 480px) {
  .vp-hero { padding: 10rem 1rem 2.5rem; }
  .vp-title { font-size: clamp(3rem, 11vw, 5rem); }
  .vp-sub { font-size: .85rem; }
  .vp-filters {
    padding: 1.2rem 1rem 1.5rem;
    gap: .4rem;
    top: 72px;
  }
  .vp-filter-btn { font-size: .68rem; padding: .45rem 1rem; }
  .vp-featured-overlay { padding: 1rem; }
  /* Titre Esther Do plus compact sur petit mobile */
  .vp-featured-title { font-size: clamp(1.1rem, 4.5vw, 1.4rem); margin-bottom: .5rem; }
  /* Description masquée sur petit mobile pour libérer de l'espace */
  .vp-featured-desc { display: none; }
  .vp-featured-meta { flex-direction: row; align-items: center; gap: .8rem; margin-top: .5rem; }
  .vp-featured-play { padding: .6rem 1.2rem; font-size: .68rem; }
  .vp-section-header { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .vp-card-title { font-size: .95rem; }
  .cross-redirect { padding: 3rem 1rem; }
  .cross-redirect-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cross-redirect-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  footer { padding: 1.5rem 1rem; }
}

/* ─── BANDEAU REDIRECTION ─────────────────────────────── */
.cross-redirect {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 7rem);
}
.cross-redirect--light {
  background: #fdf8f5;
  border-top: 1px solid rgba(255,251,248,.07);
}
.cross-redirect-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cross-redirect-text .vp-label { color: var(--terracotta); }
.cross-redirect-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--cream);
  line-height: .95;
  letter-spacing: -.04em;
  margin: .5rem 0 1rem;
}
.cross-redirect-title em { font-style: normal; color: var(--terracotta); font-weight: 300; }
.cross-redirect--light .cross-redirect-title { color: #1a0e0a; }
.cross-redirect-sub {
  font-size: clamp(.85rem, 1.1vw, .95rem);
  color: rgba(255,251,248,.45);
  line-height: 1.65;
  max-width: 380px;
}
.cross-redirect--light .cross-redirect-sub { color: rgba(14,6,4,.45); }
.cross-redirect-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s ease;
  box-shadow: 0 6px 28px rgba(234,135,96,.35);
}
.cross-redirect-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease;
}
.cross-redirect-btn:hover {
  background: #d4714a;
  box-shadow: 0 8px 36px rgba(234,135,96,.5);
}
.cross-redirect-btn:hover svg { transform: translateX(4px); }
@media (max-width: 600px) {
  .cross-redirect-inner { flex-direction: column; align-items: flex-start; }
}
