/* Header */
.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem var(--space-md);
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--rule), 0 4px 14px -10px rgba(20, 20, 15, 0.25);
}

.site-header__burger {
  justify-self: start;
  flex: none;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  margin: 0;
  width: 28px;
  min-width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.site-header__burger-bar {
  display: block;
  flex: none;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.site-header__burger:hover .site-header__burger-bar { opacity: 0.6; }
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-header__logo-link { justify-self: center; display: block; min-width: 0; max-width: 100%; }
.site-header__logo { max-height: 36px; width: auto; max-width: 100%; object-fit: contain; }
@media (min-width: 480px) { .site-header__logo { max-height: 44px; } }
@media (min-width: 768px) { .site-header__logo { max-height: 60px; } }
.site-header__logo-link--text {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
@media (min-width: 480px) { .site-header__logo-link--text { font-size: 1.25rem; } }
@media (min-width: 768px) { .site-header__logo-link--text { font-size: 1.5rem; } }

.site-header__lang { justify-self: end; }
.site-header__lang {
  display: inline-flex;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--color-primary);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.lang-btn[aria-pressed="true"] { background: var(--color-primary); color: var(--color-bg); }
.lang-btn:not([aria-pressed="true"]):hover { background: color-mix(in srgb, var(--color-primary) 10%, transparent); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 10, 8, 0.55);
}
.nav-overlay[hidden] { display: none; }

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 88vw);
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-md);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s;
}
.nav-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.nav-panel__title {
  font-family: var(--font-title-default);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-panel__logo {
  height: 36px;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  padding: 0.4rem 0.7rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  box-sizing: content-box;
}
.nav-panel__close {
  flex: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--color-bg) 15%, transparent);
  color: var(--color-bg);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.nav-panel__close:hover { background: color-mix(in srgb, var(--color-bg) 26%, transparent); }
.nav-panel__list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-panel__list li { border-bottom: 1px solid color-mix(in srgb, var(--color-bg) 20%, transparent); }
.nav-panel__list li:first-child { border-top: 1px solid color-mix(in srgb, var(--color-bg) 20%, transparent); }
.nav-panel__list a,
.nav-panel__item--soon {
  font-family: var(--font-title-default);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.1rem;
  color: var(--color-bg);
}
.nav-panel__list a { text-decoration: none; transition: color var(--duration) var(--ease), padding-left var(--duration) var(--ease); }
.nav-panel__list a::after {
  content: '→';
  opacity: 0;
  font-size: 1rem;
  transform: translateX(-6px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.nav-panel__list a:hover,
.nav-panel__list a:focus-visible {
  padding-left: 0.5rem;
}
.nav-panel__list a:hover::after,
.nav-panel__list a:focus-visible::after { opacity: 1; transform: translateX(0); }
.nav-panel__list a[aria-current="page"] { font-weight: 700; }
.nav-panel__list a[aria-current="page"]::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  margin-right: 0.6rem;
}
.nav-panel__item--soon {
  color: color-mix(in srgb, var(--color-bg) 55%, transparent);
  font-style: italic;
}
.nav-panel > .social-links { justify-content: center; margin-top: auto; padding-top: var(--space-md); }
.nav-panel .social-links__item { border-color: var(--color-bg); }
.nav-panel .social-links__item::before { background: var(--color-bg); }
.nav-panel .social-links__item:hover { background: color-mix(in srgb, var(--color-bg) 15%, transparent); }
body.nav-open { overflow: hidden; }

.social-links { display: flex; gap: var(--space-2xs); }
.social-links__item {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.social-links__item:hover { background: color-mix(in srgb, var(--color-primary) 10%, transparent); transform: translateY(-1px); }
.social-links__item::before {
  content: '';
  width: 13px;
  height: 13px;
  background: var(--color-primary);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.social-links__item[href*="instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.2.06 2 .25 2.4.42.6.24 1 .53 1.5 1 .4.4.7.9 1 1.5.17.4.36 1.2.42 2.4.06 1.3.07 1.7.07 4.9s0 3.6-.07 4.9c-.06 1.2-.25 2-.42 2.4a4 4 0 0 1-1 1.5c-.4.4-.9.7-1.5 1-.4.17-1.2.36-2.4.42-1.3.06-1.7.07-4.9.07s-3.6 0-4.9-.07c-1.2-.06-2-.25-2.4-.42a4 4 0 0 1-1.5-1 4 4 0 0 1-1-1.5c-.17-.4-.36-1.2-.42-2.4C2.2 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.06-1.2.25-2 .42-2.4.24-.6.53-1 1-1.5.4-.4.9-.7 1.5-1 .4-.17 1.2-.36 2.4-.42C8.4 2.2 8.8 2.2 12 2.2zm0 1.8c-3.15 0-3.52 0-4.76.07-1.03.05-1.6.22-1.97.36-.5.2-.85.42-1.22.79-.37.37-.6.72-.79 1.22-.14.37-.31.94-.36 1.97C2.8 8.48 2.8 8.85 2.8 12s0 3.52.07 4.76c.05 1.03.22 1.6.36 1.97.2.5.42.85.79 1.22.37.37.72.6 1.22.79.37.14.94.31 1.97.36 1.24.07 1.6.07 4.76.07s3.52 0 4.76-.07c1.03-.05 1.6-.22 1.97-.36.5-.2.85-.42 1.22-.79.37-.37.6-.72.79-1.22.14-.37.31-.94.36-1.97.07-1.24.07-1.6.07-4.76s0-3.52-.07-4.76c-.05-1.03-.22-1.6-.36-1.97a3.2 3.2 0 0 0-.79-1.22 3.2 3.2 0 0 0-1.22-.79c-.37-.14-.94-.31-1.97-.36C15.52 4 15.15 4 12 4zm0 3.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9zm0 1.8a2.7 2.7 0 1 0 0 5.4 2.7 2.7 0 0 0 0-5.4zm5.7-2a1.05 1.05 0 1 1-2.1 0 1.05 1.05 0 0 1 2.1 0z'/%3E%3C/svg%3E");
}
.social-links__item[href*="tiktok"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.6 2h-3.2v13.3a2.9 2.9 0 1 1-2.06-2.78V9.2a6 6 0 1 0 5.26 5.95V8.9a7.7 7.7 0 0 0 4.4 1.38V7.06a4.4 4.4 0 0 1-4.4-4.4V2z'/%3E%3C/svg%3E");
}
.social-links__item .sr-only { position: absolute; }
.social-links__item--text {
  width: auto;
  height: 32px;
  padding: 0 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}
.social-links__item--text::before { content: none; }

/* Hero */
.hero { position: relative; padding: 0; height: 82vh; min-height: 480px; max-height: 860px; overflow: hidden; background: var(--color-primary); }
@media (max-width: 767px) { .hero { height: 68vh; min-height: 420px; } }
/* Desktop: always fills the full width and scales height to match (never
   pillarboxed left/right); anchored to the bottom of the hero, so any
   excess is a clean color band at the top rather than split top/bottom. */
.hero__media { position: absolute; left: 0; bottom: 0; width: 100%; height: auto; }
/* Mobile: the hero box is much taller relative to its width than the
   source image, so width-locked auto-height would leave a large empty
   color band at the top with text straddling the seam. Fill the box
   completely instead, cropping from the top if needed - the bottom
   (terrace, entrance) always stays fully visible. */
@media (max-width: 767px) {
  .hero__media { top: 0; height: 100%; object-fit: cover; object-position: center bottom; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.52) 100%);
  pointer-events: none;
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-md);
}
.hero__headline {
  color: #fff;
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 1.1rem + 2.8vw, 3rem);
  line-height: 1.2;
  margin: 0;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.6);
}
.hero__tagline {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  line-height: 1.4;
  margin: 0;
  max-width: 32ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero__text {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.92rem, 0.85rem + 0.3vw, 1.02rem);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
  opacity: 0.92;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero__cta { white-space: nowrap; box-shadow: var(--shadow-md); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.85rem;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-title-default);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.btn--primary { background: var(--color-primary); color: var(--color-bg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: var(--color-bg); transform: translateY(-2px); }

/* Eyebrow / section label */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin: 0 0 var(--space-xs);
}

/* Info + Menu */
.info-menu { max-width: var(--content-width); margin: 0 auto; }
.info-menu__grid { display: grid; gap: var(--space-md); }
@media (min-width: 900px) {
  .info-menu__grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; gap: var(--space-xl); }
  .info-menu__grid--single { grid-template-columns: 1fr; max-width: 68ch; }
}
.info-menu__title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  margin-bottom: var(--space-sm);
}
.info-menu__block { margin-bottom: var(--space-md); }
.info-menu__block-heading {
  font-size: 1.02rem;
  margin-bottom: 0.35em;
}
.info-menu__paragraph {
  margin: 0 0 var(--space-md);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 58ch;
  color: var(--color-text);
  white-space: pre-line;
}

.info-menu__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rule);
}
@media (min-width: 700px) {
  .info-menu__meta { grid-template-columns: repeat(3, 1fr); }
}
.info-menu__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-menu__meta-item .icon { margin-top: 0.15rem; }
.info-menu__hours-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.info-menu__meta-item a {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.icon {
  display: inline-block;
  flex: none;
  width: 15px;
  height: 15px;
  margin-right: 0.55rem;
  background-color: var(--color-primary);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.icon--clock { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm.75-13a.75.75 0 00-1.5 0v5c0 .199.079.39.22.53l3 3a.75.75 0 101.06-1.06l-2.78-2.78V5z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.icon--pin { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M9.69 18.933l.003.001C9.89 19.02 10 19 10 19s.11.02.308-.066l.002-.001.006-.003.018-.008a5.741 5.741 0 00.281-.14 12.5 12.5 0 001.038-.65c.62-.417 1.445-1.05 2.274-1.918C15.302 14.7 17 12.05 17 8.5A7 7 0 103 8.5c0 3.55 1.698 6.2 3.355 7.914a13.7 13.7 0 002.273 1.918 11.844 11.844 0 00.976.65l.062.03.018.008.006.003zM10 11a2.5 2.5 0 100-5 2.5 2.5 0 000 5z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.icon--phone { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M2 3.5A1.5 1.5 0 013.5 2h1.148a1.5 1.5 0 011.465 1.175l.716 3.223a1.5 1.5 0 01-1.052 1.767l-.933.267c-.41.117-.643.555-.48.95a11.542 11.542 0 006.254 6.254c.395.163.833-.07.95-.48l.267-.933a1.5 1.5 0 011.767-1.052l3.223.716A1.5 1.5 0 0118 15.352V16.5a1.5 1.5 0 01-1.5 1.5h-1c-9.665 0-13-7.335-13-13v-1z'/%3E%3C/svg%3E"); }
.icon--dish { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 2a6 6 0 00-6 6v.5a1 1 0 001 1h10a1 1 0 001-1V8a6 6 0 00-6-6zM3 11.5a1 1 0 011-1h12a1 1 0 011 1c0 .8-.485 1.487-1.176 1.782A3.5 3.5 0 0113 17H7a3.5 3.5 0 01-2.824-3.718A2 2 0 013 11.5z'/%3E%3C/svg%3E"); }
.icon--document { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M4.5 2A1.5 1.5 0 003 3.5v13A1.5 1.5 0 004.5 18h11a1.5 1.5 0 001.5-1.5V7.621a1.5 1.5 0 00-.44-1.06l-4.12-4.122A1.5 1.5 0 0011.378 2H4.5zm4.75 6.75a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5h-5.5zm0 3a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5h-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.icon--pdf-download { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 3a1 1 0 011 1v7.586l2.293-2.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 11.586V4a1 1 0 011-1zM4 15a1 1 0 100 2h12a1 1 0 100-2H4z'/%3E%3C/svg%3E"); }
.icon--route { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M5.5 3a2.5 2.5 0 00-.5 4.95V11a3 3 0 003 3h4.05a2.5 2.5 0 100-1.5H8a1.5 1.5 0 01-1.5-1.5V7.95A2.5 2.5 0 005.5 3z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.icon--expand { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z' clip-rule='evenodd'/%3E%3C/svg%3E"); }

.menu-block__heading {
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  margin-bottom: var(--space-2xs);
  position: relative;
  padding-bottom: 0.6rem;
}
.menu-block__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--color-primary);
}

.menu-block__tabs { display: flex; gap: var(--space-2xs); flex-wrap: wrap; margin: var(--space-sm) 0; }
.menu-cat-btn {
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-primary);
  padding: 0.45rem 1.15rem;
  font-family: var(--font-title-default);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.menu-cat-btn[aria-pressed="true"] { background: var(--color-primary); color: var(--color-bg); box-shadow: var(--shadow-sm); }
.menu-cat-btn:not([aria-pressed="true"]):hover { background: color-mix(in srgb, var(--color-primary) 8%, transparent); }

.menu-visual[hidden] { display: none; }

.menu-pdf-preview {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: color-mix(in srgb, var(--color-primary) 4%, var(--color-bg));
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xs);
  cursor: pointer;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.menu-pdf-preview:hover { box-shadow: var(--shadow-md), 0 0 0 2px var(--color-primary); transform: translateY(-2px); }
.menu-pdf-preview__canvas { width: 100%; height: 100%; object-fit: contain; }
.menu-pdf-preview__caption {
  font-size: 0.78rem;
  font-style: italic;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  margin: 0 0 var(--space-sm);
  max-width: 340px;
}
.menu-pdf-preview__actions { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }

.menu-pdf-soon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1.5px dashed var(--rule);
  border-radius: var(--radius-md);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  font-family: var(--font-title-default);
  font-style: italic;
}
.menu-pdf-soon .icon { background-color: color-mix(in srgb, var(--color-text) 45%, transparent); margin: 0; }

/* Coclico bespoke offers (documents + text, mirrored layout) */
.coclico-offers { max-width: var(--content-width); margin: 0 auto; }
.coclico-offers__grid { display: grid; gap: var(--space-xl); }
@media (min-width: 900px) {
  .coclico-offers__grid { grid-template-columns: 0.7fr 1.3fr; align-items: start; }
}

.coclico-offers__docs { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 260px; }
.coclico-doc-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  aspect-ratio: 3 / 4;
}
.coclico-doc-card img { width: 100%; height: 100%; object-fit: cover; }
.coclico-doc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.68) 100%);
}
.coclico-doc-card__label {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-sm);
  z-index: 1;
  color: #fff;
  font-family: var(--font-title-default);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.coclico-doc-card__icon {
  position: absolute;
  right: var(--space-sm);
  bottom: var(--space-sm);
  z-index: 1;
  width: 22px;
  height: 22px;
  background-color: #fff;
}
.coclico-doc-card--soon { cursor: default; }
.coclico-doc-card--soon img { filter: grayscale(0.5) brightness(0.7); }
.coclico-doc-card__soon {
  position: absolute;
  right: var(--space-sm);
  bottom: var(--space-sm);
  z-index: 1;
  color: #fff;
  font-size: 0.72rem;
  font-style: italic;
  opacity: 0.9;
}

.coclico-offers__heading { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); margin-bottom: var(--space-sm); }
.coclico-offers__text { white-space: pre-line; font-size: 1.02rem; line-height: 1.7; }
.coclico-offers__buttons { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-md); }
.btn--disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* Offers / Gallery */
.secondary-offers {
  padding: 0;
  background: color-mix(in srgb, var(--color-primary) 7%, var(--color-bg));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.secondary-offers__inner {
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
}
@media (min-width: 768px) { .secondary-offers__inner { padding: var(--space-xl) var(--space-md); } }
.secondary-offers__icon {
  width: 30px;
  height: 30px;
  margin: 0 auto var(--space-sm);
  background-color: var(--color-primary);
}
.secondary-offers__text {
  max-width: 620px;
  margin: 0 auto var(--space-md);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.4;
}

.secondary-gallery {
  padding: 0;
  background: color-mix(in srgb, var(--color-primary) 7%, var(--color-bg));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.secondary-gallery__inner { padding: var(--space-lg) var(--space-sm); }
@media (min-width: 768px) { .secondary-gallery__inner { padding: var(--space-xl) var(--space-md); } }
.secondary-gallery__heading {
  text-align: center;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  margin: 0 0 var(--space-2xs);
}
.secondary-gallery__subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 var(--space-sm);
}
.secondary-gallery__intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}
.secondary-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
  max-width: var(--content-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .secondary-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
}
.secondary-gallery__item-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.secondary-gallery__item-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.secondary-gallery__item {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 350ms var(--ease);
  display: block;
}
@media (min-width: 768px) {
  .secondary-gallery__item { height: 380px; }
}
.secondary-gallery__item-btn:hover .secondary-gallery__item,
.secondary-gallery__item-btn:focus-visible .secondary-gallery__item { transform: scale(1.05); }
.secondary-gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 15, 0.35);
  opacity: 0;
  transition: opacity 250ms var(--ease);
}
.secondary-gallery__zoom .icon {
  width: 26px;
  height: 26px;
  margin: 0;
  background-color: #fff;
}
.secondary-gallery__item-btn:hover .secondary-gallery__zoom,
.secondary-gallery__item-btn:focus-visible .secondary-gallery__zoom { opacity: 1; }

/* Lightbox (click-to-enlarge popup for gallery photos) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.88);
}
.lightbox__dialog {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
}
.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.24); }
@media (max-width: 480px) {
  .lightbox__close { top: -3rem; right: 0; }
}

/* Location (map + address/hours/phone) - light, matches the client mockups (only the footer is dark) */
.location-section { background: var(--color-bg); color: var(--color-text); }
.location-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .location-section__inner { padding: 0 var(--space-md); grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-xl); }
}

.location__map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--rule); box-shadow: var(--shadow-sm); }
.location__embed { width: 100%; height: 340px; border: 0; }

.location__heading {
  color: var(--color-text);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.location__rows { display: flex; flex-direction: column; }
.location__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem var(--space-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.location__label {
  flex: 0 0 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.location__value { color: var(--color-text); font-size: 0.98rem; }
.location__value a { text-decoration: underline; text-underline-offset: 3px; }

.location__actions { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin: var(--space-md) 0 var(--space-sm); }
.location-section .icon--route { background-color: currentColor; margin-right: 0.5rem; }

.location__links { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md); margin-bottom: var(--space-sm); }
.location__link {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
  transition: opacity var(--duration) var(--ease);
}
.location__link:hover { opacity: 1; }

/* Groupes & Privatisation */
.groupes { max-width: var(--content-width); margin: 0 auto; }
.groupes__inner { max-width: 68ch; }
.groupes__title {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem);
  margin-bottom: var(--space-md);
}
.groupes__heading {
  font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.7rem);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}
.groupes__heading:first-of-type { margin-top: 0; }
.groupes__subheading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}
.groupes__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  white-space: pre-line;
  margin: 0 0 var(--space-sm);
  max-width: 58ch;
}
.groupes__cta { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-md); }

/* Holding */
.holding-intro { text-align: center; }
.holding-intro__text {
  max-width: 60ch;
  margin: 0 auto;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5;
}

.holding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: var(--space-lg) var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}
/* With exactly 3 restaurants (fixed by the holding's structure), the 3rd
   always lands alone on row 2 on the 2-column mobile layout - center it
   instead of letting it default to column 1. */
.holding-grid__item:nth-child(3) { grid-column: 1 / 3; }
@media (min-width: 768px) {
  .holding-grid { grid-template-columns: repeat(3, 1fr); max-width: var(--content-width); }
  .holding-grid__item:nth-child(3) { grid-column: auto; }
}

.holding-grid__divider {
  max-width: 500px;
  margin: var(--space-xl) auto var(--space-lg);
  border: none;
  border-top: 1px solid var(--rule);
}
@media (min-width: 768px) { .holding-grid__divider { max-width: var(--content-width); } }
.holding-grid__group-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}
.holding-grid--single { grid-template-columns: 1fr; max-width: 260px; }

.holding-grid__item {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: color-mix(in srgb, var(--color-primary) 12%, transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration) var(--ease), filter var(--duration) var(--ease);
}
@media (min-width: 768px) {
  .holding-grid__item { max-width: 260px; }
}
.holding-grid__item:not(.holding-grid__item--soon):hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-md), 0 0 0 3px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.holding-grid__item:not(.holding-grid__item--soon)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.58) 100%);
}
.holding-grid__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 1.5rem;
  text-align: center;
}
.holding-grid__item--soon {
  border: 1.5px dashed var(--rule);
  background-color: transparent;
  align-items: center;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  font-family: var(--font-title-default);
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: var(--space-sm);
}

@media (prefers-reduced-motion: no-preference) {
  .holding-grid__item { animation: holding-bubble-float 6s ease-in-out infinite; }
  .holding-grid__item:nth-child(1) { animation-delay: 0s; }
  .holding-grid__item:nth-child(2) { animation-delay: 1.4s; }
  .holding-grid__item:nth-child(3) { animation-delay: 2.8s; }
  .holding-grid__item:nth-child(4) { animation-delay: 0.7s; }
}
@keyframes holding-bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Footer */
.site-footer { background: var(--color-primary); color: var(--color-bg); padding: var(--space-xl) 0 var(--space-lg); }
.site-footer__inner { max-width: var(--content-width); margin: 0 auto; padding: 0 var(--space-sm); }
@media (min-width: 768px) { .site-footer__inner { padding: 0 var(--space-md); } }
.site-footer a { color: var(--color-bg); text-decoration: none; }

.site-footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__grid { flex-direction: row; justify-content: center; align-items: flex-start; gap: var(--space-xl); }
}

.site-footer__brand-name {
  font-family: var(--font-title-default);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 var(--space-sm);
}
.site-footer__brand-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin: 0 auto var(--space-sm);
  padding: 0.5rem 0.9rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  box-sizing: content-box;
}
@media (min-width: 768px) { .site-footer__brand-logo { margin-left: 0; } }
.site-footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.9;
  opacity: 0.85;
}
.site-footer__address a { text-decoration: underline; text-underline-offset: 3px; }

.site-footer__col-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
  margin: 0 0 var(--space-sm);
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title-default);
  font-weight: 500;
  font-size: 0.98rem;
}
.site-footer__col a { border-bottom: 1px solid transparent; transition: border-color var(--duration) var(--ease); }
.site-footer__col a:hover { border-color: currentColor; }

.site-footer .social-links { justify-content: center; }
.site-footer .social-links__item { border-color: var(--color-bg); }
.site-footer .social-links__item::before { background: var(--color-bg); }
.site-footer .social-links__item:hover { background: color-mix(in srgb, var(--color-bg) 15%, transparent); }

.site-footer__bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-bg) 20%, transparent);
  padding-top: var(--space-md);
  text-align: center;
}
.site-footer__credit,
.site-footer__made-by {
  font-size: 0.76rem;
  opacity: 0.6;
  margin: 0;
}
.site-footer__made-by { margin-top: 0.35rem; opacity: 0.45; }
.site-footer__credit a,
.site-footer__made-by a { text-decoration: underline; text-underline-offset: 2px; opacity: 0.85; }
.site-footer__credit a:hover,
.site-footer__made-by a:hover { opacity: 1; }

/* Legal notice page */
.legal-page { padding: var(--space-xl) var(--space-sm); }
.legal-page__inner { max-width: 70ch; margin: 0 auto; }
.legal-page__title { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); margin-bottom: var(--space-md); }
.legal-page__text { white-space: pre-line; line-height: 1.8; color: var(--color-text); }

/* Mobile-only: center page content (text blocks, headings, actions).
   Desktop keeps its editorial left-aligned columns. */
@media (max-width: 767px) {
  .info-menu__text,
  .menu-block,
  .groupes__inner {
    text-align: center;
  }
  .info-menu__paragraph,
  .groupes__text {
    margin-left: auto;
    margin-right: auto;
  }
  .menu-block__heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-block__tabs {
    justify-content: center;
  }
  .menu-pdf-preview,
  .menu-pdf-preview__caption {
    margin-left: auto;
    margin-right: auto;
  }
  .menu-pdf-preview__actions,
  .groupes__cta {
    justify-content: center;
  }
  .menu-pdf-soon {
    flex-direction: column;
    text-align: center;
  }
  .info-menu__meta-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .location__info {
    text-align: center;
  }
  .location__actions,
  .location__links {
    justify-content: center;
  }
}
