:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --muted: #c8c8c8;
  --accent: #a88a62;
  --section-padding: 80px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.65;
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(12, 12, 12, 0.82) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Bandeau defilant (accueil, evenement) */
.ticker-bar {
  position: relative;
  z-index: 40;
  overflow: hidden;
  background: linear-gradient(90deg, #0a0908 0%, #15120f 50%, #0a0908 100%);
  border-bottom: 1px solid rgba(196, 155, 99, 0.28);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 42s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  padding: 0.55rem clamp(1rem, 3vw, 2.5rem);
  white-space: nowrap;
}

.ticker-item {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(0.72rem, 1.9vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f3d58a;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
}

.ticker-sep {
  color: #c9944a;
  font-size: 0.55rem;
  opacity: 0.95;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    width: 100% !important;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.35rem;
  }

  .ticker-group {
    white-space: normal;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }

  .ticker-group[aria-hidden="true"] {
    display: none;
  }
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28em 0.45em;
  line-height: 1.12;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.logo-wordmark {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.9vw, 1.62rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #f3e9d4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 22px rgba(200, 160, 90, 0.2);
  white-space: nowrap;
}

.logo-tagline {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.95rem, 2.2vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: none;
  color: #e6c56c;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55), 0 0 18px rgba(214, 176, 88, 0.35);
  white-space: nowrap;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo:hover .logo-wordmark {
  color: #fffaf0;
}

.logo:hover .logo-tagline {
  color: #f2d98a;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.menu-toggle:hover {
  transform: scale(1.04);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.nav {
  display: flex;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  align-items: center;
}

.nav > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.25s ease, color 0.25s ease,
    transform 0.25s ease;
}

.nav > a:hover,
.nav-dropdown > a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-dropdown > a::after {
  content: "▾";
  font-size: 0.8em;
  margin-left: 8px;
  opacity: 0.9;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(16, 16, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 20;
}

.dropdown-menu a {
  padding: 10px 12px;
  white-space: nowrap;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.93);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(168, 138, 98, 0.2);
  color: #fff;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero {
  min-height: 86vh;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92%);
}

.hero-title {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  font-size: clamp(42px, 8vw, 120px);
  line-height: 1.15;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
}

.hero-subtitle {
  margin: 0 auto 26px;
  font-size: clamp(16px, 2.3vw, 24px);
  text-transform: uppercase;
  font-family: "Source Sans 3", Arial, sans-serif;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease,
    filter 0.3s ease;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.hero .btn {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards, softPulse 2.4s ease-in-out infinite;
  animation-delay: 0.35s, 1.4s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  border-color: rgba(33, 26, 20, 0.72);
  color: #2a221a;
  background: rgba(255, 255, 255, 0.5);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 24px rgba(20, 16, 12, 0.18);
}

.section {
  padding: var(--section-padding) 0;
}

.section h2,
.section h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.25;
}

.section h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section h3 {
  font-size: clamp(22px, 2.6vw, 30px);
}

body.page-home {
  background:
    radial-gradient(circle at 8% 16%, rgba(209, 176, 132, 0.2), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(143, 106, 72, 0.16), transparent 28%),
    linear-gradient(165deg, #f6f1e9 0%, #f0e7db 45%, #e9ddcc 100%);
}

body.page-home .section .container {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 250, 243, 0.64) 100%);
  border: 1px solid rgba(173, 135, 93, 0.24);
  box-shadow: 0 20px 34px rgba(58, 38, 20, 0.08);
  backdrop-filter: blur(4px);
}

body.page-home .section .container::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(194, 159, 117, 0.22);
  pointer-events: none;
}

body.page-home .section-dark .container {
  background: linear-gradient(145deg, rgba(19, 16, 13, 0.94), rgba(26, 19, 14, 0.9));
  border-color: rgba(199, 155, 98, 0.24);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.36);
}

body.page-home .section-dark .container::before {
  border-color: rgba(200, 159, 102, 0.24);
}

p {
  font-size: 1.08rem;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
li {
  overflow-wrap: anywhere;
}

.section-dark {
  background: #000;
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.grid-2 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.grid-2 > div:hover img {
  transform: scale(1.035);
}

.section-parallax {
  min-height: 420px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.25) 100%);
}

.section-parallax > * {
  position: relative;
  z-index: 1;
}

.footer-pro {
  background: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: 2px;
}

.footer-col p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col > a {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.footer-col p a {
  color: #e8c99a;
  font-weight: 600;
  display: inline;
  margin-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-col a {
  transition: transform 0.28s ease, color 0.28s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #888;
}

.page-hero {
  min-height: 42vh;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  border: 1px solid rgba(187, 150, 108, 0.34);
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.78) 0%, rgba(251, 245, 236, 0.66) 100%);
  box-shadow:
    0 16px 30px rgba(68, 45, 24, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1px solid rgba(188, 151, 110, 0.26);
  pointer-events: none;
}

.hover-lift {
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(115, 90, 63, 0.18);
  color: #3d3127;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list a {
  color: #e8c99a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(220, 169, 110, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-list a:hover {
  color: #fff4e4;
  text-decoration-color: rgba(255, 230, 200, 0.75);
}

.contact-tel-hint {
  margin: 14px 0 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c9bba8;
}

body.page-contact {
  background:
    radial-gradient(circle at 10% 14%, rgba(163, 129, 91, 0.18), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(107, 86, 66, 0.16), transparent 34%),
    linear-gradient(155deg, #f5efe4 0%, #eee3d3 46%, #e4d8c8 100%);
}

body.page-contact .contact-hero {
  background-size: cover;
  background-position: center 22%;
}

.contact-hero::before {
  background: linear-gradient(180deg, rgba(24, 16, 11, 0.56), rgba(24, 16, 11, 0.48));
}

.contact-wrap {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
}

.contact-panel {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.72), rgba(252, 247, 240, 0.66));
  border: 1px solid rgba(179, 140, 98, 0.26);
  box-shadow: 0 22px 36px rgba(58, 38, 20, 0.11);
  backdrop-filter: blur(4px);
}

.contact-panel h2 {
  margin-top: 0;
  color: #2d2219;
}

.contact-panel-map {
  display: flex;
  flex-direction: column;
}

.contact-map {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(146, 115, 78, 0.3);
  box-shadow: 0 18px 30px rgba(31, 23, 15, 0.18);
  margin-top: 6px;
}

.contact-map iframe {
  width: 100%;
  height: min(56vh, 430px);
  border: 0;
}

.menu-hero::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.drinks-hero {
  min-height: 26vh;
  background:
    radial-gradient(circle at 14% 28%, rgba(193, 151, 95, 0.18), transparent 40%),
    radial-gradient(circle at 84% 66%, rgba(150, 103, 62, 0.14), transparent 42%),
    linear-gradient(135deg, #f7f0e3 0%, #f2e8d8 52%, #ede0cd 100%);
  border-bottom: 1px solid rgba(134, 100, 61, 0.2);
}

.drinks-hero::before {
  background: transparent;
}

.drinks-hero .hero-title {
  color: #2c2118;
  font-size: clamp(42px, 7vw, 86px);
  text-shadow: none;
  letter-spacing: 0.01em;
}

.drinks-hero .hero-content {
  padding-top: 14px;
  padding-bottom: 8px;
}

body.page-menu .menu-hero {
  background-image:
    linear-gradient(180deg, rgba(35, 24, 15, 0.52), rgba(20, 14, 10, 0.42)),
    url("images/menus-fond-ambiance.jpeg");
}

body.page-drinks .drinks-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(101, 132, 147, 0.22), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(176, 133, 85, 0.2), transparent 42%),
    linear-gradient(130deg, #edf3f5 0%, #e1eaee 46%, #d9dfd7 100%);
  border-bottom-color: rgba(100, 118, 122, 0.34);
}

body.page-desserts .drinks-hero {
  background:
    radial-gradient(circle at 20% 26%, rgba(206, 160, 174, 0.18), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(199, 154, 121, 0.18), transparent 40%),
    linear-gradient(135deg, #f8f0ec 0%, #f3e8e5 52%, #ecdfd8 100%);
  border-bottom-color: rgba(161, 120, 122, 0.26);
}

.menu-wrap {
  background:
    radial-gradient(circle at 10% 0%, rgba(214, 184, 141, 0.12), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(214, 184, 141, 0.08), transparent 30%),
    #f6f2ec;
}

body.page-menu .menu-wrap {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(249, 243, 233, 0.92)),
    repeating-linear-gradient(
      115deg,
      rgba(156, 122, 78, 0.045) 0,
      rgba(156, 122, 78, 0.045) 1px,
      transparent 1px,
      transparent 16px
    ),
    radial-gradient(circle at 15% 10%, rgba(193, 155, 104, 0.15), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(141, 102, 63, 0.1), transparent 34%),
    #f6f0e6;
}

.menu-section {
  margin-bottom: 58px;
  position: relative;
}

.menu-section-title {
  font-size: clamp(34px, 4.2vw, 62px);
  margin: 0 0 26px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #1e1a16;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.menu-section-title.alt {
  font-size: clamp(30px, 3.4vw, 48px);
}

.menu-section-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, rgba(170, 126, 71, 0.15), #aa7e47, rgba(170, 126, 71, 0.15));
}

.menu-columns-3 {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 22px;
  align-items: start;
}

.menu-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.menu-card {
  position: relative;
  background: linear-gradient(176deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 251, 245, 0.72) 100%);
  border: 1px solid rgba(206, 173, 137, 0.42);
  border-radius: 18px;
  padding: 26px;
  box-shadow:
    0 18px 34px rgba(41, 30, 18, 0.1),
    0 3px 10px rgba(41, 30, 18, 0.06);
  backdrop-filter: blur(4px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 12px;
  border: 1px solid rgba(203, 169, 127, 0.24);
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-3px);
  border-color: #d9c1a2;
  box-shadow:
    0 22px 40px rgba(41, 30, 18, 0.12),
    0 6px 14px rgba(41, 30, 18, 0.08);
}

.menu-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.9rem;
  text-align: center;
  color: #201a15;
}

.menu-card p {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  color: #433a31;
}

.price {
  display: block;
  text-align: center;
  color: #9a6f3d;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
  color: #2c251e;
}

.menu-list li .dots {
  flex: 1;
  border-bottom: 1px solid #d8cabb;
  transform: translateY(-3px);
}

.menu-list li strong {
  color: #9a6f3d;
  font-size: 0.95em;
  white-space: nowrap;
  font-weight: 700;
}

.menu-list.compact li {
  margin: 12px 0;
}

.drinks-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f4ec 0%, #f4ecdf 42%, #efe5d6 100%);
}

body.page-drinks .drinks-wrap {
  background:
    linear-gradient(150deg, #eff5f6 0%, #e7eff0 44%, #dde7e1 100%),
    radial-gradient(circle at 14% 16%, rgba(126, 161, 172, 0.16), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(173, 139, 102, 0.13), transparent 38%);
}

body.page-drinks .drinks-wrap::before {
  background:
    radial-gradient(circle at 20% 24%, rgba(112, 148, 160, 0.24) 0%, transparent 34%),
    radial-gradient(circle at 80% 74%, rgba(142, 102, 68, 0.18) 0%, transparent 36%),
    radial-gradient(circle at 58% 46%, rgba(217, 230, 233, 0.34) 0%, transparent 32%);
}

body.page-drinks .drinks-wrap .container::before {
  background: radial-gradient(circle, rgba(113, 152, 165, 0.2) 0%, rgba(113, 152, 165, 0) 70%);
}

body.page-drinks .drinks-wrap .container::after {
  background: radial-gradient(circle, rgba(191, 160, 124, 0.22) 0%, rgba(191, 160, 124, 0) 70%);
}

body.page-desserts .drinks-wrap {
  background:
    linear-gradient(145deg, #f8f1ee 0%, #f3e8e5 40%, #eadfd8 100%),
    radial-gradient(circle at 18% 22%, rgba(199, 151, 166, 0.15), transparent 36%),
    radial-gradient(circle at 85% 78%, rgba(183, 139, 99, 0.14), transparent 36%);
}

body.page-desserts .drinks-wrap::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(189, 138, 154, 0.24) 0%, transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(155, 108, 74, 0.18) 0%, transparent 36%),
    radial-gradient(circle at 54% 46%, rgba(239, 220, 222, 0.35) 0%, transparent 32%);
}

body.page-desserts .drinks-wrap .container::before {
  background: radial-gradient(circle, rgba(197, 146, 161, 0.2) 0%, rgba(197, 146, 161, 0) 70%);
}

body.page-desserts .drinks-wrap .container::after {
  background: radial-gradient(circle, rgba(201, 158, 118, 0.22) 0%, rgba(201, 158, 118, 0) 70%);
}

.drinks-wrap::before,
.drinks-wrap::after {
  content: "";
  position: absolute;
  inset: -22% -14%;
  pointer-events: none;
  z-index: 1;
}

.drinks-wrap::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(188, 135, 78, 0.26) 0%, transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(138, 90, 47, 0.2) 0%, transparent 36%),
    radial-gradient(circle at 54% 46%, rgba(236, 209, 167, 0.32) 0%, transparent 32%);
  filter: blur(28px);
  animation: drinksAuraMove 18s ease-in-out infinite alternate;
}

.drinks-wrap::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.2), transparent 52%);
  mix-blend-mode: soft-light;
  opacity: 0.75;
  animation: drinksLightSweep 12s ease-in-out infinite;
}

.drinks-wrap .container::before,
.drinks-wrap .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 999px;
}

.drinks-wrap .container::before {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  top: 8%;
  right: -14%;
  background: radial-gradient(circle, rgba(176, 127, 73, 0.2) 0%, rgba(176, 127, 73, 0) 70%);
  filter: blur(10px);
  animation: drinksOrbOne 15s ease-in-out infinite alternate;
}

.drinks-wrap .container::after {
  width: min(35vw, 420px);
  height: min(35vw, 420px);
  bottom: 2%;
  left: -12%;
  background: radial-gradient(circle, rgba(214, 180, 128, 0.24) 0%, rgba(214, 180, 128, 0) 70%);
  filter: blur(8px);
  animation: drinksOrbTwo 18s ease-in-out infinite alternate;
}

.drinks-wrap .container {
  position: relative;
  z-index: 3;
}

.drinks-section {
  margin-bottom: 104px;
}

.drinks-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

.drinks-tab {
  border: 1px solid #d7c5ae;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #5a4535;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.drinks-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.drinks-tab:active {
  transform: translateY(0) scale(0.98);
}

.drinks-tab.active {
  background: linear-gradient(180deg, #a9804f, #8e693e);
  border-color: #8e693e;
  color: #fff;
}

.drinks-card {
  max-width: 980px;
  margin: 0 auto;
}

.drinks-list li {
  margin: 14px 0;
}

.drinks-list li strong em {
  font-style: normal;
  color: #8e7761;
  font-weight: 600;
  margin-left: 2px;
}

.dessert-flavors li {
  justify-content: flex-start;
  margin: 9px 0;
}

.dessert-flavors li .dots,
.dessert-flavors li strong {
  display: none;
}

.dessert-pricing {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  color: #6e502f;
}

.dessert-pricing.muted {
  margin-top: 8px;
  font-weight: 600;
  color: #83684a;
}

#vins .menu-columns-2,
#bieres .menu-columns-2,
#softs .menu-columns-2 {
  gap: 38px;
  margin-bottom: 38px;
}

.drinks-section .menu-columns-2 + .menu-columns-2 {
  margin-top: 56px;
}

.drinks-section .menu-card {
  padding: 34px;
}

.drinks-section .menu-card + .menu-card {
  margin-top: 10px;
}

.drinks-section .menu-columns-2 + .menu-card {
  margin-top: 56px;
}

.drinks-section h3 {
  margin-bottom: 18px;
}

.drinks-section .menu-list + h3 {
  margin-top: 34px;
}

.eventx-hero {
  min-height: 58vh;
  background-attachment: scroll;
  overflow: hidden;
}

.eventx-hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 78% 68%, rgba(255, 240, 217, 0.18), transparent 36%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: eventHeroGlow 12s ease-in-out infinite alternate;
}

.eventx-hero .hero-title.eventx-title {
  font-size: clamp(40px, 6.5vw, 88px);
  letter-spacing: 0.03em;
  text-transform: none;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0);
  animation: eventTitleFloat 4.4s ease-in-out infinite;
}

.eventx-subtitle {
  max-width: 760px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: 0 9px 22px rgba(0, 0, 0, 0.45);
}

.eventx-pillrow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.eventx-pillrow span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: none;
}

.eventx-pillrow span + span::before {
  content: "•";
  margin-right: 14px;
  color: rgba(233, 194, 138, 0.78);
}

.eventx-pillrow span:nth-child(2) {
  animation-delay: 0.45s;
}

.eventx-pillrow span:nth-child(3) {
  animation-delay: 0.9s;
}

.eventx-main {
  position: relative;
  background:
    radial-gradient(circle at 8% 8%, rgba(166, 124, 92, 0.16), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(121, 92, 66, 0.12), transparent 34%),
    linear-gradient(140deg, #f4ede4 0%, #ede3d7 42%, #e5d8ca 100%);
  padding: clamp(40px, 7vw, 64px) 0 clamp(52px, 10vw, 90px);
  overflow: hidden;
}

body.page-event .eventx-hero {
  min-height: clamp(300px, 56vh, 720px);
  padding-left: max(14px, env(safe-area-inset-left, 0px));
  padding-right: max(14px, env(safe-area-inset-right, 0px));
  padding-top: max(18px, env(safe-area-inset-top, 0px));
  padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  background-image:
    linear-gradient(180deg, rgba(17, 12, 8, 0.58), rgba(17, 12, 8, 0.42)),
    url("images/evenement-hero-repas.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.page-event .eventx-main {
  background:
    radial-gradient(circle at 8% 8%, rgba(170, 121, 80, 0.22), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(108, 74, 50, 0.18), transparent 34%),
    linear-gradient(140deg, #f1e6d8 0%, #e6d7c5 42%, #ddcab3 100%);
}

.eventx-main::before,
.eventx-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.eventx-main::before {
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  top: 8%;
  left: -12%;
  background: radial-gradient(circle, rgba(184, 142, 99, 0.2) 0%, rgba(184, 142, 99, 0) 70%);
  filter: blur(10px);
  animation: eventAuraDrift 16s ease-in-out infinite alternate;
}

.eventx-main::after {
  width: min(38vw, 460px);
  height: min(38vw, 460px);
  bottom: 6%;
  right: -10%;
  background: radial-gradient(circle, rgba(145, 109, 76, 0.16) 0%, rgba(145, 109, 76, 0) 72%);
  filter: blur(8px);
  animation: eventAuraDriftTwo 18s ease-in-out infinite alternate;
}

.eventx-main .container {
  position: relative;
  z-index: 3;
}

.eventx-intro,
.eventx-program,
.eventx-service,
.eventx-past {
  margin-bottom: 46px;
}

.eventx-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.eventx-intro-card {
  padding: clamp(22px, 4vw, 36px) clamp(20px, 3.5vw, 34px);
  border-color: #dcc7a8;
}

.eventx-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
  color: #785740;
  font-weight: 700;
}

.eventx-intro-card h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  text-align: left;
}

.eventx-intro-card p {
  text-align: left;
  margin: 0 0 12px;
  color: #4a3d34;
}

.eventx-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.eventx-intro-visual {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #ddc8aa;
}

.eventx-intro-visual img {
  width: 100%;
  max-height: min(560px, 52vh);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 26px 44px rgba(41, 30, 18, 0.16);
}

.eventx-section-title {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: 0.03em;
  color: #241d18;
}

.eventx-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.eventx-load-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.25rem;
  text-align: center;
  color: #5c4d3d;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1rem;
}

.eventx-card {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: clamp(14px, 2.2vw, 20px);
  align-items: center;
  padding: clamp(16px, 2.8vw, 22px);
  border-color: #dcc6a5;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.eventx-card img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(41, 30, 18, 0.13);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.eventx-card:hover {
  transform: translateY(-5px);
  border-color: #cda87e;
  box-shadow: 0 24px 40px rgba(41, 30, 18, 0.14);
}

.eventx-card:hover img {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 36px rgba(41, 30, 18, 0.2);
}

.eventx-card-body {
  min-width: 0;
}

.eventx-card-body h3 {
  margin: 0 0 10px;
  text-align: left;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  overflow-wrap: break-word;
}

.eventx-card-body p {
  text-align: left;
  margin: 0 0 10px;
  color: #53443a;
  overflow-wrap: break-word;
}

.eventx-link {
  display: inline-flex;
  margin-top: 4px;
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b6440;
  font-weight: 700;
}

.eventx-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.eventx-link:hover {
  color: #6f4e32;
}

.eventx-link:hover::after,
.eventx-link:focus-visible::after {
  transform: scaleX(1);
}

.eventx-service-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border-color: rgba(200, 154, 98, 0.34);
  background:
    linear-gradient(165deg, rgba(31, 24, 19, 0.9), rgba(24, 19, 15, 0.86)),
    radial-gradient(circle at 82% 18%, rgba(176, 126, 74, 0.14), transparent 34%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.eventx-service-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 38px rgba(41, 30, 18, 0.12);
}

.eventx-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.eventx-list li {
  border: 1px solid rgba(204, 159, 106, 0.42);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(55, 42, 32, 0.82), rgba(42, 33, 25, 0.78));
  padding: 12px 14px;
  color: #ecdcc5;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.eventx-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  border-color: rgba(221, 176, 122, 0.62);
}

.eventx-past-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  max-width: min(760px, 100%);
  margin: 0 auto;
}

.eventx-past-card {
  text-align: center;
  border-color: #dcc8a8;
  padding: 24px 20px;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.eventx-past-card img {
  max-width: 220px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 14px 26px rgba(41, 30, 18, 0.12);
}

.eventx-past-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
}

.eventx-past-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(41, 30, 18, 0.12);
}

.reveal .eventx-intro-card,
.reveal .eventx-intro-visual,
.reveal .eventx-card,
.reveal .eventx-service-panel,
.reveal .eventx-past-card,
.reveal .eventx-list li {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible .eventx-intro-card,
.reveal.is-visible .eventx-intro-visual,
.reveal.is-visible .eventx-card,
.reveal.is-visible .eventx-service-panel,
.reveal.is-visible .eventx-past-card,
.reveal.is-visible .eventx-list li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.is-visible .eventx-card:nth-child(2),
.reveal.is-visible .eventx-past-card:nth-child(2),
.reveal.is-visible .eventx-list li:nth-child(2),
.reveal.is-visible .eventx-list li:nth-child(4) {
  transition-delay: 0.14s;
}

.reveal.is-visible .eventx-list li:nth-child(3) {
  transition-delay: 0.22s;
}

@keyframes eventHeroGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.58;
  }
  100% {
    transform: translate3d(-1.8%, 1.5%, 0) scale(1.07);
    opacity: 0.9;
  }
}

@keyframes eventTitleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes eventPillPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  }
}

@keyframes eventAuraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(6%, -5%, 0) scale(1.12);
  }
}

@keyframes eventAuraDriftTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-7%, 6%, 0) scale(1.1);
  }
}

@keyframes drinksFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2.5%, 2%, 0) scale(1.06);
  }
}

@keyframes drinksShimmer {
  0% {
    transform: translateX(-2%);
    opacity: 0.45;
  }
  50% {
    transform: translateX(2%);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-1%);
    opacity: 0.5;
  }
}

@keyframes drinksAuraMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2%, 2.5%, 0) scale(1.08);
  }
}

@keyframes drinksLightSweep {
  0% {
    transform: translate3d(-3%, 0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(2%, -1%, 0);
    opacity: 0.78;
  }
  100% {
    transform: translate3d(-1%, 1%, 0);
    opacity: 0.58;
  }
}


@keyframes drinksOrbOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(-8%, 9%, 0) scale(1.08);
    opacity: 0.92;
  }
}

@keyframes drinksOrbTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }
  100% {
    transform: translate3d(10%, -7%, 0) scale(1.12);
    opacity: 0.9;
  }
}

body.page-around .around-hero::before {
  background: linear-gradient(180deg, rgba(12, 28, 26, 0.56), rgba(9, 14, 22, 0.62));
}

body.page-around .around-hero .hero-title {
  font-size: clamp(34px, 5.2vw, 84px);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

body.page-around .around-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(90, 145, 138, 0.2), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(40, 74, 116, 0.18), transparent 36%),
    linear-gradient(145deg, #eaf3ef 0%, #e3edf0 45%, #dde6ef 100%);
}

body.page-around .around-wrap::before,
body.page-around .around-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body.page-around .around-wrap::before {
  width: min(40vw, 460px);
  height: min(40vw, 460px);
  top: 6%;
  left: -10%;
  background: radial-gradient(circle, rgba(96, 157, 153, 0.2) 0%, rgba(96, 157, 153, 0) 70%);
  animation: aroundAuraOne 16s ease-in-out infinite alternate;
}

body.page-around .around-wrap::after {
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  right: -8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(60, 98, 146, 0.2) 0%, rgba(60, 98, 146, 0) 70%);
  animation: aroundAuraTwo 18s ease-in-out infinite alternate;
}

.around-wrap .container {
  position: relative;
  z-index: 1;
}

.around-intro,
.around-section {
  margin-top: clamp(34px, 4vw, 56px);
}

.around-title {
  margin: 0 0 18px;
  color: #18343a;
  text-align: center;
}

.around-intro p,
.around-end {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #e5d6c1;
  font-size: clamp(18px, 2vw, 21px);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
}

.around-grid-2,
.around-grid-3,
.around-grid-4 {
  display: grid;
  gap: clamp(20px, 2.2vw, 30px);
}

.around-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.around-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.around-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.around-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(77, 116, 126, 0.2);
  box-shadow: 0 18px 34px rgba(22, 45, 60, 0.1);
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.around-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(18, 44, 58, 0.16);
  border-color: rgba(69, 109, 128, 0.34);
}

.around-card h3 {
  color: #1f3f46;
}

.around-card p {
  color: #3b565d;
  flex-grow: 1;
}

.around-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-top: auto;
}

.around-map {
  margin-top: clamp(24px, 3vw, 34px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(84, 122, 130, 0.28);
  box-shadow: 0 20px 36px rgba(20, 42, 56, 0.14);
}

.around-map iframe {
  width: 100%;
  height: min(54vh, 470px);
  border: 0;
}

#carte-mont-noir {
  width: 100%;
  height: min(520px, 54vh);
  min-height: 280px;
  border-radius: 12px;
  background: #1a1e22;
}

#carte-mont-noir.leaflet-container {
  font-family: "Source Sans 3", Arial, sans-serif;
}

@keyframes aroundAuraOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(8%, -5%, 0) scale(1.1);
  }
}

@keyframes aroundAuraTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-7%, 6%, 0) scale(1.12);
  }
}

/* Premium direction v3: editorial, darker, less "white blocks" */
body {
  color: #eee5d8;
  background:
    radial-gradient(circle at 12% 8%, rgba(176, 128, 75, 0.14), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(96, 75, 51, 0.14), transparent 30%),
    linear-gradient(165deg, #0f0d0b 0%, #12100e 45%, #171411 100%);
}

.section h2,
.section h3,
.menu-section-title,
.around-title,
.eventx-section-title {
  color: #f5eadb;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

p,
.menu-card p,
.card p,
.around-card p,
.contact-list li,
.eventx-card-body p,
.eventx-intro-card p {
  color: #d8c8b4;
}

.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(240px, 42vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(201, 155, 99, 0.5), transparent);
}

.hero::before,
.menu-hero::before,
.contact-hero::before,
body.page-around .around-hero::before {
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.62), rgba(8, 7, 6, 0.58)) !important;
}

.site-header {
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.94), rgba(12, 10, 9, 0.84));
  border-bottom-color: rgba(196, 148, 92, 0.2);
}

.nav > a,
.nav-dropdown > a {
  color: rgba(249, 236, 219, 0.92);
}

.nav a.active {
  background: linear-gradient(160deg, rgba(153, 111, 64, 0.4), rgba(119, 84, 46, 0.35));
  border-color: rgba(212, 166, 108, 0.34);
  color: #fff6ea;
}

.dropdown-menu {
  background: rgba(17, 14, 12, 0.97);
  border-color: rgba(201, 155, 99, 0.25);
}

.card,
.menu-card,
.contact-panel,
.around-card,
.eventx-card,
.eventx-intro-card,
.eventx-service-panel,
.eventx-past-card {
  background:
    linear-gradient(165deg, rgba(31, 25, 20, 0.84), rgba(23, 19, 16, 0.78)) !important;
  border: 1px solid rgba(188, 145, 91, 0.34) !important;
  box-shadow:
    0 26px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 239, 219, 0.06) !important;
  backdrop-filter: blur(2px);
}

.card::after,
.menu-card::before,
body.page-home .section .container::before {
  border-color: rgba(203, 160, 106, 0.2) !important;
}

.menu-card h3,
.card h3,
.around-card h3,
.eventx-card-body h3,
.eventx-past-card h3,
.contact-panel h2,
.eventx-kicker {
  color: #f4ddbd !important;
}

.menu-list li {
  color: #eadac4;
}

.menu-list li .dots {
  border-bottom-color: rgba(212, 172, 122, 0.38);
}

.menu-list li strong,
.price,
.eventx-link {
  color: #dca96e !important;
}

.drinks-tab {
  border-color: rgba(189, 147, 93, 0.36);
  background: rgba(37, 30, 24, 0.64);
  color: #ebdcc7;
}

.drinks-tab.active {
  background: linear-gradient(160deg, #b0814f, #865b2f);
  border-color: rgba(220, 170, 109, 0.66);
}

.menu-wrap,
.drinks-wrap,
.around-wrap,
.eventx-main,
.contact-wrap {
  background:
    radial-gradient(circle at 12% 10%, rgba(152, 111, 64, 0.18), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(84, 65, 45, 0.2), transparent 34%),
    linear-gradient(165deg, #12100d 0%, #17130f 48%, #1b1511 100%) !important;
}

body.page-home .section .container {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.grid-2 img,
.menu-card img,
.around-card img,
.eventx-card img,
.eventx-intro-visual img,
.eventx-past-card img {
  border: 1px solid rgba(209, 168, 114, 0.28);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
  filter: contrast(1.03) saturate(0.94);
}

.contact-map,
.around-map {
  border-color: rgba(193, 150, 97, 0.34);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.34);
}

.section-dark {
  background: transparent;
}

/* Clean variant: remove double-line framing */
.card::after,
.menu-card::before,
body.page-home .section .container::before {
  display: none !important;
}

.section::after {
  display: none;
}

/* Event images: keep consistent poster proportions */
.eventx-card {
  align-items: stretch;
}

.eventx-card img {
  aspect-ratio: 247 / 342;
  width: 100%;
  height: auto;
  max-height: min(342px, 52vh);
  object-fit: cover;
  object-position: center;
  display: block;
}

.eventx-past-card img {
  aspect-ratio: 247 / 342;
  width: min(220px, 100%);
  height: auto;
  max-height: min(360px, 48vh);
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto 14px;
}

/* Home page refinement for consistent premium direction */
body.page-home .hero .hero-content {
  width: min(860px, 92%);
}

body.page-home .hero .hero-title {
  font-size: clamp(32px, 5.6vw, 78px);
  letter-spacing: 0.02em;
}

body.page-home .hero .hero-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(16px, 1.8vw, 22px);
  text-transform: none;
  color: #e8d9c3;
}

.home-intro .container {
  max-width: 980px;
  text-align: center;
}

.home-intro h3 {
  margin-bottom: 10px;
  color: #dcb183;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.home-intro h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.home-signature .grid-2 {
  gap: clamp(22px, 2.8vw, 36px);
  align-items: stretch;
}

.home-signature .grid-2 > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(35, 28, 22, 0.82), rgba(26, 21, 17, 0.78));
  border: 1px solid rgba(194, 150, 97, 0.25);
}

.home-signature .grid-2 h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 46px);
}

.home-signature .grid-2 p {
  margin: 0;
}

.home-signature .grid-2 img {
  margin-top: auto;
}

/* Image en premier dans la colonne : pas de marge auto (sinon enorme vide au-dessus) */
.home-signature .grid-2 img:first-child {
  margin-top: 0;
}

body.page-home .section-parallax {
  min-height: clamp(520px, 78vh, 920px);
  padding: clamp(48px, 7vw, 100px) clamp(12px, 3vw, 24px);
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 100%;
}

body.page-home .section-parallax h2 {
  margin: 0 auto;
  padding: 0 clamp(4px, 1.5vw, 12px);
  max-width: 100%;
  white-space: nowrap;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  /* Une ligne : taille liée à la largeur utile */
  font-size: min(54px, max(14px, calc((100vw - 6.5rem) / 24)));
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #f3e2c7;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 42px rgba(0, 0, 0, 0.35);
}

.home-steps .container > h2 {
  text-align: center;
  margin-bottom: 22px;
}

.home-steps .card-grid {
  gap: clamp(16px, 2vw, 24px);
}

.home-steps .card {
  padding: clamp(18px, 2vw, 24px);
}

.home-steps .card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(28px, 2.4vw, 36px);
}

/* Home color correction: warm light background, high contrast text */
body.page-home {
  color: #2a2119;
  background:
    radial-gradient(circle at 10% 10%, rgba(198, 156, 108, 0.18), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(170, 133, 92, 0.14), transparent 34%),
    linear-gradient(165deg, #f5ede1 0%, #eee3d3 46%, #e7dac7 100%);
}

body.page-home .home-intro {
  background: transparent;
}

body.page-home .home-intro h2 {
  color: #2a2119;
  text-shadow: none;
}

body.page-home .home-intro p {
  color: #58473a;
  text-shadow: none;
}

body.page-home .home-intro h3 {
  color: #a06f3e;
}

body.page-home .home-signature .grid-2 > div {
  background: linear-gradient(165deg, rgba(38, 30, 24, 0.92), rgba(29, 23, 18, 0.9));
  border-color: rgba(192, 149, 95, 0.26);
}

body.page-home .home-signature .grid-2 h2 {
  color: #f3e5d0;
}

body.page-home .home-signature .grid-2 p {
  color: #dbc7ae;
}

body.page-home .home-steps .container > h2 {
  color: #2a2119;
  text-shadow: none;
}

body.page-home .home-steps .card {
  background: linear-gradient(175deg, rgba(255, 248, 239, 0.92) 0%, rgba(250, 241, 229, 0.86) 100%) !important;
  border-color: rgba(187, 145, 98, 0.34) !important;
  box-shadow: 0 14px 26px rgba(74, 52, 29, 0.12) !important;
}

body.page-home .home-steps .card h3 {
  color: #31251c !important;
}

body.page-home .home-steps .card p {
  color: #5b493b !important;
}

@media (max-width: 1200px) {
  :root {
    --section-padding: 70px;
  }

  .hero {
    min-height: 72vh;
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .around-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-columns-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  body.page-event .eventx-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --section-padding: 62px;
  }

  body {
    font-size: 17px;
  }

  body.page-contact .contact-hero {
    background-position: center 18%;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    min-width: 0;
    max-width: calc(100% - 120px);
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 10px;
    right: 10px;
    background: rgba(14, 14, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    padding: 10px;
    gap: 6px;
    max-height: min(78vh, 560px);
    overflow-y: auto;
  }

  .nav.open {
    display: flex;
  }

  .nav > a,
  .nav-dropdown > a {
    width: 100%;
    border-radius: 8px;
  }

  .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown > a::after {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    display: flex;
    border: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    padding: 2px 0 0 10px;
  }

  .grid-2,
  .card-grid,
  .menu-columns-2,
  .menu-columns-3 {
    grid-template-columns: 1fr;
  }

  .eventx-intro-grid,
  .eventx-cards,
  .eventx-past-grid,
  .eventx-list,
  .eventx-card {
    grid-template-columns: 1fr;
  }

  body.page-home .section .container {
    padding: 22px;
  }

  .around-grid-2,
  .around-grid-3,
  .around-grid-4 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .eventx-pillrow span {
    width: auto;
    text-align: center;
  }

  .eventx-intro-card h2,
  .eventx-intro-card p,
  .eventx-card-body h3,
  .eventx-card-body p {
    text-align: center;
  }

  .eventx-actions .drinks-tab,
  .eventx-card img,
  .eventx-intro-visual img {
    width: 100%;
    text-align: center;
  }

  .eventx-card img {
    max-width: min(320px, 100%);
    max-height: min(52vh, 400px);
    margin-inline: auto;
  }

  .eventx-past-grid {
    max-width: min(520px, 100%);
  }

  .eventx-service-panel,
  .drinks-section .menu-card,
  .menu-card,
  .card,
  .contact-panel {
    padding: clamp(18px, 4vw, 26px);
  }

  .eventx-card {
    gap: 14px;
  }

  .contact-map iframe,
  .around-map iframe,
  #carte-mont-noir {
    height: min(50vh, 380px);
  }

  .hero-subtitle {
    max-width: min(92vw, 760px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 54px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), 94%);
  }

  .header-inner {
    min-height: 66px;
  }

  .nav {
    top: 66px;
    left: 8px;
    right: 8px;
  }

  .hero {
    min-height: 62vh;
  }

  .hero-title {
    font-size: clamp(34px, 9.5vw, 62px);
  }

  body.page-home .hero .hero-title {
    font-size: clamp(30px, 7.6vw, 54px);
  }

  .hero-subtitle {
    font-size: clamp(14px, 3.8vw, 18px);
    margin-bottom: 18px;
  }

  .btn {
    width: min(100%, 320px);
    text-align: center;
  }

  .section h2 {
    font-size: clamp(28px, 7.8vw, 42px);
  }

  .section h3 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .drinks-tabs,
  .eventx-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .drinks-tab {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body.page-event .eventx-hero {
    min-height: clamp(260px, 50vh, 620px);
  }

  .eventx-hero .hero-title.eventx-title {
    font-size: clamp(30px, 8vw, 72px);
  }

  .eventx-intro-visual img {
    max-height: min(44vh, 360px);
    aspect-ratio: 4 / 3;
  }

  .eventx-card img {
    aspect-ratio: 247 / 342;
    width: min(100%, 300px);
    max-height: min(46vh, 340px);
    height: auto;
    margin-inline: auto;
  }

  .eventx-past-card img {
    aspect-ratio: 247 / 342;
    width: min(100%, 260px);
    max-height: min(42vh, 320px);
    height: auto;
    margin-inline: auto;
  }

  body.page-home .section-parallax {
    min-height: clamp(300px, 52vh, 420px);
  }

  body.page-home .section-parallax h2 {
    white-space: normal;
    font-size: clamp(22px, 8.2vw, 34px);
    line-height: 1.25;
  }
}

@media (max-width: 560px) {
  :root {
    --section-padding: 46px;
  }

  .container {
    width: min(var(--container), 95%);
  }

  .logo-wordmark {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    letter-spacing: 0.07em;
  }

  .logo-tagline {
    font-size: clamp(0.82rem, 3.6vw, 1.05rem);
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 56vh;
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 48px);
  }

  body.page-home .hero .hero-title {
    font-size: clamp(26px, 8.5vw, 42px);
  }

  .hero-subtitle {
    font-size: clamp(13px, 3.8vw, 16px);
    letter-spacing: 0.01em;
  }

  .menu-section-title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .contact-map iframe,
  .around-map iframe,
  #carte-mont-noir {
    height: min(44vh, 320px);
  }

  .eventx-pillrow span {
    font-size: 0.84rem;
  }

  body.page-event .eventx-hero {
    min-height: clamp(240px, 48vh, 520px);
  }

  .eventx-hero .hero-title.eventx-title {
    font-size: clamp(26px, 9vw, 56px);
  }

  .eventx-subtitle {
    margin-bottom: 16px;
  }

  .menu-ambience-visual {
    min-height: clamp(110px, 34vw, 200px);
  }
}

/* Boissons / desserts : bandeau photo + cartes moins “cadre” */
.menu-ambience-visual {
  margin: 0 0 clamp(16px, 2.6vw, 26px);
  padding: 0;
  border: none;
  border-radius: clamp(14px, 2.2vw, 22px);
  min-height: clamp(140px, 26vw, 280px);
  background-color: #14110f;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

body.page-drinks .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.78) 0%,
      rgba(8, 6, 5, 0.42) 45%,
      rgba(8, 6, 5, 0.12) 100%
    ),
    url("images/boissons-aperitifs.jpg");
  background-position: center 42%;
}

body.page-drinks.page-vins .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.78) 0%,
      rgba(8, 6, 5, 0.42) 45%,
      rgba(8, 6, 5, 0.12) 100%
    ),
    url("images/boissons-vins.jpg");
}

body.page-drinks.page-bieres .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.78) 0%,
      rgba(8, 6, 5, 0.42) 45%,
      rgba(8, 6, 5, 0.12) 100%
    ),
    url("images/boissons-bieres.jpg");
}

body.page-drinks.page-chaudes .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.78) 0%,
      rgba(8, 6, 5, 0.42) 45%,
      rgba(8, 6, 5, 0.12) 100%
    ),
    url("images/boissons-chaudes.jpg");
}

body.page-drinks.page-softs .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.78) 0%,
      rgba(8, 6, 5, 0.42) 45%,
      rgba(8, 6, 5, 0.12) 100%
    ),
    url("images/boissons-softs.jpg");
}

body.page-drinks.page-digestifs .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.78) 0%,
      rgba(8, 6, 5, 0.42) 45%,
      rgba(8, 6, 5, 0.12) 100%
    ),
    url("images/boissons-digestifs-shot.jpg");
}

body.page-desserts .menu-ambience-visual {
  background-image:
    linear-gradient(
      90deg,
      rgba(12, 10, 9, 0.52) 0%,
      rgba(12, 10, 8, 0.1) 48%,
      rgba(12, 10, 8, 0.03) 100%
    ),
    url("images/menu-ambiance-desserts.png");
  background-position: center 28%;
}

body.page-drinks .drinks-wrap .menu-card,
body.page-desserts .drinks-wrap .menu-card {
  background: linear-gradient(165deg, rgba(26, 21, 18, 0.58), rgba(18, 15, 13, 0.4)) !important;
  border: 1px solid rgba(210, 175, 128, 0.1) !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 236, 210, 0.04) !important;
  backdrop-filter: blur(12px);
}

body.page-drinks .drinks-wrap .menu-section-title,
body.page-desserts .drinks-wrap .menu-section-title {
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Menu plats : même logique que boissons/desserts (bandeau photo, cartes plus légères) */
body.page-menu .menu-ambience-visual {
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.76) 0%,
      rgba(8, 6, 5, 0.42) 48%,
      rgba(8, 6, 5, 0.14) 100%
    ),
    url("images/menus-fond-ambiance.jpeg");
  background-position: center 40%;
}

body.page-menu .menu-wrap .menu-card {
  background: linear-gradient(165deg, rgba(26, 21, 18, 0.58), rgba(18, 15, 13, 0.4)) !important;
  border: 1px solid rgba(210, 175, 128, 0.1) !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 236, 210, 0.04) !important;
  backdrop-filter: blur(12px);
}

body.page-menu .menu-wrap .menu-section-title {
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* --- Animations supplementaires (stagger au scroll, images, liens) --- */

.reveal.home-intro .container > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.home-intro .container > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.home-intro .container > *:nth-child(1) {
  transition-delay: 0.06s;
}

.reveal.is-visible.home-intro .container > *:nth-child(2) {
  transition-delay: 0.14s;
}

.reveal.is-visible.home-intro .container > *:nth-child(3) {
  transition-delay: 0.22s;
}

.reveal.home-signature .grid-2 > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.home-signature .grid-2 > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.home-signature .grid-2 > *:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal.is-visible.home-signature .grid-2 > *:nth-child(2) {
  transition-delay: 0.18s;
}

.reveal.home-steps .card-grid > .card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.home-steps .card-grid > .card {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.home-steps .card-grid > .card:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal.is-visible.home-steps .card-grid > .card:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal.is-visible.home-steps .card-grid > .card:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal.contact-grid > .contact-panel {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.contact-grid > .contact-panel {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.contact-grid > .contact-panel:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal.is-visible.contact-grid > .contact-panel:nth-child(2) {
  transition-delay: 0.18s;
}

.reveal.around-intro > .around-title,
.reveal.around-intro > p {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.around-intro > .around-title,
.reveal.is-visible.around-intro > p {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.around-intro > .around-title {
  transition-delay: 0.06s;
}

.reveal.is-visible.around-intro > p {
  transition-delay: 0.14s;
}

.reveal.around-section > .around-title {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.around-section > .around-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.reveal.around-section .around-grid-2 > .around-card,
.reveal.around-section .around-grid-3 > .around-card,
.reveal.around-section .around-grid-4 > .around-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.around-section .around-grid-2 > .around-card,
.reveal.is-visible.around-section .around-grid-3 > .around-card,
.reveal.is-visible.around-section .around-grid-4 > .around-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible.around-section .around-grid-2 > .around-card:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal.is-visible.around-section .around-grid-2 > .around-card:nth-child(2) {
  transition-delay: 0.16s;
}

.reveal.is-visible.around-section .around-grid-3 > .around-card:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal.is-visible.around-section .around-grid-3 > .around-card:nth-child(2) {
  transition-delay: 0.14s;
}

.reveal.is-visible.around-section .around-grid-3 > .around-card:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal.is-visible.around-section .around-grid-4 > .around-card:nth-child(1) {
  transition-delay: 0.06s;
}

.reveal.is-visible.around-section .around-grid-4 > .around-card:nth-child(2) {
  transition-delay: 0.11s;
}

.reveal.is-visible.around-section .around-grid-4 > .around-card:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal.is-visible.around-section .around-grid-4 > .around-card:nth-child(4) {
  transition-delay: 0.21s;
}

.reveal.around-section > .around-end {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.around-section > .around-end {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.reveal.around-section > .around-map {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible.around-section > .around-map {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.card img,
.menu-card img,
.around-card img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover img,
.menu-card:hover img,
.around-card:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .reveal.home-intro .container > *,
  .reveal.home-signature .grid-2 > *,
  .reveal.home-steps .card-grid > .card,
  .reveal.contact-grid > .contact-panel,
  .reveal.around-intro > .around-title,
  .reveal.around-intro > p,
  .reveal.around-section > .around-title,
  .reveal.around-section .around-grid-2 > .around-card,
  .reveal.around-section .around-grid-3 > .around-card,
  .reveal.around-section .around-grid-4 > .around-card,
  .reveal.around-section > .around-end,
  .reveal.around-section > .around-map {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .card img,
  .menu-card img,
  .around-card img {
    transition: none !important;
  }

  .card:hover img,
  .menu-card:hover img,
  .around-card:hover img,
  .grid-2 > div:hover img {
    transform: none !important;
  }

  .grid-2 img {
    transition: none !important;
  }

  .menu-toggle:hover,
  .menu-toggle:active,
  .drinks-tab:hover,
  .drinks-tab:active,
  .footer-col a:hover {
    transform: none !important;
  }

  .eventx-link::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}
