
/* ─── RESET ───────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --cream:   #F5F0E8;
  --cream2:  #EDE8DF;
  --cream3:  #E4DECE;
  --ink:     #111010;
  --ink2:    #2A2825;
  --ink3:    #7A756C;
  --yellow:  #F0C000;
  --yellow2: #C9A000;
  --yellow-bg: rgba(240,192,0,0.10);
  --black:   #111010;
  --border:  rgba(17,16,16,0.12);
  --border2: rgba(17,16,16,0.06);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--yellow); }

/* ─── TEXTURE overlay ─────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
body > * { position: relative; }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */

nav {
  position: sticky; top: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: var(--ink);
  border-bottom: 3px solid var(--yellow);
    z-index: 100;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo-name {
 font-size: 29px;
  color: var(--cream); letter-spacing: 0.4px;

}
.nav-logo-name span { color: var(--yellow); }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 18px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(245,240,232,0.5);
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--ink); background: var(--yellow);
  border: none; padding: 11px 24px;
  cursor: pointer; border-radius: 2px;
  transition: background .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--yellow2); color: var(--cream); }

.nav-reseau ul{
  display: flex; flex-direction: row;
  gap: 15px;
  list-style-type: none;
}

.nav-reseau ul img{
height: 40px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.nav-reseau ul img:hover{
  border-color: var(--yellow);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}
/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: calc(90vh - 68px);
  display: grid; grid-template-columns: 1fr 550px;
  align-items: center; gap: 0;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.hero-left {
  padding: 40px 80px 80px 60px;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 6px;
  animation: fadeUp .6s ease both;
}
.kicker-line { width: 5px; height: 1px; background: var(--yellow2); }
.kicker-txt {
  font-size: 15px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink3);
}

.hero-h1 {
  font-family: 'Playfair Display';
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 12px;
  animation: fadeUp .6s .1s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--yellow2);
}

.hero-sub {
  font-family: 'Playfair Display'; font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--ink3); margin-bottom: 36px;
  animation: fadeUp .6s .15s ease both;
}

.hero-divider {
  width: 48px; height: 2px;
  background: var(--yellow);
  margin-bottom: 32px;
  animation: fadeUp .6s .2s ease both;
}

.hero-p {
  font-size: 20px; font-weight: 300; line-height: 1.85;
  color: var(--ink3); max-width: 620px;
  margin-bottom: 48px;
  animation: fadeUp .6s .25s ease both;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
  font-family: 'Playfair Display';

}
.hero-boutique{
  display: flex;flex-direction: row;
}
.hero-boutique img{
  display: none;
  border: 2px solid var(--yellow);
  height: 450px;
  border-radius: 10px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.hero-stats-responsive{
  visibility: hidden;
}
.btn {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  padding: 13px 28px; border-radius: 2px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all .2s;
}
.btn-ink {
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 3px;
}
.btn-ink:hover { background: var(--yellow2);color: black; }
.btn-ghost {
  background: transparent; color: var(--ink2);
  border: 1px solid var(--border2);
  border-color: rgba(28,26,23,0.2);
    border-radius: 3px;
}
.btn-ghost:hover { background: var(--yellow2);color: black;}

/* hero right */
.hero-right {
  padding: 60px 48px;
  display: flex; flex-direction: column; align-items: center;
  gap: 48px; background: var(--ink);
  height: 100%; justify-content: center;
  animation: fadeUp .6s .15s ease both;
}

.hero-logo-wrap {

  display: flex; align-items: center; justify-content: center;  position: relative;
  z-index: 200;
}
.hero-logo-wrap img {
  width: 370px; height: 370px; object-fit: contain;
}

.hero-stats {
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.h-stat {
  background: rgba(255,255,255,0.03); padding: 22px 18px; text-align: center;
  transition: background .2s;
}
.h-stat:hover { background: rgba(242,194,0,0.08); }
.h-stat-val {
  font-family: 'Playfair Display'; font-size: 28px;
  color: var(--yellow); line-height: 1;
}
.h-stat-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.4); margin-top: 6px;
}

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

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden; height: 44px;
  display: flex; align-items: center;
  background: var(--ink);
    border-top: 3px solid #C9A000;
}
.ticker-track {

  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker 26s linear infinite;
}
.ticker-track span {
  font-size: 14px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow);
}
.ticker-track .sep { color: rgba(242,194,0,0.35); font-size: 7px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════ */
.s-header {
  margin-bottom: 64px;
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
}
.s-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow2); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.s-eyebrow::before { content: none; }
.s-title {
  font-family: 'Playfair Display'; font-size: 42px;
  color: var(--ink); line-height: 1.1;
}

/* ════════════════════════════════════════════
   UNIVERS
════════════════════════════════════════════ */
.univers {
  padding: 0px 60px 100px 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
}

.univers-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--ink);
  border: 1px solid var(--ink);
}
.s-header h3{
  font-size: 30px;
}
.u-card {
  background: var(--cream); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.u-card:hover { background: var(--cream2); }

.u-top-bar {
  height: 3px; width: 0;
  background: var(--yellow);
  position: absolute; top: 0; left: 0;
  transition: width .4s ease;
}
.u-card:hover .u-top-bar { width: 100%; }

.u-num {
  font-size: 16px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow2); margin-bottom: 32px; display: block;
  border-bottom: 1px solid var(--border); padding-bottom: 16px;
}
.u-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;  /* Espacement entre images */
  margin-bottom: 20px;
}

.u-icon img {
  width: 250px;
  height: 250px;
  object-fit: contain;  /* ⭐ CLÉ : proportions respectées */
}
.v-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;  /* Espacement entre images */
  margin-bottom: 20px;
}

.v-icon img {
  width: 250px;
  height: 250px;
  object-fit: contain;  /* ⭐ CLÉ : proportions respectées */
}
.u-name {
  font-family: 'Playfair Display'; font-size: 26px;
  color: var(--ink); margin-bottom: 14px; line-height: 1.15;
}
.u-desc {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--ink3); margin-bottom: 28px;
}
.u-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--ink3); border-radius: 1px;
  background: var(--cream2);
  transition: all .2s;
}
.u-card:hover .tag { border-color: rgba(242,194,0,.5); color: var(--yellow2); background: rgba(242,194,0,.07); }

/* ════════════════════════════════════════════
   À PROPOS
════════════════════════════════════════════ */
.about {
  padding: 96px 60px;
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 480px 1fr;
  gap: 96px; align-items: center;
}

.about-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* big watermark letter */
.about-visual::before {
  content: '+2';
  font-family: 'Playfair Display'; font-size: 280px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15,14,13,0.06);
  position: absolute; line-height: 1;
  user-select: none; pointer-events: none;
  left: -20px; top: 50%; transform: translateY(-50%);
}
.about-logo-frame {
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(242,194,0,0.08), 0 16px 60px rgba(15,14,13,0.1);
  position: relative; z-index: 1;
    overflow: hidden;
}
.about-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow2); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.about-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--yellow2); }
.about-title {
  font-family: 'Playfair Display'; font-size: 40px; line-height: 1.15;
  color: var(--ink); margin-bottom: 8px;
}
.about-title em { font-style: italic; color: var(--yellow2); }
.about-divider { width: 36px; height: 3px; background: var(--yellow); margin: 24px 0; }
.about-body {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: var(--ink3); margin-bottom: 36px;
}
.about-body strong { color: var(--ink); font-weight: 600; }

.about-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  color: var(--ink); border-radius: 40px;
  background: transparent;
  transition: all .2s;
}
.pill:hover { background: var(--ink); color: var(--yellow); }

/* ════════════════════════════════════════════
   HORAIRES
════════════════════════════════════════════ */
.horaires {
  padding: 96px 60px;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start;
}

.hor-intro .s-eyebrow {
  border: none; padding: 0;
  margin-bottom: 20px;
}
.hor-intro .s-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--yellow); display: inline-block; }
.hor-intro-title{
  font-family: 'Playfair Display'; font-size: 48px;
  line-height: 1.05; color: var(--cream); margin-bottom: 24px;
}
.hor-intro-title em { font-style: italic; color: var(--yellow); }
.hor-intro-body {
  font-size: 20px; font-weight: 300; line-height: 1.85;
  color: var(--cream3); margin-bottom: 32px;
}
.parking-note {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--yellow);
}
.parking-note p { font-size: 18px; font-weight: 300; color: var(--cream3); line-height: 1.65; }

/* horaires table */
.hor-rows { border-top: 1px solid rgba(255,255,255,0.08); }
.hor-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left .2s;
  cursor: default;
}
.hor-row:hover { padding-left: 10px; }
.hor-day {
  font-size: 18px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(245,240,232,0.6);
}
.hor-times { text-align: right; }
.hor-time { font-size: 15px; font-weight: 300; color: var(--cream); }
.hor-time-2 { font-size: 15px; color: var(--cream); margin-top: 3px; }
.hor-closed {
  font-size: 15px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.2);
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact {
  padding: 96px 60px;
  background: var(--cream);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--ink);
  border: 1px solid var(--ink);
  margin-top: 0;
}

.contact-block {
  background: var(--cream); padding: 52px 48px;
}
.cb-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow2); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.cb-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--yellow2); }
.cb-title {
  font-family: 'Playfair Display'; font-size: 34px;
  color: var(--ink); margin-bottom: 36px; line-height: 1.15;
}

.ci-list { display: flex; flex-direction: column; }
.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border: none; padding-bottom: 0; }
.ci-item:first-child { padding-top: 0; }
.ci-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0; margin-top: 8px;
}
.ci-item a {
text-decoration: none;
}
.ci-val { font-size: 15px; font-weight: 300; color: var(--ink); line-height: 1.5; }
.ci-val a {color: #111010;}
.ci-val:hover{color: #C9A000;}
.ci-val a:hover{
  color: #C9A000;
}
.ci-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink3); margin-top: 4px;
}

.social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--cream2);
  border: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  transition: border-color .2s, background .2s, transform .2s;
}
.social-link:hover { border-color: var(--ink); background: var(--ink); color: var(--yellow); transform: translateX(4px); }
.social-link:hover .sl-handle { color: rgba(242,194,0,0.6); }
.sl-icon { font-size: 18px; }
.sl-name { font-size: 14px; font-weight: 600; }
.sl-handle { font-size: 12px; font-weight: 300; color: var(--ink3); margin-top: 2px; transition: color .2s; }
.sl-arrow { margin-left: auto; color: var(--yellow2); font-size: 18px; }

/* map */
.map-block {
    background-image: url("/map.png");
    background-color: #E4DECE;
background-size: cover;  
  grid-column: 1 / -1;width: 100%;padding:  0px 100px;
 min-height: 350px;

}
/* subtle grid */

.map-inner {
  position: relative; z-index: 1;
}
/* .map-pin-ring {

  width: 16px; height: 16px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(242,194,0,.2), 0 0 0 10px rgba(242,194,0,.08);
  animation: ping 2.4s ease-in-out infinite;
}
.map-pin-ring span{
  text-decoration: none;
} */
@keyframes ping {
  0%,100%{box-shadow:0 0 0 5px rgba(242,194,0,.2),0 0 0 10px rgba(242,194,0,.08)}
  50%{box-shadow:0 0 0 8px rgba(242,194,0,.15),0 0 0 16px rgba(242,194,0,.04)}
}
.map-addr {
  font-size: 11px; font-weight: bold; letter-spacing: 2.5px; text-transform: uppercase;
  color:#111010;background-color: #E4DECE;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--ink);
  border-top: 3px solid var(--yellow);
}
.f-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.f-logo img { width: 30px; height: 30px; object-fit: contain; }
.f-logo-name {
  font-family: 'Playfair Display'; font-size: 28px;
  color: var(--cream);
}
.f-logo-name span { color: var(--yellow); }
footer p { font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.35); letter-spacing: 0.5px; }
.f-social a{
  color: #E4DECE;
}
.copyright a{
    font-size: 12px;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
  color: #E4DECE;
}
/* ════════════════════════════════════════════
   AGE GATE
════════════════════════════════════════════ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: opacity .5s ease;
}
#age-gate.hidden {
  opacity: 0; pointer-events: none;
}

.ag-card {
  max-width: 520px; width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--yellow);
  padding: 56px 52px;
  text-align: center;
  position: relative;
}

/* subtle grid bg */
.ag-card::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ag-logo {
  width: 80px; height: 80px; object-fit: contain;
  margin: 0 auto 28px;
  display: block;
  position: relative; z-index: 1;
}

.ag-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  font-family: 'Playfair Display'; font-size: 22px; font-weight: 700;
  color: var(--yellow);
  margin: 0 auto 28px;
  position: relative; z-index: 1;
}

.ag-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow2); margin-bottom: 16px;
  position: relative; z-index: 1;
}

.ag-title {
  font-family: 'Playfair Display'; font-size: 32px; line-height: 1.1;
  color: var(--cream); margin-bottom: 6px;
  position: relative; z-index: 1;
}
.ag-title em { font-style: italic; color: var(--yellow); }

.ag-sub {
  font-size: 14px; font-weight: 300; color: rgba(245,240,232,0.45);
  margin-bottom: 36px; line-height: 1.7;
  position: relative; z-index: 1;
}

.ag-divider {
  width: 32px; height: 2px; background: var(--yellow);
  margin: 0 auto 36px;
  position: relative; z-index: 1;
}

.ag-question {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(245,240,232,0.6); margin-bottom: 20px;
  position: relative; z-index: 1;
}

.ag-btns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  position: relative; z-index: 1;
  margin-bottom: 28px;
}

.ag-btn {
  font-family: 'Mulish'; font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  padding: 15px 20px; border: none; cursor: pointer;
  transition: all .2s;
}
.ag-btn-yes {
  background: var(--yellow); color: var(--ink);
}
.ag-btn-yes:hover { background: var(--yellow2); }
.ag-btn-no {
  background: rgba(255,255,255,0.06); color: rgba(245,240,232,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.ag-btn-no:hover { background: rgba(255,255,255,0.1); }

.ag-legal {
  font-size: 11px; font-weight: 300; color: rgba(245,240,232,0.25);
  line-height: 1.6; position: relative; z-index: 1;
}

/* Refus screen */
#age-refused {
  display: none;
  flex-direction: column; align-items: center; gap: 20px;
}
#age-refused.show { display: flex; }
#age-gate-main.hide { display: none; }

.ag-refused-icon {
  font-size: 48px; margin-bottom: 8px;
}
.ag-refused-title {
  font-family: 'Playfair Display'; font-size: 28px;
  color: var(--cream); text-align: center; line-height: 1.2;
}
.ag-refused-sub {
  font-size: 14px; font-weight: 300; color: rgba(245,240,232,0.4);
  text-align: center; line-height: 1.7; max-width: 340px;
}
@media (max-width: 1250px) {
  .univers {
    padding: 0px 32px 72px 32px;
  }
  .univers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .univers-grid .u-card:last-child {
    grid-column: 1 / -1;
  }}
/* ─────────────────────────────────────────────
   TABLETTE  ≤ 1024px
───────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* NAV */
  nav {
    padding: 0 32px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 12px;
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr 420px;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 48px 60px 32px;
  }
  .hero-h1 {
    font-size: clamp(42px, 5vw, 64px);
  }
  .hero-logo-wrap img {
    width: 280px; height: 280px;
  }

  /* UNIVERS */
  .univers {
    padding: 0px 32px 72px 32px;
  }
  .univers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .univers-grid .u-card:last-child {
    grid-column: 1 / -1;
  }
.v-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;  /* Espacement entre images */
  margin-bottom: 20px;
}

.v-icon img {
  width: 200px;
  height: 250px;
  object-fit: contain;  /* ⭐ CLÉ : proportions respectées */
}
  /* ABOUT */
  .about {
    padding: 72px 32px;
    grid-template-columns: 360px 1fr;
    gap: 60px;
  }
  .about-logo-frame {
    width: 280px; height: 280px;
  }
  .about-logo-frame img {
    width: 280px; height: 280px;
  }

  /* HORAIRES */
  .horaires {
    padding: 72px 32px;
    gap: 48px;
  }
  .hor-intro-title {
    font-size: 38px;
  }

  /* CONTACT */
  .contact {
    padding: 72px 32px;
  }
  .contact-block {
    padding: 40px 32px;
  }

  /* FOOTER */
  footer {
    padding: 24px 32px;
  }
}


/* ─────────────────────────────────────────────
   MOBILE L  ≤ 768px
───────────────────────────────────────────── */
@media (max-width: 768px) {

  /* NAV */
  .navbar{
      z-index:10;
  }
  nav {
    padding: 0 20px;
    height: 60px;
    position: sticky;
    border-bottom: none;
      z-index:10;
  }
  .nav-links {
    display: none; 
  }
  .nav-cta {
    display: none;
  }
  .nav-reseau ul {
    gap: 10px;
  }


  /* HERO — colonne unique */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero,
.hero-right {
  position: relative;
  z-index: auto; /* important */
}
  .hero-left {
    padding: 48px 20px 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    order: 2;
  }
  .hero-right {
    order: 1;
    padding: 40px 20px 2px;
    max-height: 100px;
    border-bottom: 4px  solid --yellow;
      position: relative;
  z-index: 300;
  }
  .hero-boutique{
 display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* centrage horizontal */
  margin: 0;
}
.hero-boutique img {  display: block;
margin: 0;
  max-width: 100%;   /* clé du responsive */
  height: auto;      /* conserve ratio */
}
  .hero-h1 {
    font-size: clamp(38px, 10vw, 56px);
  }
  .hero-sub {
    font-size: clamp(16px, 4vw, 22px);
  }
  .hero-p {
    font-size: 16px;
  }
  .hero-logo-wrap {
    width: 180px; height: 180px;
    border-width: 2px;    position: fixed;
  z-index: 9999;
  }
  .hero-logo-wrap img {
    width: 130px; height: 130px;  z-index:500;  position: relative;top: -25%;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    visibility: hidden;
  }
  .hero-btns {
    margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; /* empêche le stretch */
  gap: 12px;
}

.btn {
  width: auto;          /* supprime le 100% */
  display: inline-block;
}
  .kicker-txt{font-size: 10px;}

  /* TICKER */
  .ticker-wrap {
    height: 38px;
  }
  .ticker-track span {
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* SECTION HEADER */
  .s-header {
    margin-bottom: 40px;
  }
  .s-title {
    font-size: 30px;
  }

  /* UNIVERS */
  .univers {
padding: 0px 20px 44px 20px ;
  }
  .univers-grid {
    grid-template-columns: 1fr;
  }
  .univers-grid .u-card:last-child {
    grid-column: auto;
  }
  .u-card {
    padding: 36px 24px;
  }
  .s-header{
    margin-left: -20px;
  }

  /* ABOUT */
  .about {
    padding: 56px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    justify-content: center;
  }
  .about-visual::before {
    font-size: 160px;
  }
  .about-logo-frame {
    width: 350px; height: 350px;
  }
  .about-logo-frame img {
    width: 100%; height: 100%;
  }
  .about-title {
    font-size: 30px;
  }

  /* HORAIRES */
  .horaires {
    padding: 56px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hor-intro-title {
    font-size: 32px;
  }
  .hor-intro-body {
    font-size: 15px;
  }
  .hor-day {
    font-size: 15px;
  }
  .hor-time {
    font-size: 14px;
  }

  /* CONTACT */
  .contact {
    padding: 56px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-block {
    padding: 36px 24px;
  }
  .cb-title {
    font-size: 26px;
  }
  .map-block {
    min-height: 140px;
    padding: 24px 20px;
  }
  .map-addr {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* AGE GATE */
  .ag-card {
    padding: 40px 28px;
  }
  .ag-title {
    font-size: 26px;
  }
  .ag-btns {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  footer {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .f-social {
    justify-content: center;
  }
}


/* ─────────────────────────────────────────────
   MOBILE S  ≤ 480px
───────────────────────────────────────────── */
@media (max-width: 480px) {

  /* NAV */
  nav {
    padding: 0 16px;
    height: 56px;
  }
  .nav-logo-name {
    font-size: 17px;
  }

  /* HERO */
  .hero-left {
    padding: 36px 16px 32px;
  }
  .hero-right {
    padding: 20px 16px 2px;
  }
  .hero-h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .hero-logo-wrap {
    width: 150px; height: 150px;
  }
  .hero-logo-wrap img {
    width: 140px; height: 140px;top: -25%;
  }
  .h-stat-val {
    font-size: 22px;
  }

  /* UNIVERS */
  .univers {
    padding: 0px 16px 44px 16px;
  }
  .u-card {
    padding: 28px 18px;
  }
  .u-name {
    font-size: 22px;
  }
  .u-num {
    font-size: 12px;
  }

  /* ABOUT */
  .about {
    padding: 44px 16px;
  }
  .about-logo-frame {
    width: 190px; height: 190px;
  }
  .about-title {
    font-size: 26px;
  }
  .about-body {
    font-size: 14px;
  }
  .about-pills {
    gap: 8px;
  }
  .pill {
    font-size: 10px;
    padding: 7px 14px;
  }

  /* HORAIRES */
  .horaires {
    padding: 44px 16px;
  }
  .hor-intro-title {
    font-size: 28px;
  }
  .parking-note p {
    font-size: 13px;
  }
  .hor-row {
    padding: 16px 0;
  }

  /* CONTACT */
  .contact {
    padding: 44px 16px;
  }
  .contact-block {
    padding: 28px 18px;
  }
  .cb-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .ci-val {
    font-size: 13px;
  }
  .social-link {
    padding: 14px 16px;
  }

  /* SECTION HEADERS */
  .s-title {
    font-size: 26px;
  }
  .s-header {
    margin-bottom: 32px;
  }

  /* FOOTER */
  footer {
    padding: 18px 16px;
  }
  footer p {
    font-size: 10px;
  }

  /* AGE GATE */
  .ag-card {
    padding: 32px 20px;
  }
  .ag-title {
    font-size: 22px;
  }
  .ag-sub {
    font-size: 13px;
  }
  .ag-btn {
    padding: 13px 16px;
    font-size: 13px;
  }
}
/* ═══════════════════════════════════
   PAGE MENTIONS LÉGALES
══════════════════════════════════ */

.legal-page{
  padding:120px 20px 80px;
  display:flex;
  justify-content:center;
}

.legal-container{

  max-width:900px;
  width:100%;

  background:var(--cream);
  padding:60px;

  border:1px solid var(--border);
  border-top:4px solid var(--yellow);

  box-shadow:0 20px 60px rgba(0,0,0,0.05);
}

.legal-container h1{

  font-family:'Playfair Display';
  font-size:42px;
  margin-bottom:40px;

  border-bottom:2px solid var(--yellow);
  padding-bottom:16px;
}

.legal-container h2{

  font-family:'Playfair Display';
  font-size:24px;

  margin-top:36px;
  margin-bottom:14px;

  color:var(--ink);
}

.legal-container p{

  font-size:15px;
  line-height:1.8;
  font-weight:300;

  color:var(--ink3);
  margin-bottom:16px;
}

.legal-container ul{

  margin-bottom:24px;
  padding-left:20px;
}

.legal-container li{

  font-size:14px;
  line-height:1.8;
  font-weight:300;

  color:var(--ink2);
}

.ui-title {
  font-family: 'Playfair Display'; font-size: 42px;
  line-height: 1.1; color: var(--ink);
  font-weight: 400; margin-bottom: 20px;
}
.ui-title em { font-style: italic; color: var(--yellow2); }
.box-choix {
  padding: 50px 20px 20px; /* J'ai ajouté un padding latéral (20px) pour éviter que ça touche les bords sur mobile */
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-wrap: wrap; /* INDISPENSABLE : permet aux éléments de passer l'un sous l'autre si manque de place */
  gap: 40px; /* Crée un espace propre entre le texte et l'image */
  max-width: 1200px; /* Limite la largeur max sur les grands écrans */
  margin: 0 auto; /* Centre le conteneur principal */
}

.s-header {
  flex: 1 1 300px; /* Le texte prendra l'espace dispo, mais pas moins de 300px avant de s'empiler */
}

.choix {
  /* Au lieu de dimensions fixes, on utilise des proportions fluides */
  width: 100%;
  max-width: 500px; /* Taille maximale équivalente à vos 500px d'origine */
  aspect-ratio: 5 / 4; /* Remplace le "height: 400px". Garde le ratio 500/400. */
  
  border-radius: 10%;
  background: var(--cream);
  border: 3px solid var(--yellow);
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(242,194,0,0.08), 0 16px 60px rgba(15,14,13,0.1);
  position: relative; 
  z-index: 1;
  overflow: hidden;
  flex: 1 1 300px; /* Permet à l'image de se comporter correctement à côté du texte */
}

.choix img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Assure que l'image remplit la boîte sans être déformée */
}

/* --- ADAPTATION MOBILE SPECIFIQUE --- */
@media (max-width: 768px) {
  .box-choix {
    flex-direction: column; /* Force l'empilement vertical sur mobile */
    text-align: center; /* Centre le texte sur téléphone pour faire plus joli */

  }
  .s-header{max-height: 100px;}
  .s-header h2{
    font-size: 25px;
  }
  .s-header h3{
    font-size: 20px;
  }
}
.title-univers{
  margin-top: 50px;
  margin-left: 60px;
}