/* ============================================================
   CRABY® — Cajun Seafood Boil
   Charte : Orange Blooms #FE4202 · Signal Black #1D1B20
            White Flacon #FFF9EB · Dark Browny #301C1B
   Typo   : Anton (titres condensés) · Archivo (texte)
   ============================================================ */

:root {
  --orange: #fe4202;
  --orange-deep: #b93000;
  --black: #0a0a0a;
  --signal: #1d1b20;
  --browny: #301c1b;
  --flacon: #fff9eb;
  --flacon-dim: rgba(255, 249, 235, 0.62);
  --hairline: rgba(255, 249, 235, 0.14);
  --display: 'Anton', Impact, sans-serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--flacon);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: var(--flacon); }

/* ---------- Utilitaires ---------- */

.container { width: min(1200px, 92vw); margin: 0 auto; }

.section { padding: clamp(76px, 9vw, 130px) 0; }

.overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-orange {
  background: var(--orange);
  color: var(--flacon);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-line {
  background: transparent;
  color: var(--flacon);
  border-color: rgba(255, 249, 235, 0.3);
}

.btn-line:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-full { width: 100%; }

/* ---------- Marque ---------- */

.brand { display: flex; flex-direction: column; line-height: 1; gap: 3px; }

.brand-word {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--flacon);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.brand-word.xl { font-size: clamp(54px, 8vw, 96px); }

.brand-crab { height: 0.92em; width: auto; transform: translateY(-4%); }

.brand-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- Navigation ---------- */

.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background 0.4s, box-shadow 0.4s; }

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
}

.nav-inner {
  width: min(1320px, 94vw);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flacon-dim);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover { color: var(--flacon); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-links .nav-game { color: var(--orange); font-weight: 700; }
.nav-links .nav-game:hover { color: var(--orange); filter: brightness(1.2); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-socials { display: flex; align-items: center; gap: 6px; }

.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--flacon-dim);
  transition: color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.nav-socials svg { width: 17px; height: 17px; }

.nav-socials a:hover {
  color: #fff9eb;
  background: var(--orange);
  transform: translateY(-2px);
}

.has-hero .nav:not(.scrolled) .nav-socials a { color: rgba(255, 249, 235, 0.78); }
.has-hero .nav:not(.scrolled) .nav-socials a:hover { color: #fff9eb; }

.btn-nav { padding: 12px 24px; }

.lang-toggle {
  background: none;
  border: 2px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--flacon-dim);
  cursor: pointer;
  display: flex;
  gap: 5px;
  transition: border-color 0.3s;
}

.lang-toggle:hover { border-color: var(--orange); }
.lang-opt.active { color: var(--orange); }
.lang-sep { opacity: 0.35; }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--flacon); border-radius: 2px; transition: all 0.35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  color: #fff9eb;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.35) 60%, rgba(10, 10, 10, 0.45)),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.5), transparent 35%, rgba(10, 10, 10, 0.65));
}

/* Textes du héros toujours clairs (par-dessus la vidéo, dans les deux thèmes) */
.hero .hero-kicker { color: rgba(255, 249, 235, 0.85); }
.hero .hero-title { color: #fff9eb; }
.hero .hero-sub { color: rgba(255, 249, 235, 0.82); }
.hero .btn-line { color: #fff9eb; border-color: rgba(255, 249, 235, 0.4); }
.hero .btn-line:hover { color: var(--orange); border-color: var(--orange); }

/* Nav lisible par-dessus la vidéo tant qu'on n'a pas défilé (accueil seulement) */
.has-hero .nav:not(.scrolled) .nav-links a { color: rgba(255, 249, 235, 0.78); }
.has-hero .nav:not(.scrolled) .nav-links a:hover { color: #fff9eb; }
.has-hero .nav:not(.scrolled) .brand-word { color: #fff9eb; }
.has-hero .nav:not(.scrolled) .lang-toggle { color: rgba(255, 249, 235, 0.8); border-color: rgba(255, 249, 235, 0.25); }
.has-hero .nav:not(.scrolled) .burger span { background: #fff9eb; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flacon-dim);
  margin-bottom: 26px;
}

.k-dot { color: var(--orange); }

.hero-logo {
  font-family: var(--display);
  font-size: clamp(72px, 14vw, 160px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff9eb;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.hero-logo-crab {
  height: 0.82em;
  width: auto;
  transform: translateY(-3%);
  animation: bob 5s ease-in-out infinite;
  filter: drop-shadow(0 14px 34px rgba(254, 66, 2, 0.45));
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8%) rotate(3deg); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 5.2vw, 58px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero-title .line { display: inline-block; margin: 0 8px; }
.line-orange { color: var(--orange); }

.hero-sub {
  max-width: 560px;
  font-size: 17px;
  color: var(--flacon-dim);
  margin: 0 auto 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Indicateur de défilement */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-cue span {
  display: block;
  width: 2px;
  height: 54px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: cuePulse 2.2s var(--ease) infinite;
}

@keyframes cuePulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -12px 0 12px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--flacon);
  white-space: nowrap;
}

.marquee-track i { font-style: normal; font-size: 15px; color: rgba(255, 249, 235, 0.75); }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Expérience (compacte) ---------- */

.experience { padding: clamp(64px, 8vw, 104px) 0; }

.exp-lead {
  color: var(--flacon-dim);
  font-size: 17px;
  max-width: 560px;
  margin: -6px auto 54px;
  text-align: center;
}

.exp-duo {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

/* Visuel : assiette ronde flottante sur tache organique */
.exp-visual {
  position: relative;
  justify-self: center;
  width: min(430px, 80vw);
  padding: 6%;
}

/* Tache organique orange en fond, rotation lente */
.exp-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(254, 66, 2, 0.12);
  border-radius: 58% 42% 55% 45% / 48% 58% 42% 52%;
  animation: blobSpin 26s linear infinite;
  z-index: 0;
}

@keyframes blobSpin { to { transform: rotate(360deg); } }

.exp-dish {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 34px 70px rgba(29, 27, 32, 0.22);
  animation: dishFloat 7s ease-in-out infinite;
}

@keyframes dishFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-12px) rotate(1.5deg); }
}

/* Sauce en pastille « sticker » */
.exp-sauce {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid #fff9eb;
  box-shadow: 0 18px 44px rgba(29, 27, 32, 0.25);
  animation: sauceBob 5s ease-in-out infinite;
  transition: transform 0.6s var(--ease);
  z-index: 2;
}

@keyframes sauceBob {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50%      { transform: translateY(-12px) rotate(-5deg); }
}

/* Au survol : la sauce plonge vers le plat */
.exp-visual:hover .exp-sauce {
  animation-play-state: paused;
  transform: translate(-34%, -30%) rotate(-14deg) scale(1.1);
}

/* Fumée qui s'élève */
.steam {
  position: absolute;
  top: -4%;
  width: 7px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(to top, transparent, rgba(255, 249, 235, 0.55));
  filter: blur(4px);
  animation: steamUp 3.2s ease-in-out infinite;
  pointer-events: none;
}

.steam-1 { left: 28%; animation-delay: 0s; }
.steam-2 { left: 46%; animation-delay: -1.1s; height: 52px; }
.steam-3 { left: 63%; animation-delay: -2.2s; }

@keyframes steamUp {
  0%   { transform: translateY(14px) scaleY(0.5); opacity: 0; }
  35%  { opacity: 0.9; }
  100% { transform: translateY(-34px) scaleY(1.15); opacity: 0; }
}

/* Liste d'étapes reliées */
.exp-steps { position: relative; display: grid; gap: 30px; }

.exp-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--orange) 0 6px, transparent 6px 13px);
  opacity: 0.55;
  transform-origin: top;
  transition: transform 1.4s var(--ease) 0.4s;
}

html.js .exp-steps:not(.visible)::before { transform: scaleY(0); }

.estep { position: relative; display: flex; gap: 20px; align-items: flex-start; }

.estep-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff9eb;
  font-family: var(--display);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(254, 66, 2, 0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease);
}

.estep:hover .estep-dot { transform: rotate(-10deg) scale(1.12); }

.estep h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 6px 0 6px;
}

.estep p { color: var(--flacon-dim); font-size: 14.5px; }

.mini-sauce { margin-top: 6px; line-height: 1.55; }

.mini-sauce strong {
  color: var(--flacon);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

/* Pastilles fruits de mer */
.sea-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.sea-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(254, 66, 2, 0.09);
  border: 1px solid rgba(254, 66, 2, 0.28);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.sea-chip i { font-style: normal; }

.sea-chip:hover { transform: translateY(-2px); background: rgba(254, 66, 2, 0.18); }

.step-note {
  margin-top: 16px;
  font-size: 13px !important;
  font-style: italic;
  opacity: 0.75;
}

/* Échelle d'intensité progressive */
.heat { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.heat-lvl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease);
}

.heat-lvl:hover { transform: translateY(-2px); }

.heat-1 { border: 2px solid var(--hairline); color: var(--flacon-dim); }

.heat-2 { border: 2px solid rgba(254, 66, 2, 0.55); color: var(--flacon); background: rgba(254, 66, 2, 0.1); }

.heat-3 {
  border: 2px solid var(--orange);
  background: var(--orange);
  color: #fff9eb;
  animation: heatGlow 2.4s ease-in-out infinite;
}

@keyframes heatGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(254, 66, 2, 0); }
  50%      { box-shadow: 0 0 20px rgba(254, 66, 2, 0.55); }
}

/* ---------- Menu ---------- */

.menu { background: var(--black); }

.menu-page { padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 70px)); }

.menu-allergy {
  margin-top: 40px;
  font-size: 13px;
  font-style: italic;
  color: var(--flacon-dim);
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}

.menu-order-strip {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--signal);
  border-radius: 20px;
  padding: 26px 30px;
}

.menu-order-strip > span {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.menu-order-tel {
  font-weight: 700;
  color: var(--orange);
  font-size: 16px;
}

.menu-order-tel:hover { text-decoration: underline; }

.menu-note {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--flacon-dim);
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 36px;
  max-width: 560px;
}

.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 46px; }

.tab {
  background: none;
  border: 2px solid var(--hairline);
  border-radius: 999px;
  color: var(--flacon-dim);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.tab:hover { color: var(--flacon); border-color: rgba(254, 66, 2, 0.6); }

.tab.active { background: var(--orange); border-color: var(--orange); color: var(--flacon); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.6s var(--ease); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; }

.menu-item {
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mi-thumb {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.menu-item:hover .mi-thumb { transform: scale(1.07) rotate(-2deg); }

.mi-main { flex: 1; min-width: 0; }

.menu-item:hover { background: var(--signal); }

.mi-head { display: flex; align-items: baseline; gap: 12px; }

.mi-head h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mi-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--orange);
  color: var(--flacon);
  border-radius: 99px;
  padding: 3px 9px;
  text-transform: uppercase;
  transform: translateY(-2px);
}

.dots { flex: 1; border-bottom: 2px dotted var(--hairline); transform: translateY(-4px); }

.price { font-family: var(--display); font-size: 19px; color: var(--orange); white-space: nowrap; letter-spacing: 0.03em; }

.menu-item p { color: var(--flacon-dim); font-size: 14px; margin-top: 5px; max-width: 480px; }

/* Cartes photos (plats frits) */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.mcard {
  background: var(--signal);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: itemIn 0.5s var(--ease) both;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.mcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(29, 27, 32, 0.18);
}

.mcard-media { overflow: hidden; }

.mcard-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mcard:hover .mcard-media img { transform: scale(1.07); }

.mcard-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mcard-body h4 {
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.mcard-body p {
  color: var(--flacon-dim);
  font-size: 12.5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.mcard-body .price { font-size: 18px; margin-top: 2px; }

/* Visionneuse photo */
.menu-item.has-photo, .mcard.has-photo { cursor: pointer; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox figure {
  margin: 0;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
}

.lightbox.open figure { transform: scale(1); }

.lightbox img {
  max-width: min(640px, 90vw);
  max-height: 72vh;
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

.lightbox figcaption {
  margin-top: 16px;
  color: #fff9eb;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.lightbox figcaption strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lightbox figcaption .price { font-size: 20px; }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff9eb;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.lightbox-close:hover { transform: rotate(90deg) scale(1.08); }

/* Colonnes titrées (Enfants | Salades) */
.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  align-items: start;
}

.menu-group h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  border-bottom: 2px solid rgba(254, 66, 2, 0.3);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.menu-allergy {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: var(--flacon-dim);
  opacity: 0.8;
}

/* ---------- Titres centrés ---------- */

.overline.center { text-align: center; }
.section-title.center { text-align: center; }

/* ---------- À propos + stats ---------- */

.about-inner { max-width: 860px; text-align: center; }

.about-lead {
  font-size: 18.5px;
  line-height: 1.75;
  color: var(--flacon-dim);
  margin: 0 auto 24px;
  max-width: 720px;
}

.about-lead:last-child { margin-bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border-top: 1px solid var(--hairline);
  padding-top: 44px;
}

.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 58px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flacon-dim);
}

/* ---------- Plats signature ---------- */

.signature { background: var(--browny); }

.sig-sub {
  text-align: center;
  color: var(--flacon-dim);
  max-width: 560px;
  margin: -8px auto 48px;
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sig-card {
  position: relative;
  background: var(--signal);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.sig-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.sig-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.sig-card:hover .sig-media img { transform: scale(1.08); }

.duo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.92);
  transition: transform 0.9s var(--ease), filter 0.7s var(--ease);
}

.duo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.7s var(--ease);
}

.duo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.sig-card:hover .duo img { transform: scale(1.08); filter: none; }
.sig-card:hover .duo::before { opacity: 0; }

.sig-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--orange);
  color: #fff9eb;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
}

.sig-body { padding: 22px 24px 26px; }

.sig-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.sig-body p {
  color: var(--flacon-dim);
  font-size: 14px;
  margin-bottom: 12px;
  min-height: 42px;
}

.sig-price { font-size: 22px; }

.sig-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--orange);
  min-height: 240px;
  text-align: center;
  padding: 30px;
}

.sig-more-crab { width: 74px; }

.sig-more-label {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff9eb;
}

.sig-more-arrow {
  font-size: 26px;
  color: #fff9eb;
  transition: transform 0.4s var(--ease);
}

.sig-more:hover .sig-more-arrow { transform: translateX(8px); }
.sig-more:hover { transform: translateY(-8px); }

/* ---------- Contact / Réservation ---------- */

.ct-block { margin-bottom: 28px; }

.ct-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.ct-block p { color: var(--flacon-dim); font-size: 17px; }

.ct-block a:hover { color: var(--orange); }

.ct-hours { font-family: var(--display); font-size: 24px; color: var(--flacon) !important; letter-spacing: 0.03em; text-transform: uppercase; }

.socials { display: flex; gap: 18px; }

.socials a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--hairline);
  padding-bottom: 3px;
  transition: all 0.3s;
}

.socials a:hover { color: var(--orange); border-color: var(--orange); }

.order-card {
  background: var(--signal);
  border-radius: 22px;
  padding: 48px 42px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.order-crab { width: 90px; animation: bob 5s ease-in-out infinite; }

.order-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.order-card > p { color: var(--flacon-dim); max-width: 340px; }

.order-btn { font-size: 14px; margin-top: 6px; }

.order-alt { font-size: 14.5px; color: var(--flacon-dim); }

.order-alt a { color: var(--orange); font-weight: 700; }

.order-alt a:hover { text-decoration: underline; }

.order-hours {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flacon-dim);
}

/* ---------- Témoignages ---------- */

.testimonials { background: var(--signal); }

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tst {
  background: var(--black);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--ease);
}

.tst:hover { transform: translateY(-6px); }

.stars { color: var(--orange); letter-spacing: 5px; font-size: 15px; }

.tst > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--flacon-dim);
  flex: 1;
}

.tst-who {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--flacon-dim);
  line-height: 1.35;
}

.tst-who strong { color: var(--flacon); font-weight: 700; letter-spacing: 0.04em; }

.tst-who em {
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tst-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff9eb;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */

.footer { background: var(--signal); border-top: 1px solid var(--hairline); padding: 76px 0 46px; }

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.footer-slogan {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--flacon-dim);
}

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flacon-dim);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--orange); }

.footer-copy { font-size: 12.5px; color: var(--flacon-dim); }

/* ---------- Barre d'action mobile ---------- */

.mobile-bar { display: none; }

@media (max-width: 768px) {
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 260;
    display: flex;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 249, 235, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -6px 24px rgba(29, 27, 32, 0.12);
    border-top: 1px solid rgba(29, 27, 32, 0.08);
  }

  .mb-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 10px;
    border-radius: 999px;
    transition: transform 0.2s var(--ease);
  }

  .mb-btn:active { transform: scale(0.97); }

  .mb-call {
    color: var(--ink, #1d1b20);
    border: 2px solid rgba(29, 27, 32, 0.25);
    background: transparent;
  }

  .mb-order {
    background: var(--orange);
    color: #fff9eb;
    box-shadow: 0 8px 22px rgba(254, 66, 2, 0.35);
  }

  /* laisser la place à la barre */
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
  .to-top { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); right: 16px; }
  .scuttler { bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
  .toast { bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Finitions mobile ---------- */

@media (max-width: 768px) {
  /* onglets du menu : défilement horizontal au doigt */
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -4vw;
    margin-right: -4vw;
    padding: 0 4vw 6px;
  }

  .tabs::-webkit-scrollbar { display: none; }

  .tab { white-space: nowrap; flex-shrink: 0; padding: 11px 18px; }

  /* rangées du menu plus compactes */
  .menu-item { padding: 10px; gap: 12px; }
  .mi-thumb { width: 60px; height: 60px; border-radius: 12px; }
  .mi-head h4 { font-size: 15px; }
  .price { font-size: 17px; }
  .menu-item p { font-size: 13px; }

  /* bandeau commander de la page menu */
  .menu-order-strip { flex-direction: column; text-align: center; gap: 12px; }

  /* visionneuse : bouton fermer accessible au pouce */
  .lightbox-close { top: auto; bottom: calc(96px + env(safe-area-inset-bottom, 0px)); right: 50%; transform: translateX(50%); }
  .lightbox-close:hover { transform: translateX(50%) rotate(90deg); }
  .lightbox img { max-height: 62vh; }
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 150%);
  z-index: 200;
  background: var(--orange);
  color: var(--flacon);
  font-weight: 600;
  font-size: 14.5px;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.55s var(--ease);
  max-width: 90vw;
  text-align: center;
}

.toast.show { transform: translate(-50%, 0); }

/* ---------- Reveal (masqué seulement si le JS est actif) ---------- */

html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   THÈME CLAIR — fond White Flacon #FFF9EB
   Activé avec <body class="theme-light">
   ============================================================ */

body.theme-light {
  --black: #fff9eb;
  --signal: #f5ecd6;
  --browny: #efe2c8;
  --flacon: #1d1b20;
  --flacon-dim: rgba(29, 27, 32, 0.66);
  --hairline: rgba(29, 27, 32, 0.14);
}

/* Les surfaces orange gardent leur texte crème */
body.theme-light .marquee {
  --flacon: #fff9eb;
  --flacon-dim: rgba(255, 249, 235, 0.85);
}

body.theme-light .btn-orange { color: #fff9eb; }
body.theme-light .btn-orange:hover { color: var(--orange); }
body.theme-light .tab.active { color: #fff9eb; }
body.theme-light .mi-tag { color: #fff9eb; }
body.theme-light .toast { color: #fff9eb; }
body.theme-light .to-top { color: #fff9eb; }

/* Nav vitrée claire */
body.theme-light .nav.scrolled {
  background: rgba(255, 249, 235, 0.9);
  box-shadow: 0 1px 0 var(--hairline);
}

body.theme-light .nav-links {
  background: transparent;
}

/* Le héros vidéo garde ses textes clairs — rien à surcharger ici */

/* Champs de formulaire */
/* Cartes témoignages sur fond clair */
body.theme-light .tst { background: #fff9eb; }

/* Ombres adoucies */
body.theme-light .toast { box-shadow: 0 18px 50px rgba(29, 27, 32, 0.3); }

/* Duotone galerie : voile crème en bas plutôt que noir */
body.theme-light .duo::after {
  background: linear-gradient(to top, rgba(29, 27, 32, 0.66), transparent 55%);
}

@media (max-width: 768px) {
  body.theme-light .nav-links {
    background: rgba(255, 249, 235, 0.97);
  }
}

/* ---------- Vie & animations ---------- */

/* Barre de progression du défilement */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  z-index: 300;
  box-shadow: 0 0 12px rgba(254, 66, 2, 0.6);
}

/* Titre héros : lettres qui rebondissent */
.hero-title .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(6deg);
  animation: letterPop 0.55s var(--ease) forwards;
}

@keyframes letterPop {
  60% { transform: translateY(-0.08em) rotate(-2deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}

/* Bulles montantes dans le héros */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  border: 2px solid rgba(254, 66, 2, 0.35);
  background: rgba(254, 66, 2, 0.06);
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { transform: translateY(-110vh) translateX(30px) scale(1.25); opacity: 0; }
}

/* Parallaxe souris (appliquée en JS via variables) */

/* Boutons : reflet qui balaie */
.btn { position: relative; overflow: hidden; }

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 249, 235, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}

.btn:hover::after { left: 130%; }

/* Menu : apparition en cascade */
.menu-item { animation: itemIn 0.5s var(--ease) both; }

@keyframes itemIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-item:hover { transform: translateX(6px); }
.menu-item { transition: background 0.3s, transform 0.35s var(--ease); }

.menu-item:hover .price { transform: scale(1.12); }
.price { display: inline-block; transition: transform 0.3s var(--ease); }

/* Galerie : les photos reprennent vie (couleurs réelles) au survol */
.duo img { transition: transform 0.9s var(--ease), filter 0.7s var(--ease); }
.duo::before { transition: opacity 0.7s var(--ease); }
.duo:hover img { filter: none; }
.duo:hover::before { opacity: 0; }

/* Logo : le crabe salue */
.brand:hover .brand-crab, .footer-brand:hover .brand-crab { animation: wiggle 0.7s ease-in-out; }

@keyframes wiggle {
  0%, 100% { transform: translateY(-4%) rotate(0); }
  25% { transform: translateY(-14%) rotate(-12deg); }
  55% { transform: translateY(-4%) rotate(10deg); }
  80% { transform: translateY(-10%) rotate(-5deg); }
}

/* Très épicé : flamme qui tremble */
.heat-max i { animation: flameShake 1.6s ease-in-out infinite; display: inline-block; }

@keyframes flameShake {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(4deg); }
  60% { transform: scale(0.95) rotate(-4deg); }
}

/* Le crabe qui traverse l'écran */
.scuttler {
  position: fixed;
  bottom: 6px;
  left: 0;
  width: 52px;
  z-index: 250;
  cursor: pointer;
  transform: translateX(-90px);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.scuttler.run { animation: scuttle 9s linear forwards; }
.scuttler.run-rev { animation: scuttleRev 9s linear forwards; }

@keyframes scuttle {
  0%   { transform: translateX(-90px) rotate(0); }
  25%  { transform: translateX(25vw) rotate(-6deg); }
  50%  { transform: translateX(50vw) rotate(6deg); }
  75%  { transform: translateX(75vw) rotate(-6deg); }
  100% { transform: translateX(calc(100vw + 90px)) rotate(0); }
}

@keyframes scuttleRev {
  0%   { transform: translateX(calc(100vw + 90px)) scaleX(-1) rotate(0); }
  25%  { transform: translateX(75vw) scaleX(-1) rotate(-6deg); }
  50%  { transform: translateX(50vw) scaleX(-1) rotate(6deg); }
  75%  { transform: translateX(25vw) scaleX(-1) rotate(-6deg); }
  100% { transform: translateX(-90px) scaleX(-1) rotate(0); }
}

/* Bouton remonter */
.to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--flacon);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 240;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 12px 30px rgba(254, 66, 2, 0.4);
}

.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.to-top:hover { transform: translateY(-4px) scale(1.05); }

/* Bandeau bleu -> pulsation du point */
.k-dot { display: inline-block; animation: dotPulse 2s ease-in-out infinite; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-logo-crab, .scroll-cue span, .heat-3 { animation: none; }
  .hero-title .ltr { opacity: 1; transform: none; animation: none; }
  .bubble, .scuttler, .k-dot, .heat-max i, .menu-item { animation: none; }
  .menu-item { opacity: 1; }
  .btn::after { display: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .exp-duo { grid-template-columns: 1fr; }
  .exp-visual { margin-bottom: 20px; }
  .menu-grid { grid-template-columns: 1fr; gap: 4px; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 0 22px;
    transform: translateY(-130%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 15px 6vw; font-size: 14px; }
  .burger { display: flex; }
  .btn-nav { display: none; }
  .sig-grid { grid-template-columns: 1fr; }
  .order-card { padding: 36px 24px; }
  .menu-groups { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
}

@media (max-width: 560px) {
  .nav-socials { display: none; }
}

/* ---------- Carte Google (section Nous trouver) ---------- */

.ct-map {
  position: relative;
  margin-top: clamp(44px, 6vw, 70px);
  border: 2px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  background: var(--signal);
}

.ct-map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 420px);
  border: 0;
  filter: saturate(0.9);
}

.ct-map-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--orange);
  color: #fff9eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(48, 28, 27, 0.28);
  transition: transform 0.3s var(--ease);
}

.ct-map-btn:hover { transform: translateY(-2px); }

@media (max-width: 620px) {
  .ct-map-btn { right: 12px; bottom: 12px; padding: 11px 18px; font-size: 11px; }
}

/* ---------- Suggestion de langue ---------- */

.lang-hint {
  position: fixed;
  left: 24px;
  bottom: 26px;
  z-index: 270;
  max-width: min(370px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  border-radius: 16px;
  background: var(--black);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 46px rgba(48, 28, 27, 0.22);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.lang-hint.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.lang-hint-msg {
  font-size: 14px;
  line-height: 1.45;
  color: var(--flacon);
}

.lang-hint-cta {
  flex: none;
  background: var(--orange);
  color: #fff9eb;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease);
}

.lang-hint-cta:hover { transform: translateY(-2px); }

.lang-hint-close {
  flex: none;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: none;
  color: var(--flacon-dim);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.lang-hint-close:hover { color: var(--orange); }

@media (max-width: 768px) {
  .lang-hint {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    padding: 12px 12px 12px 16px;
  }
  .lang-hint-msg { font-size: 13.5px; }
}
