/*
 * =========================================
 *  CAFE DES ARTISTES — Taulignan
 *  "La Porte s'ouvre sur un fil de soie dore"
 * =========================================
 */

/* ─── 0. Custom Properties ─── */

:root {
  --pierre: #D4C5A9;
  --encre: #1B1D2E;
  --or-soie: #C8A96E;
  --blanc: #F7F3EB;
  --or-clair: #E8D5A3;
  --or-vif: #B8963E;
  --encre-light: #2A2D42;
  --pierre-dark: #8A7E6A;
  --text-body: #4A4A5A;

  --ff-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans: 'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --gate-open: 1;
  --nav-h: 64px;
}

/* ─── 1. Reset & Base ─── */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-sans);
  color: var(--encre);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--or-soie); color: var(--blanc); }

/* ─── 2. Typography ─── */

h1,h2,h3,h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  line-height: 1.1;
}

/* ─── 3. Utilities ─── */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── 4. Grain Overlay ─── */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── 5. Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-silk);
  white-space: nowrap;
}

.btn--cta {
  background: var(--or-soie);
  color: var(--encre);
}
.btn--cta:hover {
  background: var(--or-vif);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,169,110,0.35);
}
.btn--cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(200,169,110,0.2);
}

.btn--outline {
  border: 1.5px solid var(--or-soie);
  color: var(--or-soie);
}
.btn--outline:hover {
  background: rgba(200,169,110,0.08);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--or-soie);
  padding: 0.5rem 1rem;
}
.btn--ghost:hover { background: rgba(200,169,110,0.1); }

/* ─── 6. Navigation ─── */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease-silk), box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(247,243,235,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(200,169,110,0.12);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--blanc);
  transition: color 0.4s;
}
.nav--scrolled .nav__logo { color: var(--encre); }

.nav__links { display: none; gap: 2.5rem; }
.nav__links a {
  font-size: 0.78rem; font-weight: 400;
  color: rgba(247,243,235,0.6);
  transition: color 0.3s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav--scrolled .nav__links a { color: var(--pierre-dark); }
.nav__links a:hover { color: var(--or-soie); }

.nav__actions {
  display: flex; align-items: center; gap: 0.5rem;
  order: 2; /* Push after logo on mobile */
}
.nav__actions .nav__cta {
  /* Show CTA next to burger on mobile */
  display: inline-flex;
}

.nav__social {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: rgba(247,243,235,0.55);
  transition: color 0.3s, background 0.3s;
}
.nav--scrolled .nav__social { color: var(--pierre-dark); }
.nav__social:hover { color: var(--or-soie); background: rgba(200,169,110,0.06); }
.nav__social svg { width: 18px; height: 18px; }

.nav__cta { font-size: 0.78rem; padding: 0.55rem 1.2rem; }

/* Mobile CTA compact */
@media (max-width: 899px) {
  .nav__cta {
    font-size: 0.7rem !important;
    padding: 0.45rem 0.9rem !important;
  }
}

/* Burger */
.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; z-index: 1001;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--blanc); border-radius: 2px;
  transition: transform 0.35s var(--ease-silk), opacity 0.35s, background 0.4s;
}
.nav--scrolled .nav__burger span { background: var(--encre); }
.nav__burger--open span { background: var(--blanc) !important; }
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--encre); z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-silk);
}
.nav__mobile--open { opacity: 1; pointer-events: all; z-index: 1001; }
.nav__mobile a {
  font-family: var(--ff-serif);
  font-size: 2rem; color: var(--blanc);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--or-soie); }

.nav__mobile-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--or-soie);
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.nav__mobile-close:hover {
  color: var(--blanc);
  background: rgba(200,169,110,0.15);
  border-color: var(--or-soie);
}

/* ─── 7. Hero + Gate ─── */

.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.hero__scene {
  position: absolute; inset: 0;
}

.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.6);
  animation: heroFade 10s ease-in-out infinite;
}
.hero__bg--2 {
  animation-delay: -5s;
}

@keyframes heroFade {
  0%, 40%   { opacity: 1; }
  50%, 90%  { opacity: 0; }
  100%      { opacity: 1; }
}

.hero__scene::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(200,169,110,0.2) 0%, transparent 55%),
    linear-gradient(180deg, rgba(27,29,46,0.5) 0%, rgba(27,29,46,0.2) 40%, rgba(27,29,46,0.7) 100%);
  z-index: 1;
}

.hero__gate {
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
}

/* Golden slit of light between doors */
.hero__gate::before {
  content: '';
  position: absolute;
  left: 50%; top: 10%;
  width: 2px; height: 80%;
  background: linear-gradient(to bottom, transparent 0%, var(--or-soie) 12%, var(--or-soie) 88%, transparent 100%);
  transform: translateX(-50%);
  z-index: 3;
  opacity: calc(1 - var(--gate-open) * 5);
}

/* Arch outline above the slit */
.hero__gate::after {
  content: '';
  position: absolute;
  left: 50%; top: 7%;
  width: 76px; height: 46px;
  border: 1.5px solid var(--or-soie);
  border-bottom: none;
  border-radius: 38px 38px 0 0;
  transform: translateX(-50%);
  z-index: 3;
  opacity: calc(1 - var(--gate-open) * 5);
}

.hero__door {
  position: absolute; top: 0;
  width: 50.5%; height: 100%;
  background: var(--encre);
  will-change: transform;
}
.hero__door::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__door--left {
  left: 0;
  box-shadow: inset -40px 0 80px -30px rgba(200,169,110,0.05);
  transform: translateX(calc(var(--gate-open) * -105%));
}
.hero__door--right {
  right: 0;
  box-shadow: inset 40px 0 80px -30px rgba(200,169,110,0.05);
  transform: translateX(calc(var(--gate-open) * 105%));
}

.hero__content {
  position: relative; z-index: 3;
  text-align: center; color: var(--blanc);
  opacity: calc(0.12 + var(--gate-open) * 0.88);
  transform: scale(calc(0.93 + var(--gate-open) * 0.07));
  will-change: opacity, transform;
}

.hero__tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-soie);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: rgba(247,243,235,0.45);
  font-weight: 300;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  color: var(--or-soie);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: calc(1 - var(--gate-open) * 3);
  animation: hero-float 3s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.6; }

@keyframes hero-float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ─── 8. Towers Separator ─── */

.towers {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(6px, 2vw, 16px);
  padding: 2.5rem 1rem;
  overflow: hidden;
}

.towers__tower {
  color: var(--or-soie);
  opacity: 0.25;
  transition: opacity 0.4s, transform 0.4s var(--ease-silk);
}
.towers__tower:hover { opacity: 0.6; transform: translateY(-3px); }
.towers__tower svg { width: clamp(14px, 2.5vw, 22px); height: auto; }

.towers__tower--secret {
  cursor: pointer; opacity: 0.12;
}
.towers__tower--secret:hover {
  opacity: 1; color: var(--or-vif);
}

/* ─── 9. Sections Common ─── */

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section__tag {
  display: inline-block;
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-soie);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--encre);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--pierre-dark);
  max-width: 480px;
  margin-bottom: 3rem;
}

.silk-accent {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--or-soie), transparent);
  margin: 1.5rem 0;
}

/* ─── 10. Notre Histoire ─── */

.section--histoire { overflow: hidden; }

.histoire__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}

.histoire__text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  max-width: 520px;
}

.histoire__visual {
  display: flex; align-items: center; justify-content: center;
}

.histoire__photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 120px 120px 8px 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 2px solid rgba(200,169,110,0.15);
}
.histoire__photo::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -60px 60px -20px rgba(27,29,46,0.3);
  pointer-events: none;
}
.histoire__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}

/* ─── 11. La Table ─── */

.section--table {
  background: var(--encre);
  color: var(--blanc);
  overflow: hidden;
}
.section--table .section__tag { color: var(--or-clair); }
.section--table .section__title { color: var(--blanc); }

.section--table::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.section--table::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.table__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.table__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease-silk);
}
.table__card:hover {
  border-color: rgba(200,169,110,0.25);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.table__card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,169,110,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.table__card-icon svg { width: 22px; height: 22px; color: var(--or-soie); }

.table__card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--or-clair);
}

.table__card .table__time {
  color: var(--or-soie);
  font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.table__card p {
  color: rgba(247,243,235,0.5);
  font-size: 0.95rem; line-height: 1.7;
}

.table__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.table__photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(200,169,110,0.1);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s;
}
.table__photo:hover {
  transform: scale(1.02);
  border-color: rgba(200,169,110,0.3);
}
.table__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: filter 0.4s, transform 0.6s var(--ease-out-expo);
}
.table__photo:hover img {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.05);
}
.table__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,29,46,0.35) 100%);
  pointer-events: none;
}
.table__photo--large {
  grid-column: 1 / -1;
}
.table__photo--large img {
  aspect-ratio: 21/9;
}

.table__note {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(247,243,235,0.3);
  font-style: italic;
  text-align: center;
}

/* ─── 11b. Badge Box midi ─── */

.table__badge {
  display: inline-block;
  background: rgba(200,169,110,0.15);
  color: var(--or-soie);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(200,169,110,0.2);
  margin-bottom: 1rem;
}

.table__soirees {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(247,243,235,0.4);
  font-style: italic;
  line-height: 1.7;
}

.table__produits {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.table__produits li {
  list-style: disc;
  color: rgba(247,243,235,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.table__card--ravioles {
  border-color: rgba(200,169,110,0.2);
  background: rgba(200,169,110,0.04);
}

/* ─── 11c. Les Vins ─── */

.section--vins {
  background: linear-gradient(180deg, var(--blanc), #F0EBDF);
}

.vins__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.vins__card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(200,169,110,0.1);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s;
}
.vins__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.vins__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,169,110,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.vins__icon svg { width: 22px; height: 22px; color: var(--or-soie); }

.vins__card h3 {
  font-size: 1.2rem;
  color: var(--encre);
  margin-bottom: 0.5rem;
}

.vins__card p {
  font-size: 0.85rem;
  color: var(--pierre-dark);
}

/* ─── 11d. La Carte (Google Sheet) ─── */

.section--carte {
  background: var(--encre);
  color: var(--blanc);
}
.section--carte .section__tag { color: var(--or-clair); }
.section--carte .section__title { color: var(--blanc); }
.section--carte .section__subtitle { color: rgba(247,243,235,0.5); }

.carte__grid {
  margin-top: 2rem;
}

.carte__loading {
  text-align: center;
  color: rgba(247,243,235,0.3);
  font-style: italic;
  padding: 2rem;
}

.carte__categorie {
  margin-bottom: 2.5rem;
}

.carte__categorie-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--or-clair);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.carte__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.carte__item-name {
  font-weight: 500;
  color: var(--blanc);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.carte__item-desc {
  font-size: 0.85rem;
  color: rgba(247,243,235,0.4);
  line-height: 1.6;
}

/* ─── 11e. Plat du Jour (Facebook) ─── */

.section--plat-du-jour {
  background: linear-gradient(180deg, #F0EBDF, var(--blanc));
}

.plat-du-jour__widget {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(200,169,110,0.1);
}

.plat-du-jour__widget iframe,
.plat-du-jour__widget .fb-page {
  width: 100% !important;
}

.plat-du-jour__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--pierre-dark);
  font-style: italic;
  text-align: center;
}

/* ─── 12. Le Mur des Artistes ─── */

.artistes__wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.artistes__poster {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out-expo);
}
.artistes__poster:hover { transform: scale(1.03); }

.artistes__poster-bg {
  position: absolute; inset: 0; z-index: 0;
}
.artistes__poster-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: filter 0.5s, transform 0.6s var(--ease-out-expo);
}
.artistes__poster:hover .artistes__poster-bg img {
  filter: brightness(0.3) saturate(0.5);
  transform: scale(1.05);
}

.artistes__poster-front {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(27,29,46,0.1) 0%, rgba(27,29,46,0.85) 100%);
  z-index: 2;
  transition: opacity 0.4s;
}

.artistes__poster h4 {
  font-size: 1.1rem; color: var(--blanc);
  font-weight: 500;
}

.artistes__poster-back {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center;
  background: rgba(27,29,46,0.92);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}
.artistes__poster:hover .artistes__poster-front { opacity: 0; }
.artistes__poster:hover .artistes__poster-back { opacity: 1; }

.artistes__poster-back p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--or-clair);
  line-height: 1.6;
}

.artistes__poster:nth-child(1) .artistes__poster-bg { background: linear-gradient(160deg, #2d1f0e, #1a150c); }
.artistes__poster:nth-child(2) .artistes__poster-bg { background: linear-gradient(160deg, #1a2a2d, #0f181c); }
.artistes__poster:nth-child(3) .artistes__poster-bg { background: linear-gradient(160deg, #2a1a2d, #1a0f1c); }
.artistes__poster:nth-child(4) .artistes__poster-bg { background: linear-gradient(160deg, #2d2a1a, #1c1a0f); }

.artistes__poster::before {
  content: '';
  position: absolute;
  top: 0.75rem; left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: 8px;
  z-index: 1;
  transition: border-color 0.4s;
}
.artistes__poster:hover::before { border-color: rgba(200,169,110,0.3); }

/* ─── 13. Avis ─── */

.section--avis {
  background: linear-gradient(180deg, var(--blanc), #F0EBDF);
}

.avis__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.avis__card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(200,169,110,0.06);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.avis__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.avis__stars {
  display: flex; gap: 2px;
  margin-bottom: 1rem;
  color: var(--or-soie);
  font-size: 0.8rem;
}

.avis__card p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.avis__card cite {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.72rem;
  color: var(--or-soie);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ─── 14. Contact + Map ─── */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
}

.contact__info address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.contact__email {
  display: inline-block;
  color: var(--or-soie);
  margin-bottom: 2rem;
  font-size: 0.92rem;
  transition: color 0.3s;
}
.contact__email:hover { color: var(--or-vif); }

.contact__buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.contact__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(200,169,110,0.08);
  aspect-ratio: 4/3;
}
.contact__map iframe {
  width: 100%; height: 100%; border: 0;
  filter: saturate(0.8) contrast(1.05);
}

/* ─── 15. Footer ─── */

.footer {
  background: var(--encre);
  color: var(--blanc);
  padding: 3.5rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.08);
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.15rem; font-weight: 600;
  display: block; margin-bottom: 0.5rem;
}

.footer__brand p {
  color: rgba(247,243,235,0.4);
  font-size: 0.8rem; line-height: 1.6;
}

.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.8rem;
  color: rgba(247,243,235,0.4);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--or-soie); }

.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,243,235,0.45);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--or-soie);
  color: var(--or-soie);
  background: rgba(200,169,110,0.06);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
}
.footer__bottom p {
  font-size: 0.68rem;
  color: rgba(247,243,235,0.2);
}

/* ─── 16. Phone Overlay ─── */

.overlay {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease-out;
}
.overlay--open { opacity: 1; pointer-events: all; }

.overlay__backdrop {
  position: absolute; inset: 0;
  background: rgba(27,29,46,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.overlay__content {
  position: relative; z-index: 1;
  text-align: center; padding: 3rem;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.2s var(--ease-out-expo);
}
.overlay--open .overlay__content { transform: scale(1) translateY(0); }

.overlay__tag {
  display: inline-block;
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-soie);
  margin-bottom: 1.5rem;
}

.overlay__number {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 600;
  color: var(--blanc);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.overlay__actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}

.overlay__copied {
  font-size: 0.75rem; color: var(--or-soie);
  opacity: 0; transition: opacity 0.3s;
  margin-top: 0.5rem;
  height: 1.2em;
}
.overlay__copied--show { opacity: 1; }

/* ─── 17. Easter Egg ─── */

.easter-trigger {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,243,235,0.1);
  font-size: 0.55rem;
  transition: all 0.4s;
  border: 1px solid transparent;
}
.easter-trigger:hover {
  color: var(--or-soie);
  border-color: rgba(200,169,110,0.2);
}

.easter-overlay {
  position: fixed; inset: 0;
  z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,29,46,0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s var(--ease-silk);
}
.easter-overlay--open { opacity: 1; pointer-events: all; }

.easter-overlay__content {
  text-align: center; padding: 2rem;
  position: relative;
}

.easter-overlay__silk {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-soie), transparent);
  transition: width 1.4s var(--ease-out-expo);
}
.easter-overlay--open .easter-overlay__silk { width: min(80vw, 500px); }

.easter-overlay__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  color: var(--or-soie);
  opacity: 0; transform: translateY(15px);
  transition: opacity 0.8s, transform 0.8s var(--ease-out-expo);
  line-height: 1.5;
}
.easter-overlay--open .easter-overlay__text {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.5s;
}

.easter-overlay__sub {
  font-size: 0.75rem;
  color: rgba(200,169,110,0.4);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.6s;
}
.easter-overlay--open .easter-overlay__sub { opacity: 1; transition-delay: 1.2s; }

.easter-overlay .btn--ghost {
  position: fixed; top: 2rem; right: 2rem;
  color: rgba(247,243,235,0.3);
  font-size: 1.5rem;
  z-index: 1;
}

/* ─── 18. Silk Cursor ─── */

.silk-cursor {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--or-soie);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(2px);
  transition: opacity 0.4s;
}
.silk-cursor--visible { opacity: 0.35; }

/* ─── 19. Reveal Animations ─── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-out-expo);
}
.reveal--visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-silk), transform 0.6s var(--ease-out-expo);
}
.reveal-stagger--visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.reveal-stagger--visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.reveal-stagger--visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.reveal-stagger--visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }

/* ─── 20. Responsive ─── */

@media (min-width: 640px) {
  .table__grid { grid-template-columns: 1fr 1fr; }
  .artistes__wall { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .avis__grid { grid-template-columns: repeat(3, 1fr); }
  .vins__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__social { display: flex; }
  .nav__burger { display: none; }
  .histoire__grid { grid-template-columns: 1.3fr 0.7fr; gap: 5rem; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

@media (min-width: 1200px) {
  .section__title { font-size: 3.5rem; }
}

/* ─── 21. Reduced Motion ─── */

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
  .hero__door--left, .hero__door--right { display: none; }
  .hero__gate::before, .hero__gate::after { display: none; }
  .hero__content { opacity: 1; transform: none; }
  .hero__scroll { animation: none; opacity: 1; }
  .silk-cursor { display: none; }
}
