/* Hallyu Kitchen — main stylesheet (home page)
   Extracted from index.html inline <style> + Canela fonts upgraded to woff2 */

/* ─── FONT FACE — CANELA (DA OFFICIELLE) ─── */
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-LightItalic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('assets/DA%20Hallyu/Canela%20Family/Canela-BlackItalic.woff2') format('woff2');
  font-weight: 900; font-style: italic; font-display: swap;
}

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

:root {
  --red: #A92818;
  --red-dark: #871d10;
  --green: #00AD8D;
  --green-dark: #008c72;
  --pink: #EEBDAC;
  --pink-light: #f7d9cc;
  --cream: #FAF6F1;
  --bg: #ffffff;
  --dark: #A92818;
  --text: #A92818;
  --muted: rgba(169,40,24,0.65);
}

html { scroll-behavior: smooth; }
.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; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: clip;
}
html { overflow-x: clip; }

.display { font-family: 'Canela', 'Fraunces', Georgia, serif; }
.canela { font-family: 'Canela', serif; font-weight: 500; font-style: normal; text-transform: uppercase; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 44px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  padding: 10px 44px;
}
.nav-logo img { height: 220px; width: auto; transition: height 0.35s ease; display: block; }
nav.scrolled .nav-logo img { height: 56px; }

/* Sur la hero (nav non-scrollée), on masque les liens et le burger : seuls le logo, les langues et "Réserver" restent visibles */
nav:not(.scrolled) .nav-links,
nav:not(.scrolled) .nav-burger { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s; }
nav.scrolled .nav-links,
nav.scrolled .nav-burger { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}
nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--pink) !important; }

.nav-reserve {
  background: var(--green);
  color: #fff !important;
  padding: 12px 26px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.nav-reserve:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ─── LANG SWITCH ─── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}
.lang-switch button {
  width: 28px; height: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0;
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s, transform 0.2s, border-color 0.2s;
  overflow: hidden;
  filter: grayscale(1) brightness(0.85);
}
nav.scrolled .lang-switch button { border-color: rgba(0,0,0,0.25); }
.lang-switch button:hover { filter: grayscale(0); transform: translateY(-1px); }
.lang-switch button.active {
  filter: grayscale(0);
  border-color: rgba(255,255,255,0.7);
}
nav.scrolled .lang-switch button.active { border-color: rgba(0,0,0,0.4); }
.lang-switch button svg { width: 100%; height: 100%; display: block; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #1a1a1a;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.85) saturate(1.05);
  transform: scale(1.22);
  transform-origin: 0% 100%;
  transition: opacity 1.2s ease;
}
.hero-vid-b { opacity: 0; }
.hero-vid-a.fading { opacity: 0; }
.hero-vid-b.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.05) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 72px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 26vw, 380px);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(68px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title .canela {
  font-family: 'Canela', serif;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--pink);
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin: 0 0 44px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-ctas { justify-content: flex-start; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin: 0 0 18px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.hero-rating:hover { background: rgba(0,0,0,0.65); transform: translateY(-1px); }
.hero-rating-stars { display: inline-flex; gap: 1px; line-height: 0; }
.hero-rating strong { font-weight: 800; font-size: 13px; }
.hero-rating-count { opacity: 0.85; font-weight: 500; }
.hero-sub strong {
  display: block;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─── HERO CTAS — joue avec la charte ─── */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.cta:hover { transform: translateY(-2px); }
.cta::before {
  content: attr(data-ko);
  font-family: 'Canela', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.75;
}

.cta-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 30px rgba(31,169,136,0.45);
}
.cta-green:hover { background: var(--green-dark); box-shadow: 0 14px 36px rgba(31,169,136,0.6); }

.cta-pink {
  background: var(--pink);
  color: var(--red);
  box-shadow: 0 10px 30px rgba(240,191,176,0.4);
}
.cta-pink:hover { background: #f5cdc0; }

.cta-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(184,46,31,0.4);
}
.cta-red:hover { background: var(--red-dark); }

.cta-outline {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.cta-outline:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

/* Dropdown Commander */
.cta-dropdown { position: relative; display: inline-flex; align-items: stretch; }
.cta-dropdown > .cta { height: 100%; }
.cta-dropdown .arrow { font-size: 9px; opacity: 0.7; margin-left: 4px; }
.dropdown-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 20;
}
.cta-dropdown:hover .dropdown-menu,
.cta-dropdown.open .dropdown-menu,
.cta-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--dark);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--green); }
.dropdown-menu a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.dropdown-menu a .dot.red { background: var(--red); }

.hero-scroll {
  position: absolute;
  bottom: 28px; right: 48px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ─── PRESSE MARQUEE ─── */
.presse-band {
  background: var(--bg);
  color: var(--dark);
  padding: 40px 0 32px;
  overflow: hidden;
  position: relative;
}
.presse-label-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 44px 22px;
}
.presse-label-wrapper span:first-child {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
}
.presse-label-wrapper .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(31,169,136,0.5), transparent);
}
.presse-label-wrapper span:last-child {
  color: rgba(26,26,26,0.4) !important;
}
.presse-marquee {
  display: flex;
  width: max-content;
  animation: scroll-marquee 60s linear infinite;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}
.presse-marquee:hover { animation-play-state: paused; }
.presse-marquee a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity 0.25s, transform 0.25s;
}
.presse-marquee a:hover {
  opacity: 1;
  transform: scale(1.08);
}
.presse-marquee img {
  height: 53px;
  max-width: 186px;
  object-fit: contain;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SHARED ─── */
section.screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 800;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: currentColor;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.section-title em, .section-title .canela {
  font-family: 'Canela', serif;
  font-style: normal;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ─── QUOTE ─── */
.quote-section {
  padding: 56px 48px;
  text-align: center;
  background: var(--bg);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.3vw, 76px);
  letter-spacing: -0.02em;
  color: var(--dark);
  max-width: 1200px;
  margin: 0 auto 24px;
  line-height: 1.05;
  text-transform: uppercase;
}
.quote-text .canela {
  font-family: 'Canela', serif;
  font-style: normal;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.quote-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
}
.quote-kor {
  position: absolute;
  font-family: 'Canela', serif;
  font-weight: 900;
  color: rgba(184,46,31,0.06);
  font-size: clamp(200px, 30vw, 400px);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
}
.quote-text, .quote-sub { position: relative; z-index: 1; }

/* ─── CONCEPT ─── */
.concept-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.concept-photo { position: relative; overflow: hidden; }
.concept-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 90%;
  transition: transform 6s ease;
}
.concept-photo:hover img { transform: scale(1.04); }
.concept-text {
  background: var(--pink);
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.concept-text .section-label { color: var(--red); }
.concept-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,26,26,0.78);
  margin-bottom: 16px;
  max-width: 520px;
}
.concept-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 28px;
}
.tag {
  padding: 7px 16px;
  border: 1.5px solid rgba(184,46,31,0.25);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.tag.filled {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.concept-kor {
  position: absolute;
  font-family: 'Canela', serif;
  font-weight: 900;
  color: rgba(184,46,31,0.1);
  font-size: 280px;
  line-height: 1;
  right: -40px;
  bottom: -80px;
  pointer-events: none;
  user-select: none;
}

/* ─── STAR PRODUCT ─── */
.star-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 70vh;
}
.star-photo { height: 70vh; }
.star-photo img { height: 70vh; }
.star-photo { position: relative; overflow: hidden; }
.star-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 80%; }
.star-label {
  position: absolute;
  top: 32px; left: 32px;
  background: #fff;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 800;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 6px;
}
.star-label::before { content: '★'; color: var(--green); }
.star-text {
  background: var(--red);
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.star-text .section-label { color: var(--pink); }
.star-text .section-label::before { background: var(--pink); }
.star-text .section-title { color: #fff; }
.star-text .section-title em, .star-text .section-title .canela { color: var(--pink); }
.star-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  max-width: 500px;
}
.star-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.format-item {
  padding: 16px 0;
  text-align: center;
}
.format-item strong {
  display: block;
  font-family: 'Canela', serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #fff;
}
.format-item span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.star-kor {
  position: absolute;
  font-family: 'Canela', serif;
  font-weight: 900;
  color: rgba(240,191,176,0.12);
  font-size: 300px;
  line-height: 1;
  right: -60px;
  bottom: -100px;
  pointer-events: none;
  user-select: none;
}

/* ─── CARTE ─── */
.carte-section {
  padding: 80px 48px 60px;
  background: var(--bg);
}
.carte-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}
.carte-header p {
  color: rgba(0,0,0,0.6);
  max-width: 420px;
  font-size: 15px;
  margin-top: 12px;
}
.carte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.carte-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border-radius: 4px;
  display: block;
  text-decoration: none;
}
.carte-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s;
  filter: brightness(0.95);
}
.carte-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
.carte-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.carte-item-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
  font-weight: 800;
}
.carte-item-name {
  font-family: 'Canela', serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  line-height: 1.05;
}
.carte-item-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  line-height: 1.45;
}

/* ─── COCKTAILS ─── */
.cocktails-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.cocktail-mobile-grid { display: none; }
.cocktail-text {
  background: var(--green);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
}
.cocktail-text .section-title { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.cocktail-text .section-label { color: var(--pink); }
.cocktail-text .section-label::before { background: var(--pink); }
.cocktail-text .section-title { color: #fff; }
.cocktail-text .section-title em { color: var(--pink); }
.cocktail-text p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  max-width: 440px;
}
.cocktail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-bottom: 24px;
}
.cocktail-list li {
  padding: 6px 0;
}
.cocktail-list li strong {
  font-family: 'Canela', serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  display: block;
}
.cocktail-list li span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
/* Showcase cocktail (remplace mosaic) */
.cocktail-showcase {
  position: relative;
  background: var(--green);
  overflow: hidden;
  height: 100%;
}
.cocktail-showcase-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.cocktail-showcase-img.active { opacity: 1; }
.cocktail-showcase-name {
  position: absolute;
  left: 36px; bottom: 32px;
  font-family: 'Canela', serif;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cocktail-list li {
  cursor: pointer;
  transition: padding 0.25s, background 0.25s;
}
.cocktail-list li:hover,
.cocktail-list li.is-active {
  padding-left: 12px;
  background: linear-gradient(to right, rgba(255,255,255,0.08), transparent);
}
.cocktail-list li.is-active strong { color: var(--pink); }

/* ─── GALERIE IMMERSIVE ─── */
.galerie-section {
  padding: 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.galerie-intro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 40%, rgba(26,26,26,0.2) 80%);
}
.galerie-intro .section-title {
  color: #fff;
  margin-bottom: 0;
  font-size: clamp(48px, 7vw, 120px);
  text-shadow: 0 6px 40px rgba(0,0,0,0.6);
}
.galerie-intro .section-title .canela { color: var(--pink); }
.galerie-intro .sub {
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 18px;
}
.galerie-intro .sub.galerie-sub-bigger {
  font-size: 16px; letter-spacing: 0.28em;
  color: #fff; margin-top: 22px;
}
.galerie-ig-cta {
  pointer-events: auto;
  margin-top: 24px;
  padding: 14px 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: var(--dark) !important;
  border-radius: 999px; font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.galerie-ig-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.5); }
.galerie-ig-cta::before { content: none; }
.galerie-immersive {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 0;
  position: relative;
}
.gi { position: relative; overflow: hidden; background: #111; }
.gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.gi:hover img { transform: scale(1.08); }
.gi::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(169,40,24,0) 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.gi:hover::after { opacity: 0; }
.gi-a { grid-column: 1/5; grid-row: 1/4; }
.gi-b { grid-column: 5/8; grid-row: 1/3; }
.gi-c { grid-column: 8/11; grid-row: 1/3; }
.gi-d { grid-column: 11/13; grid-row: 1/5; }
.gi-e { grid-column: 5/8; grid-row: 3/6; }
.gi-f { grid-column: 8/11; grid-row: 3/5; }
.gi-g { grid-column: 1/3; grid-row: 4/6; }
.gi-h { grid-column: 3/5; grid-row: 4/7; }
.gi-i { grid-column: 8/11; grid-row: 5/7; }
.gi-j { grid-column: 11/13; grid-row: 5/7; }
.gi-k { grid-column: 5/8; grid-row: 6/8; }
.gi-l { grid-column: 1/3; grid-row: 6/8; }
.gi-m { grid-column: 3/5; grid-row: 7/8; }
.gi-n { grid-column: 8/13; grid-row: 7/8; }

/* ─── RÉSERVER (band fin, sans image) ─── */
.reserve-section {
  background: var(--pink);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.reserve-section::before {
  content: '예약';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Canela', serif;
  font-weight: 900;
  color: rgba(169,40,24,0.08);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.reserve-content {
  position: relative;
  z-index: 2;
  flex: 1 1 480px;
  min-width: 0;
}
.reserve-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.reserve-content h2 .canela {
  color: var(--red);
  font-weight: 500;
  text-transform: uppercase;
}
.reserve-content p {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(169,40,24,0.7);
  margin: 0;
}
.reserve-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.reserve-buttons .cta-outline {
  background: transparent;
  color: var(--red);
  border-color: rgba(169,40,24,0.5);
  backdrop-filter: none;
}
.reserve-buttons .cta-outline:hover { background: rgba(169,40,24,0.08); border-color: var(--red); }

/* ─── LOCALISATION ─── */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.location-text {
  background: var(--bg);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-text p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26,26,26,0.7);
  margin-bottom: 14px;
  max-width: 480px;
}
.location-address {
  font-style: normal;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
}
.location-address strong { font-weight: 700; font-size: 18px; color: var(--red); }
.location-map { background: #e8e8e8; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 460px; }

/* ─── INFOS ─── */
.infos-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--pink);
}
.info-block {
  padding: 56px 40px;
  border-right: 1px solid rgba(26,26,26,0.1);
}
.info-block:last-child { border-right: none; }
.info-block h3 {
  font-family: 'Canela', serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--red);
  margin-bottom: 18px;
}
.info-block p, .info-block address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(26,26,26,0.75);
}
.info-block a { color: var(--red); text-decoration: none; font-weight: 600; }
.info-block a:hover { text-decoration: underline; }
.horaires-list { list-style: none; }
.horaires-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
}
.horaires-list li span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(26,26,26,0.6);
  font-size: 11px;
}
.horaires-list li span:last-child { color: var(--dark); font-weight: 500; }
.horaires-list li.closed span:last-child { color: var(--red); font-style: italic; font-weight: 400; }
.socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.socials a {
  background: var(--dark);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  transition: background 0.2s;
}
.socials a:hover { background: var(--red); text-decoration: none !important; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo img { height: 96px; }
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
}
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.35); }
.footer-dev { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.12em; }
.footer-dev a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-dev a:hover { color: rgba(255,255,255,0.55); }

/* ─── BURGER (mobile) ─── */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav-burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
nav.scrolled .nav-burger { background: rgba(169,40,24,0.08); border-color: rgba(169,40,24,0.2); }
nav.scrolled .nav-burger span { background: var(--red); }
nav.menu-open .nav-burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-burger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 12px 18px; }
  .nav-logo img { height: 110px; }
  nav.scrolled .nav-logo img { height: 56px; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 90px 28px 36px;
    background: rgba(169,40,24,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    z-index: 90;
    max-height: 100vh;
    overflow-y: auto;
  }
  nav.menu-open .nav-links { transform: translateY(0); }
  .nav-links a {
    color: #fff !important;
    font-size: 18px;
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  nav.scrolled .nav-links a { color: #fff !important; }
  .nav-burger { display: block; }
  .nav-reserve { padding: 10px 18px; font-size: 11px; }

  .hero-content { padding: 0 22px 48px; }
  .hero-logo { width: clamp(140px, 30vw, 220px); top: 24px; }
  .concept-section, .star-section, .cocktails-section, .location-section { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .concept-text, .star-text, .cocktail-text, .location-text { padding: 48px 24px; }
  .concept-photo, .star-photo, .cocktail-photo { min-height: 320px; height: auto; }
  .cocktails-section .cocktail-showcase { display: none; }
  .cocktails-section .cocktail-list { display: none; }
  .cocktails-section .cocktail-text { padding: 40px 22px; }
  .cocktails-section .cocktail-text p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
  .cocktail-mobile-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0 22px;
  }
  /* Flip card */
  .flip-card { perspective: 600px; cursor: pointer; }
  .flip-card-inner {
    position: relative; width: 100%; aspect-ratio: 1/1;
    transition: transform 0.45s ease; transform-style: preserve-3d;
  }
  .flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
  .flip-card-front, .flip-card-back {
    position: absolute; inset: 0;
    backface-visibility: hidden; border-radius: 10px; overflow: hidden;
  }
  .flip-card-front img {
    width: 100%; height: 100%; object-fit: cover; background: rgba(0,0,0,0.15);
  }
  .flip-card-back {
    background: var(--dark); transform: rotateY(180deg);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; padding: 8px; text-align: center; gap: 4px;
  }
  .flip-card-back strong {
    font-family: 'Canela', serif; font-size: 12px;
    color: var(--pink); display: block; line-height: 1.2;
  }
  .flip-card-back span {
    font-size: 9px; color: rgba(255,255,255,0.65); line-height: 1.45;
  }
  .cocktail-card-name {
    font-family: 'Canela', serif; font-size: 11px; color: #fff;
    margin-top: 4px; text-align: center; opacity: 0.92;
  }
  .star-photo, .star-photo img { height: auto; aspect-ratio: 4/3; }
  .carte-section, .galerie-section { padding: 60px 16px 44px; }
  .carte-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .infos-section { grid-template-columns: 1fr; }
  .info-block { border-right: none; border-bottom: 1px solid rgba(26,26,26,0.1); padding: 36px 22px; }
  footer { flex-direction: column; gap: 14px; text-align: center; padding: 26px; }

  /* Galerie mobile : reflow simple */
  .galerie-immersive { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
  .galerie-intro .section-title { font-size: clamp(36px, 9vw, 60px); }
  .gi-a { grid-column: 1/4; grid-row: 1/3; }
  .gi-b { grid-column: 4/7; grid-row: 1/2; }
  .gi-c { grid-column: 4/7; grid-row: 2/3; }
  .gi-d { grid-column: 1/4; grid-row: 3/4; }
  .gi-e { grid-column: 4/7; grid-row: 3/5; }
  .gi-f { grid-column: 1/4; grid-row: 4/5; }
  .gi-g { grid-column: 1/3; grid-row: 5/6; }
  .gi-h { grid-column: 3/5; grid-row: 5/6; }
  .gi-i { grid-column: 5/7; grid-row: 5/6; }
  .gi-j { grid-column: 1/4; grid-row: 6/7; }
  .gi-k { grid-column: 4/7; grid-row: 6/7; }
  .gi-l { grid-column: 1/3; grid-row: 7/8; }
  .gi-m { grid-column: 3/5; grid-row: 7/8; }
  .gi-n { grid-column: 5/7; grid-row: 7/8; }

  .reserve-section { padding: 36px 22px; gap: 20px; text-align: left; }
  .reserve-buttons { width: 100%; }
  .reserve-buttons .cta { flex: 1; justify-content: center; }
}
@media (max-width: 640px) {
  .hero { min-height: 580px; }
  .hero-title { font-size: clamp(50px, 14vw, 78px); }
  .hero-sub { font-size: 12px; margin-bottom: 28px; }
  .hero-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .hero-ctas .cta, .hero-ctas .cta-dropdown { width: 100%; }
  .cta { justify-content: center; padding: 14px 14px; font-size: 11px; }
  .cta-dropdown { width: 100%; }
  .dropdown-menu { left: 0; right: 0; min-width: 0; bottom: calc(100% + 8px); top: auto; }
  .quote-text { font-size: clamp(30px, 8vw, 44px); }
  .section-title { font-size: clamp(34px, 8vw, 52px); }
  .cocktail-list { grid-template-columns: 1fr; }
  .star-formats { grid-template-columns: 1fr; }
  .format-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 12px 0; }
  .star-text { padding: 40px 22px; }
  .concept-text { padding: 40px 22px; }
  .cocktail-text { padding: 48px 22px; }
  .location-text { padding: 40px 22px; }
  .reserve-content { padding: 60px 22px; }
  .reserve-buttons { flex-direction: column; width: 100%; }
  .reserve-buttons .cta { width: 100%; }
  .presse-label-wrapper { padding: 0 22px 18px; }
  .presse-marquee img { height: 38px; max-width: 130px; }
  .presse-marquee { gap: 50px; }
  .carte-header { gap: 18px; }
  .carte-header .cta { width: 100%; justify-content: center; }
}

/* ─── Zenchef widget — force sticky bottom on mobile ─── */
[class*="zenchef"][class*="floating"],
[class*="zenchef-widget"],
[id*="zenchef"][class*="bar"],
.zc-floating-bar,
.zc-fab,
.zenchef-floating-button {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
}
/* Cas iframe Zenchef floating */
iframe[src*="zenchef"][style*="fixed"],
iframe[src*="sdk.zenchef"] {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--cream);
  padding: 32px 48px 36px;
  position: relative;
}
.faq-master { max-width: 760px; margin: 0 auto; }
.faq-master > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0;
  font-family: 'Canela', serif;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 32px);
  color: var(--red);
  text-align: center;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-master > summary::-webkit-details-marker { display: none; }
.faq-master > summary:hover { color: var(--green); }
.faq-master > summary .canela { color: var(--green); font-style: italic; font-weight: 400; }
.faq-master > summary::after {
  content: '+';
  font-family: 'Canela', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-master[open] > summary::after { transform: rotate(45deg); }
.faq-container {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 18px;
  animation: faqFade 0.35s ease;
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 22px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.faq-item {
  border-top: 1px solid rgba(169,40,24,0.15);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(169,40,24,0.15); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-item summary::after {
  content: '+';
  font-family: 'Canela', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 6px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
}
.faq-item .faq-answer strong { color: var(--green); }
@media (max-width: 640px) {
  .faq-section { padding: 22px 22px 26px; }
  .faq-master > summary { font-size: 19px; padding: 10px 0; gap: 10px; }
  .faq-master > summary::after { font-size: 22px; }
  .faq-intro { font-size: 12.5px; margin-bottom: 18px; }
  .faq-item summary { font-size: 13px; padding: 12px 2px; gap: 10px; }
  .faq-item summary::after { font-size: 18px; }
  .faq-item .faq-answer { padding: 0 2px 14px; font-size: 13px; }
}
