@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "KometBold";
  src: url("/fonts/fonnts.com-Komet_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KometMedium";
  src: url("/fonts/fonnts.com-Komet_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KometRegular";
  src: url("/fonts/fonnts.com-Komet_Regular.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.text-kommet-bold {
  font-family: "KometBold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 700 !important;
}

.text-kommet-medium {
  font-family: "KometMedium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 500 !important;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "KometMedium", sans-serif;
  background-color: #f4f4f9;
  overflow-x: hidden;
  padding-top: 60px;
}

body.is-page-location-tireuse {
  background-color: #B18FCF;
}

body.is-page-contact {
  background-color: #505050;
}

main {
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Karantina", system-ui;
  color: #000;
  margin-bottom: 20px;
}

h1, h2 {
  font-size: clamp(2.5rem, 6vw, 5.625rem) !important;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  text-align: justify;
}

@media (min-width: 768px) {
  p {
    text-align: left;
  }
}
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  z-index: 1000;
}

.site-header .logo {
  width: 61px;
  height: 30px;
}

.header-nav {
  display: none;
}

.header-menu {
  list-style: none;
}

.social {
  display: none;
  gap: 8px;
}
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
}
.social__link i {
  font-size: 16px;
  line-height: 1;
}
.social__link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.site-header__menu-label {
  display: none;
  margin-left: 8px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

@media (min-width: 1200px) {
  .site-header {
    display: flex;
    align-items: center;
    padding: 0 32px;
  }
  .site-header__left,
  .site-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .site-header__left {
    justify-content: flex-start;
  }
  .site-header__center {
    display: flex;
    justify-content: center;
  }
  .site-header__right {
    justify-content: flex-end;
  }
  .site-header .logo {
    width: 84px;
    height: 40px;
  }
  .burger {
    display: block;
  }
  .site-header__menu-label {
    display: inline-block;
  }
  .header-nav {
    display: flex;
    flex: 1;
  }
  .header-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 56px;
    width: 100%;
  }
  .header-menu li {
    list-style: none;
  }
  .header-menu li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .header-menu li a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .social {
    display: inline-flex;
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #000;
  color: #fff;
  padding-top: 70px;
  transition: left 0.3s ease;
  z-index: 999;
}
.sidebar.active {
  left: 0;
}
.sidebar ul li {
  margin: 15px 0;
}
.sidebar ul li a {
  display: block;
  padding: 12px 20px;
  color: #ccc;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.sidebar ul li a:hover {
  background: #000;
  color: #fff;
}
.sidebar .sidebar-logo {
  width: 140px;
  height: auto;
  margin: 20px auto 10px auto;
  display: block;
}
.sidebar .sidebar-menu {
  list-style: none;
  padding: 10px 0 0 0;
}
.sidebar .sidebar-menu li {
  position: relative;
  margin: 18px 0;
  padding-left: 28px;
}
.sidebar .sidebar-menu li::before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}
.sidebar .sidebar-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 22px 10px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.sidebar .sidebar-menu li a::after {
  content: "→";
  color: #fff;
}
.sidebar .sidebar-menu li a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .sidebar {
    width: 220px;
  }
}
.site-footer {
  background: #fff;
  color: #1e1e2f;
  border-top: 0;
  text-align: center;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top .colonne_1 {
  padding-inline: 36px;
}
.footer__top .colonne_3 {
  display: none;
}
.footer__top .colonne_4 {
  display: none;
}

.footer__brand {
  text-align: center;
}

.footer__logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.footer__company {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer__col {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.footer__col li {
  margin: 6px 0;
}

.footer__col a {
  color: inherit;
  text-decoration: none;
}

.footer__col a:hover {
  text-decoration: underline;
}

.footer__contact {
  text-align: center;
}

.footer__contact h3 {
  font-family: "Karantina", system-ui;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.footer__social {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer__icon {
  color: #000;
  font-size: 1.2rem;
}

.footer__legal {
  border-top: 1px solid #d9d9d9;
}

.footer__legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  margin: 0;
  font-size: 0.9rem;
}

.footer__legal-list li {
  display: block;
}

.footer__legal-list a {
  color: inherit;
  text-decoration: none;
}

.footer__legal-list a:hover {
  text-decoration: underline;
}

.footer__notice {
  border-top: 1px solid #d9d9d9;
  text-align: left;
  font-size: 0.9rem;
  padding: 14px 16px 24px;
}

@media (min-width: 992px) {
  .site-footer {
    text-align: left;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 48px 30px;
  }
  .footer__top .colonne_3 {
    display: block;
  }
  .footer__top .colonne_4 {
    display: block;
  }
  .footer__brand {
    text-align: left;
  }
  .footer__nav {
    grid-column: 2/5;
    justify-content: space-between;
  }
  .footer__contact {
    grid-column: 5;
  }
  .footer__legal-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .footer__legal-list li {
    display: inline-flex;
    align-items: center;
  }
  .footer__legal-list li + li::before {
    content: "•";
    color: #1e1e2f;
    opacity: 0.8;
    margin: 0 10px;
  }
  .footer__notice {
    text-align: center;
  }
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.mega-menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  background: transparent;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1000;
}

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

.mega-menu-left {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 54px;
  background-color: #3cc0cd;
  background-image: linear-gradient(rgba(60, 192, 205, 0.6), rgba(60, 192, 205, 0.6)), url(/images/blt-blanc.png);
  background-repeat: no-repeat;
  background-position: center;
}

.mega-close {
  position: absolute;
  top: 15px;
  left: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

body.mega-open .burger {
  display: none !important;
}

.mega-nav {
  width: min(720px, 90%);
}

.mega-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-nav li {
  margin: 0;
}

.mega-nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.mega-link {
  font-family: "Karantina", system-ui;
  display: inline-block;
  padding: 0px;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 50px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.mega-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.mega-nav a:hover::before {
  transform: scaleX(1);
}

.mega-nav a:hover .mega-link {
  color: #000;
}

.mega-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 6px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 6px;
  z-index: 0;
}

.mega-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.15) 0 8px, transparent 9px), radial-gradient(circle at 40% 90%, rgba(0, 0, 0, 0.15) 0 6px, transparent 7px), radial-gradient(circle at 70% 85%, rgba(0, 0, 0, 0.15) 0 5px, transparent 6px), radial-gradient(circle at 90% 88%, rgba(0, 0, 0, 0.15) 0 7px, transparent 8px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 0;
}

@keyframes link-bubbles-rise {
  0% {
    transform: translateY(6px);
    opacity: 0;
  }
  30% {
    transform: translateY(2px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-6px);
    opacity: 0;
  }
}
.mega-nav a:hover .mega-link::after,
.mega-nav a:focus-visible .mega-link::after {
  transform: scaleX(1);
}

.mega-nav a:hover .mega-link::before,
.mega-nav a:focus-visible .mega-link::before {
  opacity: 1;
  animation: link-bubbles-rise 0.9s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .mega-link::after {
    transition: none;
    transform: scaleX(1);
  }
  .mega-link::before {
    transition: none;
    animation: none;
    opacity: 0;
  }
}
.mega-menu-right {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  background: #3cc0cd;
}

#megaPreview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#megaPreview.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .mega-menu-overlay {
    flex-direction: column;
  }
  .mega-menu-right {
    display: none;
  }
  .mega-menu-left {
    padding: 40px 20px;
  }
  .mega-link {
    font-size: clamp(48px, 10vw, 78px);
  }
}
@media (min-width: 1200px) {
  .burger {
    display: block;
    cursor: pointer;
    z-index: 1050;
  }
  .header-nav {
    display: none !important;
  }
}
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.burger i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.agegate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.agegate-overlay.active {
  display: flex;
}

.agegate-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 720px;
  width: calc(100% - 40px);
  padding: 32px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: "Karantina", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.agegate-logo {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 12px;
  width: 50%;
  margin-inline: auto;
}

.agegate-sep {
  height: 2px;
  background: #222;
  opacity: 0.2;
  margin: 8px 24px 24px;
}

.agegate-question {
  font-weight: 700;
  font-size: 36px;
  margin: 8px 0 12px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  margin-inline: auto;
  padding: 0 6px;
  z-index: 1;
}
.agegate-question::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  bottom: 0.2em;
  width: 70%;
  height: 0.75em;
  background: #B18FCF;
  border-radius: 2px;
  z-index: -1;
  opacity: 0.9;
}

.agegate-sub {
  color: #000;
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center !important;
}

.agegate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.agegate-btn {
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px solid #919191;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
.agegate-btn:focus {
  outline: 3px solid #3cc0cd;
  outline-offset: 2px;
}

.agegate-btn--yes {
  background: #3cc0cd;
  border-color: #3cc0cd;
  color: #001b1f;
}

@media (min-width: 768px) {
  .agegate-modal {
    padding: 40px 32px;
  }
  .agegate-question {
    font-size: 40px;
  }
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 32px;
  top: 32px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  outline: 2px solid #000;
  background: #fff;
  color: #000;
  z-index: 2000;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.title-page {
  padding: 84px 20px 32px;
  background-color: transparent;
  color: #fff;
  text-align: center;
}
@media (min-width: 1200px) {
  .title-page {
    padding: 100px 30px 40px;
  }
}

.title-page__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.title-page__title {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  font-size: 28px;
  isolation: isolate;
}
@media (min-width: 1200px) {
  .title-page__title {
    font-size: 48px;
  }
}

.title-page__rect {
  position: absolute;
  z-index: -1;
  border-radius: 2px;
  width: 10rem;
  height: 2.6rem;
}
@media (min-width: 1200px) {
  .title-page__rect {
    width: 20rem;
    height: 4.6rem;
  }
}
.title-page__rect--right {
  right: -12px;
  bottom: 0.15em;
  transform: rotate(-10deg);
}
.title-page__rect--left {
  left: -14px;
  bottom: -0.1em;
  transform: rotate(7deg);
}

.title-page__subtitle {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: "KometRegular", sans-serif;
  text-align: center !important;
}
@media (min-width: 1200px) {
  .title-page__subtitle {
    font-size: 25px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.filters-modal {
  position: fixed;
  inset: 0 auto 0 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
.filters-modal.is-open {
  transform: translateX(0);
}

.filters-modal__header {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 8px;
}

.filters-modal__title {
  font-family: "Karantina", cursive;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
}

.filters-modal__close {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.filters-modal__form {
  overflow: auto;
  padding: 0 20px;
}

.filters-modal__group {
  margin: 16px 0;
}

.filters-modal__group-title {
  font-family: "Karantina", cursive;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 8px;
}

.filters-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
}

.filters-modal__list--two {
  grid-template-columns: 1fr 1fr;
}

.filters-modal__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.filters-modal__checkbox {
  width: 16px;
  height: 16px;
}

.filters-modal__actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filters-modal__reset {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  color: #000;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.15);
  font-weight: 700;
  text-decoration: none;
}
.filters-modal__reset::before {
  content: "↺";
  font-size: 14px;
  line-height: 1;
}
.filters-modal__reset:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.25);
}
.filters-modal__reset:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.filters-modal__submit {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.08);
  color: #000;
  font-weight: 700;
}

.auth-form {
  min-height: calc(100vh - 60px);
  background: #f4f4f9;
  display: grid;
  place-items: center;
  padding: 40px 16px;
}
.auth-form__card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 40px;
}
.auth-form__title {
  margin: 0 0 24px 0;
  color: #1e1e2f;
  font-size: clamp(20px, 20px + (26px - 20px) * (100vw - 320px) / (1200px - 320px), 26px);
  font-weight: 700;
  text-align: center;
}
.auth-form__notice {
  margin-bottom: 20px;
  color: #505050;
  font-size: 14px;
  text-align: center;
}
.auth-form__error {
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(220, 53, 69, 0.25);
  background: rgba(220, 53, 69, 0.08);
  color: #842029;
  border-radius: 8px;
}
.auth-form__field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.auth-form__label {
  color: #1e1e2f;
  font-weight: 600;
  font-size: 14px;
}
.auth-form__input {
  appearance: none;
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fcfcfd;
  color: #1e1e2f;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.auth-form__input::placeholder {
  color: rgba(30, 30, 47, 0.55);
}
.auth-form__input:focus {
  outline: none;
  border-color: #3cc0cd;
  box-shadow: 0 0 0 3px rgba(60, 192, 205, 0.18);
  background: #fff;
}
.auth-form__input:invalid {
  border-color: rgba(220, 53, 69, 0.55);
}
.auth-form__actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.auth-form__button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #3cc0cd;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 14px rgba(60, 192, 205, 0.25);
  transition: transform 0.06s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.auth-form__button:hover {
  box-shadow: 0 8px 18px rgba(60, 192, 205, 0.28);
}
.auth-form__button:active {
  transform: translateY(1px);
}
.auth-form__link {
  color: #505050;
  font-size: 14px;
  text-decoration: none;
}
.auth-form__link:hover {
  text-decoration: underline;
}
.auth-form .form-errors {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  color: #842029;
  font-size: 13px;
}
.auth-form .form-errors li {
  margin: 0;
}
.auth-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}
.auth-form__checkbox {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.auth-form__checkbox:focus {
  outline: none;
  border-color: #3cc0cd;
  box-shadow: 0 0 0 3px rgba(60, 192, 205, 0.18);
}
.auth-form__checkbox-label {
  color: #1e1e2f;
  font-size: 14px;
  line-height: 1.4;
}

.form__group {
  margin-block: 20px;
}
.form__label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e1e2f;
}
.form__required {
  color: #3cc0cd;
  font-weight: 700;
}
.form__control {
  width: 100%;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #1e1e2f;
  border-radius: 8px;
  padding: 12px 16px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form__control::placeholder {
  color: rgba(30, 30, 47, 0.55);
}
.form__control:hover {
  border-color: rgba(0, 0, 0, 0.35);
}
.form__control:focus, .form__control:focus-visible {
  outline: none;
  border-color: #3cc0cd;
  box-shadow: 0 0 0 3px rgba(60, 192, 205, 0.15);
}
.form__control:disabled {
  background: #f5f5f7;
  cursor: not-allowed;
}
.form select.form__control {
  background-image: linear-gradient(45deg, transparent 50%, #505050 50%), linear-gradient(135deg, #505050 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  appearance: none;
}
.form__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form__check input {
  inline-size: 16px;
  block-size: 16px;
}
.form__check-label {
  color: #1e1e2f;
}
.form__hint {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(30, 30, 47, 0.7);
}
.form__errors {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 8px;
  color: #a10000;
}
.form__error {
  font-size: 0.92rem;
}
.form__group--error .form__control {
  border-color: #d03a3a;
  box-shadow: 0 0 0 3px rgba(208, 58, 58, 0.15);
}
.form__group--error .form__label {
  color: #a10000;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  color: #1e1e2f;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.06s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus, .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(60, 192, 205, 0.18);
}
.btn:disabled, .btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}
.btn--sm {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.btn--lg {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
}

.btn--primary,
.btn.btn-primary {
  background: #3cc0cd;
  color: #fff;
  border-color: #3cc0cd;
}
.btn--primary:hover,
.btn.btn-primary:hover {
  background: rgba(60, 192, 205, 0.9);
  border-color: rgba(60, 192, 205, 0.95);
}
.btn--primary:active,
.btn.btn-primary:active {
  transform: translateY(1px);
}

.btn--link,
.btn.btn-link {
  background: #fff;
  color: #000;
  border-color: transparent;
  border-radius: 14px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}
.btn--link span,
.btn.btn-link span {
  pointer-events: none;
}
.btn--link:hover,
.btn.btn-link:hover {
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}
.btn--link:active,
.btn.btn-link:active {
  transform: translateY(1px);
}

.btn--ribbon {
  position: relative;
}
.btn--ribbon::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -4deg;
  width: 180px;
  height: 18px;
  background: #B18FCF;
  border-radius: 8px;
  transform: rotate(0);
  z-index: -1;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.25));
  pointer-events: none;
}
@media (min-width: 768px) {
  .btn--ribbon::after {
    width: 270px;
    height: 42px;
    left: 16px;
    bottom: 10px;
    transform: rotate(6deg);
  }
}

.btn--ghost,
.btn.btn-ghost {
  background: transparent;
  color: #1e1e2f;
  border-color: rgba(0, 0, 0, 0.2);
}
.btn--ghost:hover,
.btn.btn-ghost:hover {
  background: rgba(60, 192, 205, 0.08);
  border-color: #3cc0cd;
}

.btn--secondary,
.btn.btn-secondary {
  background: #f5f7f9;
  color: #1e1e2f;
  border-color: rgba(0, 0, 0, 0.08);
}
.btn--secondary:hover,
.btn.btn-secondary:hover {
  background: #eef2f5;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: #1e1e2f;
  font-size: 0.95rem;
}
.table thead {
  background: rgba(30, 30, 47, 0.05);
}
.table thead th {
  text-align: left;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(30, 30, 47, 0.15);
  white-space: nowrap;
}
.table tbody tr td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(30, 30, 47, 0.08);
  vertical-align: middle;
}
.table--bordered {
  outline: 1px solid rgba(30, 30, 47, 0.12);
  outline-offset: -1px;
  border-radius: 8px;
}
.table--bordered thead th {
  border-bottom-color: rgba(30, 30, 47, 0.2);
}
.table--bordered tbody td {
  border-bottom-color: rgba(30, 30, 47, 0.12);
}
.table--striped tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.015);
}
.table--hover tbody tr {
  transition: background-color 0.15s ease;
}
.table--hover tbody tr:hover {
  background: rgba(60, 192, 205, 0.08);
}
.table--compact thead th, .table--compact tbody td {
  padding-block: 8px;
}
.table__actions {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.table__caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 8px 0;
  color: rgba(30, 30, 47, 0.7);
  font-size: 0.9rem;
}

.page-admin main.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.page-admin h1 {
  margin-block: 32px 20px;
}
.page-admin h1, .page-admin h2 {
  font-size: revert !important;
  font-weight: revert;
  text-transform: none;
}
.page-admin .admin-toolbar {
  margin-block: 16px;
}
.page-admin .form {
  max-width: 900px;
}
.page-admin .admin-form-actions {
  margin-bottom: 32px;
}

.admin-nav {
  background: #fff;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 12px 16px;
  margin-block: 20px;
}
.admin-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-nav__item--util {
  margin-left: 8px;
}
.admin-nav__spacer {
  flex: 1 1 auto;
}
.admin-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #1e1e2f;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.admin-nav__link i {
  font-size: 14px;
}
.admin-nav__link:hover {
  background: #ededed;
}
.admin-nav__link.is-active {
  background: rgba(60, 192, 205, 0.12);
  outline: 1px solid #3cc0cd;
  color: #3cc0cd;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
}
.admin-toolbar__left, .admin-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-toolbar__filters {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-toolbar .form-group {
  min-width: 180px;
}
@media (max-width: 768px) {
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-toolbar__right {
    align-self: flex-end;
  }
  .admin-toolbar__filters {
    flex-wrap: wrap;
  }
}

.admin-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
}
.admin-pagination__link, .admin-pagination__prev, .admin-pagination__next {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(30, 30, 47, 0.2);
  border-radius: 6px;
  color: #1e1e2f;
  text-decoration: none;
  background: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.admin-pagination__link:hover, .admin-pagination__prev:hover, .admin-pagination__next:hover {
  background: rgba(30, 30, 47, 0.05);
}
.admin-pagination__link:focus, .admin-pagination__link:focus-visible, .admin-pagination__prev:focus, .admin-pagination__prev:focus-visible, .admin-pagination__next:focus, .admin-pagination__next:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(60, 192, 205, 0.18);
}
.admin-pagination .is-active {
  background: #3cc0cd;
  border-color: #3cc0cd;
  color: #fff;
}
.admin-pagination .is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.admin-flash {
  padding: 12px 16px;
  border-radius: 8px;
  margin-block: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.02);
  color: #1e1e2f;
}
.admin-flash.flash-success {
  border-color: rgba(60, 192, 205, 0.35);
  background: rgba(60, 192, 205, 0.12);
}
.admin-flash.flash-error {
  border-color: rgba(176, 0, 32, 0.45);
  background: rgba(176, 0, 32, 0.12);
  color: #5a0010;
}
.admin-flash.flash-warning {
  border-color: rgba(255, 152, 0, 0.45);
  background: rgba(255, 152, 0, 0.12);
  color: #6a3d00;
}
.admin-flash.flash-info {
  border-color: rgba(2, 136, 209, 0.45);
  background: rgba(2, 136, 209, 0.12);
  color: #08364a;
}

.c-flash-stack {
  position: fixed;
  left: 50%;
  top: calc(60px + 12px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1400;
  width: min(92vw, 720px);
  pointer-events: none;
}

.c-flash {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.2px;
  color: #fff;
  pointer-events: auto;
}

.c-flash__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.c-flash__text {
  flex: 1 1 auto;
}

.c-flash--success {
  background: #3cc0cd;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.c-flash--error {
  background: #FF5DA2;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.c-flash--warning {
  background: #c8b1dd;
  border: 2px solid rgba(0, 0, 0, 0.08);
  color: #000;
}

.c-flash--info {
  background: #505050;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 1200px) {
  .c-flash-stack {
    top: calc(60px + 16px);
  }
  .c-flash {
    font-size: 20px;
  }
}
#hero,
.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__video--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__video--mobile {
    display: none;
  }
  .hero__video--desktop {
    display: block;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 60vh;
  min-height: 380px;
}
.hero__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70vw;
  width: 520px;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}
.hero__logo {
  position: absolute;
  right: clamp(40px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: 20vw;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
@media (min-width: 768px) {
  .hero__content {
    height: 70vh;
    min-height: 520px;
  }
  .hero__image {
    max-width: 46vw;
  }
  .hero__logo {
    width: 20vw;
  }
}

#sliderHome {
  transform: translateY(100px);
}

#selection-blt {
  margin-top: -4px;
  padding: 10px;
  padding-bottom: 40px;
  position: relative;
  overflow: visible;
}
#selection-blt > * {
  position: relative;
  z-index: 1;
}
#selection-blt::before, #selection-blt::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #f3f3f3;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
#selection-blt::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-8deg);
}
#selection-blt::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  #selection-blt {
    padding: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  }
  #selection-blt::before, #selection-blt::after {
    width: 360px;
    height: 360px;
  }
  #selection-blt::before {
    left: -120px;
    bottom: -60px;
  }
  #selection-blt::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  #selection-blt::before, #selection-blt::after {
    width: 480px;
    height: 480px;
  }
  #selection-blt::before {
    left: -160px;
    bottom: -80px;
  }
  #selection-blt::after {
    right: -140px;
    top: -70px;
  }
}

#collection-blt {
  margin-top: -20px;
  padding: 10px;
  position: relative;
}
#collection-blt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/images/ruban.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  top: 200px;
}
@media (min-width: 768px) {
  #collection-blt {
    padding: 40px;
  }
}

#la-tuilerie {
  margin-top: -20px;
  padding: 10px;
}

@media (min-width: 768px) {
  #la-tuilerie {
    padding: 40px;
    margin-top: -40px;
  }
}
#la-tuilerie .tuilerie-icons {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  #la-tuilerie .tuilerie-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
#la-tuilerie .tuilerie-icons__item {
  text-align: center;
}
#la-tuilerie .tuilerie-icons__img {
  display: block;
  margin: 0 auto 16px;
  height: 110px;
  width: auto;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
}
@media (min-width: 768px) {
  #la-tuilerie .tuilerie-icons__img {
    height: 140px;
  }
}
#la-tuilerie .tuilerie-icons__title {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: #000;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
#la-tuilerie .tuilerie-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  --gap: 16px;
  height: 420px;
}
@media (min-width: 768px) {
  #la-tuilerie .tuilerie-slider {
    height: 420px;
  }
}
#la-tuilerie .tuilerie-slider::before, #la-tuilerie .tuilerie-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, #b18fcf 0%, rgba(177, 143, 207, 0) 100%);
}
#la-tuilerie .tuilerie-slider::before {
  left: 0;
}
#la-tuilerie .tuilerie-slider::after {
  right: 0;
  transform: rotateZ(180deg);
}
@keyframes tuilerie-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (var(--slide-width, 300px) + var(--gap, 0px)) * var(--count, 9)));
  }
}
#la-tuilerie .tuilerie-slider__track {
  height: 100%;
  display: flex;
  gap: var(--gap, 0px);
  align-items: center;
  width: calc((var(--slide-width, 300px) + var(--gap, 0px)) * var(--count, 9) * 2);
  animation: tuilerie-slide var(--duration, 35s) linear infinite;
}
#la-tuilerie .tuilerie-slider__track:hover {
  animation-play-state: paused;
}
#la-tuilerie .tuilerie-slider__slide {
  flex: 0 0 var(--slide-width, 300px);
  width: var(--slide-width, 300px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#la-tuilerie .tuilerie-slider__img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#la-tuilerie .tuilerie-slider__img {
  width: var(--slide-width, 300px);
  height: 100%;
  object-fit: cover;
  display: block;
}
#la-tuilerie p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
@media (min-width: 768px) {
  #la-tuilerie p {
    text-align: inherit;
    hyphens: manual;
  }
}

#collection-blt {
  padding-top: calc(40px + 120px);
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  #collection-blt {
    padding-bottom: 140px;
  }
}

.collection-blt {
  position: relative;
}
.collection-blt__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .collection-blt__inner {
    grid-template-columns: 420px 1fr;
  }
}
.collection-blt__card {
  background: #d9d9d9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  padding: 24px;
  order: 2;
  margin-top: -32px;
  font-size: 20px;
  z-index: 1;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .collection-blt__card {
    order: initial;
    height: 50%;
    margin-top: 25%;
    margin-right: -150px;
    margin-left: 50px;
    text-align: center;
  }
}
.collection-blt__card-title {
  margin: 0 0 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  font-size: clamp(18px, 18px + (26px - 18px) * (100vw - 360px) / (1200px - 360px), 26px);
}
.collection-blt__em {
  background: #3cc0cd;
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
}
.collection-blt__card-text {
  margin: 0 0 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .collection-blt__card-text {
    text-align: center;
  }
}
.collection-blt__btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #B18FCF;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
.collection-blt__btn:hover {
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .collection-blt__btn {
    justify-content: center;
  }
}
.collection-blt__media {
  margin: 0;
  align-self: center;
  order: 1;
}
@media (min-width: 768px) {
  .collection-blt__media {
    order: initial;
  }
}
.collection-blt__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

@keyframes tuilerie-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  #la-tuilerie .tuilerie-slider__track {
    animation: none;
  }
}
#histoire-blt {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  margin-top: -20px;
  padding: 10px;
}
@media (min-width: 768px) {
  #histoire-blt {
    padding: 40px;
    margin-top: -40px;
  }
}

.events-blt {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.events-blt__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .events-blt__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.events-blt__cta {
  text-align: center;
  margin-top: 40px;
}
.events-blt__btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-family: "KometBold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.events-blt__btn:hover {
  transform: translateY(-1px);
}

.event-card {
  background: transparent;
  border-radius: 12px;
}
.event-card__media {
  position: relative;
  margin: 0;
}
.event-card__img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.event-card__date {
  position: absolute;
  left: var(--badge-left, 12px);
  right: var(--badge-right, auto);
  top: var(--badge-top, 12px);
  background: var(--badge-bg, #fff);
  color: var(--badge-fg, #000);
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  font-weight: 800;
  transform: rotate(var(--badge-rotate, -12deg));
  line-height: 1;
  font-family: "Karantina", system-ui;
  font-size: 20px;
  text-transform: capitalize;
  position: absolute;
  width: 90px;
  text-align: center;
}
.event-card__date::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -6px;
  background: var(--badge-shadow-bg, var(--badge-bg, rgba(0, 0, 0, 0.85)));
  transform: rotate(6deg);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}
.event-card__category {
  display: inline-block;
  margin: 20px 20px 4px;
  padding: 2px 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(10px, 10px + (12px - 10px) * (100vw - 360px) / (1200px - 360px), 12px);
}
.event-card__title {
  margin: 0 20px 8px;
  font-weight: 800;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 360px) / (1200px - 360px), 20px);
  color: #000;
}
.event-card__link {
  color: inherit;
  text-decoration: none;
}
.event-card__link:hover {
  text-decoration: underline;
}
.event-card__excerpt {
  margin: 0 20px 24px;
  color: #000;
  opacity: 0.85;
}
.event-card__meta {
  margin: -8px 20px 24px;
  color: #000;
  font-size: clamp(12px, 12px + (14px - 12px) * (100vw - 360px) / (1200px - 360px), 14px);
}

.event-card--v1 {
  --badge-bg: #505050;
  --badge-fg: #fff;
  --badge-left: -8px;
  --badge-right: auto;
  --badge-top: 10px;
  --badge-rotate: -10deg;
}
.event-card--v2 {
  --badge-bg: #fff;
  --badge-fg: #000;
  --badge-left: auto;
  --badge-right: -2%;
  --badge-top: 4px;
  --badge-rotate: 18deg;
}
.event-card--v3 {
  --badge-bg: #B18FCF;
  --badge-fg: #000;
  --badge-left: -8px;
  --badge-right: auto;
  --badge-top: 6px;
  --badge-rotate: -12deg;
}

.selection-blt .title-page {
  margin-bottom: 24px;
}
.selection-blt__cta {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.selection-blt__btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #3cc0cd;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  font-family: "KometBold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.selection-blt__btn:hover {
  transform: translateY(-1px);
}

.contact-page {
  padding: 0;
  background: #505050;
  color: #fff;
  font-family: "Karantina", system-ui;
}
.contact-page.lt {
  background: #fff;
  color: #fff;
}
@media (min-width: 768px) {
  .contact-page.lt {
    background: #B18FCF;
  }
}
.contact-page.lt .titlePage {
  color: #000;
}
.contact-page.lt label {
  color: #000;
}

body.is-page-contact .contact-page {
  position: relative;
  overflow: visible;
  isolation: isolate;
}
body.is-page-contact .contact-page > * {
  position: relative;
  z-index: 1;
}
body.is-page-contact .contact-page::before, body.is-page-contact .contact-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #424242;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
body.is-page-contact .contact-page::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-10deg);
}
body.is-page-contact .contact-page::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  body.is-page-contact .contact-page::before, body.is-page-contact .contact-page::after {
    width: 360px;
    height: 360px;
  }
  body.is-page-contact .contact-page::before {
    left: -120px;
    bottom: -60px;
  }
  body.is-page-contact .contact-page::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  body.is-page-contact .contact-page::before, body.is-page-contact .contact-page::after {
    width: 480px;
    height: 480px;
  }
  body.is-page-contact .contact-page::before {
    left: -160px;
    bottom: -80px;
  }
  body.is-page-contact .contact-page::after {
    right: -140px;
    top: -70px;
  }
}

.contact-form {
  max-width: 1450px;
  margin: 0 auto;
  background: #424242;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2rem 2.25rem 3rem;
    padding-inline: 4rem;
  }
}
.contact-form form {
  display: block;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.25rem;
}
@media (min-width: 768px) {
  .contact-form .row {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 768px) {
  .contact-form .col-12 {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .contact-form .col-md-6 {
    grid-column: span 6;
  }
}
.contact-form .pro-switch {
  margin-top: 0.25rem;
}
.contact-form label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  margin-bottom: 0.35rem;
  margin-top: 0.55rem;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=date],
.contact-form input[type=number],
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #1e1e1e;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=date]:focus,
.contact-form input[type=number]:focus,
.contact-form textarea:focus {
  border-color: #B18FCF;
  box-shadow: 0 0 0 4px rgba(177, 143, 207, 0.25);
  background: #fff;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form input[type=date]::placeholder,
.contact-form input[type=number]::placeholder,
.contact-form textarea::placeholder {
  color: #8d8d8d;
}
.contact-form input[type=number] {
  -moz-appearance: textfield;
}
.contact-form input[type=number]::-webkit-outer-spin-button,
.contact-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}
.contact-form .form-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.contact-form .form-switch input[type=checkbox] {
  appearance: none;
  width: 52px;
  height: 28px;
  background: #bdbdbd;
  border-radius: 999px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form .form-switch input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.contact-form .form-switch input[type=checkbox]:checked {
  background: #B18FCF;
}
.contact-form .form-switch input[type=checkbox]:checked::after {
  transform: translateX(24px);
}
.contact-form .submit-ribbon {
  position: relative;
  display: block;
  width: max-content;
  margin: 0 auto;
}
.contact-form .submit-ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-56%) rotate(6deg);
  bottom: -4px;
  width: 160px;
  height: 30px;
  background: #B18FCF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.contact-form button[type=submit],
.contact-form .btn,
.contact-form input[type=submit] {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  position: sticky;
  z-index: 1;
}
.contact-form button[type=submit]:hover,
.contact-form .btn:hover,
.contact-form input[type=submit]:hover {
  background: #f4f4f4;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}
.contact-form button[type=submit]:active,
.contact-form .btn:active,
.contact-form input[type=submit]:active {
  transform: translateY(1px);
}
.contact-form .required-hint {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  grid-column: 1/-1;
}
.contact-form .alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.contact-form .alert-success {
  background: #e6fbf3;
  color: #0f7b5f;
  border: 1px solid #b8f1dd;
}
.contact-form .alert-error, .contact-form .alert-danger {
  background: #ffefef;
  color: #b30000;
  border: 1px solid #ffd1d1;
}

.titlePage {
  font-family: "Karantina", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 1rem;
}

.contact-form.lt {
  background: #9564C0;
}
.contact-form.lt .section-title,
.contact-form.lt .section-subtitle {
  font-family: "Karantina", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
}
.contact-form.lt hr {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  margin: 1.25rem 0 1.5rem;
}
.contact-form.lt .beer-card {
  margin-bottom: 1.25rem;
}
.contact-form.lt .beer-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  display: block;
}
.contact-form.lt .beer-caption {
  margin: 0.4rem 0 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: #fff;
}

.polygone {
  background: #B18FCF;
  padding: 40px;
  padding-bottom: 70px;
  position: relative;
  overflow: visible;
}
.polygone > * {
  position: relative;
  z-index: 1;
}
.polygone::before, .polygone::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #a47fc4;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
.polygone::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-10deg);
}
.polygone::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .polygone::before, .polygone::after {
    width: 360px;
    height: 360px;
  }
  .polygone::before {
    left: -120px;
    bottom: -60px;
  }
  .polygone::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  .polygone::before, .polygone::after {
    width: 480px;
    height: 480px;
  }
  .polygone::before {
    left: -160px;
    bottom: -80px;
  }
  .polygone::after {
    right: -140px;
    top: -70px;
  }
}

.lt #infos-complementaires,
.lt #faq-accordion {
  text-align: center;
  background: #fff;
  margin: 0;
}
.lt #faq-accordion {
  position: relative;
  overflow: visible;
}
.lt #faq-accordion > * {
  position: relative;
  z-index: 1;
}
.lt #faq-accordion::before, .lt #faq-accordion::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #f3f3f3;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
.lt #faq-accordion::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-10deg);
}
.lt #faq-accordion::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .lt #faq-accordion::before, .lt #faq-accordion::after {
    width: 360px;
    height: 360px;
  }
  .lt #faq-accordion::before {
    left: -120px;
    bottom: -60px;
  }
  .lt #faq-accordion::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  .lt #faq-accordion::before, .lt #faq-accordion::after {
    width: 480px;
    height: 480px;
  }
  .lt #faq-accordion::before {
    left: -160px;
    bottom: -80px;
  }
  .lt #faq-accordion::after {
    right: -140px;
    top: -70px;
  }
}
.lt #faq-accordion .accordion {
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 0 auto;
}
.lt #faq-accordion details {
  border-top: 1px solid #fff;
}
.lt #faq-accordion details:first-of-type {
  border-top: none;
}
.lt #faq-accordion summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #000;
  transition: background 0.2s ease;
  list-style: none;
}
.lt #faq-accordion summary::-webkit-details-marker {
  display: none;
}
.lt #faq-accordion summary:hover, .lt #faq-accordion summary:focus {
  background: rgba(37, 99, 235, 0.06);
  outline: none;
}
.lt #faq-accordion summary::after {
  content: "➕";
  font-size: 1.25rem;
  color: #3cc0cd;
  transition: transform 0.25s ease;
}
.lt #faq-accordion details[open] summary::after {
  content: "➖";
  transform: none;
}
.lt #faq-accordion details > div {
  padding: 0 1.25rem 1rem;
  color: #000;
  line-height: 1.5;
  animation: fade-accordion 0.25s ease;
}
@keyframes fade-accordion {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 520px) {
  .lt #faq-accordion summary {
    font-size: 0.95rem;
  }
}

.page-admin {
  background: #f4f4f9;
  color: #1e1e2f;
}

.page-admin-users main.container {
  max-width: 1200px;
  padding: 32px 20px;
}
.page-admin-users h1 {
  margin: 0 0 24px 0;
  font-size: 28px;
  line-height: 1.2;
}
.page-admin-users .admin-flash {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #eef4ff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.page-admin-users .admin-flash.flash-success {
  background: rgba(60, 192, 205, 0.12);
  border-color: rgba(60, 192, 205, 0.4);
}
.page-admin-users .admin-flash.flash-error {
  background: rgba(255, 59, 48, 0.12);
  border-color: rgba(255, 59, 48, 0.4);
}
.page-admin-users .admin-flash.flash-warning {
  background: rgba(255, 214, 10, 0.2);
  border-color: rgba(255, 214, 10, 0.5);
}
.page-admin-users .admin-flash.flash-info {
  background: rgba(0, 122, 255, 0.12);
  border-color: rgba(0, 122, 255, 0.4);
}
.page-admin-users .admin-toolbar {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.page-admin-users .admin-toolbar .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #1e1e2f;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.page-admin-users .admin-toolbar .btn:hover {
  background: #f7f7fa;
}
.page-admin-users .admin-toolbar .btn:focus {
  outline: 3px solid rgba(177, 143, 207, 0.35);
  outline-offset: 1px;
}
.page-admin-users .admin-toolbar .btn.btn-primary {
  background: #3cc0cd;
  border-color: #30aebb;
  color: #fff;
}
.page-admin-users .admin-toolbar .btn.btn-primary:hover {
  background: #31b2bf;
}
.page-admin-users .admin-toolbar .btn.btn-danger {
  background: #e03131;
  border-color: #c92a2a;
  color: #fff;
}
.page-admin-users .admin-toolbar .btn.btn-danger:hover {
  background: #c92a2a;
}
.page-admin-users .admin-toolbar .btn.btn-sm {
  padding: 4px 12px;
  font-size: 14px;
}
.page-admin-users .admin-table {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.page-admin-users .admin-table table {
  width: 100%;
  border-collapse: collapse;
}
.page-admin-users .admin-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  color: #5b5b6a;
  background: #fafafb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.page-admin-users .admin-table tbody td {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
  font-size: 15px;
}
.page-admin-users .admin-table .actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-admin-users .admin-tag {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: #edf2ff;
  color: #2f3c80;
  margin: 0 4px 4px 0;
}
.page-admin-users .admin-status {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}
.page-admin-users .admin-status.admin-status--ok {
  background: rgba(16, 185, 129, 0.15);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.page-admin-users .admin-status.admin-status--ko {
  background: rgba(239, 68, 68, 0.15);
  color: #7f1d1d;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.page-admin-users .admin-pagination {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.page-admin-users .admin-pagination .admin-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1e1e2f;
  background: #fff;
}
.page-admin-users .admin-pagination .admin-pagination__link:hover {
  background: #f7f7fa;
}
.page-admin-users .admin-pagination .admin-pagination__link.active {
  background: #3cc0cd;
  color: #fff;
  border-color: #30aebb;
}
.page-admin-users .admin-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-admin-users h1 {
    font-size: 32px;
  }
}

.page-admin-beers .admin-toolbar--beers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-block: 16px;
}
.page-admin-beers .admin-toolbar--beers .admin-toolbar__filters {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-admin-beers .admin-toolbar--beers .admin-toolbar__filters .form-group {
  min-width: 180px;
}
.page-admin-beers .admin-table--beers .admin-table__meta {
  margin-block: 8px;
  color: rgba(30, 30, 47, 0.75);
  font-size: 0.95rem;
}
.page-admin-beers .badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(60, 192, 205, 0.12);
  color: #1e1e2f;
  border: 1px solid rgba(60, 192, 205, 0.2);
  font-size: 0.85rem;
  line-height: 1.6;
}
.page-admin-beers .badge.badge--muted {
  background: rgba(80, 80, 80, 0.12);
  border-color: rgba(80, 80, 80, 0.25);
}
.page-admin-beers .badge.badge--outline {
  background: transparent;
  border-color: rgba(30, 30, 47, 0.25);
}
.page-admin-beers .admin-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
}
.page-admin-beers .admin-pagination__link, .page-admin-beers .admin-pagination__prev, .page-admin-beers .admin-pagination__next {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(30, 30, 47, 0.2);
  border-radius: 6px;
  color: #1e1e2f;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.page-admin-beers .admin-pagination__link:hover, .page-admin-beers .admin-pagination__prev:hover, .page-admin-beers .admin-pagination__next:hover {
  background: rgba(30, 30, 47, 0.05);
}
.page-admin-beers .admin-pagination .is-active {
  background: #3cc0cd;
  border-color: #3cc0cd;
  color: #fff;
}
.page-admin-beers .admin-pagination .is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.page-admin-beers .empty-state {
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(30, 30, 47, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
}
@media (max-width: 768px) {
  .page-admin-beers .admin-toolbar--beers {
    flex-direction: column;
    align-items: stretch;
  }
  .page-admin-beers .admin-toolbar--beers .admin-toolbar__filters {
    flex-wrap: wrap;
  }
  .page-admin-beers .admin-toolbar--beers .admin-toolbar__right {
    align-self: flex-end;
  }
}

.page-admin-dashboard .admin-dashboard__header {
  margin-block: 16px;
}
.page-admin-dashboard .admin-dashboard__title {
  margin: 0;
}
.page-admin-dashboard .admin-dashboard__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-admin-dashboard .admin-dashboard__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .page-admin-dashboard .admin-dashboard__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-admin-dashboard .admin-dashboard__card {
  background: #3cc0cd;
  border: 1px solid rgba(30, 30, 47, 0.12);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  outline: none;
}
.page-admin-dashboard .admin-dashboard__card:focus-visible {
  box-shadow: 0 0 0 3px rgba(60, 192, 205, 0.18);
}
.page-admin-dashboard .admin-dashboard__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.page-admin-dashboard .admin-dashboard__card-header i {
  color: #3cc0cd;
}
.page-admin-dashboard .admin-dashboard__card-title {
  font-size: 1rem;
  margin: 0;
  color: #1e1e2f;
}
.page-admin-dashboard .admin-dashboard__card-metric {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e1e2f;
  margin-bottom: 12px;
}
.page-admin-dashboard .admin-dashboard__card-footer {
  display: flex;
  justify-content: flex-end;
}
.page-admin-dashboard .admin-dashboard__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .page-admin-dashboard .admin-dashboard__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-admin-dashboard .admin-dashboard__list {
  background: #B18FCF;
  border: 1px solid rgba(30, 30, 47, 0.12);
  border-radius: 12px;
  padding: 16px;
}
.page-admin-dashboard .admin-dashboard__list-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 1.05rem;
}
.page-admin-dashboard .admin-dashboard__list-title i {
  color: #1e1e2f;
}
.page-admin-dashboard .admin-dashboard__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-admin-dashboard .admin-dashboard__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(30, 30, 47, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.01);
}
.page-admin-dashboard .admin-dashboard__item.is-empty {
  color: rgba(30, 30, 47, 0.65);
  justify-content: flex-start;
}
.page-admin-dashboard .admin-dashboard__item-title {
  color: #1e1e2f;
}

.bieres {
  background-color: #B18FCF;
  padding-bottom: 56px;
}
.bieres__toolbar {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .bieres__toolbar {
    margin-top: 12px;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .bieres__toolbar {
    margin-top: 12px;
  }
}
.bieres__filter-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #e5e5e5;
  color: #000;
  border: 1px solid transparent;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
  font-family: "Karantina", system-ui;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  margin-top: 0;
}
@media (min-width: 768px) {
  .bieres__filter-btn {
    margin-top: 0;
  }
}
.bieres__filter-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  bottom: -6px;
  width: 68%;
  height: 66%;
  background: #B18FCF;
  border-radius: 10px;
  transform: rotate(6deg);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}
.bieres__filter-btn .bieres__filter-icon, .bieres__filter-btn i {
  font-size: 22px;
  line-height: 1;
}

.bieres .bieres-list {
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.bieres .bieres-list > * {
  position: relative;
  z-index: 1;
}
.bieres .bieres-list::before, .bieres .bieres-list::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #A47FC4;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
.bieres .bieres-list::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-10deg);
}
.bieres .bieres-list::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .bieres .bieres-list::before, .bieres .bieres-list::after {
    width: 360px;
    height: 360px;
  }
  .bieres .bieres-list::before {
    left: -120px;
    bottom: -60px;
  }
  .bieres .bieres-list::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  .bieres .bieres-list::before, .bieres .bieres-list::after {
    width: 380px;
    height: 380px;
  }
  .bieres .bieres-list::before {
    left: -160px;
    bottom: -80px;
  }
  .bieres .bieres-list::after {
    right: -140px;
    top: -70px;
  }
}

.bieres-list {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.bieres-list__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
@media (min-width: 768px) {
  .bieres-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .bieres-list__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bieres-list__empty {
  color: #505050;
  font-style: italic;
}

.bieres--moment {
  background-color: #fff;
}

.bieres--moment .bieres-list::before, .bieres--moment .bieres-list::after {
  background-color: #ededed;
}

.pagination {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 56px;
}
.pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  text-align: center;
  border-radius: 9999px;
  background: transparent;
  color: #000;
  border: 0;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.pagination__link:hover {
  background: rgba(255, 255, 255, 0.6);
}
.pagination__link.is-active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.pagination__link.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination__arrow {
  min-width: 28px;
  height: 28px;
  padding: 0;
  font-weight: 700;
}
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 28px;
  color: rgba(0, 0, 0, 0.7);
}

.bieres-card {
  text-align: center;
  perspective: 600px;
}
.bieres-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.bieres-card__link:hover {
  text-decoration: underline;
}
.bieres-card__figure {
  margin: 0;
  position: relative;
  padding-bottom: 16px;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}
.bieres-card__figure::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  width: 64%;
  height: 12px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.35s ease, bottom 0.35s ease, transform 0.35s ease;
}
.bieres-card__img {
  display: block;
  margin-inline: auto;
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 6px rgba(0, 0, 0, 0.2));
  position: relative;
  transition: transform 0.35s ease, filter 0.35s ease;
  will-change: transform;
}
@media (min-width: 1200px) {
  .bieres-card__img {
    height: 220px;
  }
}
.bieres-card__caption {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bieres-card__title {
  font-family: "Karantina", system-ui;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bieres-card__meta {
  font-family: "Karantina", system-ui;
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.bieres-card:hover .bieres-card__figure, .bieres-card:focus-within .bieres-card__figure {
  transform: rotateY(-8deg) rotateX(10deg) translateZ(24px) scale(1.06);
}
.bieres-card:hover .bieres-card__img, .bieres-card:focus-within .bieres-card__img {
  transform: translateZ(42px);
  filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.28));
}
.bieres-card:hover .bieres-card__figure::after, .bieres-card:focus-within .bieres-card__figure::after {
  bottom: 54px;
  opacity: 0.65;
  transform: translateX(-50%) scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .bieres-card__figure, .bieres-card__img {
    transition: none;
    transform: none !important;
  }
  .bieres-card__figure::after {
    transition: none;
  }
}

.beer-show__title, .beer-show__subtitle, .beer-show__meta {
  font-family: "Karantina", system-ui;
}
.beer-show__subtitle {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.beer-show__meta {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.beer-show {
  background: #f4f4f9;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.beer-show > * {
  position: relative;
  z-index: 1;
}
.beer-show::before, .beer-show::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #F3F3F3;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
.beer-show::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-10deg);
}
.beer-show::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .beer-show::before, .beer-show::after {
    width: 360px;
    height: 360px;
  }
  .beer-show::before {
    left: -120px;
    bottom: -60px;
  }
  .beer-show::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  .beer-show::before, .beer-show::after {
    width: 480px;
    height: 480px;
  }
  .beer-show::before {
    left: -160px;
    bottom: -80px;
  }
  .beer-show::after {
    right: -140px;
    top: -70px;
  }
}
.beer-show__back {
  display: inline-block;
  margin: 32px 0 20px;
  padding: 10px 18px;
  background: #3cc0cd;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.beer-show__content {
  padding-bottom: 56px;
  padding-top: 56px;
}
.beer-show__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .beer-show__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.beer-show__media {
  text-align: center;
}
.beer-show__img {
  height: 40vh;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}
.beer-show__details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px;
}
.beer-show__header {
  position: relative;
  margin-bottom: 24px;
}
.beer-show__title {
  margin: 0 0 8px 0;
  line-height: 1.05;
}
.beer-show__title-line {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.beer-show__subtitle {
  margin: 0;
  color: #505050;
  font-weight: 600;
}
.beer-show__badge {
  display: inline-block;
  background: #B18FCF;
  color: #fff;
  font-weight: 800;
  transform: rotate(-8deg);
  padding: 6px 16px;
  border-radius: 6px;
  margin: 16px 0;
}
.beer-show__description {
  margin: 24px 0;
  color: #1e1e2f;
  line-height: 1.6;
}
.beer-show__meta {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.beer-show__meta-item {
  color: #505050;
}
.beer-show__nav {
  margin-top: 24px;
}
.beer-show__back-link {
  color: #3cc0cd;
  font-weight: 700;
  text-decoration: none;
}

.event-show {
  background: #f4f4f9;
}
.event-show__back {
  display: inline-block;
  margin: 32px 0 20px;
  padding: 10px 18px;
  background: #3cc0cd;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.event-show__content {
  padding-bottom: 56px;
}
.event-show__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .event-show__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.event-show__media {
  text-align: center;
}
.event-show__img {
  width: 100%;
  max-width: 780px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.event-show__details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px;
}
.event-show__header {
  position: relative;
  margin-bottom: 24px;
}
.event-show__title {
  margin: 0 0 8px 0;
  line-height: 1.05;
}
.event-show__title-line {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.event-show__subtitle {
  margin: 0;
  color: #505050;
  font-weight: 600;
}
.event-show__description {
  margin: 24px 0;
  color: #1e1e2f;
  line-height: 1.6;
}
.event-show__meta {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.event-show__meta-item {
  color: #505050;
}
.event-show__meta-item--like {
  margin-top: 8px;
}
.event-show__meta-item--like .fb-like {
  display: inline-block;
  min-height: 28px;
}
.event-show__meta-item--like .fb-like span {
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
}
.event-show__meta-item--like .fb-like iframe {
  width: 80px !important;
  height: 28px !important;
  visibility: visible !important;
}
.event-show__meta-item--like .tac_activate {
  font-size: 0.9rem;
  background: rgba(80, 80, 80, 0.1);
  padding: 10px 16px;
  border-radius: 8px;
  color: #505050;
  display: inline-flex;
  align-items: center;
}
.event-show__meta-item--like .tac_activate .tarteaucitronAllow {
  background: #3cc0cd;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: 12px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.event-show__meta-item--like .tac_activate .tarteaucitronAllow:hover {
  background: #31b2bf;
}
.event-show__facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877f2;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
  margin-top: 8px;
}
.event-show__facebook:hover {
  transform: translateY(-2px);
  background: #0d6ae4;
  color: #fff;
}
.event-show__facebook i {
  font-size: 1.2em;
}
.event-show__nav {
  margin-top: 24px;
}
.event-show__back-link {
  color: #3cc0cd;
  font-weight: 700;
  text-decoration: none;
}

.events-page {
  padding: 40px 0;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.events-page > * {
  position: relative;
  z-index: 1;
}
.events-page::before, .events-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: #30b6c2;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 200px;
  height: 200px;
}
.events-page::before {
  left: -60px;
  bottom: -30px;
  transform: rotate(-10deg);
}
.events-page::after {
  right: -50px;
  top: -24px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .events-page::before, .events-page::after {
    width: 360px;
    height: 360px;
  }
  .events-page::before {
    left: -120px;
    bottom: -60px;
  }
  .events-page::after {
    right: -100px;
    top: -50px;
  }
}
@media (min-width: 1200px) {
  .events-page::before, .events-page::after {
    width: 480px;
    height: 480px;
  }
  .events-page::before {
    left: -160px;
    bottom: -80px;
  }
  .events-page::after {
    right: -140px;
    top: -70px;
  }
}
.events-page__section {
  position: relative;
}
.events-page__list {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  list-style: none;
  margin: auto;
  padding: 0;
  display: grid;
  gap: 32px;
}

.event-card.event-card--line,
.events-page .event-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  gap: 20px;
  align-items: start;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 20px;
}
@media (min-width: 768px) {
  .event-card.event-card--line,
  .events-page .event-card {
    grid-template-columns: 220px 1fr max-content;
    padding: 24px;
  }
}
.event-card.event-card--line .event-card__media,
.events-page .event-card .event-card__media {
  margin: 0;
  position: relative;
}
.event-card.event-card--line .event-card__img,
.events-page .event-card .event-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .event-card.event-card--line .event-card__img,
  .events-page .event-card .event-card__img {
    height: 180px;
  }
}
.event-card.event-card--line .event-card__date,
.events-page .event-card .event-card__date {
  font-weight: 800;
}
.event-card.event-card--line .event-card__content,
.events-page .event-card .event-card__content {
  align-self: center;
}
.event-card.event-card--line .event-card__category,
.events-page .event-card .event-card__category {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.event-card.event-card--line .event-card__title,
.events-page .event-card .event-card__title {
  margin: 12px 0 8px;
  color: #000;
  font-size: clamp(18px, 18px + (22px - 18px) * (100vw - 360px) / (1200px - 360px), 22px);
}
.event-card.event-card--line .event-card__excerpt, .event-card.event-card--line .event-card__meta,
.events-page .event-card .event-card__excerpt,
.events-page .event-card .event-card__meta {
  color: black;
  font-size: clamp(14px, 14px + (16px - 14px) * (100vw - 360px) / (1200px - 360px), 16px);
  margin: 0 0 8px;
  max-width: 60ch;
}
.event-card.event-card--line .event-card__meta,
.events-page .event-card .event-card__meta {
  opacity: 1;
}
.event-card.event-card--line .event-card__fb-group,
.events-page .event-card .event-card__fb-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.event-card.event-card--line .event-card__fb-group .fb-like,
.events-page .event-card .event-card__fb-group .fb-like {
  display: inline-block;
  min-height: 28px;
}
.event-card.event-card--line .event-card__fb-group .fb-like span,
.events-page .event-card .event-card__fb-group .fb-like span {
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
}
.event-card.event-card--line .event-card__fb-group .fb-like iframe,
.events-page .event-card .event-card__fb-group .fb-like iframe {
  width: 80px !important;
  height: 28px !important;
  visibility: visible !important;
}
.event-card.event-card--line .event-card__fb-group .tac_activate,
.events-page .event-card .event-card__fb-group .tac_activate {
  font-size: 0.75rem;
  background: rgba(80, 80, 80, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: #505050;
}
.event-card.event-card--line .event-card__fb-group .tac_activate .tarteaucitronAllow,
.events-page .event-card .event-card__fb-group .tac_activate .tarteaucitronAllow {
  background: #3cc0cd;
  color: #fff;
  border: none;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.7rem;
  margin-left: 6px;
  transition: opacity 0.2s ease;
}
.event-card.event-card--line .event-card__fb-group .tac_activate .tarteaucitronAllow:hover,
.events-page .event-card .event-card__fb-group .tac_activate .tarteaucitronAllow:hover {
  opacity: 0.8;
}
.event-card.event-card--line .event-card__facebook,
.events-page .event-card .event-card__facebook {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1877f2;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.event-card.event-card--line .event-card__facebook:hover,
.events-page .event-card .event-card__facebook:hover {
  transform: scale(1.1);
}
.event-card.event-card--line .event-card__facebook i,
.events-page .event-card .event-card__facebook i {
  font-size: 18px;
}
.event-card.event-card--line .event-card__actions,
.events-page .event-card .event-card__actions {
  align-self: start;
}
@media (min-width: 768px) {
  .event-card.event-card--line .event-card__actions,
  .events-page .event-card .event-card__actions {
    align-self: center;
  }
}
.event-card.event-card--line .event-card__cta,
.events-page .event-card .event-card__cta {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
}
.event-card.event-card--line .event-card__cta::after,
.events-page .event-card .event-card__cta::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 18px;
  background: #FF5DA2;
  border-radius: 3px;
}
.event-card.event-card--line .event-card__cta:hover,
.events-page .event-card .event-card__cta:hover {
  transform: translateY(-1px);
}

.page-brasserie p {
  text-align: justify;
}
@media (min-width: 768px) {
  .page-brasserie p {
    text-align: left;
  }
}

.brasserie-intro {
  padding: 40px 0 24px;
  color: #000;
}
.brasserie-intro__content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.brasserie-intro__text {
  margin: 0 0 16px;
  line-height: 1.6;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 360px) / (1200px - 360px), 20px);
  text-align: justify;
}
@media (min-width: 768px) {
  .brasserie-intro__text {
    text-align: left;
  }
}
.brasserie-intro__link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 calc(100% - 4px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: color 0.2s ease;
}
.brasserie-intro__link--purple {
  text-decoration: none;
  background-image: linear-gradient(#B18FCF, #B18FCF);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 calc(100% - 4px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.brasserie-intro__link--green {
  text-decoration: none;
  background-image: linear-gradient(#3cc0cd, #3cc0cd);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 calc(100% - 4px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.brasserie-intro__quote {
  position: absolute;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.35);
  line-height: 1;
  font-size: clamp(28px, 28px + (56px - 28px) * (100vw - 360px) / (1200px - 360px), 56px);
}
.brasserie-intro__quote--open {
  left: -10px;
  top: -10px;
}
.brasserie-intro__quote--close {
  right: -10px;
  bottom: -10px;
}

.brasserie-hero {
  padding: 24px 0;
  position: relative;
}
.brasserie-hero__ruban {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  z-index: 999;
  display: block;
  width: 92%;
  max-width: 90%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
@media (min-width: 768px) {
  .brasserie-hero__ruban {
    width: 92%;
    top: -64px;
  }
}
.brasserie-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .brasserie-hero__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.brasserie-hero__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.brasserie-hero__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .brasserie-hero__img {
    height: 260px;
  }
}
@media (min-width: 1200px) {
  .brasserie-hero__img {
    height: 500px;
  }
}

.brasserie-suite {
  padding: 24px 0;
  color: #000;
}
.brasserie-suite__title {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(22px, 22px + (32px - 22px) * (100vw - 360px) / (1200px - 360px), 32px);
}
.brasserie-suite__content {
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: clamp(16px, 16px + (18px - 16px) * (100vw - 360px) / (1200px - 360px), 18px);
}
.brasserie-suite__content p {
  margin: 0 0 12px;
  text-align: justify;
}
@media (min-width: 768px) {
  .brasserie-suite__content p {
    text-align: left;
  }
}
.brasserie-suite__content strong {
  font-weight: 800;
}
.brasserie-suite__link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 calc(100% - 4px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: color 0.2s ease;
}
.brasserie-suite__link--purple {
  text-decoration: none;
  background-image: linear-gradient(#B18FCF, #B18FCF);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 calc(100% - 4px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.brasserie-suite__link--green {
  text-decoration: none;
  background-image: linear-gradient(#3cc0cd, #3cc0cd);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 calc(100% - 4px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#la-brasserie {
  padding-top: 0;
}

.tuilerie-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.tuilerie-slider__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
.tuilerie-slider__track {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: tuilerie-marquee 20s linear infinite;
  list-style: none;
}
.tuilerie-slider__slide {
  flex: 0 0 auto;
}
.tuilerie-slider__img {
  height: 420px;
  width: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .tuilerie-slider__img {
    height: 420px;
  }
}

.brasserie-gallery {
  padding: 56px 0;
}
.brasserie-gallery__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .brasserie-gallery__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .brasserie-gallery__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.brasserie-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f9;
}
.brasserie-gallery__img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .brasserie-gallery__img {
    height: 220px;
  }
}
@media (min-width: 1200px) {
  .brasserie-gallery__img {
    height: 260px;
  }
}

.brasserie-team {
  background: #3cc0cd;
  color: #000;
  padding: 40px 0;
}
.brasserie-team__title {
  margin: 0 0 24px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(22px, 22px + (36px - 22px) * (100vw - 360px) / (1200px - 360px), 36px);
}
.brasserie-team__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) rotate(-5deg);
  width: 160px;
  height: 18px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.brasserie-team__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .brasserie-team__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.brasserie-team__item {
  text-align: center;
  position: relative;
  --blob-before-color: rgba(#B18FCF, .35);
  --blob-after-color: rgba(#fff, .35);
}
.brasserie-team__item::before, .brasserie-team__item::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-color: var(--blob-before-color);
  -webkit-mask-image: url("/images/shape/tache.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("/images/shape/tache.svg");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 165px;
  height: 165px;
  top: 40px;
  left: 10%;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.1));
}
.brasserie-team__item::after {
  background-color: var(--blob-after-color);
  width: 70px;
  height: 70px;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 12%;
}
@media (min-width: 768px) {
  .brasserie-team__item::before {
    width: 165px;
    height: 165px;
    top: -60px;
    background-color: white;
  }
  .brasserie-team__item::after {
    width: 86px;
    height: 86px;
    bottom: 14px;
  }
}
.brasserie-team__item:nth-child(1)::before {
  left: 4%;
  top: 65px;
  background-color: white;
}
.brasserie-team__item:nth-child(1)::after {
  right: auto;
  left: 8%;
  bottom: 4px;
}
.brasserie-team__item:nth-child(2)::before {
  left: auto;
  right: 4%;
  top: 65px;
  background-color: #b18fcf;
}
.brasserie-team__item:nth-child(2)::after {
  right: auto;
  left: 8%;
  bottom: 4px;
}
.brasserie-team__item:nth-child(3)::before {
  top: -20px;
  left: 50%;
  background-color: #424242;
}
.brasserie-team__item:nth-child(3)::after {
  bottom: 6px;
  right: 16%;
}
.brasserie-team__item:nth-child(1) {
  --blob-before-color: rgba(#B18FCF, 1);
  --blob-after-color: rgba(#fff, 1);
}
.brasserie-team__item:nth-child(2) {
  --blob-before-color: rgba(#3cc0cd, 1);
  --blob-after-color: rgba(#fff, 1);
}
.brasserie-team__item:nth-child(3) {
  --blob-before-color: rgba(#000, 1);
  --blob-after-color: rgba(#fff, 1);
}
.brasserie-team__avatar-wrap {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #3cc0cd;
}
@media (min-width: 768px) {
  .brasserie-team__avatar-wrap {
    width: 260px;
    height: 260px;
  }
}
.brasserie-team__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.brasserie-team__name {
  margin: 0;
  font-weight: 800;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 360px) / (1200px - 360px), 20px);
}
.brasserie-team__alias {
  margin: 4px 0 0;
  opacity: 0.9;
  text-align: center !important;
  font-size: clamp(12px, 12px + (14px - 12px) * (100vw - 360px) / (1200px - 360px), 14px);
}

.page-copains p {
  text-align: justify;
}
@media (min-width: 768px) {
  .page-copains p {
    text-align: left;
  }
}

.copains {
  padding: 40px 0;
  background: #505050;
  color: #fff;
  position: relative;
}
.copains a {
  font-family: "Karantina", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 25px;
}
.copains .container {
  position: relative;
}
.copains .container::before {
  content: "";
  position: absolute;
  z-index: 0;
  background-color: #424242;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 1;
  pointer-events: none;
  top: 35%;
  left: -40px;
  width: 180px;
  height: 140px;
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .copains .container::before {
    top: 22%;
    left: 20px;
    width: 360px;
    height: 260px;
  }
}
.copains::before, .copains::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-color: #424242;
  -webkit-mask-image: url("/images/shape/tache.svg");
  mask-image: url("/images/shape/tache.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 1;
  pointer-events: none;
}
.copains::before {
  top: -20px;
  left: -10px;
  width: 240px;
  height: 180px;
  transform: rotate(-6deg);
}
@media (min-width: 768px) {
  .copains::before {
    top: -60px;
    left: -160px;
    width: 420px;
    height: 320px;
  }
}
.copains::after {
  bottom: 30px;
  right: -10px;
  width: 320px;
  height: 240px;
  transform: rotate(8deg);
}
@media (min-width: 768px) {
  .copains::after {
    bottom: 60px;
    right: 0;
    width: 520px;
    height: 380px;
  }
}
.copains-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border: 1px solid white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
  z-index: 1;
}
@media (min-width: 768px) {
  .copains-card {
    grid-template-columns: 360px 1fr;
    align-items: center;
  }
}
.copains-card + .copains-card {
  margin-top: 40px;
}
.copains-card--reverse .copains-card__media {
  order: 1;
}
.copains-card--reverse .copains-card__content {
  order: 2;
}
@media (min-width: 768px) {
  .copains-card--reverse {
    grid-template-columns: 1fr 360px;
  }
}
@media (min-width: 768px) {
  .copains-card__media {
    order: 1;
  }
}
.copains-card__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.copains-card__media--stack {
  display: grid;
  gap: 16px;
  align-content: start;
}
.copains-card__media--stack .copains-card__img--stack {
  border-radius: 14px;
}
@media (min-width: 768px) {
  .copains-card--reverse .copains-card__content {
    order: 1;
  }
}
@media (min-width: 768px) {
  .copains-card--reverse .copains-card__media {
    order: 2;
  }
}
.copains-card__content {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .copains-card__content {
    order: 2;
  }
}
.copains-card__title {
  margin: 0 0 12px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(18px, 18px + (28px - 18px) * (100vw - 360px) / (1200px - 360px), 28px);
}
.copains-card__text {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}
.copains-card__text p {
  margin: 0 0 12px;
  text-align: justify;
}
@media (min-width: 768px) {
  .copains-card__text p {
    text-align: left;
  }
}
.copains-card__cta {
  margin-top: 16px;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-purple {
  background-color: #B18FCF;
}

.bg-green {
  background-color: #3cc0cd;
}

.bg-grey {
  background-color: #505050;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.p-10 {
  padding: 10px !important;
}

.p-20 {
  padding: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.m-auto {
  margin: auto !important;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-black {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.font-size-90 {
  font-size: clamp(2.5rem, 6vw, 5.625rem) !important;
}

.font-size-60 {
  font-size: clamp(2rem, 4.5vw, 3.75rem) !important;
}

.font-size-35 {
  font-size: clamp(1.5rem, 3vw, 2.1875rem) !important;
}

.font-size-30 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem) !important;
}

.font-size-20 {
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
}

.text-underline-white {
  text-decoration: underline !important;
  text-decoration-color: #fff !important;
}
