/* ---- Summer Sky · Bright daylight palette ---- */
:root {
  --cream: #fff4e0;        /* primary background */
  --cream-2: #ffe8c2;
  --paper: #fffbf2;

  --ink: #1a0d3a;          /* deep purple-black for text */
  --ink-2: #3a1f5e;

  --sun-1: #ff5e3a;        /* coral */
  --sun-2: #ff8a3d;
  --sun-3: #ffc23d;        /* primary yellow */
  --sun-4: #fff066;

  --sky-1: #6dd5ff;        /* sky blue */
  --sky-2: #2dc8ff;
  --sky-3: #8ee5ff;
  --pool: #00bce5;

  --pink-1: #ff3da8;
  --pink-2: #ff85b8;
  --pink-3: #ffd0e3;

  --grass: #6fd96a;
  --lime: #c8f24a;

  --plum: #5b2bb3;
  --plum-2: #8a3df0;

  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-pill: 999px;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

/* Fix Android : empêche tout débordement horizontal */
html {
  overflow-x: hidden;
  max-width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  position: relative;
}

#root, #chatbot-root {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle 700px at 50% -100px, #ffe066 0%, #ffc23d 40%, transparent 70%),
    radial-gradient(circle 600px at 90% 10%, #ff85b8 0%, transparent 60%),
    radial-gradient(circle 700px at 0% 30%, #8ee5ff 0%, transparent 60%),
    linear-gradient(180deg, #ffd6a0 0%, #ffe9c2 30%, #fff4e0 60%, #ffe8d4 100%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26,13,58,0.2); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,13,58,0.4); }

.shell {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--pink-1);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin: 0;
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) rotate(-1deg); }

.btn-sun {
  background: var(--ink);
  color: var(--sun-3);
  box-shadow: 6px 6px 0 var(--sun-3);
}
.btn-sun:hover { box-shadow: 8px 8px 0 var(--sun-3); }

.btn-pink {
  background: var(--pink-1);
  color: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-pink:hover { box-shadow: 8px 8px 0 var(--ink); }

.btn-pool {
  background: var(--sky-1);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--sun-3); }

/* ---- Sticker / Pill ---- */
.sticker {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--ink);
  border: 2px solid var(--ink);
}
.sticker.s-sun   { background: var(--sun-3); color: var(--ink); }
.sticker.s-pink  { background: var(--pink-1); color: var(--cream); }
.sticker.s-sky   { background: var(--sky-1); color: var(--ink); }
.sticker.s-lime  { background: var(--lime); color: var(--ink); }
.sticker.s-plum  { background: var(--plum); color: var(--cream); }
.sticker.s-cream { background: var(--cream); color: var(--ink); }

/* ---- Color cards ---- */
.colorcard {
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 2px solid var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
  box-shadow: 6px 6px 0 var(--ink);
}
.colorcard:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }

.cc-sun   { background: var(--sun-3); color: var(--ink); }
.cc-pink  { background: var(--pink-1); color: var(--cream); }
.cc-sky   { background: var(--sky-1); color: var(--ink); }
.cc-lime  { background: var(--lime); color: var(--ink); }
.cc-plum  { background: var(--plum); color: var(--cream); }
.cc-coral { background: var(--sun-1); color: var(--cream); }
.cc-cream { background: var(--paper); color: var(--ink); }
.cc-pool  { background: var(--pool); color: var(--cream); }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px var(--pad);
  background: rgba(255, 244, 224, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--ink);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-logo .word-summer { color: var(--ink); }
.nav-logo .word-sky { color: var(--pink-1); font-style: italic; }

.nav-logo .sun {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff066, #ff8a3d 60%, #ff3d6e);
  box-shadow: 0 0 30px rgba(255, 138, 61, 0.5);
  position: relative;
}
.nav-logo .sun::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--ink);
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
}
.nav-link {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
  background: transparent;
}
.nav-link:hover { color: var(--pink-1); }
.nav-link.active {
  background: var(--ink);
  color: var(--sun-3);
}
.nav-burger {
  display: none;
  background: var(--paper);
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(circle 600px at 80% 0%, #ff85b8, transparent 60%),
    radial-gradient(circle 500px at 0% 100%, #8ee5ff, transparent 60%),
    var(--cream);
  display: flex;
  flex-direction: column;
  padding: 20px var(--pad);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-list button {
  text-align: left;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 9vw, 60px);
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 2px solid var(--ink);
}
.mobile-menu-list button:hover { color: var(--pink-1); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 100px) 0 clamp(60px, 10vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-title {
  font-size: clamp(80px, 17vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
  font-family: "Bagel Fat One", "Bricolage Grotesque", system-ui, sans-serif;
  position: relative;
  overflow: visible;
  padding-right: 20px;
}
.hero-title .word { display: block; }

.hero-title .word.summer {
  color: var(--sun-1);
  -webkit-text-stroke: 0;
  text-shadow:
    6px 6px 0 var(--sun-3),
    12px 12px 0 var(--ink);
}
.hero-title .word.sky {
  color: var(--pink-1);
  text-shadow:
    6px 6px 0 var(--sky-1),
    12px 12px 0 var(--ink);
  margin-left: clamp(20px, 6vw, 100px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 2;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-bottom-strip {
  margin-top: clamp(40px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-bottom-strip > div { padding: 22px 24px; }
.hero-bottom-strip .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 600;
}
.hero-bottom-strip .value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  margin-top: 4px;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (max-width: 700px) {
  .hero-bottom-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Slanted sticker badges in hero */
.hero-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

/* ---- Section ---- */
.section {
  padding: clamp(60px, 10vw, 130px) 0;
  position: relative;
  z-index: 2;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 12px 0 0;
  color: var(--ink);
}

.section-head h2 em {
  font-style: italic;
  color: var(--pink-1);
}

/* ---- Marquee ---- */
.marquee-outer {
  overflow: hidden;   /* clip proprement sans créer de scroll horizontal */
  width: 100%;
  max-width: 100%;
}
.marquee {
  position: relative;
  transform: rotate(-1.5deg);
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
  color: var(--sun-3);
  border-block: 3px solid var(--ink);
  white-space: nowrap;
  margin-top: 30px;
  margin-bottom: 30px;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 32s linear infinite;
  padding-left: 48px;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
}
.marquee-track .dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--pink-1);
  align-self: center;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee.alt {
  background: var(--pink-1);
  color: var(--cream);
  transform: rotate(1deg);
}
.marquee.alt .marquee-track .dot { background: var(--sun-3); }

/* ---- Floating shapes ---- */
.shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.shape.s1 { width: 460px; height: 460px; top: 5%; left: 60%; background: #ff8a3d; animation: float1 22s ease-in-out infinite; }
.shape.s2 { width: 540px; height: 540px; top: 25%; left: -10%; background: #ff85b8; animation: float2 28s ease-in-out infinite; }
.shape.s3 { width: 600px; height: 600px; top: 65%; left: 50%; background: #ffb347; animation: float3 26s ease-in-out infinite; }
.shape.s4 { width: 380px; height: 380px; top: 80%; left: 5%; background: #fff066; animation: float1 30s ease-in-out infinite reverse; }

@keyframes float1 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(40px, -50px, 0) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-50px, 60px, 0) scale(1.15); }
}
@keyframes float3 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-70px, -40px, 0) scale(0.9); }
}

/* Big sun in bg */
.sun-orb {
  position: fixed;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, #fff066 0%, #ffc23d 30%, #ff8a3d 55%, transparent 75%);
  filter: blur(2px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  animation: sunPulse 6s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}
/* Mobile — soleil plus chaud et plus visible */
@media (max-width: 768px) {
  .sun-orb {
    width: 600px; height: 600px;
    top: -180px;
    opacity: 1;
    background: radial-gradient(circle at 50% 60%, #fff066 0%, #ffc23d 25%, #ff8a3d 50%, #ff6b35 65%, transparent 80%);
  }
  .shape.s1 { width: 300px; height: 300px; opacity: 0.85; }
  .shape.s2 { width: 340px; height: 340px; opacity: 0.75; }
  .shape.s3 { width: 380px; height: 380px; top: 55%; left: 30%; opacity: 0.8; }
  .shape.s4 { width: 260px; height: 260px; opacity: 0.7; }
}

/* Sun rays */
.rays {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  pointer-events: none;
  opacity: 0.4;
  animation: spin 80s linear infinite;
  z-index: 1;
}
.rays svg { width: 100%; height: 100%; }

/* Floating decorative emojis (CSS shapes, not real emojis) */
.float-bubble {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--ink);
  z-index: 1;
}

/* ---- Cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Artist card */
.artist-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  isolation: isolate;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.artist-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }

.artist-card.bg-1 { background: linear-gradient(170deg, var(--sun-3), var(--sun-1)); }
.artist-card.bg-2 { background: linear-gradient(170deg, var(--pink-2), var(--pink-1)); }
.artist-card.bg-3 { background: linear-gradient(170deg, var(--sky-1), var(--pool)); }
.artist-card.bg-4 { background: linear-gradient(170deg, var(--lime), var(--grass)); }
.artist-card.bg-5 { background: linear-gradient(170deg, var(--sun-4), var(--sun-2)); }
.artist-card.bg-6 { background: linear-gradient(170deg, var(--plum-2), var(--plum)); }
.artist-card.bg-7 { background: linear-gradient(170deg, var(--pink-3), var(--pink-1)); }
.artist-card.bg-8 { background: linear-gradient(170deg, var(--sun-1), var(--pink-1)); }

.artist-card .img-slot {
  position: absolute;
  inset: 16px;
  border-radius: var(--r-sm);
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 16px, transparent 16px 32px),
    rgba(255,255,255,0.18);
  border: 2px dashed rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 110px;
}
.artist-card .img-slot::after {
  content: "PORTRAIT";
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.4);
}
.artist-card.dark-text { color: var(--ink); }
.artist-card.light-text { color: var(--cream); }
.artist-card.light-text .img-slot { background: repeating-linear-gradient(45deg, rgba(255,255,255,0.15) 0 16px, transparent 16px 32px), rgba(0,0,0,0.12); border-color: rgba(255,255,255,0.4); }
.artist-card.light-text .img-slot::after { color: rgba(255,255,255,0.7); }

.artist-card .body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
}
.artist-card .name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.artist-card .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 6px;
  font-weight: 600;
}
.artist-card .stage-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.artist-card.tba .img-slot { opacity: 0.7; }
.artist-card.tba .name { font-style: italic; opacity: 0.7; }
.artist-card.has-photo .img-slot { background: none; border-color: transparent; }
.artist-card.has-photo .img-slot::after { display: none; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.artist-card.featured {
  aspect-ratio: 4/5;
  grid-column: span 1;
}
.artist-card.semi {
  aspect-ratio: 4/5;
  grid-column: span 1;
}
@media (max-width: 700px) {
  .artist-card.featured { grid-column: span 1; }
  .artist-card.semi { grid-column: span 1; }
}
/* Mobile — images plein format sur toutes les cartes artiste */
@media (max-width: 640px) {
  /* Featured grid : R2 et Leto en pleine largeur, plus grands */
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .artist-card.featured {
    aspect-ratio: 3/4;
    min-height: 300px;
  }
  .artist-card.featured .name {
    font-size: clamp(36px, 11vw, 52px);
  }

  /* Toutes les cartes : image plein format */
  .artist-card .img-slot {
    inset: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: none !important;
  }
  .artist-card .img-slot::after { display: none !important; }
  .artist-card .img-slot img { border-radius: 0 !important; }

  /* Gradient de lisibilité pour le nom */
  .artist-card .body {
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
    padding: 44px 14px 14px;
    z-index: 2;
  }
  .artist-card .name {
    color: #fff !important;
    font-size: clamp(18px, 5.5vw, 28px);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  .artist-card .role { color: rgba(255,255,255,0.8) !important; }
  .artist-card .stage-pill { z-index: 3; }
}

/* Autres artistes (non-featured) grid */
.artists-grid-others {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.artists-grid-others .artist-card {
  aspect-ratio: 3/4;
}
.artists-grid-others .artist-card .name {
  font-size: clamp(14px, 2.5vw, 26px);
}
@media (max-width: 600px) {
  .artists-grid-others {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid-others .artist-card .name {
    font-size: clamp(13px, 4vw, 20px);
  }
}

/* ---- Ticket card ---- */
.ticket-card {
  position: relative;
  border-radius: var(--r-md);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.ticket-card:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }

.ticket-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ticket-card .name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 0.95;
}
.ticket-card .price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.ticket-card .price small {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 700;
  margin-left: 2px;
}
.ticket-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  flex: 1;
}
.ticket-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}
.ticket-card ul li::before {
  content: "★";
  margin-top: -1px;
  flex-shrink: 0;
}

/* Ticket variants - bright */
.ticket-early { background: var(--sun-3); color: var(--ink); }
.ticket-standard { background: var(--cream); color: var(--ink); }
.ticket-vip { background: var(--pink-1); color: var(--cream); }
.ticket-group { background: var(--sky-1); color: var(--ink); }
.ticket-door { background: var(--ink); color: var(--cream); }

.ticket-card .ribbon {
  position: absolute;
  top: 18px; right: -38px;
  background: var(--ink);
  color: var(--sun-3);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 6px 44px;
  transform: rotate(38deg);
  text-transform: uppercase;
  z-index: 2;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ticket-card .cta {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.ticket-perforation {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(90deg, currentColor 0 8px, transparent 8px 16px);
  opacity: 0.5;
  margin: 4px -28px;
}
.ticket-perforation::before, .ticket-perforation::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px; height: 22px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket-perforation::before { left: -12px; }
.ticket-perforation::after { right: -12px; }
.ticket-vip .ticket-perforation::before, .ticket-vip .ticket-perforation::after { background: var(--cream); }
.ticket-group .ticket-perforation::before, .ticket-group .ticket-perforation::after { background: var(--cream); }
.ticket-door .ticket-perforation::before, .ticket-door .ticket-perforation::after { background: var(--cream); }

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 2;
  padding: 80px var(--pad) 40px;
  margin-top: 80px;
  background: var(--ink);
  color: var(--cream);
  border-top: 4px solid var(--ink);
  overflow: hidden; /* clip footer-big qui dépasse en 100vw */
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--sun-3);
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul li { opacity: 0.85; transition: all 0.2s; cursor: pointer; }
.footer ul li:hover { opacity: 1; color: var(--sun-3); }
.footer-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 16vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin: 60px 0 30px;
  color: var(--sun-3);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  /* Casse la contrainte max-width du footer-inner → pleine largeur viewport */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
.footer-big em { font-style: italic; color: var(--pink-1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ---- Image placeholders ---- */
.placeholder-img {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(26,13,58,0.06) 0 14px, transparent 14px 28px),
    var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26,13,58,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.placeholder-img.var-pink { background: repeating-linear-gradient(45deg, rgba(255,255,255,0.15) 0 14px, transparent 14px 28px), var(--pink-1); color: var(--cream); border-color: var(--ink); }
.placeholder-img.var-sky { background: repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 14px, transparent 14px 28px), var(--sky-1); color: var(--ink); }
.placeholder-img.var-sun { background: repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 14px, transparent 14px 28px), var(--sun-3); color: var(--ink); }
.placeholder-img.var-lime { background: repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 14px, transparent 14px 28px), var(--lime); color: var(--ink); }

/* ---- Page transition ---- */
.page-fade {
  animation: pageFade 0.6s cubic-bezier(0.2, 0, 0, 1);
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Form ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.field input, .field textarea, .field select {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  background: var(--sun-4);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.field textarea { min-height: 140px; }

/* ---- Countdown ---- */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
  max-width: 600px;
}
.cd-cell {
  background: var(--ink);
  color: var(--sun-3);
  border-radius: var(--r-sm);
  padding: 18px 8px;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--pink-1);
}
.cd-cell:nth-child(2) { box-shadow: 4px 4px 0 var(--sky-1); }
.cd-cell:nth-child(3) { box-shadow: 4px 4px 0 var(--sun-3); background: var(--pink-1); color: var(--cream); }
.cd-cell:nth-child(4) { box-shadow: 4px 4px 0 var(--ink); background: var(--sky-1); color: var(--ink); }

.cd-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 600;
}

/* ---- Lineup stage tabs ---- */
.stage-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.stage-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
}
.stage-tab.active {
  background: var(--ink);
  color: var(--sun-3);
}
.stage-tab .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 999px;
  margin-right: 8px;
}

/* ---- Schedule ---- */
.schedule {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--ink);
  align-items: center;
  transition: background 0.2s;
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row:hover { background: var(--sun-4); }
.schedule-time {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ink);
}
.schedule-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.schedule-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
  font-weight: 600;
}
.schedule-stage {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
  white-space: nowrap;
  font-weight: 700;
}

/* ---- Info cards ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.info-card {
  padding: 28px 24px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.info-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--ink);
}
.info-card.t-sun   { background: var(--sun-3); color: var(--ink); }
.info-card.t-pink  { background: var(--pink-1); color: var(--cream); }
.info-card.t-sky   { background: var(--sky-1); color: var(--ink); }
.info-card.t-lime  { background: var(--lime); color: var(--ink); }
.info-card.t-cream { background: var(--paper); color: var(--ink); }
.info-card.t-coral { background: var(--sun-1); color: var(--cream); }
.info-card.t-plum  { background: var(--plum); color: var(--cream); }
.info-card.t-pool  { background: var(--pool); color: var(--cream); }

.info-card .icon-square {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  background: var(--ink);
  color: var(--sun-3);
  border: 2px solid var(--ink);
}
.info-card.t-pink .icon-square,
.info-card.t-coral .icon-square,
.info-card.t-plum .icon-square,
.info-card.t-pool .icon-square { background: var(--cream); color: var(--ink); }

.info-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 6px 0 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.info-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery > * {
  border-radius: var(--r-sm);
  overflow: hidden;
}
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-big { grid-column: span 2; }
}

/* ---- TBA sticker ---- */
.tba-sticker {
  background: var(--ink);
  color: var(--sun-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--ink);
  transform: rotate(4deg);
}

/* ---- Page header ---- */
.page-header {
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 40px);
  position: relative;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(70px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin: 12px 0 0;
}
.page-title.gradient-sun {
  color: var(--sun-1);
  text-shadow: 6px 6px 0 var(--sun-3), 12px 12px 0 var(--ink);
}
.page-title.gradient-pool {
  color: var(--pool);
  text-shadow: 6px 6px 0 var(--sky-1), 12px 12px 0 var(--ink);
}
.page-title.gradient-pink {
  color: var(--pink-1);
  text-shadow: 6px 6px 0 var(--pink-2), 12px 12px 0 var(--ink);
}
.page-subtitle {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 28px;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--ink-2);
}

/* ---- Two-column ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.contact-side { position: sticky; top: 100px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.social-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}
.social-chip:hover {
  background: var(--sun-3);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

/* Concept blocks (replace dark glass) */
.block {
  border-radius: var(--r-md);
  border: 2px solid var(--ink);
  padding: clamp(32px, 5vw, 60px);
  box-shadow: 8px 8px 0 var(--ink);
}
.block.b-sun { background: var(--sun-3); color: var(--ink); }
.block.b-pink { background: var(--pink-1); color: var(--cream); }
.block.b-sky { background: var(--sky-1); color: var(--ink); }
.block.b-cream { background: var(--paper); color: var(--ink); }

/* FAQ */
.faq {
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}
.faq button {
  background: transparent;
  color: var(--ink);
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
}
.faq button + button { border-top: 2px solid var(--ink); }
.faq .q-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq .q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.faq .q-icon {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.faq button.open .q-icon { background: var(--sun-3); }

.faq .a-text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-2);
}

/* Highlights with big numbers */
.highlight-card {
  border-radius: var(--r-md);
  border: 2px solid var(--ink);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s;
  box-shadow: 6px 6px 0 var(--ink);
}
.highlight-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.highlight-card .big-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.06em;
}
.highlight-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.highlight-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
}

/* Confetti dots scattered */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.confetti span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  animation: confettiSpin 6s ease-in-out infinite;
}

@keyframes confettiSpin {
  0%, 100% { transform: rotate(0deg) translate3d(0,0,0); }
  50% { transform: rotate(180deg) translate3d(0,15px,0); }
}

/* Contact key-value rows */
.kv-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 2px solid var(--ink);
}
.kv-row .k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
}
.kv-row .v { font-weight: 600; }
.kv-row.email .v { color: var(--pink-1); }

/* Inline strong */
.section em { font-style: italic; color: var(--pink-1); }

/* Hero meta sticker */
.meta-sticker {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.meta-sticker .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-1);
}
.meta-sticker .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.meta-sticker.alt-1 { background: var(--sun-3); }
.meta-sticker.alt-2 { background: var(--sky-1); }
.meta-sticker.alt-3 { background: var(--pink-2); }
.meta-sticker.alt-3 .label { color: var(--ink); }

/* ================================================
   TWEAKS · Mood / Energy / Title
   ================================================ */

/* --- Mood: Sunset --- */
body[data-mood="sunset"] {
  background:
    radial-gradient(circle 700px at 50% -100px, #ffd166 0%, #ff8a3d 35%, transparent 70%),
    radial-gradient(circle 700px at 90% 20%, #ff3d6e 0%, transparent 60%),
    radial-gradient(circle 800px at 0% 60%, #b85aff 0%, transparent 60%),
    linear-gradient(180deg, #ff7a3d 0%, #ff5e8e 35%, #a14de8 70%, #5b2bb3 100%);
  color: var(--cream);
}
body[data-mood="sunset"] .nav { background: rgba(91, 43, 179, 0.55); border-bottom-color: rgba(255, 255, 255, 0.4); }
body[data-mood="sunset"] .nav-link { color: var(--cream); }
body[data-mood="sunset"] .nav-link.active { background: var(--sun-3); color: var(--ink); }
body[data-mood="sunset"] .nav-links { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
body[data-mood="sunset"] .nav-burger { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: var(--cream); }
body[data-mood="sunset"] .section-head h2,
body[data-mood="sunset"] .h-display,
body[data-mood="sunset"] .schedule-name { color: var(--cream); }
body[data-mood="sunset"] .page-subtitle { color: rgba(255,244,224,0.85); }
body[data-mood="sunset"] .section em,
body[data-mood="sunset"] .section-head em { color: var(--sun-3); }
body[data-mood="sunset"] .schedule { background: rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.3); }
body[data-mood="sunset"] .schedule-row { border-bottom-color: rgba(255,255,255,0.2); }
body[data-mood="sunset"] .schedule-row:hover { background: rgba(255,194,61,0.2); }
body[data-mood="sunset"] .schedule-time { color: var(--sun-3); }

/* --- Mood: After-dark --- */
body[data-mood="afterdark"] {
  background:
    radial-gradient(circle 800px at 50% -100px, #6a3df0 0%, #2a0a55 50%, transparent 80%),
    radial-gradient(circle 600px at 85% 30%, #ff3da8 0%, transparent 60%),
    radial-gradient(circle 700px at 5% 70%, #00bce5 0%, transparent 60%),
    linear-gradient(180deg, #1a0a3a 0%, #0a0520 50%, #160833 100%);
  color: var(--cream);
}
body[data-mood="afterdark"] .nav { background: rgba(10, 5, 32, 0.7); border-bottom-color: rgba(255,255,255,0.2); }
body[data-mood="afterdark"] .nav-link { color: var(--cream); }
body[data-mood="afterdark"] .nav-link.active { background: var(--pink-1); color: var(--cream); }
body[data-mood="afterdark"] .nav-links { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
body[data-mood="afterdark"] .nav-burger { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: var(--cream); }
body[data-mood="afterdark"] .section-head h2,
body[data-mood="afterdark"] .h-display,
body[data-mood="afterdark"] .schedule-name { color: var(--cream); }
body[data-mood="afterdark"] .page-subtitle { color: rgba(255,244,224,0.75); }
body[data-mood="afterdark"] .section em,
body[data-mood="afterdark"] .section-head em { color: var(--pink-1); }
body[data-mood="afterdark"] .eyebrow { color: var(--sky-1); }
body[data-mood="afterdark"] .eyebrow::before { background: var(--sky-1); }
body[data-mood="afterdark"] .schedule { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
body[data-mood="afterdark"] .schedule-row { border-bottom-color: rgba(255,255,255,0.12); }
body[data-mood="afterdark"] .schedule-row:hover { background: rgba(255,61,168,0.15); }
body[data-mood="afterdark"] .schedule-time { color: var(--sky-1); }
body[data-mood="afterdark"] .sun-orb { opacity: 0.4; filter: blur(2px) hue-rotate(280deg); }
body[data-mood="afterdark"] .shape { opacity: 0.4; filter: blur(100px); }

/* --- Energy: Chill (calm everything) --- */
body[data-energy="chill"] .marquee { transform: translateX(-50%) rotate(0deg) !important; animation-duration: 60s; }
body[data-energy="chill"] .marquee.alt { transform: translateX(-50%) rotate(0deg) !important; }
body[data-energy="chill"] .marquee-track { animation-duration: 60s; }
body[data-energy="chill"] .sticker { transform: rotate(0deg) !important; box-shadow: 2px 2px 0 var(--ink); }
body[data-energy="chill"] .tba-sticker { transform: rotate(0deg); }
body[data-energy="chill"] .ribbon { display: none; }
body[data-energy="chill"] .colorcard,
body[data-energy="chill"] .info-card,
body[data-energy="chill"] .ticket-card,
body[data-energy="chill"] .highlight-card,
body[data-energy="chill"] .schedule { box-shadow: 3px 3px 0 var(--ink); }
body[data-energy="chill"] .shape { opacity: 0.25; filter: blur(120px); }

/* --- Energy: Chaos (max party) --- */
body[data-energy="chaos"] .marquee { transform: translateX(-50%) rotate(-3deg) !important; animation-duration: 18s; }
body[data-energy="chaos"] .marquee.alt { transform: translateX(-50%) rotate(2.5deg) !important; }
body[data-energy="chaos"] .marquee-track { animation-duration: 16s; }
body[data-energy="chaos"] .sticker { box-shadow: 5px 5px 0 var(--ink); animation: stickerWiggle 3s ease-in-out infinite; }
body[data-energy="chaos"] .sticker:nth-of-type(2n) { animation-delay: -1s; animation-direction: reverse; }
body[data-energy="chaos"] .sticker:nth-of-type(3n) { animation-delay: -2s; }
body[data-energy="chaos"] .colorcard,
body[data-energy="chaos"] .info-card,
body[data-energy="chaos"] .ticket-card,
body[data-energy="chaos"] .highlight-card { box-shadow: 10px 10px 0 var(--ink); }
body[data-energy="chaos"] .schedule { box-shadow: 12px 12px 0 var(--ink); }
body[data-energy="chaos"] .colorcard:nth-child(2n),
body[data-energy="chaos"] .info-card:nth-child(2n),
body[data-energy="chaos"] .artist-card:nth-child(2n) { transform: rotate(-1.2deg); }
body[data-energy="chaos"] .colorcard:nth-child(2n+1),
body[data-energy="chaos"] .info-card:nth-child(2n+1),
body[data-energy="chaos"] .artist-card:nth-child(2n+1) { transform: rotate(1.2deg); }
body[data-energy="chaos"] .shape { opacity: 0.75; filter: blur(60px); animation-duration: 14s; }
body[data-energy="chaos"] .sun-orb { animation-duration: 3s; }
body[data-energy="chaos"] .hero-stickers .sticker:nth-child(1) { transform: rotate(-6deg); }
body[data-energy="chaos"] .hero-stickers .sticker:nth-child(2) { transform: rotate(5deg); }
body[data-energy="chaos"] .hero-stickers .sticker:nth-child(3) { transform: rotate(-3deg); }

@keyframes stickerWiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* --- Title style: Flat (no offset shadows) --- */
body[data-title="flat"] .hero-title .word.summer,
body[data-title="flat"] .hero-title .word.sky,
body[data-title="flat"] .page-title.gradient-sun,
body[data-title="flat"] .page-title.gradient-pool,
body[data-title="flat"] .page-title.gradient-pink,
body[data-title="flat"] .footer-big {
  text-shadow: none !important;
}
body[data-title="flat"] .hero-title .word.summer { color: var(--ink); }
body[data-title="flat"] .hero-title .word.sky { color: var(--pink-1); }

/* --- Title style: Outline --- */
body[data-title="outline"] .hero-title .word.summer,
body[data-title="outline"] .hero-title .word.sky,
body[data-title="outline"] .page-title.gradient-sun,
body[data-title="outline"] .page-title.gradient-pool,
body[data-title="outline"] .page-title.gradient-pink,
body[data-title="outline"] .footer-big {
  text-shadow: none !important;
  -webkit-text-stroke: 3px var(--ink);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body[data-title="outline"] .footer-big {
  -webkit-text-stroke-color: var(--sun-3);
}
body[data-title="outline"] .footer-big em {
  -webkit-text-stroke-color: var(--pink-1);
}
body[data-mood="sunset"][data-title="outline"] .hero-title .word.summer,
body[data-mood="sunset"][data-title="outline"] .page-title.gradient-sun,
body[data-mood="sunset"][data-title="outline"] .hero-title .word.sky,
body[data-mood="afterdark"][data-title="outline"] .hero-title .word.summer,
body[data-mood="afterdark"][data-title="outline"] .page-title.gradient-sun,
body[data-mood="afterdark"][data-title="outline"] .hero-title .word.sky {
  -webkit-text-stroke-color: var(--cream);
}

/* ---- Scroll Expand Hero ---- */
.se-root {
  position: relative;
  overflow-x: hidden;
  transition: background 0.7s ease-in-out;
}
.se-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100dvh;
}
.se-stage-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}
.se-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  transition: opacity 0.1s linear;
}
.se-bg-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.06) saturate(1.12) brightness(1.04);
}
.se-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}
.se-container {
  position: relative;
  z-index: 10;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.se-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  position: relative;
}
.se-media-card {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  max-width: 95vw;
  max-height: 85vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.35), 8px 8px 0 var(--ink);
  border: 3px solid var(--ink);
  overflow: hidden;
}
.se-media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.se-media-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  border: 0;
}
.se-media-block {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.se-media-tint {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 20, 0.15);
  border-radius: 18px;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.se-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
  z-index: 11;
  gap: 6px;
  pointer-events: none;
}
.se-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--sun-3);
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 2px 2px 0 var(--ink);
}
.se-scrollhint {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.se-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(8px, 1.5vw, 18px);
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 0 var(--pad);
}
.se-blend {
  mix-blend-mode: difference;
}
.se-title-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 11vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--cream);
  text-shadow: 4px 4px 0 var(--ink), 8px 8px 0 var(--pink-1);
}
.se-title-word:nth-child(2) {
  color: var(--sun-3);
  font-style: italic;
  text-shadow: 4px 4px 0 var(--ink), 8px 8px 0 var(--sky-1);
}
.se-children {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
}
@media (max-width: 768px) {
  .se-media-card {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35), 5px 5px 0 var(--ink);
    border-width: 2px;
  }
  .se-meta {
    bottom: -56px;
  }
}
/* Mobile : supprime l'animation hero, affiche le contenu directement */
@media (max-width: 640px) {
  .se-root { min-height: 0 !important; }
  .se-section { min-height: 0 !important; height: auto !important; }
  .se-stage-wrap { min-height: 0 !important; height: auto !important; padding: 0 !important; }
  .se-media-card { display: none !important; }
  .se-bg { display: none !important; }
  .se-meta { display: none !important; }
  .se-stage { display: none !important; }
  .se-children {
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    padding-top: 0 !important;
  }
}

/* ─── Booking 3D ─────────────────────────────────────────────────────── */
.booking-root {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #6fd96a;
  overflow: hidden;
  font-family: var(--font-body);
}
.booking-scene-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.booking-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.booking-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
  pointer-events: none;
}
.booking-topbar > * { pointer-events: auto; }
.booking-back {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}
.booking-back:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.booking-title {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 10px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
}
.booking-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.booking-counters {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 244, 224, 0.92);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.booking-counters > div {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 600;
}
.booking-counters .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.booking-counters strong { margin-left: auto; font-weight: 800; }

/* Side panel */
.booking-side {
  position: absolute;
  top: 100px;
  right: 16px;
  bottom: 100px;
  width: 360px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(420px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 11;
}
.booking-side.open { transform: translateX(0); }
.booking-side-header {
  padding: 18px 22px;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
}
.booking-side-header h3 {
  margin: 4px 0 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.booking-side-media {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 35%;
  border-bottom: 3px solid var(--ink);
}
.booking-side-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  flex: 1;
}
.booking-side-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
}
.booking-side-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-side-rows > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.booking-side-rows > div span { color: var(--ink-2); }
.booking-side-rows > div strong { color: var(--ink); font-family: var(--font-display); font-weight: 800; }
.booking-side-rows .total {
  background: var(--sun-3);
  font-size: 18px;
}
.booking-side-rows .total strong { font-size: 24px; }
.booking-cta {
  width: 100%;
  justify-content: center;
}
.booking-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--ink) !important;
  color: var(--cream) !important;
}
.booking-side-close {
  background: transparent;
  border: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}
.booking-side-close:hover { color: var(--pink-1); }

/* Entry-only card */
.booking-entry-card {
  position: absolute;
  bottom: 100px;
  right: 16px;
  width: 320px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 20px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-entry-card h3 {
  margin: 4px 0 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.booking-entry-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
}
.booking-entry-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  margin-top: 4px;
}
.qty-btn {
  background: var(--ink);
  color: var(--sun-3);
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.qty-num {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.qty-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--pink-1);
}

/* Legend */
.booking-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 244, 224, 0.92);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 8;
  font-weight: 600;
}
.booking-legend .sw {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  vertical-align: middle;
  margin-right: 8px;
}

/* Modal */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 13, 58, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: bk-fade-in 0.2s ease;
}
.booking-modal {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 36px;
  max-width: 460px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 8px 8px 0 var(--ink);
  animation: bk-pop 0.3s cubic-bezier(0.5, 1.5, 0.5, 1);
}
.booking-modal-check {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--sun-3);
  border: 3px solid var(--ink);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--ink);
  font-weight: 800;
}
.booking-modal h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.booking-modal p {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--ink-2);
}

@keyframes bk-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bk-pop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .booking-side { width: calc(100% - 32px); top: auto; bottom: 16px; height: auto; max-height: 60vh; }
  .booking-side.open { transform: translateY(0); }
  .booking-side { transform: translateY(110%); }
  .booking-entry-card { width: calc(100% - 32px); bottom: 16px; }
  .booking-counters { display: none; }
  .booking-legend { display: none; }
  .booking-title h2 { font-size: 14px; }
}

/* ── Chatbot ─────────────────────────────────────────────────────────────── */

/* Bouton flottant */
.chatbot-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sun-3);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  padding: 0;
  overflow: visible;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.chatbot-fab:hover { transform: scale(1.08); box-shadow: 6px 6px 0 var(--ink); }
.chatbot-fab-img { width: 68px; height: 68px; object-fit: contain; border-radius: 50%; display: block; }
.chatbot-fab-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--pink-1); color: #fff;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; font-family: var(--font-display);
}
/* Animation ping */
.chatbot-fab.ping::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 3px solid var(--sun-3);
  animation: chatbot-ping 1.4s ease-out infinite;
}
@keyframes chatbot-ping {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Panneau de chat */
.chatbot-panel {
  position: fixed;
  bottom: 114px;
  right: 24px;
  z-index: 801;
  width: 340px;
  max-height: 540px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s;
}
.chatbot-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.chatbot-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(120deg, var(--ink) 0%, #2a1060 100%);
  color: #fff; flex-shrink: 0;
  border-bottom: 2px solid var(--ink);
}
.chatbot-avatar-sm {
  width: 44px; height: 44px; object-fit: contain; border-radius: 50%;
  background: var(--sun-3); border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.chatbot-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; letter-spacing: -0.02em; color: var(--sun-3);
}
.chatbot-status {
  font-size: 10px; opacity: 0.7; font-family: var(--font-mono);
  letter-spacing: 0.06em; margin-top: 1px;
}
.chatbot-close {
  margin-left: auto; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 12px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.chatbot-close:hover { background: rgba(255,255,255,0.2); }

/* Messages */
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: #f7f5ff;
}
.chatbot-msg { display: flex; align-items: flex-end; gap: 7px; }
.chatbot-msg.user { flex-direction: row-reverse; }
.chatbot-msg-avatar {
  width: 28px; height: 28px; object-fit: contain; border-radius: 50%;
  background: var(--sun-3); flex-shrink: 0; align-self: flex-end;
}
.chatbot-bubble {
  max-width: 78%; padding: 10px 13px;
  font-size: 13px; line-height: 1.55; font-weight: 500;
  border-radius: 14px 14px 14px 4px;
  background: #fff; color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  word-break: break-word;
}
.chatbot-msg.user .chatbot-bubble {
  background: var(--ink); color: #fff;
  border-radius: 14px 14px 4px 14px; border-color: transparent;
}

/* Typing dots */
.chatbot-typing { display: flex; gap: 5px; align-items: center; padding: 12px 16px; }
.chatbot-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-2); opacity: 0.5;
  animation: chatbot-dot 1.2s infinite;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatbot-dot {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* Quick replies */
.chatbot-quick {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding: 4px 0 2px;
}
.chatbot-quick-btn {
  background: #fff; border: 1.5px solid var(--ink);
  color: var(--ink); font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s, color 0.15s;
  box-shadow: 2px 2px 0 var(--ink);
}
.chatbot-quick-btn:hover { background: var(--ink); color: #fff; }

/* Input */
.chatbot-input-row {
  display: flex; gap: 8px; padding: 10px 12px;
  border-top: 2px solid rgba(0,0,0,0.08); background: #fff; flex-shrink: 0;
}
.chatbot-input {
  flex: 1; border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 999px; padding: 8px 14px;
  font-size: 13px; font-family: var(--font-body);
  outline: none; background: #f7f5ff; color: var(--ink);
  transition: border-color 0.15s;
}
.chatbot-input:focus { border-color: var(--ink); }
.chatbot-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink-1); color: #fff;
  border: 2px solid var(--ink); font-size: 16px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.15s, opacity 0.15s;
}
.chatbot-send:disabled { opacity: 0.35; cursor: default; transform: none; }
.chatbot-send:not(:disabled):hover { transform: scale(1.1); }

/* Mobile */
@media (max-width: 600px) {
  .chatbot-panel { width: calc(100vw - 32px); right: 16px; bottom: 106px; }
  .chatbot-fab { bottom: 20px; right: 20px; }
}
