/* =============================================
   ANARKALI BY ZAHID — Premium Restaurant CSS
   Restaurant Indien de Luxe — Casablanca
   ============================================= */

/* ======================================
   DESIGN TOKENS
   ====================================== */
:root {
  --bg-0: #060402;
  --bg-1: #0C0A06;
  --bg-2: #131009;
  --bg-3: #1C1712;
  --gold: #C5A028;
  --gold-light: #E8C97A;
  --gold-dim: #8B6914;
  --gold-pale: rgba(197, 160, 40, 0.08);
  --amber: #9B6B3A;
  --cream: #F5EDD8;
  --cream-muted: #C4B49A;
  --text-1: #F5EDD8;
  --text-2: #C4B49A;
  --text-3: #7A6A52;
  --border: rgba(197, 160, 40, 0.12);
  --border-hover: rgba(197, 160, 40, 0.35);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   clamp(0.7rem,  0.65rem + 0.25vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.75rem, 2rem + 3.75vw, 5rem);
  --text-hero: clamp(3.5rem, 2.5rem + 5vw, 7rem);

  --section-py: clamp(5rem, 10vw, 9rem);
  --container-max: 1440px;
  --dur-fast:   0.18s;
  --dur-normal: 0.38s;
  --dur-slow:   0.7s;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-0);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================
   LAYOUT
   ====================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 4rem);
  padding-right: clamp(1.25rem, 5vw, 4rem);
}

/* ======================================
   TYPOGRAPHY
   ====================================== */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--text-lg);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 65ch;
}

/* ======================================
   BUTTONS
   ====================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: color var(--dur-normal) var(--ease-smooth);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-normal) var(--ease-smooth);
  z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: var(--cream);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 237, 216, 0.25);
  transition: all var(--dur-normal) var(--ease-smooth);
}
.btn-secondary:hover {
  border-color: rgba(245, 237, 216, 0.6);
  background: rgba(245, 237, 216, 0.04);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--dur-normal) var(--ease-smooth);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: #25D366;
  color: white;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--dur-normal) var(--ease-smooth);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--dur-normal) var(--ease-smooth);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(220,39,67,0.3); }

/* Custom cursor removed — using native cursor */

/* ======================================
   SCROLLBAR
   ====================================== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ======================================
   HEADER
   ====================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition:
    background var(--dur-normal) var(--ease-smooth),
    box-shadow var(--dur-normal) var(--ease-smooth),
    padding var(--dur-normal) var(--ease-smooth);
}

.header.scrolled {
  background: rgba(6, 4, 2, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}

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

.header-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2.5) hue-rotate(5deg) opacity(0.9);
  transition: height var(--dur-normal), filter var(--dur-normal);
}
.header.scrolled .header-logo img { height: 40px; }

.header-nav { display: none; }
@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .header-nav ul {
    display: flex;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
  }
  .header-nav a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-muted);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--dur-normal);
  }
  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--dur-normal) var(--ease-smooth);
  }
  .header-nav a:hover { color: var(--gold-light); }
  .header-nav a:hover::after { width: 100%; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  transition: border-color var(--dur-fast);
}
.lang-toggle:hover { border-color: var(--border-hover); }
.lang-fr.active, .lang-en.active { color: var(--gold); font-weight: 500; }
.lang-sep { color: var(--text-3); opacity: 0.4; font-size: 0.6rem; }

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
  transition: color var(--dur-normal);
}
@media (min-width: 768px) { .header-phone { display: flex; } }
.header-phone:hover { color: var(--gold); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--cream);
  transition: all var(--dur-normal) var(--ease-smooth);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

/* ======================================
   MOBILE MENU
   ====================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-smooth);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--dur-normal);
  position: relative;
}
.mobile-menu nav a::before {
  content: '◆';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 0.5rem;
  color: var(--gold);
  transition: transform var(--dur-normal) var(--ease-spring);
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu nav a:hover::before { transform: translateY(-50%) scale(1); }

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.mobile-menu-footer a {
  font-size: var(--text-sm);
  color: var(--text-3);
  transition: color var(--dur-normal);
}
.mobile-menu-footer a:hover { color: var(--gold); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform, filter;
  filter: contrast(1.05) saturate(1.08);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.05) translate3d(0,0,0);     filter: contrast(1.05) saturate(1.08) brightness(0.95); }
  50%  { transform: scale(1.12) translate3d(-1.5%,-1%,0); filter: contrast(1.08) saturate(1.12) brightness(1.0); }
  100% { transform: scale(1.08) translate3d(1%,-0.5%,0);  filter: contrast(1.06) saturate(1.10) brightness(0.97); }
}

/* Cinematic gold light sweep across hero */
.hero-light-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(212,175,55,0.06) 47%,
    rgba(255,220,130,0.14) 50%,
    rgba(212,175,55,0.06) 53%,
    transparent 70%);
  mix-blend-mode: overlay;
  transform: translateX(-100%);
  animation: heroSweep 14s ease-in-out infinite;
}
@keyframes heroSweep {
  0%, 30%   { transform: translateX(-100%); }
  50%, 70%  { transform: translateX(100%); }
  100%      { transform: translateX(100%); }
}

/* Cosmic radial gold glow pulse */
.hero-cosmic-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80vw; height: 80vh;
  max-width: 900px; max-height: 900px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at center,
    rgba(212,175,55,0.12) 0%,
    rgba(212,175,55,0.04) 30%,
    transparent 65%);
  filter: blur(40px);
  animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.95; transform: translate(-50%,-50%) scale(1.15); }
}

/* Floating gold particles rising */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: #D4AF37;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px rgba(212,175,55,0.9), 0 0 4px rgba(255,220,130,0.6);
  animation: heroParticleFloat 12s ease-in infinite;
}
.hero-particles span:nth-child(1) { left: 10%; bottom: 0; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 25%; bottom: 0; animation-delay: 2s; width: 2px; height: 2px; }
.hero-particles span:nth-child(3) { left: 40%; bottom: 0; animation-delay: 4s; width: 4px; height: 4px; }
.hero-particles span:nth-child(4) { left: 55%; bottom: 0; animation-delay: 6s; }
.hero-particles span:nth-child(5) { left: 70%; bottom: 0; animation-delay: 1s; width: 2px; height: 2px; }
.hero-particles span:nth-child(6) { left: 82%; bottom: 0; animation-delay: 3s; width: 4px; height: 4px; }
.hero-particles span:nth-child(7) { left: 92%; bottom: 0; animation-delay: 5s; }
.hero-particles span:nth-child(8) { left: 18%; bottom: 0; animation-delay: 7s; width: 2px; height: 2px; }
@keyframes heroParticleFloat {
  0%   { opacity: 0;   transform: translateY(0) translateX(0) scale(0.5); }
  8%   { opacity: 1;   transform: translateY(-10vh) translateX(5px) scale(1); }
  90%  { opacity: 0.8; }
  100% { opacity: 0;   transform: translateY(-105vh) translateX(40px) scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-light-sweep, .hero-cosmic-glow, .hero-particles span { animation: none !important; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,4,2,0.35) 0%,
    rgba(6,4,2,0.55) 35%,
    rgba(6,4,2,0.75) 65%,
    rgba(6,4,2,0.95) 100%
  );
}

/* Animated mandala rings */
.hero-mandala {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.mandala-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 40, 0.06);
}

.ring-1 {
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  animation: ring-breathe 7s ease-in-out infinite;
}
.ring-2 {
  width: clamp(500px, 65vw, 800px);
  height: clamp(500px, 65vw, 800px);
  animation: ring-breathe 9s ease-in-out 1.5s infinite;
  border-color: rgba(197, 160, 40, 0.04);
}
.ring-3 {
  width: clamp(700px, 90vw, 1100px);
  height: clamp(700px, 90vw, 1100px);
  animation: ring-breathe 11s ease-in-out 3s infinite;
  border-color: rgba(197, 160, 40, 0.025);
}

@keyframes ring-breathe {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  width: 100%;
}

.hero-pretext {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.18em;
  line-height: 1;
}

.hero-title-by {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.45em;
  color: var(--cream-muted);
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  display: block;
  width: 70px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.diamond { color: var(--gold); font-size: 0.45rem; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(10px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-grow 2s ease-out 2.5s infinite;
}
@keyframes scroll-grow {
  0% { height: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { height: 48px; opacity: 0; }
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ======================================
   STATS BAR
   ====================================== */
.stats-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  font-weight: 400;
  line-height: 1.1;
}

.stat-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 3px; }
.stat-divider { color: var(--border-hover); font-size: 0.4rem; }
@media (max-width: 480px) { .stat-divider { display: none; } }

/* ======================================
   HISTOIRE / STORY
   ====================================== */
.histoire {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}

.histoire::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.2;
}

.histoire-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

@media (min-width: 820px) {
  .histoire-inner { grid-template-columns: 1fr 1fr; }
}

.histoire-text { order: 2; }
@media (min-width: 820px) { .histoire-text { order: 1; } }

.histoire-body {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.histoire-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.sig-line {
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

.sig-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--gold);
  display: block;
}

.sig-title {
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.histoire-image { order: 1; }
@media (min-width: 820px) { .histoire-image { order: 2; } }

.histoire-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  max-height: 600px;
}

.histoire-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform, filter;
  filter: contrast(1.04) saturate(1.06);
  animation: histoireKenBurns 22s ease-in-out infinite alternate;
}
@keyframes histoireKenBurns {
  0%   { transform: scale(1.02) translateY(0);    filter: contrast(1.04) saturate(1.06) brightness(0.97); }
  100% { transform: scale(1.10) translateY(-2%);  filter: contrast(1.07) saturate(1.10) brightness(1.02); }
}
.histoire-img-wrap:hover img { animation-play-state: paused; }

/* Inner thin gold border */
.histoire-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 160, 40, 0.18);
  pointer-events: none;
  z-index: 1;
}

/* Gold light sweep across the histoire photo */
.histoire-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(212,175,55,0.08) 47%,
    rgba(255,220,130,0.18) 50%,
    rgba(212,175,55,0.08) 53%,
    transparent 70%);
  mix-blend-mode: overlay;
  transform: translateX(-110%);
  animation: histoireSweep 11s ease-in-out infinite;
}
@keyframes histoireSweep {
  0%, 25%  { transform: translateX(-110%); }
  55%, 75% { transform: translateX(110%); }
  100%     { transform: translateX(110%); }
}

@media (prefers-reduced-motion: reduce) {
  .histoire-img-wrap img,
  .histoire-img-wrap::before { animation: none !important; }
}

.histoire-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(6, 4, 2, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  z-index: 2;
}
.histoire-img-badge span {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
}
.histoire-img-badge strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  font-weight: 400;
}

/* ======================================
   CUISINE
   ====================================== */
.cuisine {
  padding: var(--section-py) 0;
  background: var(--bg-0);
  overflow: hidden;
}

.cuisine-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cuisine-header .section-subtitle { text-align: center; }

.cuisine-swiper {
  padding: 0 clamp(1rem, 5vw, 4rem) 3.5rem !important;
  overflow: visible !important;
}

.dish-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal);
}
.dish-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dish-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
}
.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.06); }

.dish-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}
.dish-category {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.dish-name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.dish-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
  margin-top: 0.25rem;
}

/* Swiper navigation */
.cuisine-prev, .cuisine-next {
  color: var(--gold) !important;
  background: rgba(6, 4, 2, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid var(--border-hover) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 0 !important;
  transition: all var(--dur-normal) !important;
}
.cuisine-prev:hover, .cuisine-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--bg-0) !important;
}
.cuisine-prev::after, .cuisine-next::after { font-size: 13px !important; font-weight: 700 !important; }
.swiper-button-disabled { opacity: 0.25 !important; }

.cuisine-pagination .swiper-pagination-bullet,
.avis-pagination .swiper-pagination-bullet,
.ambiance-pagination .swiper-pagination-bullet {
  background: var(--text-3) !important;
  opacity: 1 !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 0 !important;
  transition: all var(--dur-normal) !important;
}
.cuisine-pagination .swiper-pagination-bullet-active,
.avis-pagination .swiper-pagination-bullet-active,
.ambiance-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 22px !important;
}

/* ======================================
   AMBIANCE
   ====================================== */
.ambiance {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  overflow: hidden;
}

.ambiance-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ambiance-header .section-subtitle { text-align: center; }

.ambiance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 600px) {
  .ambiance-grid { grid-template-columns: repeat(2, 1fr); }
  .ambiance-large { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .ambiance-grid {
    grid-template-columns: 9fr 8fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }
  .ambiance-large { grid-column: 1; grid-row: 1; }
  .ambiance-tall  { grid-column: 2; grid-row: 1 / 3; }
  .ambiance-medium { grid-column: 1; grid-row: 2; }
}

.ambiance-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}
.ambiance-large,
.ambiance-medium { aspect-ratio: 3/2; }
.ambiance-tall   { aspect-ratio: 2/3; }

.ambiance-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-smooth);
}
.ambiance-item:hover img { transform: scale(1.04); }

.ambiance-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(6,4,2,0.88) 0%, transparent 100%);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transform: translateY(100%);
  transition: transform var(--dur-normal) var(--ease-out);
}
.ambiance-item:hover .ambiance-caption { transform: translateY(0); }

.ambiance-swiper {
  margin-top: 0.75rem;
  padding-bottom: 2.5rem !important;
}
.ambiance-swiper .swiper-slide {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ambiance-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.ambiance-swiper .swiper-slide:hover img { transform: scale(1.03); }

/* ======================================
   AVIS / REVIEWS
   ====================================== */
.avis {
  padding: var(--section-py) 0;
  background: var(--bg-0);
  overflow: hidden;
}

.avis-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avis-rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
}

.rating-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}

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

.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(52, 224, 161, 0.4);
  color: #34E0A1;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  transition: all var(--dur-normal);
}
.tripadvisor-badge:hover {
  background: rgba(52, 224, 161, 0.1);
  border-color: #34E0A1;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(251, 188, 4, 0.45);
  color: #FBBC04;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--dur-normal);
}
.google-badge:hover {
  background: rgba(251, 188, 4, 0.1);
  border-color: #FBBC04;
}
.avis-rating-global {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.avis-swiper {
  padding: 0 clamp(1rem, 5vw, 4rem) 3.5rem !important;
}

.avis-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  position: relative;
  transition: border-color var(--dur-normal), transform var(--dur-normal);
}
.avis-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.avis-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.avis-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; }

.avis-titre {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
  line-height: 1.3;
}

.avis-texte {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.8;
  font-style: normal;
  flex: 1;
}
.avis-texte strong { color: var(--gold-light); font-weight: 400; }

.avis-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.avis-auteur {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--cream);
  font-weight: 500;
}
.avis-date { font-size: var(--text-xs); color: var(--text-3); }
.avis-source { font-size: var(--text-xs); color: #34E0A1; margin-left: auto; letter-spacing: 0.04em; text-decoration: none; }
.avis-source-google { color: #FBBC04; }
.avis-source-google:hover { color: #fff; }

.avis-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.avis-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-3);
}

/* ======================================
   FAQ
   ====================================== */
.faq-section {
  margin-top: var(--section-py);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.faq-title { margin-bottom: clamp(2rem, 4vw, 3rem); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  text-align: left;
}
@media (min-width: 700px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color var(--dur-normal);
}
.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.875rem;
  line-height: 1.35;
}
.faq-a {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.8;
}

/* ======================================
   INSTAGRAM
   ====================================== */
.instagram {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.instagram-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.instagram-header .section-title { color: var(--gold); font-size: var(--text-xl); margin-bottom: 0; }
.instagram-header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-2);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (min-width: 1200px) { .instagram-grid { grid-template-columns: repeat(6, 1fr); } }

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.insta-item:hover img { transform: scale(1.1); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(197, 160, 40, 0.25);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-normal);
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ======================================
   CONTACT
   ====================================== */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-0);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}
@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1.3fr; } }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212,175,55,0.05);
  transition: background 0.4s var(--ease-smooth), border-color 0.4s, transform 0.4s;
}
.contact-icon svg { width: 20px; height: 20px; display: block; }
.contact-item:hover .contact-icon {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-text strong {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-body);
}
.contact-text span,
.contact-text a {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.65;
  transition: color var(--dur-normal);
}
.contact-text a:hover { color: var(--gold); }

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  display: block;
  filter: grayscale(50%) invert(8%) sepia(10%);
  transition: filter 0.5s var(--ease-smooth);
}
.contact-map:hover iframe { filter: grayscale(10%) invert(0%); }

/* ----- Contact mobile redesign ----- */
@media (max-width: 768px) {
  .contact-inner { gap: 2.5rem; }
  .contact-info { padding: 0 0.25rem; }
  .contact-info .section-label { text-align: center; display: block; margin-bottom: 0.75rem; }
  .contact-info h2.section-title { text-align: center; }
  .contact-details {
    margin: 1.75rem 0 1.5rem;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(212,175,55,0.18);
    background: linear-gradient(180deg, rgba(212,175,55,0.03), transparent);
  }
  .contact-item { gap: 0.85rem; align-items: center; }
  .contact-icon { width: 38px; height: 38px; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-text { gap: 0.15rem; }
  .contact-text strong { font-size: 0.6rem; letter-spacing: 0.18em; }
  .contact-text span,
  .contact-text a { font-size: 0.92rem; line-height: 1.45; }
  .contact-ctas {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .contact-ctas > * { width: 100%; justify-content: center; min-height: 48px; padding: 0.85rem 1.25rem !important; }
  .contact-map { margin-top: 0.5rem; }
  .contact-map iframe { height: 320px; }
}
@media (max-width: 480px) {
  .contact-text strong { font-size: 0.58rem; }
  .contact-text span,
  .contact-text a { font-size: 0.88rem; }
  .contact-icon { width: 36px; height: 36px; }
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 600px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer-brand img {
  height: 64px;
  width: 64px;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(2.5) hue-rotate(5deg) opacity(0.85);
  display: block;
}
@media (max-width: 600px) {
  /* Footer mobile — design compact en grille */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding: clamp(2.5rem, 8vw, 3.5rem) 0 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
  }
  .footer-brand img {
    height: 80px;
    width: 80px;
    margin: 0 auto;
  }
  .footer-brand > p:first-of-type {
    font-size: var(--text-base);
  }
  .footer-brand .footer-address {
    font-size: 0.78rem;
    line-height: 1.6;
  }
  .footer-links,
  .footer-contact { padding: 0; }
  .footer-social {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }
  .footer-social h3 { border-bottom: none; }
  .footer-links ul,
  .footer-contact ul { gap: 0.55rem; }
  .footer-links a,
  .footer-contact a,
  .footer-contact li { font-size: 0.85rem; }
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .social-links a {
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }
  .social-links a::before { display: none; }
  .social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.08);
  }
  .footer-bottom { padding: 1rem 0 1.5rem; }
  .footer-bottom p { font-size: 0.7rem; line-height: 1.7; padding: 0 1rem; }
  .seo-text { font-size: 0.55rem !important; line-height: 1.5; opacity: 0.4; padding: 0 1rem; margin-top: 0.75rem; }
}
.footer-brand > p:first-of-type {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-3);
  font-size: var(--text-base);
}
.footer-address {
  font-size: var(--text-xs);
  color: var(--text-3);
  line-height: 1.7;
  font-style: normal;
}
.footer-address a { transition: color var(--dur-normal); }
.footer-address a:hover { color: var(--gold); }

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  font-size: var(--text-sm);
  color: var(--text-3);
  transition: color var(--dur-normal);
  line-height: 1.6;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--cream-muted); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-links a {
  font-size: var(--text-sm);
  color: var(--text-3);
  transition: color var(--dur-normal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.social-links a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--dur-normal), transform var(--dur-normal);
  transform: translateX(-6px);
}
.social-links a:hover { color: var(--cream-muted); }
.social-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-3);
  text-align: center;
  line-height: 2;
}
.footer-bottom a { color: var(--text-3); transition: color var(--dur-normal); }
.footer-bottom a:hover { color: var(--gold); }

.seo-text {
  font-size: 0.5px;
  color: var(--bg-2);
  user-select: none;
  line-height: 1;
  height: 0;
  overflow: hidden;
}

/* ======================================
   ANIMATIONS — INITIAL STATES
   ====================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth);
}
.animate-fade-in.is-visible { opacity: 1; }

/* Stagger delays for child elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
/* ===== PREMIUM DISH FRAMES (Portrait Elegant) ===== */
.cuisine-swiper .dish-card {
  background: transparent;
  border: none;
  position: relative;
  padding: 0;
  overflow: visible;
}

.cuisine-swiper .dish-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: #0a0805;
  margin-bottom: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cuisine-swiper .dish-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0);
  z-index: 2;
  pointer-events: none;
  transition: all 0.4s ease;
}

.cuisine-swiper .dish-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(10,8,5,0.7) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cuisine-swiper .dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.cuisine-swiper .dish-card:hover .dish-img-wrap {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 175, 55, 0.3);
}

.cuisine-swiper .dish-card:hover .dish-img-wrap::before {
  inset: 8px;
  border-color: rgba(212, 175, 55, 0.4);
}

.cuisine-swiper .dish-card:hover .dish-img-wrap img {
  transform: scale(1.08);
}

.cuisine-swiper .dish-info {
  padding: 0 4px;
  text-align: left;
}

.cuisine-swiper .dish-category {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cuisine-swiper .dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cuisine-swiper .dish-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* Corner decorations on hover */
.cuisine-swiper .dish-card:hover .dish-img-wrap::before {
  background:
    linear-gradient(to right, #D4AF37 12px, transparent 12px) top left/24px 1px no-repeat,
    linear-gradient(to bottom, #D4AF37 12px, transparent 12px) top left/1px 24px no-repeat,
    linear-gradient(to left, #D4AF37 12px, transparent 12px) top right/24px 1px no-repeat,
    linear-gradient(to bottom, #D4AF37 12px, transparent 12px) top right/1px 24px no-repeat,
    linear-gradient(to right, #D4AF37 12px, transparent 12px) bottom left/24px 1px no-repeat,
    linear-gradient(to top, #D4AF37 12px, transparent 12px) bottom left/1px 24px no-repeat,
    linear-gradient(to left, #D4AF37 12px, transparent 12px) bottom right/24px 1px no-repeat,
    linear-gradient(to top, #D4AF37 12px, transparent 12px) bottom right/1px 24px no-repeat;
  border: none;
  inset: 12px;
}

/* Ambiance gallery photos also portrait */
.ambiance-swiper .swiper-slide {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.ambiance-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.ambiance-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* ======================================
   AMBIANCE — EDITORIAL GRID (no crop)
   ====================================== */
.ambiance-grid figure { margin: 0; }
.ambiance-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-smooth);
}
.ambiance-item:hover img { transform: scale(1.03); }
.ambiance-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  letter-spacing: 0.05em;
  color: var(--cream);
  background: linear-gradient(to top, rgba(6,4,2,0.85) 0%, rgba(6,4,2,0.55) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  pointer-events: none;
}
.ambiance-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ======================================
   AMBIANCE — EDITORIAL MASONRY (no crop)
   ====================================== */
.ambiance { padding: clamp(4rem, 7vw, 6.5rem) 0; }

.ambiance-masonry {
  column-count: 1;
  column-gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .ambiance-masonry { column-count: 2; column-gap: 0.875rem; }
}
@media (min-width: 1100px) {
  .ambiance-masonry { column-count: 3; column-gap: 1rem; }
}

.ambiance-tile {
  break-inside: avoid;
  margin: 0 0 0.875rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(197, 160, 40, 0.06);
  transition: border-color 0.5s var(--ease-smooth);
}
.ambiance-tile:hover { border-color: rgba(197, 160, 40, 0.35); }

.ambiance-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.4s var(--ease-smooth);
}
.ambiance-tile:hover img { transform: scale(1.03); }

.ambiance-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.4rem 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  background: linear-gradient(to top, rgba(6,4,2,0.92) 0%, rgba(6,4,2,0.55) 65%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
  pointer-events: none;
}
.ambiance-tile:hover figcaption { opacity: 1; transform: translateY(0); }

/* ======================================
   CUISINE — 4 GROUPES (no slider)
   ====================================== */
.cuisine-collection {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
}
.cuisine-group { width: 100%; }

.cuisine-group-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.cuisine-group-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}
.cuisine-group-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

.cuisine-group-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cuisine-group-grid { grid-template-columns: repeat(2, 1fr); gap: 1.125rem; }
}
@media (min-width: 1100px) {
  .cuisine-group-grid.cuisine-group-2 { grid-template-columns: repeat(2, minmax(0, 480px)); gap: 1.5rem; justify-content: center; }
  .cuisine-group-grid.cuisine-group-3 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .cuisine-group-grid.cuisine-group-4 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* ======================================
   AMBIANCE — EDITORIAL HORIZONTAL REEL
   Single row, refined. Premium hospitality aesthetic.
   ====================================== */
.ambiance { padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem); overflow: hidden; }

.ambiance-reel {
  --reel-h: clamp(240px, 30vw, 360px);
  --tile-gap: clamp(0.75rem, 1.1vw, 1.25rem);
  width: 100%;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
  position: relative;
}
/* Soft fade-out edges = cinematic */
.ambiance-reel::before,
.ambiance-reel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 3;
  pointer-events: none;
}
.ambiance-reel::before { left: 0;  background: linear-gradient(90deg, var(--bg-1) 0%, transparent 100%); }
.ambiance-reel::after  { right: 0; background: linear-gradient(270deg, var(--bg-1) 0%, transparent 100%); }

/* Hide the second row's container — single reel */
.ambiance-reel-row-2 { display: none; }

.ambiance-reel-row { overflow: hidden; }

.ambiance-reel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ambiance-reel-loop 75s linear infinite;
}
.ambiance-reel:hover .ambiance-reel-track,
.ambiance-reel:focus-within .ambiance-reel-track { animation-play-state: paused; }
@keyframes ambiance-reel-loop { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ambiance-reel-tile {
  position: relative;
  flex-shrink: 0;
  margin: 0 var(--tile-gap) 0 0;
  height: var(--reel-h);
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.6);
  transition: box-shadow 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.ambiance-reel-tile.ambiance-reel-tile-portrait { aspect-ratio: 2/3; }

.ambiance-reel-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease-smooth), filter 0.6s ease;
  filter: brightness(0.9) saturate(1.04);
}
.ambiance-reel-tile:hover {
  box-shadow: 0 28px 60px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(212,175,55,0.45);
  z-index: 4;
}
.ambiance-reel-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.18);
}

/* Caption — always visible, refined */
.ambiance-reel-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  background: linear-gradient(to top, rgba(6,4,2,0.85) 0%, rgba(6,4,2,0.45) 55%, transparent 100%);
  pointer-events: none;
}
.ambiance-reel-tile figcaption::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .ambiance-reel-track { animation: none; }
}

/* ======================================
   CUISINE — UNIFIED SLIDER (Indian frame, fluid)
   ====================================== */
.cuisine-slider-wrap {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.cuisine-slider {
  padding: 1.5rem 0 4rem !important;
  overflow: visible !important;
}
.cuisine-slider .swiper-wrapper {
  align-items: stretch;
}
.cuisine-slider .swiper-slide {
  height: auto;
  display: flex;
  transition: transform 0.6s var(--ease-smooth), opacity 0.6s var(--ease-smooth);
  opacity: 0.5;
  transform: scale(0.92);
}
.cuisine-slider .swiper-slide-active,
.cuisine-slider .swiper-slide-next,
.cuisine-slider .swiper-slide-prev {
  opacity: 1;
}
.cuisine-slider .swiper-slide-active { transform: scale(1); }

.dish-card-indian {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid rgba(212,175,55,0.18);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  transition: border-color 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}
.dish-card-indian:hover {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.7), 0 0 30px -5px rgba(212,175,55,0.18);
}

/* Indian Frame around photo */
.indian-frame {
  position: relative;
  padding: 10px;
  background:
    linear-gradient(135deg, #d4af37 0%, #8b6914 50%, #d4af37 100%);
  overflow: hidden;
}
.indian-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(6,4,2,0.6);
  pointer-events: none;
  z-index: 2;
}
.indian-frame > img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Corner motifs (paisley/lotus inspired) */
.indian-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M2 2 L8 2 L8 4 L4 4 L4 8 L2 8 Z M11 2 C13 2 14 4 14 6 C12 6 11 5 11 4 Z M2 11 C2 13 4 14 6 14 C6 12 5 11 4 11 Z' fill='%23060402'/%3E%3Ccircle cx='3.5' cy='3.5' r='1' fill='%23d4af37'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.5));
}
.indian-corner-tl { top: 4px; left: 4px; }
.indian-corner-tr { top: 4px; right: 4px; transform: scaleX(-1); }
.indian-corner-bl { bottom: 4px; left: 4px; transform: scaleY(-1); }
.indian-corner-br { bottom: 4px; right: 4px; transform: scale(-1, -1); }

/* dish info inside */
.dish-card-indian .dish-info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.dish-card-indian .dish-category {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.dish-card-indian .dish-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin: 0;
}
.dish-card-indian .dish-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0.25rem 0 0;
}

/* Slider navigation buttons */
.cuisine-slider-prev,
.cuisine-slider-next {
  color: var(--gold) !important;
  background: rgba(6,4,2,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.4) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 0 !important;
  margin-top: -26px !important;
  transition: all 0.4s var(--ease-smooth) !important;
}
.cuisine-slider-prev:hover,
.cuisine-slider-next:hover {
  background: var(--gold) !important;
  color: var(--bg-0) !important;
  transform: scale(1.05);
}
.cuisine-slider-prev::after,
.cuisine-slider-next::after {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
}

/* Pagination — gold rhombuses */
.cuisine-slider-pagination {
  bottom: 0 !important;
  text-align: center;
}
.cuisine-slider-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: transparent !important;
  border: 1px solid var(--gold);
  opacity: 0.5;
  margin: 0 6px !important;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.cuisine-slider-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1;
  transform: rotate(45deg) scale(1.3);
}

/* CUISINE — CTA vers menu complet */
.cuisine-menu-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.cuisine-menu-cta .btn-primary {
  padding: 1rem 2.5rem;
  font-size: var(--text-sm);
}


/* ======================================
   AMBIANCE — INDIAN-STYLE SLIDER
   Mughal frame with paisley corners, autoplay
   ====================================== */
.ambiance-stage {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.ambiance-swiper-v2 {
  position: relative;
  padding: 30px 0 60px !important;
  overflow: visible !important;
}
.ambiance-swiper-v2 .swiper-wrapper { align-items: center; }
.ambiance-swiper-v2 .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
  transition: opacity 0.5s, transform 0.5s var(--ease-smooth);
  opacity: 0.55;
  transform: scale(0.92);
}
.ambiance-swiper-v2 .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.ambiance-swiper-v2 .swiper-slide-prev,
.ambiance-swiper-v2 .swiper-slide-next {
  opacity: 0.85;
}

/* The Indian frame — gold gradient border + ornate corners */
.amb-frame {
  position: relative;
  width: min(85vw, 480px);
  margin: 0;
  padding: 14px;
  background:
    linear-gradient(180deg, #f4d77e 0%, #d4af37 35%, #b8881e 65%, #7a5a12 100%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 40px -10px rgba(212,175,55,0.25);
  transition: transform 0.5s var(--ease-smooth);
}
.amb-frame:hover {
  transform: scale(1.02);
}
.amb-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(6,4,2,0.55);
  pointer-events: none;
  z-index: 2;
}
.amb-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: contrast(1.04) saturate(1.06);
}

/* Paisley/lotus corner ornaments — subtle, inside the frame */
.amb-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 4;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='%23060402' stroke='none'%3E%3Cpath d='M2 2 L8 2 L8 4 L4 4 L4 8 L2 8 Z'/%3E%3Cpath d='M11 2 C13 2 14.5 4 14.5 6 C12.5 6 11 4.5 11 3 Z'/%3E%3Cpath d='M2 11 C2 13 4 14.5 6 14.5 C6 12.5 4.5 11 3 11 Z'/%3E%3C/g%3E%3Ccircle cx='3.5' cy='3.5' r='1.2' fill='%23d4af37'/%3E%3C/svg%3E") center/contain no-repeat;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4));
  pointer-events: none;
}
.amb-tl { top: 6px; left: 6px; }
.amb-tr { top: 6px; right: 6px; transform: scaleX(-1); }
.amb-bl { bottom: 6px; left: 6px; transform: scaleY(-1); }
.amb-br { bottom: 6px; right: 6px; transform: scale(-1, -1); }

/* Caption — gold plaque under photo */
.amb-frame figcaption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(180deg, rgba(6,4,2,0.85), rgba(6,4,2,0.95));
  border: 1px solid rgba(212,175,55,0.55);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #f4d77e;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 3;
}
.amb-num {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* Navigation arrows — gold with backdrop blur */
.amb-prev,
.amb-next {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(6,4,2,0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.5) !important;
  color: var(--gold) !important;
  margin-top: -24px !important;
  transition: all 0.4s var(--ease-smooth);
}
.amb-prev:hover,
.amb-next:hover {
  background: var(--gold) !important;
  color: var(--bg-0) !important;
  transform: scale(1.08);
}
.amb-prev::after,
.amb-next::after {
  font-size: 16px !important;
  font-weight: 700;
}

/* Pagination — gold rhombuses */
.amb-pagination {
  position: relative !important;
  margin-top: 1rem;
  text-align: center;
}
.amb-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: transparent !important;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  margin: 0 6px !important;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.amb-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1;
  transform: rotate(45deg) scale(1.4);
}

/* Mobile — smaller frame, fewer slides per view */
@media (max-width: 700px) {
  .amb-frame {
    width: min(82vw, 360px);
    padding: 10px;
  }
  .amb-frame::before { inset: 6px; }
  .amb-corner { width: 22px; height: 22px; }
  .amb-frame figcaption {
    bottom: 14px;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
  }
  .amb-prev, .amb-next {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }
  .amb-prev::after, .amb-next::after { font-size: 13px !important; }
  .amb-prev { left: 4px !important; }
  .amb-next { right: 4px !important; }
}
@media (max-width: 480px) {
  .amb-frame { width: 78vw; }
}
