/* ========= PALETTE ========= */
:root {
  --bg: #0e0e0e;
  --paper: #e8d8b8;
  --ink: #0e0e0e;
  --ocre: #c7862f;
  --red: #c23b2a;
  --green: #1e604b;
  --yellow: #f1b21a;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --section-gap: clamp(20px, 4vw, 56px);
  /* Parallax offsets for paper layers */
  --paper-shift-x: 0px;
  --paper-shift-y: 0px;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  z-index: 100000;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  max-width: min(520px, calc(100% - 32px));
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
}
.cookie-banner__body {
  margin-bottom: 16px;
}
.cookie-banner__title {
  margin: 0 0 8px;
  font: 700 1.1rem/1.4 "Inter", system-ui, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner__button {
  border-radius: 999px;
  border: 2px solid currentColor;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.cookie-banner__button--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}
.cookie-banner__button--secondary {
  background: transparent;
}
.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus-visible {
  transform: translateY(-1px);
}
.cookie-banner__link {
  background: none;
  border: 0;
  padding: 0;
  margin-left: auto;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
  text-decoration: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: none;
  }
  .cookie-banner__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie-banner__button,
  .cookie-banner__link {
    width: 100%;
    text-align: center;
  }
}

/* ==== LANGUAGE SWITCH ==== */
.lang-switch {
  position: fixed;
  top: clamp(12px, 3vw, 20px);
  left: clamp(12px, 4vw, 28px);
  z-index: 10002;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 216, 184, 0.92);
  color: var(--ink);
  border: 2px solid var(--ink);
  font: 600 0.8rem/1 "Inter", system-ui, Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.lang-switch:visited {
  color: inherit;
}
body.studio .lang-switch {
  background: rgba(15, 15, 15, 0.9);
  color: var(--ink);
  border-color: var(--ink);
}
body.studio .lang-switch:visited {
  color: var(--ink);
}
.lang-switch:hover {
  transform: translateY(-1px);
}
.lang-switch:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  transform: translateY(-1px);
}
.lang-switch:hover .lang-label,
.lang-switch:focus-visible .lang-label {
  opacity: 1;
}
.lang-sep {
  opacity: 0.5;
}
.lang-label {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.lang-switch--fr .lang-label--current,
.lang-switch--en .lang-label--current {
  opacity: 1;
  font-weight: 700;
}
@media (max-width: 540px) {
  .lang-switch {
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    padding: 6px 10px;
    gap: 6px;
  }
}

/* ==== PAGE TRANSITIONS ==== */
@keyframes pageFadeSlideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Play on initial load only (JS toggles the class) */
body.page-enter {
  animation: pageFadeSlideIn 260ms ease-out both;
  transform: none !important;
}

/* Fullscreen overlay used when leaving the page */
.page-exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000; /* above everything */
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  animation: pageExitCover 220ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.page-exit-overlay.paper {
  /* reuse paper texture + outline for brand consistency */
  outline: 6px solid var(--ink);
  box-shadow: var(--shadow);
}
@keyframes pageExitCover {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(10px, -10px, 0);
  }
}

/* ==== SCROLL REVEAL ==== */
[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 18px;
  --reveal-rotate: 0deg;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale3d(0.985, 0.985, 1) rotate(var(--reveal-rotate));
  transition:
    transform 720ms cubic-bezier(0.19, 0.82, 0.35, 1),
    opacity 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
[data-reveal="left"] {
  --reveal-x: -26px;
  --reveal-y: 0px;
  --reveal-rotate: -0.6deg;
}
[data-reveal="right"] {
  --reveal-x: 26px;
  --reveal-y: 0px;
  --reveal-rotate: 0.6deg;
}
[data-reveal="up"] {
  --reveal-y: 26px;
  --reveal-rotate: 0.4deg;
}
[data-reveal="down"] {
  --reveal-y: -18px;
  --reveal-rotate: -0.3deg;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0deg);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==== MODE STUDIO (dark tattoo high-contrast) ==== */
body.studio {
  --bg: #000;
  --paper: #0f0f0f;
  --ink: #f3f3f3;
  --red: #ff3b30;
  --green: #00c389;
  --yellow: #ffc400;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
}
/* Accentuer les bordures et fonds en mode studio */
body.studio .paper {
  background: radial-gradient(
      2000px 1200px at 20% -10%,
      rgba(255, 255, 255, 0.05),
      transparent 60%
    ),
    radial-gradient(
      2000px 1200px at 120% 110%,
      rgba(255, 255, 255, 0.04),
      transparent 55%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      rgba(0, 0, 0, 0) 2px 6px
    ),
    var(--paper);
  background-position: 0 0, 0 0, 0 0, 0 0;
}
/* CTA plus brut en mode studio */
body.studio .cta {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
}
/* Renfort desktop: s'assure que le CTA hero est jaune */
body.studio .hero .cta {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}
body.studio .tag:hover,
body.studio .wa-link:hover,
body.studio .ig-link:hover {
  filter: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.6 "Inter", system-ui, Arial, sans-serif;
  cursor: url("/assets/media/img/cursor/cursor6.ico") 4 2, url("/assets/media/img/cursor/cursor3.png") 4 2, auto;
}
/* Évite tout débordement horizontal sur mobile */
html,
body {
  width: 100%;
  overflow-x: hidden;
}
/* Empêche les médias de dépasser la largeur de l'écran */
img,
svg,
video,
iframe {
  max-width: 100%;
}

/* ==== TEXTURES & TITRES ==== */
.paper {
  background: radial-gradient(
      2000px 1200px at 20% -10%,
      rgba(0, 0, 0, 0.15),
      transparent 60%
    ),
    radial-gradient(
      2000px 1200px at 120% 110%,
      rgba(0, 0, 0, 0.12),
      transparent 55%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.03) 0 2px,
      rgba(0, 0, 0, 0) 2px 6px
    ),
    var(--paper);
  background-position: calc(var(--paper-shift-x)) calc(var(--paper-shift-y)),
    calc(var(--paper-shift-x)) calc(var(--paper-shift-y)),
    calc(var(--paper-shift-x)) calc(var(--paper-shift-y)), 0 0;
}
h1,
h2,
h3 {
  font-family: "Alfa Slab One", serif;
  margin: 0 0 0.5rem;
  letter-spacing: 0.5px;
}
h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  white-space: nowrap;
}
h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}
.subtitle {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.slogan {
  margin: 0.9rem 0 1.1rem;
}

/* Handwritten vibe for the homepage slogan only */
.hero .handwritten {
  font-family: "Caveat", "Segoe Print", "Comic Sans MS", cursive;
  font-weight: 700;
  font-size: clamp(1.3rem, 3.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0.5px;
  transform: rotate(-1deg);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

/* ==== HERO ==== */
.hero {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 5px);
}
/* Safe areas iOS pour garder des marges égales */
.hero {
  padding-left: calc(clamp(24px, 5vw, 64px) + env(safe-area-inset-left));
  padding-right: calc(clamp(24px, 5vw, 64px) + env(safe-area-inset-right));
}
.hero-inner {
  display: grid;
  gap: clamp(8px, 1vw, 16px);
  grid-template-columns: minmax(0, 520px) minmax(0, 560px);
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.hero.hero-secondary {
  min-height: clamp(160px, 28svh, 260px);
  padding: clamp(8px, 2.2vw, 18px);
}
.hero.hero-secondary .hero-inner {
  grid-template-columns: minmax(140px, 220px) minmax(0, 520px);
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 18px);
}
/* Allow the main title to wrap inside the hero panel to avoid overflow */
.hero .panel h1 {
  white-space: normal;
  line-height: 1.1;
}
.hero .hero-title-main {
  display: block;
}
.hero .hero-title-sub {
  display: block;
  font-size: 0.6em;
  line-height: 1.15;
  margin-top: 0.05em;
}
.badge a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.badge {
  margin-bottom: 0.6rem;
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    /* Encore un peu plus d'air entre le logo et le panneau sur tablette/mobile */
    gap: clamp(28px, 4.5vw, 52px);
    justify-items: center; /* centre les éléments dans la colonne */
  }
}
/* Centre le contenu du bloc H1 sur mobile */
@media (max-width: 640px) {
  .hero .panel {
    display: grid;
    justify-items: center;
    text-align: center;
    justify-self: center; /* s'assure que le panneau est centré dans la grille */
  }
  .hero .panel .rule {
    width: 100%;
  }
}

/* Sur mobile, limite la largeur du panneau pour garder un liséré à droite/gauche */
@media (max-width: 640px) {
  .hero .panel {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero.hero-secondary {
    padding: clamp(10px, 4.2vw, 18px);
  }
  .hero.hero-secondary .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 5vw, 24px);
  }
  .hero.hero-secondary .badge {
    width: clamp(140px, 40vw, 180px);
  }
  .hero.hero-secondary .panel {
    text-align: center;
  }
  .hero.hero-secondary .panel .slogan {
    margin-inline: auto;
  }
}

/* Badge rond */
.badge {
  aspect-ratio: 1/1;
  width: min(100%, 480px);
  margin: auto;
  border-radius: 999px;
  background: var(--paper);
  outline: 10px solid var(--ink);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  transform-origin: center;
}
.hero.hero-secondary .badge {
  width: clamp(140px, 22vw, 220px);
  outline-width: 6px;
  -webkit-box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}
.hero.hero-secondary .badge img {
  width: 94%;
  height: 94%;
}
.hero.hero-secondary .panel {
  padding: clamp(10px, 1.5vw, 18px);
  outline-width: 4px;
  max-width: 520px;
  text-align: left;
}
.hero.hero-secondary .panel h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 0.2rem;
  text-align: center;
}
.hero.hero-secondary .panel .slogan {
  font-size: clamp(1rem, 1.1vw + 0.8rem, 1.25rem);
  line-height: 1.4;
  max-width: 34ch;
  margin: 0 auto;
  text-align: center;
}
.hero-lede {
  margin-top: 0.4rem;
  font-size: clamp(0.95rem, 0.8vw + 0.78rem, 1.1rem);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.76);
}
.hero.hero-secondary .hero-lede {
  max-width: 36ch;
  text-align: center;
  margin-inline: auto;
}
.badge img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  border-radius: 50%;
}

/* Logo “stamp” animation on load */
@media (prefers-reduced-motion: no-preference) {
  @keyframes logoStamp {
    0% {
      transform: scale(0.72);
      filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.5));
    }
    58% {
      transform: scale(1.06);
      filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.55));
    }
    100% {
      transform: scale(1);
      filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
  }
  .hero .badge {
    animation: logoStamp 720ms cubic-bezier(0.2, 0.9, 0.2, 1) 60ms both;
  }
}

/* Panel texte */
.panel {
  padding: clamp(18px, 3vw, 32px);
  border-radius: var(--radius);
  outline: 6px solid var(--ink);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

/* Décor */
.rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--yellow);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.25));
}
.rule svg {
  width: 26px;
  height: 26px;
}
.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* Tags */
/* Désactive le soulignement et la couleur par défaut des liens dans .tag */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 10px;
}
.tag {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.7rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none; /* Ajoute ceci */
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow); /* Pour cohérence */
  transition: transform 0.08s ease, filter 0.08s ease, background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.tag:visited {
  color: var(--ink);
  text-decoration: none;
}

.hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(10px, 2vw, 22px);
  margin: 14px 0 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.hero-buttons::-webkit-scrollbar {
  display: none;
}
.hero-button {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 700;
}
.hero-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 6px;
  border-radius: 16px;
}
.hero-button img {
  width: clamp(82px, 12vw, 130px);
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.15s ease, filter 0.15s ease;
  transform-origin: center center;
}
.hero-button:focus-visible img,
.hero-button:hover img {
  transform: translateY(-4px);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
}
.hero-button-label {
  font-size: clamp(0.62rem, 1vw, 0.82rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.floating-contact {
  position: fixed !important;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 12000;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s ease, color 0.15s ease;
}
.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-4px);
  color: var(--red);
}
.floating-contact img {
  display: block;
  width: clamp(48px, 8vw, 78px);
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}
.floating-contact-label {
  font-size: 0.6rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  text-align: center;
  color: inherit;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

button.tag {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Libellés responsive pour le premier tag du hero */
.label-mobile {
  display: none;
}
.label-desktop {
  display: inline;
}

/* Effet au survol comme le bouton RDV */
.tag:hover {
  background: var(--red, #e74c3c);
  color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px); /* Ajoute ceci */
  filter: brightness(1.05); /* Ajoute ceci */
}

/* CTA */
.cta {
  display: inline-grid;
  place-items: center;
  grid-auto-flow: column;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 4px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: var(--yellow);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  transition: transform 0.08s ease, filter 0.08s ease;
}
.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.cta svg {
  width: 22px;
  height: 22px;
}
.tag:hover {
  background: var(--red, #e74c3c);
  color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
}

/* Studio toggle button (petit bouton à côté du CTA) */
.studio-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: clamp(12px, 1vw, 18px) auto 0;
  padding: 0.6rem 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 3px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.studio-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.studio-toggle svg {
  width: 18px;
  height: 18px;
}

/* ==== SERVICES ==== */
.section {
  /* Reduce vertical padding to avoid stacking with inter-section margins */
  padding: clamp(2px, 0.6vw, 8px) clamp(12px, 3.2vw, 26px);
}
/* Safe areas iOS pour les sections */
.section {
  padding-left: calc(clamp(12px, 3.2vw, 26px) + env(safe-area-inset-left));
  padding-right: calc(clamp(12px, 3.2vw, 26px) + env(safe-area-inset-right));
}
.section-story {
  margin: calc(var(--section-gap) / 3) auto;
}
.section-story .story-panel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.section-story p {
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
}
.section-story p + p {
  margin-top: 10px;
}
.section-story .story-panel a {
  color: inherit;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.section-story .story-panel a:hover,
.section-story .story-panel a:focus-visible {
  color: var(--red);
}
.section-story .story-baseline {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900;
}
.seo-text {
  width: 100%;
  max-width: 840px;
  margin: calc(var(--section-gap) / 3) auto;
  display: grid;
  gap: 10px;
}
.seo-text p {
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
}
.seo-text p + p {
  margin-top: 10px;
}
.seo-text a {
  color: inherit;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.seo-text a:hover,
.seo-text a:focus-visible {
  color: var(--red);
}
.seo-text .story-baseline {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900;
}
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 740px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Tablettes (iPad portrait/paysage): empile les 3 cartes */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Tarifs indicatifs */
#tarifs {
  scroll-margin-top: -60px;
}
.tarifs {
  max-width: 1200px;
  margin: 0 auto;
}
.tarifs h2 {
  text-align: center;
  margin-bottom: 0.6rem;
}
.tarifs-intro {
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  font-weight: 600;
}
.galeries-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0;
  justify-content: center;
}

.duo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin: clamp(16px, 3vw, 32px) 0;
}
.duo-card {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 26px);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.duo-card__avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.duo-card__avatar img {
  width: clamp(88px, 14vw, 120px);
  height: clamp(88px, 14vw, 120px);
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  background: #fff;
}
.duo-card__content {
  margin: 0;
  text-align: center;
}

.gallery-button {
  flex: 1 0 180px;
  max-width: 220px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery-button img {
  width: clamp(90px, 18vw, 140px);
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.15s ease, filter 0.15s ease;
}
.gallery-button:hover img,
.gallery-button:focus-visible img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .galeries-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }
  .gallery-button {
    width: 100%;
    max-width: none;
  }
}
.contact-button-wrap {
  display: flex;
  justify-content: center;
  margin: 1.2rem 0 1.6rem;
}
.contact-button {
  flex: 0 0 auto;
  max-width: 200px;
}
.artist-social {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.artist-social .tag {
  display: inline-flex;
  justify-content: center;
}
.ig-photo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.ig-photo-link img {
  width: clamp(36px, 7vw, 56px);
  height: auto;
  display: block;
  transition: transform 0.15s ease, filter 0.15s ease;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}
.ig-photo-link:hover img,
.ig-photo-link:focus-visible img {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}
.artist-blurb {
  margin-bottom: 0.4rem;
}
.inline-link {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  box-shadow: inset 0 -0.35em var(--yellow);
  transition: box-shadow 0.2s ease;
}
.inline-link:hover {
  box-shadow: inset 0 -0.55em var(--yellow);
}
.tarifs-table-wrap {
  margin-top: clamp(16px, 2.8vw, 24px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.tarifs-table-scroll {
  overflow-x: auto;
}
.tarifs-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--paper);
}
.tarifs-table th,
.tarifs-table td {
  padding: 0.85rem 1rem;
  border: 2px solid var(--ink);
  text-align: left;
  vertical-align: top;
}
.tarifs-table th {
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.tarifs-table td:nth-child(2) {
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
}
.tarifs-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.04);
}
.tarifs-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .tarifs-table-wrap {
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }
}
.horaires-table-wrap {
  margin-top: clamp(16px, 3vw, 28px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}
.horaires-table {
  width: 100%;
  border-collapse: collapse;
}
.horaires-table th,
.horaires-table td {
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--ink);
  text-align: left;
}
.horaires-table thead th {
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}
.horaires-table tbody tr:last-child td {
  border-bottom: 0;
}
.horaires-table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.03);
}
.horaires-table td:nth-child(2) {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.horaires-table td:nth-child(3) {
  font-size: 0.95rem;
}
#plan {
  scroll-margin-top: -60px;
}
body.studio .tarifs-table th {
  background: var(--paper);
  color: var(--ink);
}
body.studio .tarifs-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}
body.studio .tarifs-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.09);
}
@media (max-width: 600px) {
  .tarifs-table {
    min-width: 100%;
  }
  .tarifs-table th,
  .tarifs-table td {
    padding: 0.75rem 0.8rem;
  }
  .horaires-table th,
  .horaires-table td {
    padding: 0.75rem 0.85rem;
  }
}
@media (max-width: 560px) {
  .tarifs-table thead {
    display: none;
  }
  .tarifs-table,
  .tarifs-table tbody {
    display: block;
    width: 100%;
  }
  .tarifs-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    margin-bottom: 12px;
  }
  .tarifs-table tbody tr:nth-child(even),
  .tarifs-table tbody tr:hover {
    background: var(--paper);
  }
  .tarifs-table td {
    padding: 0;
    border: 0;
  }
  .tarifs-table td:nth-child(1) {
    font-weight: 700;
    text-transform: none;
  }
  .tarifs-table td:nth-child(2) {
    justify-self: end;
    font-weight: 800;
    white-space: nowrap;
  }
  .tarifs-table td:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 2px solid var(--ink);
    padding-top: 0.65rem;
    margin-top: 0.4rem;
  }
  body.studio .tarifs-table tbody tr {
    background: var(--paper);
    border-color: var(--ink);
  }
  .horaires-table-wrap {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .horaires-table thead {
    display: none;
  }
  .horaires-table {
    display: block;
    width: 100%;
  }
  .horaires-table tbody {
    display: grid;
    gap: 14px;
  }
  .horaires-table tbody tr {
    display: grid;
    gap: 6px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 16px;
    padding: 0.85rem 1rem;
  }
  .horaires-table td {
    border: 0;
    padding: 0;
  }
  .horaires-table td:nth-child(1) {
    font-weight: 800;
    text-transform: none;
  }
  .horaires-table td:nth-child(2) {
    font-weight: 700;
  }
  .horaires-table td:nth-child(3) {
    font-size: 0.9rem;
    border-top: 2px solid var(--ink);
    padding-top: 0.6rem;
    margin-top: 0.3rem;
  }
}

/* Petits écrans: tags compacts */
@media (max-width: 480px) {
  .tag {
    padding: 0.35rem 0.6rem;
    font-size: 0.9rem;
  }
}

/* Écrans mobiles courants: 3 tags sur une ligne (hero) */
@media (max-width: 520px) {
  .hero .tags {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    overflow-x: hidden;
  }
  .hero .tag {
    font-size: 0.86rem; /* grossi un poil */
    padding: 0.34rem 0.58rem; /* un peu plus d'air */
    border-width: 2px;
    letter-spacing: 0.03em; /* compense légèrement la largeur */
  }
  /* Bascule le libellé du premier tag: desktop -> mobile */
  .hero .tag .label-desktop {
    display: none;
  }
  .hero .tag .label-mobile {
    display: inline;
  }
}

/* Ultra-compacts (ex: 360px et moins) */
@media (max-width: 360px) {
  .hero .tags {
    gap: 3px;
  }
  .hero .tag {
    font-size: 0.7rem;
    padding: 0.22rem 0.38rem;
    border-width: 1.5px;
    letter-spacing: 0.02em;
    text-transform: none; /* réduit fortement la largeur */
  }
}

.card {
  border: 6px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(#00000010, #00000010), var(--paper);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card .head {
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card .head.red {
  background: var(--red);
}
.card .head.green {
  background: var(--green);
}
.card .head.yellow {
  background: var(--yellow);
  color: var(--ink);
}
.card .body {
  padding: 18px;
}
/* Espace pour les actions au bas des cartes */
.card .actions {
  margin-top: 10px;
}

/* ==== GALERIE DYNAMIQUE ==== */
.gallery-panel {
  display: block;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(6px, 2vw, 14px) 0 clamp(8px, 2vw, 14px);
}
.gallery-panel p {
  margin-left: auto;
  margin-right: auto;
}
.gallery-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(4px, 1vw, 10px);
  margin: clamp(4px, 1vw, 12px) auto;
}
.gallery-switcher[hidden] {
  display: none;
}
.gallery-switcher__button {
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}
.gallery-switcher__button:hover {
  transform: translateY(-1px);
}
.gallery-switcher__button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.gallery-switcher__button.is-active {
  background: var(--ink);
  color: var(--paper);
}
.gallery-grid {
  display: grid;
  gap: clamp(6px, 1vw, 12px);
  margin: clamp(4px, 1vw, 10px) auto 0;
  width: 100%;
  max-width: 800px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  aspect-ratio: 1 / 1;
  background: #111;
  cursor: zoom-in;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: inherit;
}
.gallery-item__trigger:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
.gallery-actions {
  margin-top: clamp(12px, 2vw, 18px);
  display: flex;
  justify-content: center;
}
.gallery-external {
  margin: clamp(18px, 4vw, 32px) auto 0;
  width: 100%;
  max-width: 840px;
  padding: clamp(12px, 2vw, 18px);
  border-radius: var(--radius);
  outline: 4px solid var(--yellow);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  gap: 12px;
}
.gallery-external .tag {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.35;
}
.gallery-refresh[disabled] {
  opacity: 0.6;
  cursor: progress;
}
.gallery-hint {
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.8;
}
.gallery-empty,
.gallery-error {
  margin: 0;
  font-weight: 600;
}
.gallery-empty {
  color: var(--ink);
}
.gallery-error {
  color: var(--red);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 40px);
  z-index: 200000;
}
.gallery-lightbox.is-visible {
  display: flex;
}
.gallery-lightbox__dialog {
  position: relative;
  max-width: min(90vw, 960px);
  background: var(--paper);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  border: 6px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(90vw, 960px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: inherit;
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--paper);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.05);
}
.gallery-lightbox__nav:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.gallery-lightbox__nav[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.gallery-lightbox__nav--prev {
  left: clamp(8px, 2vw, 24px);
}
.gallery-lightbox__nav--next {
  right: clamp(8px, 2vw, 24px);
}
.gallery-lightbox__close {
  position: absolute;
  top: clamp(8px, 2vw, 16px);
  right: clamp(8px, 2vw, 16px);
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: var(--paper);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.05);
}
.gallery-lightbox__close:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.gallery-lightbox--solo .gallery-lightbox__nav {
  display: none;
}
.section.section-gallery .gallery-grid {
  margin-inline: auto;
}
.section.section-gallery {
  padding-top: clamp(2px, 0.8vw, 10px);
  padding-bottom: clamp(8px, 1.6vw, 14px);
}
.section.section-gallery .gallery-panel {
  padding-top: clamp(2px, 0.8vw, 10px);
}
.section.section-videos {
  padding-top: clamp(2px, 0.8vw, 10px);
  padding-bottom: clamp(8px, 1.6vw, 14px);
}
.section.section-videos .video-panel {
  padding-top: clamp(2px, 0.8vw, 10px);
}

@media (max-width: 768px) {
  .section.section-gallery {
    --gallery-pad: clamp(0px, 1vw, 12px);
    padding: clamp(8px, 2.4vw, 16px) var(--gallery-pad);
    padding-left: calc(var(--gallery-pad) + env(safe-area-inset-left));
    padding-right: calc(var(--gallery-pad) + env(safe-area-inset-right));
    padding-top: clamp(4px, 1.8vw, 12px);
    padding-bottom: clamp(8px, 2.8vw, 16px);
  }
  .section.section-gallery .gallery-panel {
    max-width: 100%;
    padding: clamp(4px, 2.4vw, 12px) 0 clamp(6px, 2.8vw, 14px);
    background: var(--paper);
    outline: none;
    box-shadow: none;
    border-radius: calc(var(--radius) - 8px);
  }
  .section.section-gallery .gallery-panel p {
    padding-inline: clamp(4px, 4vw, 18px);
  }
  .section.section-gallery .gallery-grid {
    margin: clamp(4px, 1.2vw, 10px) 0 0;
    max-width: 100%;
    gap: 5px;
  }
  .section.section-gallery .gallery-item {
    border-radius: 6px;
    box-shadow: none;
  }
  .gallery-external {
    max-width: 100%;
    outline-width: 3px;
  }
  .section.section-videos {
    --video-pad: clamp(0px, 1vw, 12px);
    padding: clamp(8px, 2.4vw, 16px) var(--video-pad);
    padding-left: calc(var(--video-pad) + env(safe-area-inset-left));
    padding-right: calc(var(--video-pad) + env(safe-area-inset-right));
    padding-top: clamp(4px, 1.8vw, 12px);
    padding-bottom: clamp(8px, 2.8vw, 16px);
  }
  .section.section-videos .video-panel {
    max-width: 100%;
    padding: clamp(4px, 2.4vw, 12px) 0 clamp(6px, 2.8vw, 14px);
    background: var(--paper);
    outline: none;
    box-shadow: none;
    border-radius: calc(var(--radius) - 8px);
  }
}

/* (retiré) styles du générateur d'idées */

.bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.6rem;
  line-height: 1.4;
}
.bullet + .bullet {
  margin-top: 10px;
}
.bullet-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  padding-bottom: 0.05rem;
  transition: color 0.2s ease;
}
.bullet-link::after {
  content: "→";
  font-size: 0.85em;
  transform: translateY(-0.05em);
  transition: transform 0.2s ease;
}
.bullet-link:hover::after,
.bullet-link:focus-visible::after {
  transform: translate(4px, -0.05em);
}
.bullet-link:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  -webkit-box-shadow: 0 0 0 3px var(--ink), 0 0 0 6px var(--paper);
  box-shadow: 0 0 0 3px var(--ink), 0 0 0 6px var(--paper);
}
.dot.green {
  background: var(--green);
}
.dot.yellow {
  background: var(--yellow);
}

/* ==== FOOTER ==== */
footer {
  color: #c9bca2;
  font-size: 0.9rem;
  padding: 26px 20px;
  text-align: center;
}
.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.footer-powered {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-powered-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
}
.footer-powered-logo img {
  display: block;
  width: 100px;
  max-width: 35vw;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}
@media (max-width: 640px) {
  footer {
    text-align: center;
    padding-bottom: 120px; /* évite que le bouton flottant masque les liens */
  }
  .footer-line {
    justify-content: center;
    text-align: center;
  }
  .footer-address {
    display: none;
  }
}
.footer-link {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
}
.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: none;
  outline: none;
  box-shadow: 0 2px 0 currentColor;
}

/* ==== SOUS-FOOTER ÉQUIPE ==== */
.subfooter {
  padding: clamp(8px, 1.8vw, 16px) clamp(20px, 5vw, 40px);
}
/* Espacement uniforme entre blocs principaux */
.hero + .section,
.section + .section,
.section + .subfooter,
.subfooter + footer {
  margin-top: calc(var(--section-gap) / 4);
}
.subfooter {
  --subfooter-gap: clamp(14px, 3vw, 26px);
}
.subfooter > * + * {
  margin-top: var(--subfooter-gap);
}

/* (retiré) centrage du générateur d'idées */
.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.member {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
}
.member-photo-link {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.member-photo-link:hover,
.member-photo-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.member-photo-link:focus-visible {
  outline: 4px solid var(--ink);
  outline-offset: 4px;
}
.member img {
  width: clamp(96px, 22vw, 120px);
  height: clamp(96px, 22vw, 120px);
  border-radius: 999px;
  object-fit: cover;
  outline: 6px solid var(--ink);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  background: #fff;
}
.member h3 {
  margin: 0 0 8px;
}
.member .links {
  display: grid;
  gap: 8px;
}
.wa-link {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  transition: transform 0.08s ease, filter 0.08s ease, background 0.2s,
    color 0.2s;
}
.wa-link:visited {
  color: var(--ink);
}
.wa-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  background: var(--green);
  color: #fff;
}
.wa-link svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: currentColor;
  transition: transform 160ms ease, filter 200ms ease;
}

/* Bouton Instagram individuel */
.ig-link {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  transition: transform 0.08s ease, filter 0.08s ease, background 0.2s,
    color 0.2s;
}
.ig-link:visited {
  color: var(--ink);
}
.ig-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  background: var(--red);
  color: #fff;
}
.ig-link svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: currentColor;
  transition: transform 160ms ease, filter 200ms ease;
}

/* Fun hover micro-interactions on social icons */
@keyframes icon-bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.12);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.wa-link:hover svg,
.wa-link:focus-visible svg {
  animation: icon-bounce 260ms ease-out;
  filter: drop-shadow(0 0 6px var(--green));
}
.ig-link:hover svg,
.ig-link:focus-visible svg {
  animation: icon-bounce 260ms ease-out;
  filter: drop-shadow(0 0 6px var(--red));
}

/* Empilement propre des membres sur très petits écrans */
@media (max-width: 420px) {
  .member {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Liens sociaux dans la carte "Infos pratiques" */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* ==== MAP ==== */
.subfooter .map-wrap {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px;
}
.subfooter .map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .subfooter .map-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: var(--radius);
  outline: 6px solid var(--ink);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  background: #fff;
}
/* Titre de la carte */
.map-title {
  text-align: center;
  color: var(--paper);
  margin: 12px auto 12px;
}
/* En mode studio (dark), utilise l'encre claire pour le titre de la carte */
body.studio .map-title,
body.studio .map-title h2,
body.studio .map-title p {
  color: #fff !important;
}
/* Renfort desktop: cible précisément le bloc plan */
body.studio .subfooter .map-wrap .map-title h2,
body.studio .subfooter .map-wrap .map-title p {
  color: #fff !important;
}

/* Avis Google */
.reviews-wrap {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 20px;
}

/* Full-width paper background around the map section */
.map-paper.panel {
  /* Make the top padding smaller than usual panels */
  padding: clamp(12px, 2.5vw, 22px) clamp(16px, 3vw, 26px)
    clamp(20px, 3vw, 28px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* Remove extra spacing from inner wrap to let the panel define the spacing */
.map-paper .map-wrap {
  margin: 0;
  padding: 0;
}
/* Ensure title text contrasts on paper background in light mode */
.map-paper .map-title,
.map-paper .map-title h2,
.map-paper .map-title p {
  color: var(--ink);
}

/* Paper panel wrapper for the 3 cards grid */
.grid-paper.panel {
  padding: clamp(12px, 2.5vw, 22px) clamp(16px, 3vw, 26px)
    clamp(20px, 3vw, 28px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.grid-paper .grid {
  max-width: 100%;
  margin: 0;
}

/* Paper panel wrapper for the reviews grid */
.reviews-paper.panel {
  padding: clamp(12px, 2.5vw, 22px) clamp(16px, 3vw, 26px)
    clamp(20px, 3vw, 28px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-paper .reviews-wrap {
  margin: 0;
  padding: 0;
}
.reviews-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.reviews-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: clamp(16px, 2.2vw, 24px);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* prevent embed overflow on mobile */
}
.reviews-panel .elfsight-app-2d0118b8-c86e-4a2e-8d5c-0a28a29dfaf5,
.reviews-panel .elfsight-app-b52c68a8-9f5d-46f7-9b17-e0a0d188ede6 {
  width: 100% !important; /* force full width for embedded widgets */
  max-width: 100% !important;
}
.reviews-panel .elfsight-app-2d0118b8-c86e-4a2e-8d5c-0a28a29dfaf5 .eapps-widget,
.reviews-panel .elfsight-app-b52c68a8-9f5d-46f7-9b17-e0a0d188ede6 .eapps-widget {
  width: 100% !important; /* ensure inner widget scales on small screens */
  max-width: 100% !important;
}
.reviews-panel .elfsight-app-2d0118b8-c86e-4a2e-8d5c-0a28a29dfaf5 *,
.reviews-panel .elfsight-app-b52c68a8-9f5d-46f7-9b17-e0a0d188ede6 * {
  max-width: 100% !important; /* guard against fixed-width children */
}
.reviews-panel .google-rating {
  margin-top: 0;
}
.reviews-panel .google-rating + .google-rating-badge {
  margin-top: 4px;
}
.google-rating {
  min-height: 0;
  margin-top: 0;
  font-weight: 600;
}
.reviews-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Badge note Google (statique) */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  font-weight: 800;
  margin-top: 6px;
  text-decoration: none;
  color: var(--ink);
}
.google-rating-badge .rating-number {
  font-weight: 900;
  font-size: 1.66rem;
}
.google-rating-badge .rating-count {
  opacity: 0.85;
}
.google-rating-badge .stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 3px;
  font-size: 1.4rem;
}
.google-rating-badge .star-row,
.google-rating-badge .star-fill {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.google-rating-badge .star-row {
  color: #cfcfcf;
}
.google-rating-badge .star-fill {
  color: var(--yellow);
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  width: calc(var(--rating, 0) * 20%); /* 5 étoiles = 100% */
  pointer-events: none;
}
.social-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.social-panel p {
  max-width: 18ch;
  margin: 0;
}
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: auto;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: var(--paper);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  transition: transform 0.08s ease, filter 0.08s ease;
}
.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.social-icon img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 18px;
}

@media (max-width: 640px) {
  .social-icons {
    gap: 12px;
  }
  .social-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
  }
  .social-icon img {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
}

/* Instagram followers badge */
.ig-followers {
  margin-top: 10px;
}
.social-stat-badge {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}
.social-stat-badge svg {
  width: 18px;
  height: 18px;
}
.social-stat-badge .stat-number {
  font-weight: 900;
}
.social-stat-badge .stat-label {
  opacity: 0.85;
}
.social-stat-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ==== MENU FLOTTANT ==== */
.menu-fab {
  position: fixed;
  top: clamp(10px, 2vw, 18px);
  right: clamp(10px, 2vw, 18px);
  z-index: 9999; /* au-dessus des iframes/maps */
  transform: translateZ(
    0
  ); /* iOS: force le compositing au-dessus de l'iframe */
}
/* Conserve la position en haut à droite également sur mobile */
.menu-button {
  display: grid;
  place-items: center;
  width: clamp(40px, 6vw, 52px);
  height: clamp(40px, 6vw, 52px);
  border-radius: 999px;
  border: 0;
  outline: 4px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  z-index: 10001;
}
.menu-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.menu-button svg {
  width: clamp(18px, 3vw, 24px);
  height: clamp(18px, 3vw, 24px);
}
.menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  max-width: min(92vw, 340px);
  background: var(--paper);
  border-radius: var(--radius);
  outline: 6px solid var(--ink);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  z-index: 10000;
}
.menu-open .menu-dropdown {
  display: block;
}
.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item + .menu-item {
  margin-top: 8px;
}
.menu-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.menu-item--lang a {
  background: transparent;
  box-shadow: none;
}
.menu-item--lang a:hover,
.menu-item--lang a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
.menu-item a:hover {
  background: var(--green);
  color: #fff;
}
.menu-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}
.menu-icon--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  filter: none;
}
/* Accentuer le lien RDV en dark mode (menu) */
body.studio .menu-item a.menu-cta {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
}
body.studio .menu-item a.menu-cta:hover {
  filter: brightness(1.05);
  background: var(--yellow);
  color: var(--ink);
}
/* Espace supplémentaire entre CTA et bouton dark mode en mobile */
@media (max-width: 768px) {
  .studio-toggle {
    margin: 0.8rem auto 0; /* tu ajustes la valeur */
  }
}
/* ==== FORMULAIRE CONTACT ==== */
.contact-form {
  margin-top: 1.5rem;
}
.contact-form a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.form-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.75;
}
.form-hint--intro {
  font-weight: 600;
  opacity: 1;
}
.form-hint--footnote {
  margin-top: 1.5rem;
  text-align: center;
}
.form-fieldset {
  border: none;
  padding: 0;
  margin: 1.6rem 0;
}
.form-fieldset:first-of-type {
  margin-top: 1rem;
}
.form-fieldset .form-grid {
  margin-top: 1rem;
}
.form-label + .form-hint {
  margin-top: 0.5rem;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
@media (max-width: 720px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-label {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.form-alert {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 3px solid var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 1.2rem;
}
.form-alert img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.form-alert p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}
.form-alert strong {
  display: inline-block;
  color: var(--red);
}
@media (max-width: 600px) {
  .form-alert {
    align-items: flex-start;
  }
  .form-alert img {
    margin-top: 0.2rem;
  }
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  appearance: none;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 3px solid var(--ink);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.08s ease, box-shadow 0.16s ease,
    border-color 0.16s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(194, 59, 42, 0.18);
  transform: translateY(-2px);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-size: 1rem;
}
@media (max-width: 680px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 1.125rem; /* 18px -> évite le zoom iOS */
  }
}
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.form-fieldset > .form-options {
  margin-top: 1.2rem;
}
.form-option {
  display: inline-block;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  transition: transform 0.08s ease, border-color 0.16s ease,
    background 0.16s ease, color 0.16s ease;
  cursor: pointer;
  position: relative;
}
.form-option span {
  display: inline-block;
}
.form-option input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.form-option--checkbox {
  max-width: 100%;
  text-align: left;
  line-height: 1.35;
}
.form-option--checkbox span {
  display: block;
  white-space: normal;
}
.form-option:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
}
.form-option.is-active,
.form-option:focus-within {
  border-color: var(--red);
  background: rgba(194, 59, 42, 0.16);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(194, 59, 42, 0.2);
}
.form-option input:focus-visible + span {
  outline: 3px solid rgba(194, 59, 42, 0.4);
  outline-offset: 4px;
  border-radius: 12px;
}
.form-options--artists {
  justify-content: center;
  gap: clamp(0.6rem, 3vw, 1.3rem);
}
.form-option--artist {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
  flex: 1 1 clamp(140px, 38vw, 200px);
  max-width: 220px;
}
.form-option--artist:hover,
.form-option--artist:focus-within,
.form-option--artist.is-active {
  background: transparent;
  box-shadow: none;
  transform: none;
}
.form-option--artist > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}
.form-option-artist-image {
  width: clamp(120px, 32vw, 160px);
  height: clamp(120px, 32vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.12s ease, box-shadow 0.16s ease,
    border-color 0.16s ease;
}
.form-option-artist-name {
  font-size: 0.95rem;
  font-weight: 700;
}
.form-option--artist:hover .form-option-artist-image,
.form-option--artist:focus-within .form-option-artist-image {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.form-option--artist.is-active .form-option-artist-image {
  border-color: var(--red);
  box-shadow: 0 0 0 6px rgba(194, 59, 42, 0.15);
}
.contact-form select {
  cursor: pointer;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
}
.pushme-button {
  width: clamp(140px, 20vw, 180px);
  height: clamp(140px, 20vw, 180px);
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.08s ease, filter 0.08s ease;
}
.pushme-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}
.pushme-button:hover,
.pushme-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.pushme-button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  filter: none;
  transform: none;
}
.form-actions .form-note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}
.form-hint--pushme {
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 600;
}
.form-feedback {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  border: 3px solid currentColor;
  font-weight: 600;
  text-align: center;
}
.form-feedback--error {
  color: var(--red);
  background: rgba(194, 59, 42, 0.1);
}
.form-feedback--success {
  color: var(--green);
  border-color: var(--green);
  background: rgba(30, 96, 75, 0.1);
}
.form-feedback p {
  margin-bottom: 0;
}
body.studio .form-option {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
}
body.studio .form-option:hover {
  background: rgba(0, 0, 0, 0.7);
}
body.studio .form-option.is-active,
body.studio .form-option:focus-within {
  border-color: var(--red);
  background: rgba(255, 59, 48, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.28);
}
.form-options--single {
  justify-content: center;
}
.contact-form .cta {
  transition: transform 0.12s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.contact-form .cta:hover,
.contact-form .cta:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(194, 59, 42, 0.25);
}
body.studio .contact-form .cta:hover,
body.studio .contact-form .cta:focus-visible {
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.35);
}
body.studio .contact-form input,
body.studio .contact-form textarea,
body.studio .contact-form select {
  background: rgba(15, 15, 15, 0.85);
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.55);
}
body.studio .form-feedback--success {
  background: rgba(0, 195, 137, 0.1);
}
/* ==== VIDEO PAGE ==== */
.section-videos {
  padding-top: clamp(2rem, 5vw, 3rem);
}
.video-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
.video-copy {
  max-width: 520px;
  text-align: center;
}
.video-copy h2 {
  margin-bottom: 0.6rem;
}
.video-copy p {
  margin-bottom: 0.8rem;
}
.video-copy-note {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 0;
}
.video-experience {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.video-phone-stage {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.video-phone {
  width: min(448px, 90vw);
  border: 12px solid #050505;
  border-radius: 2.4rem;
  padding: 0.8rem;
  background: linear-gradient(145deg, #151515, #050505);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  position: relative;
}
.video-phone-notch {
  width: 40%;
  height: 16px;
  border-radius: 999px;
  background: #050505;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}
.video-phone-screen {
  border-radius: 1.8rem;
  background: #111;
  padding: 0.9rem 0.9rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
}
.video-phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f8f8f2;
  font-size: 0.85rem;
  opacity: 0.8;
}
.video-phone-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f8f8f2;
  display: inline-flex;
}
.video-phone-status-live {
  font-weight: 700;
  color: #ff5572;
}
.video-phone-media {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 1.4rem;
  background: #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.video-phone-caption {
  color: #f8f8f2;
  font-weight: 600;
  font-size: 0.95rem;
}
.video-side-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.video-side-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  min-width: 150px;
  height: 46px;
  padding: 0 0.95rem 0 0.6rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.16s ease,
    box-shadow 0.16s ease;
}
.video-side-button:hover,
.video-side-button:focus-visible {
  transform: translateY(-2px);
}
.video-side-button.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(194, 59, 42, 0.15);
}
.video-side-pin {
  width: 8px;
  height: 30px;
  border-radius: 999px;
  background: var(--ink);
  display: inline-flex;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.18);
}
.video-side-button.is-active .video-side-pin {
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(194, 59, 42, 0.2);
}
.video-side-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
body.studio .video-side-button {
  background: rgba(0, 0, 0, 0.65);
  color: #f6f6f6;
  border-color: rgba(255, 255, 255, 0.4);
}
body.studio .video-side-button .video-side-pin {
  background: rgba(255, 255, 255, 0.65);
}
body.studio .video-side-button.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}
@media (min-width: 720px) {
  .video-experience {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .video-side-button {
    min-width: unset;
    flex: 1 1 140px;
  }
}
/* ==== CUSTOM INK CURSOR ==== */
/* Curseur personnalisé */
a,
button,
[role="button"],
.cta,
.tag,
.menu-button,
.studio-toggle,
.wa-link,
.ig-link,
label {
  cursor: url("/assets/media/img/cursor/cursor6.ico") 4 2, url("/assets/media/img/cursor/cursor3.png") 4 2, pointer;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea {
  cursor: text;
}

select {
  cursor: url("/assets/media/img/cursor/cursor6.ico") 4 2, url("/assets/media/img/cursor/cursor3.png") 4 2, pointer;
}

@media (hover: none), (pointer: coarse) {
  body,
  a,
  button,
  [role="button"],
  .cta,
  .tag,
  .menu-button,
  .studio-toggle,
  .wa-link,
  .ig-link,
  label,
  select {
    cursor: auto !important;
  }
}
