/* Shared Concept V2 header. The landing is the single visual reference. */
.concept-v2,
.concept-v2-shell {
  padding-top: 86px;
}

.concept-header,
body > header.concept-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 220 !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
  height: 86px !important;
  min-height: 86px !important;
  padding: 0 clamp(18px, 3vw, 48px) !important;
  overflow: visible !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(24, 24, 24, .22) !important;
  background: rgba(253, 238, 222, .94) !important;
  backdrop-filter: blur(14px);
}

.concept-header .menu-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #181818;
  border-radius: 50%;
  background: transparent;
  color: #181818;
  cursor: pointer;
}

.concept-header .menu-toggle .burger-lines {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border: 0;
  border-radius: 1px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.concept-header .menu-toggle[aria-expanded="true"] {
  background: #181818;
  color: #fdeede;
}

.concept-header .concept-logo {
  grid-column: 2;
}

.concept-header .concept-logo img {
  display: block;
  width: 116px;
  height: 64px;
  object-fit: contain;
}

.concept-header .desktop-nav {
  display: none;
}

.concept-header .header-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding: 12px 17px;
  border-radius: 999px;
  background: #f08342;
  color: #181818;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.concept-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  overflow-y: auto;
  padding: 28px clamp(24px, 5vw, 80px);
  background: #181818;
  color: #fdeede;
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.77, 0, .18, 1);
}

.menu-open .concept-drawer {
  transform: none;
}

.concept-drawer .drawer-close {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  cursor: pointer;
}

.concept-drawer nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.8vh, 20px);
  min-height: calc(100% - 92px);
  padding: 42px 0 22px;
}

.concept-drawer nav a {
  color: inherit;
  font-size: clamp(1.35rem, 3.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

.drawer-language-compact {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 26px;
  display: flex;
  gap: 8px;
}

.drawer-language-compact a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(253, 238, 222, .45);
  border-radius: 50%;
  color: inherit;
  font-size: .7rem;
  text-decoration: none;
}

.drawer-language-compact a[aria-current="true"] {
  border-color: #f08342;
  background: #f08342;
  color: #181818;
}

@media (min-width: 1050px) {
  .concept-header,
  body > header.concept-header {
    grid-template-columns: auto auto 1fr auto !important;
    gap: 18px !important;
  }

  .concept-header .menu-toggle {
    grid-column: 1;
  }

  .concept-header .concept-logo {
    grid-column: 2;
    grid-row: 1;
  }

  .concept-header .desktop-nav {
    grid-column: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
  }

  .concept-header .desktop-nav a {
    color: #181818;
    font-size: .76rem;
    font-weight: 800;
    text-decoration: none;
  }

  .concept-header .header-cta {
    grid-column: 4;
  }
}

@media (max-width: 699px) {
  .concept-drawer nav {
    justify-content: flex-start;
    padding-top: 76px;
  }

  .drawer-language-compact {
    position: static;
    margin: 8px 0 30px;
  }
}

@media (max-width: 430px) {
  .concept-v2,
  .concept-v2-shell {
    padding-top: 74px;
  }

  .concept-header,
  body > header.concept-header {
    height: 74px !important;
    min-height: 74px !important;
    padding: 0 clamp(18px, 3vw, 48px) !important;
  }

  .concept-header .concept-logo img {
    width: 94px;
    height: 55px;
  }

  .concept-header .header-cta {
    padding: 11px 14px;
    font-size: .72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-drawer {
    transition: none;
  }
}

/* Mobile-only Entrecot promotion. The DOM is created only below 700px. */
body.entrecot-promo-open {
  overflow: hidden;
}

.entrecot-promo {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .82);
}

.entrecot-promo__panel {
  position: relative;
  width: min(88vw, 430px);
  max-height: calc(100svh - 36px);
}

.entrecot-promo__panel img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 36px);
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.entrecot-promo__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #181818;
  border-radius: 50%;
  background: #fdeede;
  color: #181818;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .35);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.entrecot-promo__close:focus-visible {
  outline: 3px solid #f08342;
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .entrecot-promo {
    display: none !important;
  }
}
