/* ─── FOND CLAIR SPÉCIFIQUE AU PORTFOLIO ─────────────── */
body {
  background: var(--cream);
  color: var(--dark);
}

/* ─── PORTFOLIO PAGE HERO ─────────────────────────────── */
.pfp-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Zone sticky qui contrôle l'animation scroll */
#hero-sticky-wrapper {
  position: relative;
}
#hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Texte centré */
.pfp-hero-text {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.pfp-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); display: flex; align-items: center; justify-content: center; gap: .8rem; margin-bottom: 1.2rem;
}
.pfp-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--terracotta); }
.pfp-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 9rem);
  color: var(--dark); line-height: .9; letter-spacing: -.04em;
}
.pfp-title em { font-style: normal; color: var(--terracotta); font-weight: 300; display: block; }
.pfp-sub {
  font-size: clamp(.9rem, 1.2vw, 1rem); color: rgba(14,6,4,.5);
  max-width: 420px; line-height: 1.7; margin-top: 2rem;
  margin-left: auto; margin-right: auto;
}

/* Images flottantes hero */
.hero-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, filter;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Indicateur scroll */
#hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 1;
  transition: opacity .4s ease;
}
#hero-scroll-hint.hidden { opacity: 0; }
.hero-scroll-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(14,6,4,.35);
}
.hero-scroll-pct {
  font-family: var(--font-title);
  font-size: .85rem;
  color: var(--terracotta);
  letter-spacing: .05em;
}

/* ─── GALERIE IMMERSIVE ───────────────────────────────── */
#immersive-gallery {
  position: relative;
  width: 100%;
  background: var(--dark);
  overflow: hidden;
}

/* Fond animé parallaxe */
#ig-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(234,135,96,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(234,135,96,.04) 0%, transparent 70%);
  will-change: transform;
  pointer-events: none;
}

/* Breadcrumb / retour */
#ig-breadcrumb {
  position: absolute;
  top: 2rem;
  left: clamp(1.5rem, 5vw, 5rem);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
#ig-breadcrumb.visible {
  opacity: 1;
  pointer-events: all;
}
#ig-back {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,251,248,.2);
  background: rgba(255,251,248,.06);
  backdrop-filter: blur(12px);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: all .25s ease;
}
#ig-back:hover {
  border-color: var(--terracotta);
  background: rgba(234,135,96,.15);
}
#ig-back svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
#ig-crumb-cat, #ig-crumb-project {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,251,248,.5);
}
#ig-crumb-cat.active { color: var(--terracotta); }
#ig-crumb-sep { color: rgba(255,251,248,.2); font-size: .7rem; }
#ig-crumb-project:empty + #ig-crumb-sep,
#ig-crumb-sep:last-child { display: none; }

/* Header flottant */
#ig-header {
  position: absolute;
  top: 50%;
  left: clamp(1.5rem, 5vw, 5rem);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
#ig-label {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .8rem;
}
#ig-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--terracotta); }
#ig-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  color: var(--cream); line-height: .92; letter-spacing: -.04em;
  margin: 0 0 1rem;
}
#ig-title em { font-style: normal; color: var(--terracotta); font-weight: 300; }
#ig-hint {
  font-size: .72rem; letter-spacing: .1em;
  color: rgba(255,251,248,.3);
  text-transform: uppercase;
}

/* Stage */
#ig-stage {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Vues */
.ig-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform, filter;
}
.ig-view.ig-active {
  opacity: 1;
  pointer-events: all;
}

/* Track horizontal de cartes — carrousel centré */
.ig-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

/* ── Carte catégorie ── */
.ig-cat-card {
  position: absolute;
  flex-shrink: 0;
  width: clamp(200px, 28vw, 400px);
  height: 76vh;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  border: 1px solid rgba(255,251,248,.08);
  will-change: transform, filter, opacity;
  transition: transform 0.6s cubic-bezier(0.23,1,.32,1),
              filter 0.6s cubic-bezier(0.23,1,.32,1),
              opacity 0.6s ease;
}
.ig-cat-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23,1,.32,1);
  transform-origin: center;
}
.ig-cat-card:hover .ig-cat-card-img { transform: scale(1.06); }
.ig-cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,6,4,.88) 0%, rgba(14,6,4,.2) 50%, transparent 100%);
  transition: opacity .5s ease;
}
.ig-cat-card:hover .ig-cat-card-overlay { opacity: .7; }
.ig-cat-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.8rem;
}
.ig-cat-card-label {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: .4rem;
  display: flex; align-items: center; gap: .5rem;
}
.ig-cat-card-label::before { content: ''; display: block; width: 14px; height: 1px; background: var(--terracotta); }
.ig-cat-card-name {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream); line-height: 1;
  letter-spacing: -.02em;
}
.ig-cat-card-count {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,251,248,.35); margin-top: .4rem;
}
.ig-cat-card-enter {
  position: absolute;
  bottom: 1.8rem; right: 1.5rem;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(234,135,96,.4);
  background: rgba(234,135,96,.1);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease, background .2s ease;
}
.ig-cat-card:hover .ig-cat-card-enter { opacity: 1; }
.ig-cat-card-enter svg {
  width: 14px; height: 14px;
  stroke: var(--terracotta); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Carte active (focus au hover scroll) */
.ig-cat-card.ig-focused {
  box-shadow: 0 0 0 1px rgba(234,135,96,.5), 0 24px 80px rgba(0,0,0,.6);
}

/* Cartes latérales : effet survol pour indiquer qu'elles sont cliquables */
.ig-cat-card:not(:only-child):hover {
  box-shadow: 0 0 0 1px rgba(255,251,248,.15), 0 16px 48px rgba(0,0,0,.4);
}
.ig-proj-card:not(:only-child):hover {
  box-shadow: 0 0 0 1px rgba(255,251,248,.15), 0 16px 48px rgba(0,0,0,.4);
}

/* ── Carte projet (niveau 2) ── */
.ig-proj-card {
  position: absolute;
  flex-shrink: 0;
  width: clamp(180px, 26vw, 360px);
  height: 72vh;
  border-radius: 18px;
  overflow: hidden;
  cursor: none;
  border: 1px solid rgba(255,251,248,.08);
  will-change: transform, filter, opacity;
  transition: transform 0.6s cubic-bezier(0.23,1,.32,1),
              filter 0.6s cubic-bezier(0.23,1,.32,1),
              opacity 0.6s ease;
}
.ig-proj-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23,1,.32,1);
}
.ig-proj-card:hover .ig-proj-card-img { transform: scale(1.07); }
.ig-proj-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,6,4,.9) 0%, rgba(14,6,4,.15) 55%, transparent 100%);
}
.ig-proj-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.4rem 1.5rem;
}
.ig-proj-card-name {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: var(--cream); line-height: 1.1;
  letter-spacing: -.015em;
}
.ig-proj-card-count {
  font-size: .58rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,251,248,.35); margin-top: .35rem;
}
.ig-proj-card-enter {
  position: absolute;
  bottom: 1.5rem; right: 1.2rem;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(234,135,96,.4);
  background: rgba(234,135,96,.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-proj-card:hover .ig-proj-card-enter { opacity: 1; }
.ig-proj-card-enter svg {
  width: 12px; height: 12px;
  stroke: var(--terracotta); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Vue galerie (niveau 3) ── */
#ig-view-gallery {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6rem clamp(1.5rem, 5vw, 5rem) 4rem;
  align-items: flex-start;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) transparent;
}
#ig-view-gallery::-webkit-scrollbar { width: 3px; }
#ig-view-gallery::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 10px; }
#ig-gallery-grid {
  columns: 4 200px;
  column-gap: 12px;
  width: 100%;
}
.ig-gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  cursor: none;
  position: relative;
}
.ig-gallery-item img {
  width: 100%; display: block;
  transition: transform .8s cubic-bezier(0.23,1,.32,1), opacity .3s ease;
}
.ig-gallery-item:hover img { transform: scale(1.04); opacity: .9; }

/* Barre de scroll indicateur */
#ig-scrollbar {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: rgba(255,251,248,.1);
  border-radius: 2px;
  overflow: hidden;
  z-index: 20;
  transition: opacity .4s ease;
}
#ig-scrollbar.hidden { opacity: 0; }
#ig-scrollbar-thumb {
  height: 100%;
  background: var(--terracotta);
  border-radius: 2px;
  width: 30%;
  transition: transform .1s linear;
}

/* ─── GALERIE MASONRY (conservée, cachée par défaut) ──── */
.pfp-gallery { display: none; }
.pfp-filters { display: none; }
.pfp-count   { display: none; }

/* ─── LIGHTBOX ────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 20000;
  background: rgba(10,4,2,.96);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
  transform: scale(.96);
  transition: transform .4s cubic-bezier(0.23,1,.32,1);
}
#lightbox.open img { transform: scale(1); }
.lb-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,251,248,.25); background: rgba(255,251,248,.06);
  color: var(--cream); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all .2s; backdrop-filter: blur(8px);
}
.lb-close:hover { border-color: var(--terracotta); color: var(--terracotta); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,251,248,.2); background: rgba(255,251,248,.06);
  color: var(--cream); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all .2s; backdrop-filter: blur(8px);
}
.lb-nav:hover { border-color: var(--terracotta); background: rgba(234,135,96,.15); }
.lb-prev { left: 2rem; }
.lb-next { right: 2rem; }
.lb-info {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  text-align: center;
}
.lb-info-cat { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); }
.lb-info-name { font-family: var(--font-title); font-size: 1rem; color: var(--cream); margin-top: .2rem; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: rgba(255,255,255,.4); padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(14,6,4,.06);
  backdrop-filter: blur(16px);
}
.footer-logo img { height: 36px; width: auto; }
.footer-copy { font-size: .72rem; color: rgba(14,6,4,.3); }
.footer-socials { display: flex; gap: .8rem; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(14,6,4,.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: opacity(0.35);
  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: 1100px) {
  .ig-cat-card { width: clamp(160px, 28vw, 240px); }
  .ig-proj-card { width: clamp(150px, 26vw, 220px); }
  #ig-gallery-grid { columns: 3 160px; }
}
@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; }
  /* Masquer la section hero flottante sur mobile (les photos ne s'affichent pas,
     ça laissait un grand espace vide) */
  #hero-sticky-wrapper { display: none; }
  .ig-cat-card { width: 72vw; height: 60vh; }
  .ig-proj-card { width: 65vw; height: 55vh; }
  #ig-header { display: none; }
  #ig-gallery-grid { columns: 2 120px; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
}

/* ─── TABLETTE (769px – 1100px) ─── */
@media (min-width: 769px) and (max-width: 1100px) {
  .pfp-title { font-size: clamp(3rem, 7vw, 6rem); }
  .retouch-section { padding: 90px 4vw 70px; }
  .retouch-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cross-redirect-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

/* ─── PETIT MOBILE (≤ 480px) ─── */
@media (max-width: 480px) {
  .pfp-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .pfp-sub { font-size: .85rem; max-width: 90vw; }
  .ig-cat-card { width: 85vw; height: 55vh; }
  .ig-proj-card { width: 78vw; height: 50vh; }
  #ig-view-gallery { padding: 5rem 1rem 3rem; }
  #ig-gallery-grid { columns: 1; }
  .retouch-section { padding: 60px 1rem 50px; }
  .retouch-grid { grid-template-columns: 1fr; gap: 20px; }
  .retouch-intro { font-size: .88rem; margin-bottom: 40px; }
  #ig-breadcrumb { left: 1rem; top: 1.2rem; }
  .cross-redirect-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cross-redirect { padding: 3rem 1.2rem; }
  footer { padding: 1.5rem 1rem; }
}

/* ─── RETOUCHE AVANT/APRÈS ────────────────────────────── */
.retouch-section {
  padding: 120px 6vw 100px;
}
.retouch-section .pfp-section-label { margin-bottom: .6rem; }
.retouch-section .pfp-section-title {
  margin-bottom: 16px;
  color: var(--dark); /* titre foncé sur fond clair */
}
.retouch-section .pfp-section-title em {
  color: var(--terracotta);
}
.retouch-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(14, 6, 4, 0.55); /* texte foncé sur fond clair */
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 64px;
}
.retouch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.retouch-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.retouch-card-label {
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(14, 6, 4, 0.45); /* texte foncé sur fond clair */
}
.retouch-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 8px 40px rgba(14,6,4,.12);
}
.retouch-img-before,
.retouch-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.retouch-img-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.retouch-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,.85);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.retouch-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.retouch-handle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.retouch-tags {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.retouch-tag {
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: white;
  background: rgba(14,6,4,.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
}

@media (max-width: 700px) {
  .retouch-section { padding: 80px 5vw 60px; }
  .retouch-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── BANDEAU REDIRECTION ─────────────────────────────── */
.cross-redirect {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 7rem);
}
.cross-redirect--light {
  background: var(--cream);
  border-top: 1px solid rgba(14,6,4,.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 .pfp-label { color: var(--terracotta); }
.cross-redirect--light .cross-redirect-text .pfp-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: var(--dark); }
.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; }
}
