/* ============================================================
   ABDM* — Au Bout du Monde
   Design system basé sur la charte graphique ABDM v04
   ============================================================ */

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-noir);
  background: var(--c-creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* === DESIGN TOKENS === */
:root {
  /* Couleurs principales (charte ABDM) */
  --c-rouge: #d01f2a;
  --c-rouge-fonce: #a8181f;
  --c-rouge-clair: #e2535d;
  --c-orange: #ec6608;
  --c-orange-fonce: #c5530a;
  --c-orange-clair: #f3884a;
  --c-noir: #000000;
  --c-noir-90: #1a1a1a;
  --c-noir-70: #4d4d4d;
  --c-noir-50: #808080;
  --c-noir-20: #cccccc;
  --c-noir-10: #e6e6e6;

  /* Couleurs secondaires */
  --c-bleu: #324a9f;
  --c-vert: #498749;
  --c-jaune: #f1c342;
  --c-vert-clair: #b5d34c;

  /* Neutres */
  --c-blanc: #ffffff;
  --c-creme: #f5f0e1;
  --c-creme-clair: #faf6ee;

  /* Typographie */
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacements */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Conteneurs */
  --max-width: 1280px;
  --max-width-narrow: 880px;

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === TYPOGRAPHIE === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-noir);
}

h1 {
  font-size: clamp(2.5rem, 6vw + 1rem, 5.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-noir-90);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--c-noir-90);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.eyebrow::before {
  content: "✱";
  color: var(--c-orange);
  font-size: 1.2em;
  line-height: 1;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section {
  padding: var(--space-9) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-10) 0;
  }
}

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--c-rouge);
  color: var(--c-blanc);
}

.btn-primary:hover {
  background: var(--c-rouge-fonce);
  box-shadow: var(--shadow-md);
}

.btn-orange {
  background: var(--c-orange);
  color: var(--c-blanc);
}

.btn-orange:hover {
  background: var(--c-orange-fonce);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--c-blanc);
  border: 2px solid var(--c-blanc);
}

.btn-outline:hover {
  background: var(--c-blanc);
  color: var(--c-noir);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-noir);
  border: 2px solid var(--c-noir);
}

.btn-outline-dark:hover {
  background: var(--c-noir);
  color: var(--c-blanc);
}

.btn-large {
  padding: 1.15rem 2.5rem;
  font-size: 1.0625rem;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-blanc);
  border-bottom: 1px solid var(--c-noir-10);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-5);
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img,
.header-logo svg {
  height: 50px;
  width: auto;
}

.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header-nav-left {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-6);
  }

  .header-nav-right {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-6);
    align-items: center;
  }

  .header-nav {
    display: flex;
  }

  .header-nav a {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-noir);
    position: relative;
    padding: var(--space-2) 0;
    transition: color 0.2s var(--ease);
  }

  .header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--c-rouge);
    transition: width 0.3s var(--ease);
  }

  .header-nav a:hover,
  .header-nav a.active {
    color: var(--c-rouge);
  }

  .header-nav a:hover::after,
  .header-nav a.active::after {
    width: 100%;
  }
}

/* Burger mobile */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-noir);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  border-radius: 2px;
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

/* Menu mobile */
.mobile-nav {
  position: fixed;
  inset: 80px 0 0 0;
  background: var(--c-blanc);
  padding: var(--space-7) var(--space-5);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 99;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--c-noir-10);
  color: var(--c-noir);
}

.mobile-nav a.active {
  color: var(--c-rouge);
}

.mobile-nav .btn {
  margin-top: var(--space-5);
  width: 100%;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-noir);
  color: var(--c-blanc);
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-9) var(--space-5);
  max-width: 920px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-jaune);
  margin-bottom: var(--space-5);
}

.hero h1 {
  color: var(--c-blanc);
  margin-bottom: var(--space-5);
}

.hero h1 .accent {
  color: var(--c-orange);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: "*";
  color: var(--c-orange);
  font-size: 0.7em;
  vertical-align: super;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--c-blanc);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
  animation: bounce 2.5s var(--ease) infinite;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: var(--c-blanc);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === ASTERISK DECORATIF === */
.asterisk {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
  user-select: none;
  opacity: 0.12;
}

.asterisk svg {
  width: 100%;
  height: 100%;
}

/* === SECTIONS GENERIQUES === */
.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--c-noir-70);
}

.section-cream {
  background: var(--c-creme);
}

.section-creamy {
  background: var(--c-creme-clair);
}

.section-rouge {
  background: var(--c-rouge);
  color: var(--c-blanc);
}

.section-rouge h2,
.section-rouge h3 {
  color: var(--c-blanc);
}

.section-rouge p {
  color: rgba(255, 255, 255, 0.92);
}

.section-orange {
  background: var(--c-orange);
  color: var(--c-blanc);
}

.section-orange h2,
.section-orange h3 {
  color: var(--c-blanc);
}

.section-orange p {
  color: rgba(255, 255, 255, 0.92);
}

.section-noir {
  background: var(--c-noir);
  color: var(--c-blanc);
}

.section-noir h2,
.section-noir h3 {
  color: var(--c-blanc);
}

.section-noir p {
  color: rgba(255, 255, 255, 0.85);
}

/* === GRILLES === */
.grid {
  display: grid;
  gap: var(--space-5);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid {
    gap: var(--space-6);
  }
}

/* === CARTES === */
.card {
  background: var(--c-blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  aspect-ratio: 4 / 3;
  background: var(--c-noir-10);
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  background: var(--c-orange);
  color: var(--c-blanc);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.card-tag.tag-rouge {
  background: var(--c-rouge);
}

.card-tag.tag-vert {
  background: var(--c-vert);
}

.card-tag.tag-bleu {
  background: var(--c-bleu);
}

.card-tag.tag-jaune {
  background: var(--c-jaune);
  color: var(--c-noir);
}

.card-body h3 {
  margin-bottom: var(--space-3);
}

.card-body p {
  flex: 1;
  margin-bottom: var(--space-4);
}

/* === FEATURE BLOCK (texte + image alterné) === */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

@media (min-width: 1024px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
  }

  .feature.feature-reverse .feature-content {
    order: 2;
  }
}

.feature-content h2 {
  margin-bottom: var(--space-5);
}

.feature-content p {
  margin-bottom: var(--space-5);
}

.feature-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.feature-image img,
.feature-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Variante portrait (vidéo verticale) — texte gravé : contain pour ne rien couper */
.feature-image-portrait {
  aspect-ratio: 9 / 16;
  max-width: 420px;
  margin: 0 auto;
  background: var(--c-noir);
}

.feature-image-portrait video,
.feature-image-portrait img {
  object-fit: contain;
  background: var(--c-noir);
}

@media (max-width: 768px) {
  .feature-image-portrait {
    max-width: min(360px, 80vw);
  }
}

/* === VISITE VIRTUELLE === */
.virtual-tour {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-noir-90);
}

.virtual-tour iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .virtual-tour {
    aspect-ratio: 4 / 5;
  }
}

/* === STATS / KPI === */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  text-align: center;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.section-rouge .stat-number,
.section-orange .stat-number,
.section-noir .stat-number {
  color: var(--c-jaune);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === MENU ITEMS === */
.menu-categories {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-7);
}

.menu-tab {
  padding: 0.75rem 1.5rem;
  background: var(--c-blanc);
  border: 2px solid var(--c-noir);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.menu-tab:hover {
  background: var(--c-noir);
  color: var(--c-blanc);
}

.menu-tab.active {
  background: var(--c-rouge);
  border-color: var(--c-rouge);
  color: var(--c-blanc);
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--c-blanc);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-noir-10);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.menu-item:hover {
  border-color: var(--c-orange);
  transform: translateX(4px);
}

.menu-item-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--c-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.menu-item-content h4 {
  margin-bottom: var(--space-2);
}

.menu-item-content p {
  font-size: 0.9375rem;
  color: var(--c-noir-70);
  line-height: 1.5;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: var(--c-blanc);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  text-align: center;
  border: 3px solid var(--c-noir-10);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--c-rouge);
  position: relative;
}

.pricing-card.featured::before {
  content: "Le plus choisi";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-rouge);
  color: var(--c-blanc);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-period {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--space-3);
}

.pricing-amount {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--c-noir);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.pricing-amount sup {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 0.1em;
}

.pricing-detail {
  font-size: 0.9375rem;
  color: var(--c-noir-70);
  margin-bottom: var(--space-5);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-6);
  flex: 1;
}

.pricing-features li {
  padding: var(--space-2) 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--c-noir-90);
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: "✱";
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-weight: 700;
}

/* === CARTE BOISSONS === */
.drink-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .drink-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.drink-category h3 {
  color: var(--c-jaune);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  letter-spacing: -0.01em;
}

.drink-cat-volume,
.drink-cat-price {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drink-cat-volume {
  color: rgba(255, 255, 255, 0.5);
}

.drink-cat-price {
  color: var(--c-orange);
  background: rgba(236, 102, 8, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.drink-list {
  display: flex;
  flex-direction: column;
}

.drink-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.625rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  list-style: none;
}

.drink-list li:last-child {
  border-bottom: none;
}

.drink-name {
  color: var(--c-blanc);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.drink-name em {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-size: 0.85em;
  font-weight: 400;
  margin-left: 0.25rem;
}

.drink-volume {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

.drink-volume:empty {
  display: none;
}

.drink-price {
  color: var(--c-orange);
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

.drink-price-pair {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  color: var(--c-orange);
  font-size: 0.875rem;
  white-space: nowrap;
}

.drink-price-pair span {
  min-width: 60px;
  text-align: right;
}

.drink-list-2price li,
.drink-list-3price li {
  grid-template-columns: 1fr auto;
}

@media (max-width: 480px) {
  .drink-price-pair {
    gap: 0.5rem;
    font-size: 0.8125rem;
  }
  .drink-price-pair span {
    min-width: 50px;
  }
}

/* Tags pills (digestifs / bubble tea / thés) */
.drink-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.drink-list-tags li {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-blanc);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  grid-template-columns: none;
}

/* Cocktails avec description */
.drink-list-detailed {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.drink-list-detailed li {
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.drink-list-detailed li:last-child {
  border-bottom: none;
}

.drink-list-detailed .drink-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-blanc);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.drink-list-detailed .drink-name em {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-size: 0.85em;
  margin-left: 0.5rem;
  font-weight: 400;
}

.drink-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* === FAQ === */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--c-blanc);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-noir-10);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.faq-item[open] {
  border-color: var(--c-orange);
}

.faq-item summary {
  padding: var(--space-5);
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  color: var(--c-noir);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--c-orange);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--c-noir-70);
  line-height: 1.65;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--c-blanc);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-orange);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--c-creme);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-block h4 {
  margin-bottom: var(--space-2);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.contact-block p,
.contact-block a {
  color: var(--c-noir);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-block a:hover {
  color: var(--c-rouge);
}

.contact-form {
  background: var(--c-blanc);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
  .form-row.split {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
  color: var(--c-noir);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--c-creme-clair);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--c-noir);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  background: var(--c-blanc);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  width: 100%;
}

/* === WIDGET RÉSERVATION === */
.reservation-widget {
  background: var(--c-blanc);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.reservation-widget iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--c-creme-clair);
  min-height: 750px;
}

@media (max-width: 640px) {
  .reservation-widget {
    padding: var(--space-4);
  }
}

/* === ADMIN PROGRAMMES === */
.admin-panel {
  display: grid;
  gap: var(--space-6);
}

.admin-form {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.input-row {
  display: grid;
  gap: 0.6rem;
}

.input-row label {
  font-size: 0.95rem;
  font-weight: 700;
}

.input-row input {
  width: 100%;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--c-noir-10);
  border-radius: var(--radius-md);
  background: var(--c-blanc);
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.admin-list {
  display: grid;
  gap: var(--space-4);
}

.admin-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--c-noir-70);
}

.admin-items {
  display: grid;
  gap: var(--space-4);
}

.admin-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--c-blanc);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.admin-item img {
  width: 140px;
  min-width: 140px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.admin-item-body {
  display: grid;
  gap: var(--space-3);
  flex: 1;
}

.admin-item-body strong {
  display: block;
  margin-bottom: 0.35rem;
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-small {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

#programme-export-json {
  width: 100%;
  min-height: 160px;
  padding: 1rem;
  border: 1px solid var(--c-noir-10);
  border-radius: var(--radius-md);
  background: var(--c-creme-clair);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  color: var(--c-noir-90);
}

.admin-status {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(226, 239, 254, 0.73);
  color: var(--c-noir-90);
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.admin-status.error {
  background: rgba(255, 224, 224, 0.9);
  color: var(--c-rouge);
}

.admin-status.success {
  background: rgba(223, 243, 223, 0.9);
  color: var(--c-vert);
}

/* === MAP === */
.map-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-6);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--c-rouge);
  color: var(--c-blanc);
  padding: var(--space-8) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner.bg-orange {
  background: var(--c-orange);
}

.cta-banner.bg-noir {
  background: var(--c-noir);
}

.cta-banner h2 {
  color: var(--c-blanc);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-outline:hover {
  background: var(--c-blanc);
  color: var(--c-rouge);
}

.cta-banner.bg-orange .btn-outline:hover {
  color: var(--c-orange);
}

.cta-banner.bg-noir .btn-outline:hover {
  color: var(--c-noir);
}

.cta-banner .asterisk-deco {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  opacity: 0.15;
  z-index: 1;
}

/* === RIBBON BAND === */
.ribbon {
  background: var(--c-orange);
  color: var(--c-blanc);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
}

.ribbon-track {
  display: flex;
  gap: var(--space-7);
  white-space: nowrap;
  animation: scroll-left 10s linear infinite;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ribbon-track {
    animation-duration: 5s;
  }
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-7);
}

.ribbon-track span::after {
  content: "✱";
  color: var(--c-blanc);
  font-size: 1.15em;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === FOOTER === */
.site-footer {
  background: var(--c-noir);
  color: var(--c-blanc);
  padding: var(--space-9) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand img,
.footer-brand svg {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-5);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: var(--space-5);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-socials a:hover {
  background: var(--c-orange);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--c-blanc);
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--c-blanc);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
  color: var(--c-blanc);
}

.footer-copyright,
.footer-copyright a {
  color: var(--c-blanc);
}

/* === BLOC HORAIRES === */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--c-blanc);
}

.hours-time {
  color: rgba(255, 255, 255, 0.7);
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* === UTILITAIRES === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-6 { margin-top: var(--space-6); }
.no-padding { padding: 0; }
