/* =============================================
   GOFRESQUINA — Premium Artisan Waffle Brand
   ============================================= */

:root {
  --gold: #cfa84a;
  --gold-light: #e8c96a;
  --gold-dark: #b8912e;
  --cream: #f9f5ef;
  --cream-dark: #f0e8db;
  --brown: #3d2b1f;
  --brown-light: #5a3e2b;
  --black: #0b0b0b;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-muted: #7a7a7a;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Oswald', system-ui, -apple-system, sans-serif;

  /* Chatbot Louis (widget gearflow) — overrides */
  --iahury-title-bg: #cfa84a;
  --iahury-title-text: #0b0b0b;
  --iahury-log-bg: #1f1f1f;
  --iahury-form-bg: #cfa84a;
  --iahury-form-border: #cfa84a;
  --iahury-button-bg: #0b0b0b;
  --iahury-button-text: #ffffff;
  --iahury-assistant-bg: #cfa84a;
  --iahury-assistant-text: #0b0b0b;
  --iahury-user-bg: #ffffff;
  --iahury-user-text: #0b0b0b;
}

/* Chatbot Louis — override direct (fallback si variables ignorées) */
.iahury-title {
  background: #cfa84a !important;
  color: #0b0b0b !important;
  border-bottom: 1px solid #0b0b0b !important;
}
.iahury-title .iahury-close {
  color: #0b0b0b !important;
}
.iahury-log {
  background: #1f1f1f !important;
}
.iahury-form {
  background: #cfa84a !important;
  border-top-color: #cfa84a !important;
}
.iahury-form button {
  background: #0b0b0b !important;
  color: #ffffff !important;
}
.iahury-bubble-assistant {
  background: #cfa84a !important;
  color: #0b0b0b !important;
  border: 1px solid #0b0b0b !important;
}
.iahury-bubble-user {
  background: #ffffff !important;
  color: #0b0b0b !important;
  border: 1px solid #cfa84a !important;
}
.iahury-form input {
  font-size: 16px !important;
}
.iahury-form input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.iahury-panel {
  bottom: 120px !important;
}
@media (max-width: 700px) {
  .iahury-panel {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    height: 550px !important;
    bottom: 24px !important;
  }
  .iahury-log {
    height: auto !important;
  }
  .iahury-panel.is-open ~ .iahury-launcher,
  body:has(.iahury-panel.is-open) .iahury-launcher {
    display: none !important;
  }
  .iahury-close {
    font-size: 32px !important;
    padding: 6px 12px !important;
  }
}
.iahury-launcher:not(.iahury-launcher-iconic) {
  visibility: hidden !important;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  scroll-snap-type: y mandatory;
  background: var(--black);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* hero-visual : supprimer le stacking context après reveal pour que le coeur passe devant le header */
.hero-visual[data-reveal].revealed {
  transform: none;
}

/* =============================================
   HEADER
   ============================================= */
/* Animated gold LED ribbon at top of header */
.header-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(207,168,74,0.1) 0%,
    rgba(207,168,74,0.25) 20%,
    var(--gold-light) 40%,
    var(--white) 50%,
    var(--gold-light) 60%,
    rgba(207,168,74,0.25) 80%,
    rgba(207,168,74,0.1) 100%
  );
  background-size: 300% 100%;
  animation: headerGlow 8s ease-in-out infinite;
  opacity: 0.6;
  z-index: 2;
}

/* Gold halo glow downward */
.header-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 25%,
    rgba(207,168,74,0.04) 40%,
    rgba(207,168,74,0.06) 50%,
    rgba(207,168,74,0.04) 60%,
    transparent 75%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: headerGlow 8s ease-in-out infinite;
  filter: blur(6px);
  pointer-events: none;
}

@keyframes headerGlow {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

/* Lien app header */
.app-header-link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
}

.app-header-link:hover {
  color: #fff;
}

.app-header-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  color: #fff;
  pointer-events: none;
}

.app-header-link:hover .app-header-label {
  opacity: 1;
}

.app-header-link:hover .app-icon {
  animation-play-state: paused;
  opacity: 0 !important;
}

.app-header-link:hover .app-header-label {
  opacity: 1;
  transform: translateY(0);
}

/* Header actions (store / join / login) */
.header-store-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: calc(0.82rem + 2px);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-store-link:hover { color: #fff; }

.header-gifts-btn {
  display: inline-flex;
  align-items: center;
  margin-left: 40px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.header-gifts-btn:hover {
  background: var(--gold);
  color: #0b0b0b;
  border-color: var(--gold);
}

.gifts-star {
  color: var(--gold);
  transition: color 0.3s ease;
}
.header-gifts-btn:hover .gifts-star {
  color: #0b0b0b;
}
.header-gifts-btn img {
  transition: filter 0.3s ease;
}
.header-gifts-btn:hover img {
  filter: brightness(0);
}

.header-join-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.header-join-btn:hover { opacity: 0.85; }

.header-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.header-login-btn:hover { border-color: #fff; color: #fff; }

/* Alternance icônes iOS / Android — crossfade simultané, jamais les deux invisibles */
.app-icon {
  opacity: 0;
}

.app-icon-ios {
  animation: appIconIos 4s ease-in-out infinite;
}

.app-icon-android {
  animation: appIconAndroid 4s ease-in-out infinite;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

#header.scrolled .header-inner-bar {
  height: 70px !important;
}

#header.scrolled .header-logo {
  width: 220px !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  max-width: none;
  padding: 0 80px;
}

.logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.logo:hover { opacity: 0.8; }
.logo img { height: 80px; width: auto; }

/* MENU BUTTON — hamburger + "MENU" label */
.menu-btn:hover span[style*="background"] {
  background: #cfa84a !important;
}
.menu-btn:hover span[style*="color"] {
  color: #cfa84a !important;
}

/* BURGER → CROSS ANIMATION */
.burger-svg rect {
  transition: all 0.35s ease;
}
.burger-top { transform-origin: 16.5px 1px; }
.burger-mid { transform-origin: 16.5px 10px; }
.burger-bot { transform-origin: 16.5px 19px; width: 20px; }
.burger-svg.open .burger-top {
  transform: translateY(9px) rotate(45deg);
}
.burger-svg.open .burger-mid {
  opacity: 0;
}
.burger-svg.open .burger-bot {
  transform: translateY(-9px) rotate(-45deg);
  width: 33px;
}

/* HEADER FRANCHISE BUTTON hover */
@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes spin-border {
  to { --angle: 360deg; }
}

.header-franchise-btn {
  position: relative;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: transparent;
  z-index: 0;
  overflow: hidden;
  transition: color 0.3s ease;
}

.header-franchise-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(from var(--angle), #1a1a1a 0% 16.7%, #C9A000 16.7% 33.3%, #C8102E 33.3% 50%, #1a1a1a 50% 66.7%, #C9A000 66.7% 83.3%, #C8102E 83.3% 100%);
  animation: spin-border 8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.header-franchise-btn::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.3s ease;
  z-index: -1;
}

.header-franchise-btn:hover {
  color: #fff;
  border-color: transparent;
}

.header-franchise-btn:hover::after {
  background: #0b0b0b;
}

.header-franchise-btn:hover::before {
  opacity: 1;
  animation: spin-border 8s linear infinite;
}

/* NAV OVERLAY — fullscreen */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: linear-gradient(to bottom, #d4ad4a, var(--gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(100px, 15vh, 140px);
  gap: 0;
  transform: translateY(-100%);
  opacity: 1;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s ease;
  isolation: isolate;
}
.nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-hist-edited.png') center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.nav-overlay.open {
  transform: translateY(0);
  visibility: visible;
}

.nav-overlay a {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, calc(2.2rem - 4px));
  font-weight: 350;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: clamp(0.1em, 0.5vh, 0.3em) 0;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.nav-overlay.open a {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.open a:nth-child(6) { transition-delay: 0.35s; }

.nav-ornament {
  height: clamp(1.8rem, 4vh, 4rem);
  width: auto;
  color: rgba(0,0,0,0.50);
  flex-shrink: 1;
  overflow: visible;
}

.nav-overlay a:hover {
  color: var(--white);
}

.nav-overlay-cta {
  margin-top: 1.5rem;
  font-style: normal !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  padding: 0.8rem 2.5rem !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-overlay-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: none !important;
}

.nav-overlay-bottom {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2.5rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-overlay-apps {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-overlay-apps .footer-app-badge {
  margin: 0;
}

.nav-overlay-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* LANGUAGE SELECTOR — minimal globe + code */
.lang-selector {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  padding: 4px 0;
  transition: color 0.3s ease;
}

.lang-current:hover {
  color: var(--gold);
}

.lang-globe {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lang-current:hover .lang-globe {
  opacity: 1;
}

.lang-code {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.lang-arrow {
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 1px;
}

.lang-selector.open .lang-arrow {
  transform: rotate(180deg);
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: max-content;
  background: #141414;
  border: 1px solid rgba(207,168,74,0.4);
  border-radius: 6px;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  z-index: 100;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.lang-option-code {
  display: inline-block;
  width: 32px;
  flex-shrink: 0;
}

.lang-option span {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

.lang-option:hover {
  background: none;
  color: rgba(255,255,255,1);
}

.lang-option:hover span {
  color: rgba(255,255,255,1);
}

.lang-option.active {
  color: var(--gold);
}

.lang-option.active span {
  color: rgba(207,168,74,1);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background: var(--black);
  scroll-snap-align: start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(207,168,74,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,168,74,0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.3; transform: translateY(-100px) scale(0.6); }
  100% { opacity: 0; transform: translateY(-140px) scale(0); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
}

.hero-text { color: var(--white); }

.hero-sub-row {
  display: flex;
  align-items: last baseline;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hero-ornament {
  flex-shrink: 0;
  width: 54px;
  display: block;
  opacity: 0.85;
}


.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(207,168,74,0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-gold {
  background: linear-gradient(135deg, #c9a240, #dbb856 50%, #e5ca70);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(207,168,74,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(207,168,74,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(207,168,74,0.05);
}

.btn-full { width: 100%; }

/* Waffle visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  position: relative;
}

.waffle-float {
  position: relative;
  width: 320px;
  margin-top: 60px;
  /* animation: waffleHover 4s ease-in-out infinite; */
}

.waffle-float::before {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(207,168,74,0.15) 0%, transparent 65%);
  animation: waffleHalo 10s ease-in-out infinite;
  z-index: 0;
  filter: blur(30px);
  pointer-events: none;
}

@keyframes waffleHalo {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Ombre gaufre désactivée */

/* SMOKE HEART — fumée + coeur CSS pur */
.smoke-heart-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1001;
  overflow: visible;
}

/* Fumée diffuse émanant de la gaufre — effet entonnoir */
.smoke-fog {
  position: absolute;
  bottom: 55%;
  left: var(--sx, 50%);
  width: calc(var(--sz, 40px) * 0.6);
  height: calc(var(--sz, 40px) * 1.8);
  background: radial-gradient(ellipse, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.06) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(12px);
  animation: smokeFog var(--dur, 4s) var(--d, 0s) ease-out infinite;
}

/* Les nappes convergent vers le centre en montant (entonnoir inversé) */
@keyframes smokeFog {
  0% {
    transform: translate(-50%, 10px) scale(0.8);
    opacity: 0;
  }
  12% {
    transform: translate(calc(-50% + var(--drift, 0px) * 0.3), -15px) scale(1);
    opacity: 0.4;
  }
  35% {
    transform: translate(calc(-50% + var(--drift, 0px) * 0.5), -70px) scale(1.1);
    opacity: 0.28;
  }
  65% {
    transform: translate(calc(-50% + var(--drift, 0px) * 0.2), -150px) scale(0.7);
    opacity: 0.16;
  }
  100% {
    transform: translate(-50%, -250px) scale(0.3);
    opacity: 0;
  }
}



/* Mouvement propre du coeur — monte doucement (uniquement vers le haut) */
.smoke-heart-motion {
  position: absolute;
  bottom: 60%;
  left: 50%;
  transform: translateX(-50%);
  animation: heartSway 12s linear infinite;
}

@keyframes heartSway {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(calc(-50% + 3px)) translateY(-40px) rotate(0.5deg) scale(1);
  }
  35% {
    transform: translateX(calc(-50% - 3px)) translateY(-120px) rotate(-0.5deg) scale(1);
  }
  55% {
    transform: translateX(calc(-50% + 2px)) translateY(-220px) rotate(0.3deg) scale(1);
  }
  75% {
    transform: translateX(calc(-50% - 2px)) translateY(-350px) rotate(-0.3deg) scale(1);
  }
  100% {
    transform: translateX(-50%) translateY(-500px) rotate(0deg) scale(1);
  }
}

/* Coeur en fumée — forme CSS pure avec blur */
.smoke-heart-shape {
  position: relative;
  width: 180px;
  height: 180px;
  filter: blur(12px);
  opacity: 0;
  animation: heartSmoke 12s linear infinite;
}

.smoke-heart-shape::before,
.smoke-heart-shape::after {
  content: '';
  position: absolute;
  width: 95px;
  height: 150px;
  background: rgba(255,255,255,0.35);
  border-radius: 95px 95px 0 0;
}

.smoke-heart-shape::before {
  left: 95px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.smoke-heart-shape::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

/* Ombre fumée désactivée */

@keyframes heartSmoke {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.4);
  }
  10% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.45);
  }
  15% {
    opacity: 0.05;
    filter: blur(18px);
    transform: scale(0.55);
  }
  24% {
    opacity: 0.1;
    filter: blur(17px);
    transform: scale(0.7);
  }
  32% {
    opacity: 0.16;
    filter: blur(16px);
    transform: scale(0.85);
  }
  38% {
    opacity: 0.21;
    filter: blur(16px);
    transform: scale(0.93);
  }
  44% {
    opacity: 0.25;
    filter: blur(16px);
    transform: scale(1);
  }
  52% {
    opacity: 0.2;
    filter: blur(16px);
    transform: scale(1);
  }
  60% {
    opacity: 0.14;
    filter: blur(16px);
    transform: scale(1);
  }
  68% {
    opacity: 0.08;
    filter: blur(16px);
    transform: scale(1);
  }
  80% {
    opacity: 0.03;
    filter: blur(16px);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1);
  }
}

/* @keyframes heartTrail désactivée */

.waffle-svg {
  width: 100%;
  height: auto;
  filter: brightness(0.55) sepia(1) saturate(2.5);
  position: relative;
  z-index: 1;
}

@keyframes waffleHover {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes waffleShadow {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(20px) rotate(-3deg); opacity: 0; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span,
.hero-scroll a {
  font-size: calc(0.7rem + 2px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  cursor: default;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* =============================================
   MARQUEE
   ============================================= */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip {
  background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
  overflow: hidden;
  height: 1.8rem;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  height: 1.8rem;
  white-space: nowrap;
  animation: marquee-scroll 88s linear infinite;
}

.marquee-content span {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.marquee-content .mbull {
  margin: 0 2rem;
}

/* =============================================
   CURTAIN TRANSITION
   ============================================= */
@keyframes curtain-in {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
@keyframes curtain-out {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #d4ad4a, var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  pointer-events: none;
}
.page-curtain.active {
  animation: curtain-in 0.45s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.page-curtain.exit {
  transform: translateY(0);
  animation: curtain-out 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.curtain-logo {
  width: 280px;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.page-curtain.active .curtain-logo {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.center { text-align: center; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 0 0 5rem;
  background: var(--white);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(207, 168, 74, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(207, 168, 74, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-imm {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Titre centré */
.about-imm-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-imm-header .section-tag {
  color: var(--gold) !important;
}
.about-imm-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.about-imm-title em {
  color: var(--gold-dark);
  font-style: italic;
}

/* ---- Timeline horizontale ---- */
.about-timeline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
  padding: 0 1rem;
  position: relative;
}
.about-tl-year {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.about-tl-line {
  flex: 1;
  height: 2px;
  background: #e0d5c0;
  position: relative;
  overflow: visible;
}
.about-tl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-timeline.revealed .about-tl-line-fill {
  width: 100%;
}
/* Boule voyageuse unique */
.about-tl-ball {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfa84a;
  box-shadow: 0 0 10px rgba(207, 168, 74, 0.7), 0 0 25px rgba(207, 168, 74, 0.3);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  will-change: left, opacity;
}
.about-tl-center {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}
.about-tl-center::before {
  content: '';
  position: absolute;
  inset: -15px -30px;
  background: radial-gradient(ellipse 160px 50px at var(--glow-x, -80px) 50%, rgba(207, 168, 74, 0.18), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.about-tl-center.glow::before {
  opacity: 1;
}

/* ---- Grille 3 colonnes ---- */
.about-imm-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.about-truncated {
  max-height: 320px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s ease;
}
.about-truncated .about-imm-col {
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.about-truncated .about-imm-center {
  margin-top: 20px;
}
.about-read-more {
  display: block;
  margin: 24px auto 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 8px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.about-read-more:hover { background: var(--gold); color: #fff; }
.about-imm-grid:not(.about-truncated) + .about-read-more { display: none; }

/* Colonnes texte */
.about-imm-col {
  padding: 0 2rem;
}
.about-imm-col p {
  color: var(--text);
  font-size: calc(0.97rem + 1px);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-imm-col p:last-child {
  margin-bottom: 0;
}
.about-imm-right p {
  text-align: right;
}

/* Centre : Photo + Stats */
.about-imm-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  margin-top: 3rem;
}
.about-imm-photo-wrap {
  position: relative;
}
.about-imm-photo {
  position: relative;
}
.about-imm-photo img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.18)) drop-shadow(0 2px 8px rgba(0,0,0,0.12));
  transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-imm-photo img:hover {
  transform: none;
}

/* Stats sous la photo — carrousel */
.about-imm-stats {
  position: relative;
  width: 100%;
  height: 5.5rem;
  margin-top: 5rem;
}
.about-imm-stat {
  position: absolute;
  inset: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-imm-stat.active {
  opacity: 1;
  transform: translateY(0);
}
.about-imm-stat.exit {
  opacity: 0;
  transform: translateY(-8px);
}
.about-imm-stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.about-imm-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.about-imm-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.about-imm-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Citation finale ---- */
.about-quote {
  display: none;
  text-align: center;
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
}
.about-quote[data-reveal] {
  transform: none;
  transition: opacity 1.5s ease;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(0.86rem, 1.65vw, 1.34rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  white-space: nowrap;
}
.about-quote em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 550;
}

/* =============================================
   MENU
   ============================================= */
.menu-section {
  padding: 4rem 0;
  background: #000;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
}

.menu-section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  display: none;
}

.menu-section .section-title {
  color: #fff;
  font-size: calc(clamp(2.4rem, 4.5vw, 3.6rem) - 5px);
}

.menu-section .section-title em {
  color: var(--gold);
}

.menu-section .section-tag {
  color: var(--gold);
}

.menu-section > .container {
  position: relative;
  z-index: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.menu-visual-center .menu-grid {
  margin-top: 0;
  flex: 1;
  align-content: center;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.menu-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.menu-card:hover::before {
  transform: scaleX(0);
}

.menu-card-icon {
  margin-bottom: 1rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: calc(1.3rem - 2px);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.menu-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Menu Timeline Tabs */
.menu-tl {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 4.5rem auto calc(3.5rem - 30px);
  max-width: 1100px;
  padding-top: 12px;
  transform: scale(1.1);
}

.menu-tl-line {
  position: absolute;
  top: 18px;
  left: -40px;
  right: -40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.menu-tl-progress {
  height: 100%;
  width: 0%;
  background: transparent;
  border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-tl-stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 1;
}

.menu-tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.menu-tl-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(207,168,74,0);
  transition: all 0.4s ease;
}

.menu-tl-stop:hover .menu-tl-dot {
  border-color: #fff;
  background: #fff;
}

.menu-tl-stop.active .menu-tl-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: none;
  transform: scale(1.2);
}

.menu-tl-label {
  font-family: var(--font-display);
  font-size: calc(0.78rem + 7px);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.menu-tl-stop:hover .menu-tl-label {
  color: var(--gold);
}

.menu-tl-stop.active .menu-tl-label {
  color: #fff;
  font-weight: 600;
}

/* Tab panels */
.menu-panels {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.menu-panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: relative;
}

.menu-panel.active {
  visibility: visible;
  opacity: 1;
}

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

/* 4-column grid for smoothies */
.menu-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2.5rem;
}

.menu-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: calc(2rem + 10px);
  margin-bottom: -1rem;
}

.menu-badge::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.menu-badge img {
  width: 120px;
  height: auto;
}

.menu-visual-center {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: calc(280px * 2 + 2.5rem);
  margin: 3rem auto 0;
  background: transparent;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  overflow: hidden;
}

/* Video background for cards */
.menu-card-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.3;
}
.menu-visual-center::after {
  display: none;
}
.menu-visual-center .menu-grid {
  position: relative;
  z-index: 1;
}

/* Crema static: video background, no text */
.crema-static {
  padding: 0 !important;
  background: #000;
}
.crema-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.3;
}
.crema-static > .menu-visual-text,
.crema-static > .menu-visual-video {
  display: none;
}

/* Crema keeps the original image layout */
[data-panel="crema"] .menu-visual-center {
  padding: 0;
}

[data-panel="crema"] .menu-visual-center img {
  max-height: 100%;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  transition: filter 0.5s ease;
}

[data-panel="crema"] .menu-visual-center::after,
[data-panel="crema"] .menu-visual-center::before {
  display: none;
}

.menu-visual-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(12% - 10px);
  max-width: 42%;
  color: #000;
  font-size: 25px;
  font-weight: 350;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.menu-visual-text p {
  margin: 0 0 0.8rem;
}

.menu-visual-video {
  position: absolute;
  right: 20px;
  top: 20px;
  height: calc(100% - 40px);
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.menu-visual-center:hover .menu-visual-video {
  opacity: 1;
}

/* Overlay card (Gofrekini etc.) */
.menu-overlay-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.menu-overlay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(207,168,74,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(207,168,74,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  border-radius: var(--radius);
}

.menu-overlay-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-visual-center:has(.menu-overlay-card.active) {
  background: #fff;
}

.menu-overlay-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.menu-overlay-close:hover { opacity: 1; }
.menu-overlay-close::before,
.menu-overlay-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #000;
}
.menu-overlay-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-overlay-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.menu-overlay-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1rem;
}

.menu-overlay-card .menu-visual-text {
  top: 50%;
  transform: translateY(-50%);
}

.menu-overlay-card .menu-visual-video {
  opacity: 1;
}

/* Café badge: text + logos */
.menu-badge-cafe {
  gap: calc(2rem + 10px);
  overflow: hidden;
}

.menu-badge-cafe p {
  font-size: calc(0.9rem + 4px);
  font-weight: 350;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  text-align: center;
  max-width: none;
  white-space: nowrap;
}

.menu-badge-cafe-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-badge-cafe-logos img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* 5-column grid for gaufres */
.menu-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  row-gap: 6rem;
  column-gap: 0.5rem;
}

/* 8-column grid for cafes chauds */
.menu-grid-8 {
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}

[data-panel="cafes"] .menu-card-photo h3 {
  font-size: calc(0.7rem + 4px);
  white-space: nowrap;
}

/* 7-column grid for cafes froids */
.menu-grid-7 {
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

/* Photo card (gaufres) */
.menu-card-photo {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card-photo::before {
  display: none;
}

.menu-card-photo::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s ease;
  pointer-events: none;
}

.menu-card-photo:hover {
  background: none;
  box-shadow: none;
}

.menu-card-photo:hover::after {
  clip-path: inset(0 0 100% 0);
}

.menu-card-photo img {
  width: 80%;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

.menu-card-photo-text {
  text-align: center;
  padding-top: 0.3rem;
}

[data-panel="smoothies"] .menu-card-photo h3,
[data-panel="cafes"] .menu-card-photo h3 {
  display: none;
}

[data-panel="cafes"] .menu-card-bg-video {
  opacity: 0.3;
}

[data-panel="cafes"] .menu-visual-center::after {
  display: none;
}

[data-panel="cafes"] .menu-card-photo img {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.7));
}

.cafe-separator-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 1.30rem;
  font-style: normal;
  font-weight: 300;
  padding: 4rem 0;
  margin: 0 12rem;
  line-height: 1.8;
}

.menu-card-photo h3 {
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.menu-card-photo .menu-card-desc {
  font-size: calc(0.82rem + 3px);
  color: #fff;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease 0.15s;
}

/* Hover: disabled */

/* Smoothie card emoji */
.menu-card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

/* Smoothies hover: disabled */

/* Special card */
.menu-card-special {
  background: var(--black);
  color: var(--white);
}

.menu-card-special p { color: rgba(255,255,255,0.6); }
.menu-card-special .menu-price { color: var(--gold); }
.menu-card-special::before { background: linear-gradient(90deg, var(--gold), #fff); }

/* =============================================
   WHY US
   ============================================= */
.why-section {
  padding: 4rem 0;
  background: var(--black);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.why-star {
  position: absolute;
  color: var(--gold);
  opacity: 0;
  animation: particleFloat 6s infinite ease-in-out;
  pointer-events: none;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(207, 168, 74, 0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(207, 168, 74, 0.10) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why-section > .container {
  position: relative;
  z-index: 1;
}

.why-section .section-tag {
  color: var(--gold);
}

.why-section .section-title {
  color: #fff;
}

.why-section .section-title em {
  color: var(--gold);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  margin-top: 6rem;
  flex: 1;
}

.why-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  background: rgba(255, 255, 255, 0.9);
  cursor: default;
  user-select: none;
  overflow: hidden;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(207,168,74,0.1);
  background: transparent;
}

.why-card-digital:hover {
  border-color: var(--gold);
}
.why-gofrewards-btn {
  opacity: 0;
  margin-top: 16px;
  background: #000;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.why-card-digital:hover .why-gofrewards-btn {
  opacity: 1;
}

.why-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
  text-align: right;
  transition: opacity var(--transition), max-height var(--transition), margin var(--transition);
}

.why-card:hover .why-icon {
  opacity: 0;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: calc(1.15rem + 4px);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #000;
  transition: color var(--transition), transform var(--transition), text-align var(--transition);
  transform-origin: right top;
}

.why-card:hover h3 {
  color: var(--gold);
  font-size: calc(1.15rem + 6px);
}

.why-card p {
  font-size: calc(0.9rem + 2px);
  color: #555;
  line-height: 1.6;
  transition: color var(--transition);
}

.why-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.why-card-digital {
  border-color: var(--gold);
}

.why-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 6rem;
  margin-bottom: 2rem;
}

.why-app-label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-app-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-app-badges a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.why-app-badges a:hover {
  opacity: 1;
}

/* =============================================
   FRANCHISE
   ============================================= */
/* =============================================
   FRANCHISE
   ============================================= */
.franchise-section {
  padding: 4rem 0 4rem;
  background: var(--white);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.franchise-section::before {
  display: none;
}

.franchise-section > .container {
  position: relative;
  z-index: 1;
}

/* Intro text */
.franchise-intro {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
}

/* ---- STATS BAND — full-bleed black strip ---- */
.ft-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--gold);
  margin: 3rem 0 3.5rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.ft-stat {
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Gold separator between stats */
.ft-stat + .ft-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.ft-stat-num {
  font-family: var(--font-display);
  font-size: clamp(calc(2.5rem - 2px), 4vw, calc(3.5rem - 2px));
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}

.ft-stat-label {
  font-family: var(--font-body);
  font-size: calc(0.82rem - 3px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
}

.ft-stat.active .ft-stat-num {
  color: #fff;
}

.ft-stat.active .ft-stat-label {
  color: #fff;
}

/* ---- 2-COL SPLIT: perks + form ---- */
.ft-split {
  display: grid;
  grid-template-columns: minmax(0, 520px) 420px;
  gap: 5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* Perks — left column */
.ft-perks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ft-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  cursor: default;
  transition: background var(--transition);
}

.ft-row:first-child {
  padding-top: 0;
}

/* Number */
.ft-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  user-select: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  line-height: 1;
  padding-bottom: 4px;
  transition: background var(--transition), color var(--transition), font-size var(--transition), padding var(--transition);
}

.ft-text h3 {
  font-family: var(--font-display);
  font-size: calc(1.15rem + 4px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.ft-text p {
  font-size: calc(0.9rem + 2px);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active state (auto-cycle + hover) */
.ft-row.active .ft-num {
  background: var(--gold);
  color: var(--white);
  font-size: 1.8rem;
  padding-bottom: 8px;
}

.ft-row.active .ft-text h3 {
  color: var(--gold-dark);
}

.ft-row.active .ft-text p {
  color: var(--black);
}

/* ---- SIDEBAR: teaser + form ---- */
.franchise-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Teaser block */
.franchise-teaser {
  background: var(--cream);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.franchise-teaser p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* ---- FORM CARD — dark ---- */
.franchise-card {
  background: var(--white);
  color: var(--black);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--black);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}


.franchise-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.franchise-card-sub {
  font-size: calc(0.9rem + 2px);
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 1.3rem;
}

.franchise-card form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-row {
  display: flex;
  gap: 0.7rem;
}

.form-row .col { flex: 1; }

.franchise-card .field {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: calc(0.9rem + 2px);
  background: rgba(0, 0, 0, 0.03);
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}

.franchise-card .field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207, 168, 74, 0.15);
  background: rgba(0, 0, 0, 0.02);
}

.franchise-card .field::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.franchise-card textarea.field {
  resize: vertical;
  min-height: 70px;
}

.franchise-card select.field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cfa84a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.franchise-card select.field option {
  background: var(--white);
  color: var(--black);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 4rem 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(207,168,74,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207,168,74,0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-section .section-tag { color: var(--gold); }

.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-section h2 em {
  color: var(--gold);
  font-style: italic;
}

.contact-text {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}

.contact-item:hover {
  border-color: var(--gold);
  background: rgba(207,168,74,0.05);
}

.contact-item svg { color: var(--gold); flex-shrink: 0; }

.contact-hero-col {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}

.contact-hero-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-hero-col .contact-ratings {
  margin-top: 4rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  max-width: 480px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  text-decoration: none;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.contact-link::after {
  content: '→';
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  transition: transform 0.25s ease, color 0.25s ease;
}
.contact-link:hover {
  color: var(--white);
  padding-left: 6px;
}
.contact-link:hover::after {
  transform: translateX(6px);
  color: var(--white);
}

.contact-app-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.contact-app-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.contact-ratings {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px 0;
  text-decoration: none;
  transition: all var(--transition);
}

.rating-badge:hover {
}

.rating-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.rating-denom {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}

.rating-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 6px;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}

.social-badge svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.social-badge:hover {
  color: var(--gold);
}

.social-badge:hover svg {
  transform: none;
  color: var(--white);
}

.contact-hero-title-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-artisan-badge {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.contact-hero-title em {
  color: var(--gold);
  font-style: italic;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative;
  padding: 2.5rem 0;
  background: var(--black);
}

/* Ligne solide toujours visible + halo via box-shadow */
.footer-glow-line {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: rgba(207,168,74,0.5);
  box-shadow: 0 0 8px 1px rgba(207,168,74,0.25);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 70%, transparent 100%);
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

/* Brillance animée qui passe sur la ligne */
.footer-glow-shine {
  position: absolute;
  top: -6px;
  left: -20%;
  width: 40%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.9) 0%, #e8c96a 30%, transparent 70%);
  filter: blur(3px);
  animation: footerShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerShine {
  0%   { left: -20%; }
  100% { left: 110%; }
}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0 15vw;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-legal-link {
  font-size: calc(0.75rem + 1px);
  color: rgba(207,168,74,0.65);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-legal-link:hover {
  color: rgba(207,168,74,0.9);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal-sep {
  color: rgba(255,255,255,0.2);
  font-size: calc(0.75rem + 1px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: calc(0.8rem + 1px);
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.footer-app,
.contact-app-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}


.footer-app-badge {
  display: inline-block;
  opacity: 0.75;
  transition: opacity 0.3s ease;
  /* Clear space requis par les guidelines Google Play & Apple */
  padding: 10px;
  margin: -10px;
}

.footer-app-badge:hover {
  opacity: 1;
}

.menu-app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  text-align: center;
}

.menu-app-cta-text {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.menu-app-cta-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* =============================================
   KINETIC SIGNATURE (menu panels)
   ============================================= */
/* Hide tab bar — auto-cycle drives the animation */
.menu-tl { display: none !important; }

/* Hide badge separator line + tighten spacing above logos */
.menu-section .menu-badge::before { display: none !important; }
.menu-section .menu-badge { margin-top: 0 !important; gap: 0 !important; }

.kinetic-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
  margin: 1.5rem auto 0;
  padding: 0.75rem 2rem;
  overflow: hidden;
}

.kinetic-signature {
  position: relative;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  padding: 0 2rem;
}

.ks-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: calc(1.5rem + 3px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.ks-label .ks-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
}

.ks-phrase {
  font-family: var(--font-display);
  font-size: calc(clamp(2.4rem, 5.2vw, 5rem) - 10px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  letter-spacing: -0.04em;
}

.ks-phrase em {
  color: #fff;
  font-style: normal;
  font-weight: 400;
}

.ks-phrase .ks-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0 0.03em;
  line-height: 1.15;
}

.ks-phrase .ks-word {
  display: inline-block;
  transform: translateY(110%);
  filter: blur(6px);
  will-change: transform, filter;
}

.ks-underline {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem auto 0;
  will-change: width;
}

/* Play animation when panel becomes active (.ks-play toggled via JS) */
.kinetic-signature.ks-play .ks-label .ks-char {
  animation: ksCharIn 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.kinetic-signature.ks-play .ks-phrase .ks-word {
  animation: ksWordReveal 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.kinetic-signature.ks-play .ks-underline {
  animation: ksUnderline 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.9s;
}

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

@keyframes ksWordReveal {
  from { transform: translateY(110%); filter: blur(6px); }
  to { transform: translateY(0); filter: blur(0); }
}

@keyframes ksUnderline {
  from { width: 0; opacity: 0; }
  to { width: 260px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-signature.ks-play .ks-label .ks-char,
  .kinetic-signature.ks-play .ks-phrase .ks-word,
  .kinetic-signature.ks-play .ks-underline {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .kinetic-signature.ks-play .ks-underline { width: 260px; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .waffle-float { width: 240px; }

  .about-imm-grid { grid-template-columns: 1fr; }
  .about-imm-center { order: -1; width: 250px; margin: 0 auto 2rem; }
  .about-imm-col { padding: 1rem 0; }
  .about-timeline { gap: 0.8rem; }
  .about-tl-center { font-size: 1rem; }
  .about-tl-year { font-size: 1.2rem; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .menu-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .franchise-grid { grid-template-columns: 1fr; }
  .franchise-card { position: static; }

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

@media (max-width: 700px) {
  .container { padding: 0 1.2rem; }
  html, body { overflow-x: hidden !important; }
  .hero { min-height: 100vh !important; }
  .hero { min-height: 80vh !important; display: flex !important; flex-direction: column !important; }
  .hero-inner { padding-top: 0 !important; padding-bottom: 0 !important; flex: 1 !important; }
  .menu-section { overflow: hidden !important; }
  .menu-section .container {
    max-width: 100vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .menu-grid,
  .menu-grid-4,
  .menu-grid-5,
  .menu-grid-7,
  .menu-grid-8 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
  }
  .menu-card,
  .menu-card-photo {
    min-width: 0 !important;
    padding: 0.8rem !important;
    overflow: hidden !important;
  }
  .menu-card h3 { font-size: 0.8rem !important; }
  .menu-card p { font-size: 0.65rem !important; display: none !important; }
  .menu-card-photo h3 { font-size: 0.7rem !important; white-space: normal !important; }
  .menu-badge img { width: 70px !important; }
  .menu-badge { margin-top: 1.5rem !important; gap: 1rem !important; }

  /* ---- HEADER MOBILE ---- */
  #header {
    overflow: visible !important;
  }
  .header-inner-bar {
    height: 56px !important;
    padding: 0 12px !important;
    max-width: 100vw !important;
    overflow: visible !important;
    justify-content: space-between !important;
    transition: height 0.3s ease !important;
  }
  #header.scrolled .header-inner-bar {
    height: 44px !important;
  }
  .header-inner-bar > div:nth-child(2) {
    position: static !important;
    left: auto !important;
    transform: none !important;
    flex: 1;
    display: flex !important;
    justify-content: center !important;
  }
  .header-logo {
    width: 175px !important;
  }
  #header.scrolled .header-logo {
    width: 130px !important;
  }
  #menuLabelText {
    display: none !important;
  }
  .app-header-link {
    display: none !important;
  }
  .header-franchise-btn {
    display: none !important;
  }
  .lang-selector {
    gap: 4px !important;
  }
  .lang-code {
    font-size: 0.7rem !important;
  }
  .lang-globe {
    width: 14px !important;
    height: 14px !important;
  }
  .lang-dropdown {
    left: auto !important;
    right: 0 !important;
    transform: translateY(-6px) !important;
  }
  .lang-selector.open .lang-dropdown {
    transform: translateY(0) !important;
  }
  .lang-arrow {
    display: none !important;
  }
  .burger-svg {
    width: 24px !important;
    height: 14px !important;
  }
  .burger-svg rect {
    fill: #fff !important;
  }
  .lang-globe,
  .lang-code {
    color: var(--gold) !important;
  }
  .header-left {
    gap: 0 !important;
  }
  .header-right {
    gap: 12px !important;
  }
  .header-store-link span {
    display: none !important;
  }
  .header-store-link svg {
    width: 20px !important;
    height: 20px !important;
  }
  .lang-globe {
    width: 18px !important;
    height: 18px !important;
  }
  .lang-code {
    font-size: 0.85rem !important;
  }
  .header-gifts-btn {
    border: none !important;
    padding: 0 !important;
    margin-left: 15px !important;
  }
  .header-gifts-btn span {
    display: none !important;
  }
  .header-gifts-btn img {
    width: 24px !important;
    height: 24px !important;
    margin-right: 0 !important;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
  }

  .main-nav.open { display: flex; }

  .nav-sep { display: none; }

  .main-nav a {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-display);
    color: rgba(255,255,255,0.8);
  }

  .btn-nav {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.7rem 2rem;
  }

  .nav-toggle { display: block; z-index: 10; }

  .hero { min-height: 100vh; padding-top: 80px !important; padding-bottom: 60px !important; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-visual { justify-content: center !important; }
  .waffle-float { width: 180px; margin-top: 40px !important; }
  .hero-sub-row {
    flex-direction: column-reverse !important;
    align-items: center !important;
  }
  .hero-sub {
    font-size: calc(1.3rem - 1px) !important;
    padding: 0 1rem !important;
    word-wrap: break-word !important;
    white-space: normal !important;
  }
  .hero-text {
    padding: 0 1rem !important;
    overflow: hidden !important;
  }
  .hero-ornament {
    margin-top: 1rem;
    overflow: visible !important;
    width: 60px;
    height: auto;
    margin-bottom: 2rem;
    visibility: hidden !important;
  }
  .hero-sub-row {
    overflow: visible !important;
  }

  .menu-panels { display: block !important; position: relative !important; }
  .menu-panel { position: absolute !important; top: 0; left: 0; right: 0; }
  .menu-panel.active { position: relative !important; }

  .kinetic-wrap { height: 260px !important; margin: 0.5rem auto 0 !important; padding: 1rem; overflow: visible !important; }
  .nav-overlay a { font-size: 26px !important; }
  .kinetic-signature { padding: 0 0.5rem; }
  .menu-section { padding-bottom: 5rem !important; overflow: visible !important; }
  .menu-section .container { overflow: visible !important; }
  .menu-panel { overflow: visible !important; }
  .ks-label { font-size: calc(1.15rem + 3px); letter-spacing: normal; margin-bottom: 2rem; }
  .ks-phrase { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .ks-underline { margin-top: 2rem; }
  @keyframes ksUnderline { from { width: 0; opacity: 0; } to { width: 160px; opacity: 1; } }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .menu-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .menu-grid-8 { grid-template-columns: repeat(4, 1fr) !important; }
  .menu-grid-7 { grid-template-columns: repeat(4, 1fr) !important; }
  .menu-grid-8 .menu-card-photo-text h3,
  .menu-grid-7 .menu-card-photo-text h3 {
    font-size: 0.8rem !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }
  .menu-badge-cafe p { white-space: normal !important; }
  .menu-badge-cafe { overflow: visible !important; }
  .menu-tl { padding: 12px 0 0; transform: none !important; max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; overflow: hidden; }
  .menu-tl-line { left: 0 !important; right: 0 !important; background: #000 !important; }
  .menu-tl-label { font-size: calc(0.62rem + 4px); max-width: 70px; white-space: normal !important; }
  .why-section { padding-bottom: 2rem !important; }
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem !important; }
  .why-app { margin-top: 3rem !important; }
  .why-card {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.8rem 1rem !important;
  }
  .why-card .why-icon {
    order: 1 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    font-size: 1.5rem !important;
  }
  .why-card h3 {
    order: 0 !important;
    margin-bottom: 0 !important;
  }
  .why-card:hover h3 {
    transform: none !important;
    text-align: left !important;
  }
  .why-card p {
    order: 2 !important;
    width: 100% !important;
  }
  .why-gofrewards-btn {
    opacity: 1 !important;
    order: 3 !important;
    margin: 0.6rem auto 0 !important;
    margin-left: auto !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    padding: 6px 18px !important;
  }
  .why-gofrewards-btn span {
    display: inline !important;
  }
  .why-gofrewards-btn img {
    width: 18px !important;
    height: 18px !important;
    margin-right: 6px !important;
  }
  .footer-legal-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .footer-legal-link:last-child {
    flex-basis: 100% !important;
    text-align: center !important;
    margin-top: 0.4rem !important;
  }
  .footer-legal-sep:last-of-type {
    display: none !important;
  }

  /* ---- CRÈME DE CAFÉ MOBILE ---- */
  [data-panel="crema"] .menu-visual-center {
    background: url('../images/menu/creme_de_cafe/icecoffeecream-mobile.png') center/cover no-repeat !important;
    width: 100% !important;
    height: 600px !important;
    margin: 3rem auto 0 !important;
    border-radius: var(--radius);
    overflow: hidden !important;
  }
  [data-panel="crema"] .menu-visual-center > img {
    display: none !important;
  }
  [data-panel="crema"] .menu-visual-center .menu-visual-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }
  [data-panel="crema"] .menu-visual-center::before,
  [data-panel="crema"] .menu-visual-center::after {
    display: none !important;
  }
  [data-panel="crema"] .menu-visual-text {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 1.5rem !important;
    font-size: calc(0.9rem + 6px) !important;
    background: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    opacity: 0;
    transition: opacity 0.3s ease !important;
    transform: none !important;
    z-index: 3 !important;
  }
  [data-panel="crema"] .menu-visual-center.touched .menu-visual-video {
    opacity: 1 !important;
  }
  [data-panel="crema"] .menu-visual-center.touched .menu-visual-text {
    opacity: 1 !important;
  }
  .about-stats { flex-direction: column; gap: 1.5rem; align-items: center; }

  /* ---- FRANCHISE MOBILE ---- */
  .ft-split {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .ft-stats {
    flex-wrap: wrap;
    gap: 0;
  }
  .ft-stat {
    flex: 0 0 33.33%;
    padding: 0.5rem 0;
  }
  .ft-stat-sep { display: none; }
  .ft-stat:nth-child(4)::before { display: none !important; }

  .form-row { flex-direction: column; }

  .contact-grid { display: flex !important; flex-direction: column !important; gap: 3rem !important; }
  .contact-hero-col, .contact-actions { display: contents !important; }
  .contact-hero-title-wrap { order: 0 !important; }
  .contact-ratings { order: 1 !important; }
  .contact-links { order: 2 !important; margin-top: 0 !important; }
  .contact-socials { order: 3 !important; }
  .contact-app-group { order: 4 !important; }
  .footer-glow-line { left: 20% !important; right: 20% !important; box-shadow: none !important; }
  .footer-inner { flex-direction: column; text-align: center; padding: 0 1.2rem !important; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-copy { font-size: calc(0.8rem + 1px - 1px) !important; }

  .hero-scroll {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex;
    align-self: center;
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
  .hero-scroll a {
    font-size: 0.65rem !important;
    margin-top: 0.5rem;
  }
  .scroll-line {
    margin: 0 auto;
  }
  .section-title {
    font-size: 1.9rem !important;
  }
  .about-imm-title {
    font-size: 1.9rem !important;
  }

  /* ---- ABOUT MOBILE ---- */
  .marquee-strip { height: 2rem !important; }
  .marquee-content { height: 2rem !important; }
  .marquee-content span { font-size: 15px !important; }
  .about::before { display: none !important; }
  .about-imm-grid { grid-template-columns: 1fr !important; }
  .about-imm-center { order: 0 !important; width: 250px !important; margin: 2rem auto 1rem !important; }
  .about-imm-stats { display: none !important; }
  .about-imm-col {
    padding: 0.5rem 0;
    overflow: hidden !important;
  }
  .about-imm-col.expanded {
    max-height: none !important;
  }
  .about-read-more {
    display: block !important;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
  }
  #aboutReadMore { display: none !important; }
  .about-truncated {
    max-height: none !important;
    overflow: visible !important;
  }
  .about-truncated .about-imm-col {
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  .about-quote { display: none !important; }
  .about-quote p { white-space: normal !important; font-size: calc(clamp(0.86rem, 1.65vw, 1.34rem) + 5px) !important; }
  .about-quote em { font-weight: 600 !important; }
  .about-timeline {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 2rem 0 !important;
  }
  .about-tl-center {
    font-size: calc(0.85rem + 4px);
    font-weight: 700 !important;
    order: 0 !important;
    width: auto !important;
    text-align: center !important;
    flex: 1 !important;
    animation: tl-glow 2s ease-in-out infinite !important;
  }
  .about-tl-center::before {
    display: none !important;
  }
  @keyframes tl-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
  }
  .about-tl-year { font-size: calc(1rem + 4px); flex-shrink: 0 !important; }
  .about-tl-line { display: none !important; }
  .about-tl-ball { display: none !important; }
}
