h2,
h3 {
  line-height: var(--lh-tight)
}

body,
p {
  line-height: var(--lh-base)
}

.btn,
body.no-scroll,
section {
  overflow: hidden
}

.btn:hover:after,
.btn:hover:before {
  transform: translateX(-50%) scaleY(1.3) scaleX(.8)
}

.btn-cta,
.btn-primary,
.btn-secondary {
  font-weight: var(--fw-bold);
  text-transform: uppercase
}

.scroll-reveal,
.staggered>* {
  opacity: 0;
  transform: translateY(20px)
}

.btn,
.header {
  position: relative
}

.btn-cta,
.btn-primary,
.btn-secondary,
.events__service-title,
.hero__title {
  text-transform: uppercase
}

.btn,
.google-badge,
.header__link {
  text-decoration: none
}

:root {
  --color-primary: #6a1f2b;
  --color-secondary: #2b1a1f;
  --color-accent: #c9a86a;
  --color-neutral: #d7c4b5;
  --color-light: #f3e9dd;
  --mixte-color: radial-gradient(ellipse at top left, #6a1f2b, #2b1a1f);
  --font-family-base: 'Playfair Display', 'Manrope', 'sans-serif', 'Inter';
  --font-heading: 'Playfair Display', 'sans-serif';
  --font-text: 'Manrope', 'Inter';
  --font-size-base: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
  --font-ratio: 1.318;
  --font-size-xxs: calc(var(--font-size-xs) / var(--font-ratio));
  --font-size-xs: calc(var(--font-size-base) / var(--font-ratio));
  --font-size-sm: calc(var(--font-size-base) * 0.875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * var(--font-ratio));
  --font-size-lx: calc(var(--font-size-lg) * var(--font-ratio));
  --font-size-xl: calc(var(--font-size-lx) * var(--font-ratio));
  --font-size-xxl: calc(var(--font-size-xl) * var(--font-ratio));
  --lh-tight: 1.2;
  --lh-base: 1.5;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 700;
  --fw-bold: 900;
  --spacing-unit: 1rem;
  --spacing-small: calc(var(--spacing-unit) * 0.5);
  --spacing-large: calc(var(--spacing-unit) * 2);
  --radius-base: clamp(6px, 1vw, 10px);
  --radius-dynamic: calc(var(--radius-base) + 0.2vw);
  --shadow-sombre: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-clair: 0 6px 20px rgba(201, 168, 106, 0.3);
  --anim-duration: 0.7s;
  --anim-stagger: 0.2s
}

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary), var(--font-family-secondary);
  background-image: url("/assets/img/brand/patterns/pattern.svg"), var(--mixte-color);
  background-repeat: repeat, no-repeat;
  background-size: 1620px, cover
}

.hero__title,
h2,
h3 {
  font-family: var(--font-heading)
}

html {
  scrollbar-color: var(--color-primary) var(--color-light);
  scrollbar-width: thin
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--color-light);
  border-radius: 3px
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  height: 120px
}

::-webkit-scrollbar-thumb:hover {
  background-color: #540a16
}

section {
  padding-top: var(--spacing-large);
  padding-bottom: var(--spacing-large)
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto
}

h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-bottom: var(--spacing-large)
}

h3 {
  font-size: var(--font-size-lx);
  font-weight: var(--fw-medium);
  margin-bottom: var(--spacing-small)
}

.btn-primary,
.btn-secondary,
p {
  font-size: var(--font-size-md)
}

p {
  font-family: var(--font-text);
  font-weight: var(--fw-regular)
}

.btn {
  display: inline-block;
  border-radius: var(--radius-base);
  transition: .2s ease-in;
  cursor: pointer;
  z-index: 1;
  border: none;
  outline: 0;
  text-align: center
}

.btn::before,
.btn:after {
  position: absolute;
  border-radius: 50%;
  display: block;
  transition: .5s cubic-bezier(.55, 0, .1, 1) .1s;
  z-index: -1;
  content: ''
}

.btn::before {
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%
}

.btn:after {
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%
}

.btn:hover:before {
  top: -35%
}

.btn:hover:after {
  top: -45%
}

.btn-primary {
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-light)
}

.btn-cta:before,
.btn-cta:hover:after,
.btn-cta:hover:before,
.btn-primary:before,
.btn-primary:hover:after,
.btn-primary:hover:before {
  background-color: var(--color-light)
}

.btn-cta:hover,
.btn-primary:hover {
  color: var(--color-accent);
  box-shadow: var(--shadow-clair)
}

.btn-cta,
.btn-secondary,
.info__banner {
  color: var(--color-light)
}

.btn-secondary:hover,
.events__gallery-item,
.rental__product {
  box-shadow: var(--shadow-sombre)
}

.btn-secondary {
  padding: 16px 32px;
  background: var(--color-secondary)
}

.btn-secondary:before,
.btn-secondary:hover:after,
.btn-secondary:hover:before {
  background-color: var(--color-primary)
}

.btn-cta {
  padding: 18px 36px;
  background: var(--color-accent);
  font-size: var(--font-size-lg)
}

.staggered>* {
  transition: opacity var(--anim-duration) ease var(--delay), transform var(--anim-duration) ease var(--delay)
}

.about__partners.staggered>*,
.footer__bottom.staggered>*,
.hero__banner.staggered>*,
.info-banner.staggered>*,
.product.staggered>*,
.testimonials.staggered>* {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important
}

.scroll-reveal {
  transition: opacity .7s ease var(--delay, 0s), transform .7s ease var(--delay, 0s)
}

.scroll-reveal.reveal,
.staggered.reveal>* {
  opacity: 1;
  transform: none
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100
  }
}

.info__banner {
  background: var(--color-secondary);
  display: flex;
  justify-content: center
}

.header__menu--primary .header__link:hover,
.info__banner-tagline {
  color: var(--color-accent)
}

.header__nav,
.info__banner p {
  align-items: center;
  display: flex
}

.info__banner p {
  text-align: center;
  gap: var(--spacing-small)
}

.info__banner i svg,
.info__banner svg {
  min-width: 16px;
  min-height: 16px;
  max-width: 24px;
  max-height: 24px
}

.header {
  padding: var(--spacing-unit)
}

.header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.header--hidden {
  transform: translateY(-100%)
}

.header__nav {
  justify-content: center;
  gap: var(--spacing-large);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit)
}

.header__logo {
  display: flex;
  align-items: center;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: filter .4s cubic-bezier(.4, 0, .2, 1)
}

.header__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 0;
  background-color: var(--color-light);
  padding: var(--spacing-small) var(--spacing-large);
  border-radius: var(--radius-base);
  transition: background-color .4s cubic-bezier(.4, 0, .2, 1)
}

.header__menu--primary {
  background: var(--mixte-color)
}

.header__menu--primary .header__link {
  color: var(--color-light);
  transition: color .4s cubic-bezier(.4, 0, .2, 1)
}

.header__nav:has(.header__menu--primary) .header__logo {
  filter: brightness(0) saturate(100%) invert(20%) sepia(70%) saturate(3000%) hue-rotate(330deg) brightness(.4) contrast(1.5)
}

.header__item {
  margin: 0
}

.header__link {
  display: block;
  padding: var(--spacing-small) var(--spacing-unit);
  color: var(--color-secondary);
  font-weight: var(--fw-medium);
  font-size: var(--font-size-md);
  transition: color .2s
}

.header__link:hover,
.testimonials__title {
  color: var(--color-primary)
}

.header__toggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: var(--spacing-small);
  width: 30px;
  height: 30px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1001
}

.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-light);
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  transform-origin: center;
  position: absolute
}

.header__toggle-bar:first-child {
  top: 6px
}

.header__toggle-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%)
}

.product__card:active,
.product__card:hover {
  transform: translateY(-2px)
}

.header__toggle-bar:nth-child(3) {
  bottom: 6px
}

.hero__banner,
.product {
  background: var(--color-light)
}

.hero,
.hero__banner,
.product,
.product__card {
  position: relative
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 0
}

.hero__title {
  font-size: var(--font-size-xxl);
  color: var(--color-accent);
  margin-bottom: var(--spacing-small)
}

.hero__description {
  color: var(--color-neutral);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-large)
}

.hero__banner {
  margin-top: 100px;
  width: 100%;
  padding: var(--spacing-unit) 0;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important
}

.hero__banner-label,
.hero__banner-text {
  margin: 0;
  font-size: var(--font-size-lg)
}

.product__card:hover::before,
.product__detail-view--visible .product__detail-image-wrapper::before {
  opacity: .5
}

.hero__banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-large);
  text-align: left
}

.hero__banner-text-group {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-small) * .5);
  flex: 1;
  color: var(--color-secondary)
}

.hero__banner-first-line {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: .5em
}

.hero__banner-label {
  font-weight: var(--fw-bold)
}

.events__process-step,
.hero__banner-date {
  font-size: var(--font-size-lg)
}

@media screen and (max-width:767px) {
  .container {
    width: 95%
  }

  .info__banner p {
    font-size: var(--font-size-xxs)
  }

  .hero__banner {
    margin-top: 40px
  }

  .hero__title {
    font-size: var(--font-size-xl);
    width: 90%
  }

  .hero__description {
    font-size: var(--font-size-md);
    width: 90%
  }

  .hero .btn-cta {
    padding: 14px 28px;
    font-size: var(--font-size-md);
    width: auto;
    max-width: 90%;
    margin: 0 auto
  }

  .hero__banner-content {
    flex-direction: column;
    gap: var(--spacing-unit)
  }

  .hero__banner-text-group,
  .hero__banner-text-wrapper {
    flex-direction: column;
    order: 1;
    text-align: center
  }

  .hero__banner-text-wrapper {
    display: flex;
    gap: var(--spacing-small);
    width: 100%
  }

  .hero__banner-first-line,
  .hero__banner-text-group {
    display: flex;
    gap: calc(var(--spacing-small) * .5);
    width: 100%
  }

  .hero__banner-first-line {
    flex-direction: column
  }

  .hero__banner-date,
  .hero__banner-label,
  .hero__banner-text {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    line-height: 1.4
  }

  .hero__banner-label {
    font-weight: var(--fw-bold)
  }

  .hero__banner-text {
    margin: 0
  }

  .hero__banner .btn {
    order: 2;
    padding: 12px 24px;
    font-size: var(--font-size-sm);
    width: 100%;
    max-width: 300px;
    margin: var(--spacing-small) auto 0;
    display: block
  }
}

.product__card,
.product__card-text,
.product__detail-label {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold)
}

.footer__hours-item,
.footer__hours-note,
.legal__section p,
.tastings__reservation-note,
.testimonials__quote {
  line-height: var(--lh-base)
}

.product {
  background-image: url("/assets/img/brand/patterns/pattern-alt.svg");
  background-repeat: repeat;
  background-size: 1620px cover;
  min-height: 800px
}

.product__title {
  color: var(--color-accent);
  text-align: center;
  margin-top: 80px
}

.product__description {
  color: var(--color-secondary);
  text-align: center;
  margin: 0 auto var(--spacing-large)
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-large);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit)
}

.product__card {
  background: 0 0;
  color: var(--color-light);
  border: none;
  border-radius: var(--radius-base);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  overflow: hidden;
  opacity: .5;
  transition: transform .3s, box-shadow .3s
}

.product__card-bg,
.product__card::before {
  position: absolute;
  width: 100%;
  transition: transform .3s, box-shadow .3s;
  height: 100%
}

.product__card-bg {
  object-fit: cover
}

.product__card::before {
  content: '';
  background: var(--color-primary);
  opacity: .7;
  z-index: 1
}

.product__card:hover {
  opacity: 1;
  box-shadow: var(--shadow-clair)
}

.product__card:hover .product__card-bg {
  transform: scale(1.05)
}

.product__card--active {
  background: var(--color-accent);
  color: var(--color-light)
}

.product__card-text {
  position: relative;
  z-index: 2;
  color: var(--color-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.product__detail-view {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-large);
  margin-top: var(--spacing-large);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
  min-height: 500px;
  align-items: start
}

.product__detail-view--visible {
  opacity: 1;
  transform: translateY(0)
}

.product__detail-left,
.product__detail-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-large);
  padding: var(--spacing-large) 0
}

.product__detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1) .2s, transform .6s cubic-bezier(.4, 0, .2, 1) .2s
}

.product__detail-image-wrapper,
.product__detail-view:not(.product__detail-view--visible) .product__detail-image-wrapper {
  transform: scale(.8) translateY(30px)
}

.product__detail-view--visible .product__detail-item {
  opacity: 1;
  transform: translateX(0)
}

.product__detail-view--visible .product__detail-item:nth-child(2) {
  transition-delay: 0.3s
}

.product__detail-view--visible .product__detail-item:nth-child(3),
.product__detail-view--visible .product__detail-list-item:first-child {
  transition-delay: 0.4s
}

.product__detail-label {
  color: var(--color-accent)
}

.product__detail-value {
  font-size: var(--font-size-md);
  color: var(--color-secondary)
}

.product__detail-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-large) 0;
  position: relative;
  z-index: 1
}

.bg-product {
  position: absolute;
  width: 420px;
  height: 420px;
  z-index: 1;
  opacity: .3
}

.product__detail-image-wrapper {
  width: 100%;
  max-width: 400px;
  min-height: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  padding: var(--spacing-large);
  position: relative;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1) .3s;
  overflow: visible
}

.product__detail-view--visible .product__detail-image-wrapper {
  transform: scale(1) translateY(0)
}

.product__detail-view--visible .product__detail-image {
  transform: translateX(0) rotate(30deg) scale(1)
}

.product__detail-view:not(.product__detail-view--visible) .product__detail-image-wrapper::before {
  opacity: 0
}

.product__detail-image {
  position: relative;
  z-index: 2;
  transform: translateX(100px) rotate(0) scale(.95);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
  opacity: 1
}

.product__detail-back-btn {
  background: var(--mixte-color);
  color: var(--color-light);
  border: none;
  border-radius: var(--radius-base);
  padding: var(--spacing-unit) var(--spacing-large);
  width: 80%;
  font-size: var(--font-size-md);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: .3s;
  align-self: flex-start
}

.product__detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-unit);
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: var(--spacing-small);
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent
}

.product__detail-list::-webkit-scrollbar {
  width: 8px
}

.product__detail-list::-webkit-scrollbar-track {
  background: 0 0;
  border-radius: 4px
}

.product__detail-list::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
  opacity: .6;
  transition: opacity .3s
}

.product__detail-list::-webkit-scrollbar-thumb:hover {
  opacity: 1;
  background: var(--color-primary)
}

.product__detail-list-item {
  padding: var(--spacing-unit) 0;
  cursor: pointer;
  transition: .3s;
  border-bottom: 2px solid var(--color-secondary);
  opacity: 0;
  transform: translateX(20px)
}

.product__detail-view--visible .product__detail-list-item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1)
}

.product__detail-view--visible .product__detail-list-item:nth-child(2) {
  transition-delay: 0.5s
}

.product__detail-view--visible .product__detail-list-item:nth-child(3) {
  transition-delay: 0.6s
}

.product__detail-view--visible .product__detail-list-item:nth-child(4) {
  transition-delay: 0.7s
}

.product__detail-list-item:last-child {
  border-bottom: none
}

.product__detail-list-item-name {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  transition: .3s
}

.product__detail-list-item--active .product__detail-list-item-name,
.tastings__info-label {
  font-size: var(--font-size-lg);
  color: var(--color-accent);
  font-weight: var(--fw-bold)
}

.product__detail-list-item-description {
  font-size: var(--font-size-sm);
  color: var(--color-secondary);
  margin: 0;
  display: none
}

.product__detail-list-item--active .product__detail-list-item-description {
  display: block
}

.product__detail-list-item:hover:not(.product__detail-list-item--active) .product__detail-list-item-name {
  color: var(--color-accent);
  opacity: .9
}

.product__description--hidden,
.product__grid--hidden,
.product__title--hidden,
.rental__slider-nav {
  display: none
}

@media (max-width:768px) {

  .header__menu,
  .header__nav {
    top: 0;
    background-color: var(--color-primary)
  }

  .header,
  .header__item,
  .header__nav {
    width: 100%
  }

  .header {
    padding: 0;
    margin-top: 0;
    z-index: 1001
  }

  .header__nav {
    max-width: 100%;
    margin: 0;
    justify-content: space-between
  }

  .header__logo {
    filter: brightness(0) saturate(100%) invert(100%) !important
  }

  .header__nav .header__logo,
  .header__nav:has(.header__menu--primary) .header__logo {
    filter: brightness(0) saturate(100%) invert(100%) !important
  }

  .header__logo img {
    height: 60px;
    width: auto;
    object-fit: contain
  }

  .header__toggle {
    display: flex;
    margin-left: auto
  }

  .header__toggle[aria-expanded=true] .header__toggle-bar:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg)
  }

  .header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
    width: 0
  }

  .header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg)
  }

  .header__menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    padding: calc(var(--spacing-large) * 2) var(--spacing-unit);
    padding-top: calc(var(--spacing-large) * 3);
    border-radius: 0;
    margin-left: 0;
    z-index: 1000;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--spacing-unit)
  }

  .header__menu[aria-expanded=true] {
    display: flex
  }

  .header__link {
    padding: var(--spacing-unit);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-light);
    font-size: var(--font-size-lg);
    width: 100%;
    text-align: left
  }

  .header__link:hover {
    color: var(--color-accent)
  }

  .product {
    padding-top: var(--spacing-unit);
    margin-top: 0
  }

  .product__title {
    font-size: var(--font-size-xl);
    margin-top: var(--spacing-unit)
  }

  .product__description {
    font-size: var(--font-size-sm);
    padding: 0 var(--spacing-unit)
  }

  .product__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-unit);
    margin-bottom: 20px
  }

  .product__card:first-child {
    order: 1
  }

  .product__card:nth-child(2) {
    order: 2
  }

  .product__card:nth-child(3) {
    order: 3
  }

  .product__card:nth-child(4) {
    order: 4
  }

  .product__card:nth-child(5) {
    order: 5
  }

  .product__card:nth-child(6) {
    order: 6
  }

  .product__card {
    aspect-ratio: 1;
    min-height: auto;
    height: auto
  }

  .product__detail-view {
    display: grid;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto;
    gap: var(--spacing-unit);
    padding: 0 var(--spacing-unit);
    min-height: auto;
    align-items: start
  }

  .product__detail-center {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-unit) 0
  }

  .product__detail-right {
    grid-column: 2;
    grid-row: 1;
    padding: var(--spacing-unit) 0
  }

  .product__detail-center .product__detail-image-wrapper {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: var(--spacing-unit)
  }

  .product__detail-center .product__detail-image {
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain
  }

  .bg-product {
    width: 200px !important;
    height: 200px !important;
    max-width: 200px;
    max-height: 200px
  }

  .product__detail-list {
    max-height: 250px;
    font-size: var(--font-size-sm);
    gap: calc(var(--spacing-unit) * .5)
  }

  .product__detail-list-item {
    padding: calc(var(--spacing-unit) * .5) 0
  }

  .product__detail-list-item-name {
    font-size: var(--font-size-md)
  }

  .product__detail-back-btn {
    width: 100%;
    padding: calc(var(--spacing-unit) * .75) var(--spacing-unit);
    font-size: var(--font-size-sm)
  }

  .product__detail-left {
    grid-column: 1/-1;
    grid-row: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
    padding: var(--spacing-unit) 0
  }

  .product__detail-item {
    flex: 1;
    min-width: calc(50% - var(--spacing-unit));
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small)
  }
}

.rental,
.rental__products {
  grid-template-columns: 1fr 1fr
}

.rental {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 700px
}

.rental__header {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-unit);
  margin: 0 80px
}

.rental__product-item,
.rental__products {
  display: grid;
  gap: var(--spacing-large);
  position: relative
}

.rental__title {
  text-align: left;
  white-space: nowrap
}

.rental__description {
  color: var(--color-neutral);
  text-align: left;
  max-width: 550px
}

.rental__products {
  grid-column: 1/-1;
  grid-row: 2;
  align-items: start
}

.rental__product-item {
  grid-template-columns: auto 1fr;
  align-items: center
}

.rental__product-item--mobile {
  grid-column: 2;
  grid-row: 1;
  top: -50%
}

.rental__product-item--compact {
  grid-column: 1;
  grid-row: 2;
  top: -80%
}

.rental__product-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: auto;
  left: 3%
}

.rental__product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.rental__product {
  background: var(--color-light);
  border-radius: calc(var(--radius-base));
  padding: var(--spacing-small);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small);
  position: relative;
  margin-left: -100px;
  z-index: 1;
  width: 470px;
  height: 240px
}

.rental__product-title {
  font-size: var(--font-size-lx);
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
  text-align: left;
  margin: 0 40px
}

.rental__product-description {
  font-size: var(--font-size-md);
  color: var(--color-secondary);
  line-height: var(--lh-base);
  margin: 0 40px
}

.events,
.footer,
.tastings {
  position: relative
}

.events__title,
.tastings__title {
  text-align: center
}

.events__description {
  color: var(--color-neutral);
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--spacing-large)
}

.events__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-large);
  margin: 0 auto var(--spacing-large);
  padding: 0 var(--spacing-unit)
}

.events__service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color-accent);
  border-radius: calc(var(--radius-base));
  padding: var(--spacing-small);
  overflow: hidden;
  min-height: 420px;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer
}

.events__service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-clair)
}

.events__service-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0
}

.events__service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 26, 31, .7) 0, rgba(43, 26, 31, .5) 50%, rgba(43, 26, 31, .7) 100%);
  z-index: 1
}

.events__service-card:first-child .events__service-image {
  background-image: url('../img/events/atelier-degustation.jpg')
}

.events__service-card:nth-child(2) .events__service-image {
  background-image: url('../img/events/animation-clients-vin.jpg')
}

.events__service-card:nth-child(3) .events__service-image {
  background-image: url('../img/events/prestations-sur-mesure-vins.jpg')
}

.events__service-title {
  position: relative;
  color: var(--color-light);
  font-size: var(--font-size-xl);
  font-weight: var(--fw-semibold);
  text-align: center;
  z-index: 2
}

.events__service-description {
  position: relative;
  font-size: var(--font-size-sm);
  text-align: center;
  color: var(--color-neutral);
  z-index: 2
}

.events__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-large);
  padding: 0 var(--spacing-unit);
  align-items: center;
  padding-top: calc(var(--spacing-large) * 1.2);
  padding-bottom: calc(var(--spacing-large) * 1.2)
}

.events__process-title {
  font-size: var(--font-size-xl);
  color: var(--color-accent)
}

.events__process-list {
  display: flex;
  flex-direction: column;
  list-style: decimal inside;
  padding-left: 1rem;
  color: var(--color-light);
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
  gap: 1rem
}

.events__process-item {
  display: list-item;
  list-style: decimal
}

.events__process-desc {
  font-size: var(--font-size-md);
  color: var(--color-neutral);
  font-weight: var(--fw-regular)
}

.footer__hours-item strong,
.tastings__event-date {
  font-weight: var(--fw-semibold)
}

.events__process-desc,
.events__process-step {
  display: block
}

.events__gallery {
  position: relative;
  height: 500px;
  padding: var(--spacing-large) 0
}

.events__gallery-item {
  position: absolute;
  width: 270px;
  height: 340px;
  border-radius: var(--radius-base);
  overflow: hidden;
  transition: transform .3s, z-index .3s, box-shadow .3s
}

.events__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  transform: none !important
}

.events__gallery-item--1 {
  bottom: 0;
  left: 0;
  transform: rotate(-5deg)
}

.events__gallery-item--2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  z-index: 1
}

.events__gallery-item--3 {
  top: 10%;
  left: 50%;
  transform: rotate(3deg)
}

.events__gallery-item:hover {
  z-index: 10;
  box-shadow: var(--shadow-clair)
}

.events__gallery-item--1:hover {
  transform: rotate(-3deg) scale(1.05) !important;
  box-shadow: var(--shadow-clair)
}

.events__gallery-item--2:hover {
  transform: translate(-50%, -50%) rotate(0) scale(1.05) !important;
  box-shadow: var(--shadow-clair)
}

.events__gallery-item--3:hover {
  transform: rotate(1deg) scale(1.05) !important;
  box-shadow: var(--shadow-clair)
}

.footer__map-clip,
.testimonials__card,
.testimonials__card:hover,
.whatsapp-widget {
  box-shadow: var(--shadow-sombre)
}

.events__gallery-item.staggered {
  opacity: 1 !important;
  transition: transform .3s, z-index .3s, box-shadow .3s !important
}

.events__gallery-item--1.staggered:not(:hover) {
  transform: rotate(-5deg) !important
}

.events__gallery-item--2.staggered:not(:hover) {
  transform: translate(-50%, -50%) rotate(2deg) !important
}

.events__gallery-item--3.staggered:not(:hover) {
  transform: rotate(3deg) !important
}

.tastings__description {
  color: var(--color-neutral);
  text-align: center;
  max-width: 900px;
  margin: 0 auto calc(var(--spacing-large) * 1.5)
}

.tastings__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-large);
  max-width: 1600px;
  margin: 0 auto
}

.tastings__panel {
  background: var(--color-secondary);
  border-radius: calc(var(--radius-base));
  padding: calc(var(--spacing-large));
  display: flex;
  flex-direction: column;
  height: 400px
}

.tastings__panel-title {
  color: var(--color-light);
  font-size: var(--font-size-lx)
}

.tastings__events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small)
}

.tastings__event-item {
  padding-bottom: var(--spacing-small)
}

.tastings__event-date {
  font-size: var(--font-size-md);
  color: var(--color-light)
}

.google-badge__rating,
.testimonials__author-name {
  font-weight: var(--fw-bold)
}

.tastings__event-detail {
  font-size: var(--font-size-sm);
  color: var(--color-accent)
}

.tastings__panel--program {
  width: 700px
}

.tastings__panel--info {
  margin: 20px 0;
  width: 400px
}

.tastings__info-item,
.tastings__info-item:last-of-type {
  margin-bottom: var(--spacing-large)
}

.tastings__info-text {
  font-size: var(--font-size-sm);
  color: var(--color-light)
}

.tastings__info-note {
  font-size: var(--font-size-sm);
  color: var(--color-neutral);
  font-style: italic
}

.tastings__reservation-note {
  font-size: var(--font-size-sm);
  color: var(--color-light);
  opacity: .75;
  font-style: italic;
  margin: 0;
  text-align: left
}

.about {
  position: relative;
  padding-bottom: 0
}

.about__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: var(--spacing-large)
}

.about__intro {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-large);
  padding-right: var(--spacing-large);
  text-align: left
}

.about__partners .container,
.about__portrait {
  align-items: center;
  display: flex;
  position: relative
}

.about__paragraph {
  color: var(--color-light);
  max-width: 620px
}

.about__portrait {
  justify-content: center;
  padding-left: var(--spacing-large)
}

.about__portrait-img {
  width: 300px;
  height: auto;
  object-fit: contain
}

.about__partners {
  background: var(--color-light);
  max-height: 120px;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important
}

.about__partners .container {
  gap: var(--spacing-large);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
  overflow: hidden
}

.about__partners-title {
  color: var(--color-accent);
  white-space: nowrap
}

.about__partners-logos {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-large) * 2)
}

.about__partner-logo {
  display: flex;
  transition: opacity .3s
}

.about__partner-logo img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%)
}

.testimonials {
  position: relative;
  background: var(--color-light);
  background-image: url("/assets/img/brand/patterns/pattern-alt.svg");
  background-repeat: repeat;
  background-size: 1620px cover;
  padding-top: calc(var(--spacing-large) * 2);
  padding-bottom: calc(var(--spacing-large) * 2)
}

.testimonials__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-large) * 2);
  margin: 0 auto calc(var(--spacing-large) * 1.5) auto;
  padding: 0 var(--spacing-unit)
}

.testimonials__intro {
  display: flex;
  flex-direction: column
}

.testimonials__description {
  color: var(--color-secondary)
}

.testimonials__carousel {
  position: relative;
  width: 380px;
  height: 350px;
  perspective: 1000px
}

.testimonials__carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%
}

.testimonials__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mixte-color);
  border-radius: var(--radius-base);
  padding: calc(var(--spacing-large));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: .6s cubic-bezier(.4, 0, .2, 1);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1
}

.footer__section--map,
.footer__top {
  position: relative
}

.testimonials__card--active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
  pointer-events: auto
}

.testimonials__card--next {
  opacity: .6;
  transform: translateX(15px) translateY(15px) scale(.95);
  z-index: 2;
  pointer-events: auto
}

.testimonials__card--prev {
  opacity: 0;
  transform: translateX(-10px) translateY(10px) scale(.9);
  z-index: 1;
  pointer-events: none
}

.testimonials__card--next:hover {
  transform: translateX(20px) translateY(20px) scale(.97)
}

.testimonials__quote {
  position: relative;
  font-size: var(--font-size-md);
  color: var(--color-light)
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: var(--spacing-unit)
}

.testimonials__avatar {
  width: 45px;
  height: 45px;
  background: var(--color-secondary);
  color: var(--color-light);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-small)/ 2.5)
}

.testimonials__author-name {
  font-size: var(--font-size-sm);
  color: var(--color-light)
}

.testimonials__author-role {
  font-size: var(--font-size-xs);
  color: var(--color-neutral)
}

.testimonials__google {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-small)
}

.google-reward {
  height: 40px;
  width: auto;
  object-fit: contain
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: var(--font-size-md);
  color: var(--color-secondary);
  transition: .25s
}

.google-badge__star {
  color: #f4b400;
  width: 1.125rem;
  height: 1.125rem
}

.footer__bottom-link:hover,
.footer__contact-link:hover,
.footer__section-title {
  color: var(--color-accent)
}

.google-badge__star svg {
  fill: #F4B400;
  stroke: #F4B400
}

.footer__section--hours,
.footer__section--social {
  grid-column: 3;
  gap: var(--spacing-unit);
  text-align: left
}

.footer__top {
  padding: calc(var(--spacing-large) * 2);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  max-width: 1520px
}

.footer__section {
  width: 380px
}

.footer__section--hours {
  display: flex;
  flex-direction: column;
  grid-row: 1
}

.footer__section--social {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-large);
  align-self: start
}

.footer__section-title {
  text-transform: none
}

.legal__subtitle,
.legal__title {
  font-weight: var(--fw-bold);
  text-transform: uppercase
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small);
  margin-bottom: var(--spacing-unit)
}

.footer__hours-item {
  font-size: var(--font-size-md);
  color: var(--color-light)
}

.footer__hours-note {
  font-size: var(--font-size-sm);
  color: var(--color-light);
  opacity: .85;
  margin: 0;
  font-style: italic
}

.footer__map-clip {
  width: 100%;
  height: 100%;
  clip-path: ellipse(49% 40% at 50% 50%)
}

.footer__map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0
}

.footer__section--contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-unit);
  text-align: left
}

.footer__contact-item {
  font-size: var(--font-size-md);
  color: var(--color-light)
}

.footer__contact-link {
  display: block;
  margin-top: var(--spacing-small) * 2;
  color: var(--color-neutral);
  text-decoration: none;
  transition: color .3s
}

.footer__bottom,
.footer__bottom-link,
.legal__content {
  color: var(--color-light)
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: var(--spacing-unit);
  margin-top: var(--spacing-unit)
}

.footer__social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  text-decoration: none
}

.footer__bottom-link,
.legal__section a {
  text-decoration: none;
  transition: color .3s
}

.footer__social-icon:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-clair)
}

svg.lucide {
  width: 36px;
  height: 36px;
  stroke: var(--color-light);
  stroke-width: 1.4
}

.footer__bottom {
  background: var(--color-secondary);
  font-size: var(--font-size-xs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  flex-wrap: wrap;
  gap: var(--spacing-small)
}

@media (max-width:968px) {
  .product__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-unit)
  }

  .rental {
    margin: 0;
    padding: var(--spacing-large) 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-large)
  }

  .rental__header {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding: 0 var(--spacing-unit)
  }

  .rental__title {
    white-space: initial
  }

  .rental__products {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    min-height: 400px
  }

  .rental__product-image,
  .rental__product-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex
  }

  .rental__product-item {
    min-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 0;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    padding: var(--spacing-large) var(--spacing-unit);
    grid-template-columns: 1fr;
    gap: var(--spacing-unit);
    margin-top: 0
  }

  .rental__product-item--mobile {
    transform: translateX(0);
    grid-column: 1;
    grid-row: 1
  }

  .rental__product-item--compact {
    transform: translateX(100%);
    grid-column: 1;
    grid-row: 2
  }

  .rental__product-item--active {
    transform: translateX(0) !important;
    z-index: 2
  }

  .rental__product-item--hidden {
    transform: translateX(-100%) !important;
    z-index: 1
  }

  .rental__product-item:not(.rental__product-item--active):not(.rental__product-item--hidden) {
    transform: translateX(100%);
    z-index: 1
  }

  .rental__product-image {
    height: 200px;
    z-index: 3;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    overflow: hidden;
    pointer-events: none
  }

  .rental__product-image img {
    width: 180px;
    height: 180px;
    object-fit: contain
  }

  .rental__product {
    width: 320px;
    min-height: 320px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding-top: 100px
  }

  .rental__product-title {
    margin-top: 20px;
    font-size: var(--font-size-lg);
    text-align: center
  }

  .rental__product-description {
    width: 85%;
    margin: 0 auto;
    font-size: var(--font-size-sm)
  }

  .rental__slider-nav {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--color-accent);
    color: var(--color-light);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    box-shadow: var(--shadow-sombre);
    padding: 0;
    margin: 0
  }

  .rental__slider-nav:active,
  .rental__slider-nav:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-sombre)
  }

  .rental__slider-nav:focus {
    outline: 2px solid var(--color-light);
    outline-offset: 2px
  }

  .rental__slider-nav--prev {
    left: var(--spacing-small)
  }

  .rental__slider-nav--next {
    right: var(--spacing-small)
  }

  .rental__slider-nav i,
  .rental__slider-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-light);
    stroke-width: 2;
    display: block
  }

  .rental__slider-nav i[data-lucide] {
    width: 24px;
    height: 24px
  }

  .events__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-unit)
  }

  .events__content,
  .tastings__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-large)
  }

  .events__process-title {
    font-size: var(--font-size-lx)
  }

  .events__gallery {
    height: 400px
  }

  .events__gallery-item--1 {
    width: 220px;
    height: 160px
  }

  .events__gallery-item--2 {
    width: 260px;
    height: 200px
  }

  .events__gallery-item--3 {
    width: 240px;
    height: 180px
  }

  .tastings {
    padding-top: 0
  }

  .tastings__panel {
    max-width: 90%;
    height: auto;
    min-height: auto;
    padding: var(--spacing-unit);
    margin: 0 auto
  }

  .tastings__panel--program {
    width: 100% !important
  }

  .tastings__panel--info {
    width: 100% !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .tastings__panel--info .tastings__info-item,
  .tastings__panel--info .tastings__info-label,
  .tastings__panel--info .tastings__info-note,
  .tastings__panel--info .tastings__info-text,
  .tastings__panel--info .tastings__panel-title {
    text-align: left;
    width: 90%
  }

  .tastings__info-label {
    font-size: var(--font-size-lg)
  }

  .tastings__panel--info .tastings__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-unit)
  }

  .tastings__panel--info .btn {
    margin: var(--spacing-unit) auto
  }

  .about__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
    padding: 0 var(--spacing-unit)
  }

  .about__paragraph,
  .about__partners .container {
    gap: var(--spacing-unit)
  }

  .about__title {
    font-size: var(--font-size-xl);
    order: 1
  }

  .about__paragraph {
    order: 2;
    display: flex;
    flex-direction: column
  }

  .about__portrait {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
  }

  .about__portrait-img {
    max-width: 250px;
    width: 100%;
    height: auto
  }

  .about__partners-title {
    font-size: var(--font-size-md)
  }

  .about__partners-logos {
    gap: calc(var(--spacing-large))
  }

  .about__partner-logo img {
    width: 50px;
    height: 50px
  }

  .testimonials__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
    padding: 0 var(--spacing-unit);
    max-width: 100%
  }

  .testimonials__intro {
    width: 100%;
    text-align: center;
    order: 1
  }

  .testimonials__title {
    font-size: var(--font-size-xl);
    text-align: center
  }

  .testimonials__description {
    font-size: var(--font-size-sm);
    text-align: center
  }

  .testimonials__carousel {
    order: 2;
    width: 100%;
    max-width: 380px;
    min-height: 300px;
    margin: 0 auto
  }

  .footer__section,
  .footer__section--social .footer__section-title {
    text-align: center
  }

  .footer__top {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large)
  }

  .footer__section {
    width: 90%;
    margin: 0 auto
  }

  .footer__credit,
  .footer__section--map {
    display: none
  }

  .footer__social {
    justify-content: center
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-unit) var(--spacing-large);
    gap: var(--spacing-unit);
    flex-wrap: nowrap
  }

  .footer__bottom small {
    white-space: nowrap;
    flex-shrink: 0
  }

  .footer__bottom small:nth-of-type(2) {
    order: 1
  }

  .footer__bottom small:nth-of-type(3) {
    order: 2
  }
}

@media (max-width:568px) {

  .events__title,
  .rental__title {
    font-size: var(--font-size-xl)
  }

  .footer__contact-item,
  .footer__hours-item,
  .rental__description,
  .rental__product-description,
  .tastings__event-date,
  .tastings__info-label,
  .tastings__info-text {
    font-size: var(--font-size-sm)
  }

  .footer__section-title,
  .rental__product-title,
  .tastings__panel-title {
    font-size: var(--font-size-lg)
  }

  .rental__product-image {
    height: 150px
  }

  .events__description,
  .tastings__description {
    font-size: var(--font-size-sm);
    padding: 0 var(--spacing-unit)
  }

  .events__service-card {
    min-height: 250px;
    padding: var(--spacing-unit)
  }

  .events__service-title {
    font-size: var(--font-size-md)
  }

  .events__gallery {
    height: 350px
  }

  .events__gallery-item--1 {
    width: 180px;
    height: 130px;
    top: 0
  }

  .events__gallery-item--2 {
    width: 200px;
    height: 150px
  }

  .events__gallery-item--3 {
    width: 190px;
    height: 140px;
    left: 47%
  }

  .events__service-card:first-child {
    order: 1;
    grid-column: 1
  }

  .events__service-card:nth-child(2) {
    order: 2;
    grid-column: 2
  }

  .events__service-card:nth-child(3) {
    order: 3;
    grid-column: 1/-1
  }

  .tastings__event-detail {
    font-size: var(--font-size-xs)
  }

  .about__partner-logo {
    max-width: 140px;
    height: 50px
  }

  .testimonials__author {
    gap: calc(var(--spacing-unit) * .75)
  }

  .testimonials__google {
    padding: var(--spacing-unit) 0;
    order: 3
  }

  .footer__top {
    padding: var(--spacing-large) 0
  }

  .footer__social-icon {
    width: 45px;
    height: 45px
  }

  .footer__social-icon svg {
    width: 20px;
    height: 20px
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform .2s
}

.whatsapp-widget img,
.whatsapp-widget svg {
  width: 48px;
  height: 48px
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-clair)
}

.legal__content {
  position: relative;
  margin: 0 auto;
  max-width: 1066px;
  justify-content: center
}

.legal__section,
.legal__title {
  margin-bottom: var(--spacing-large)
}

.legal__title {
  position: relative;
  text-align: center;
  font-size: var(--font-size-xl);
  color: var(--color-accent)
}

.legal__section,
.legal__section a:hover {
  color: var(--color-neutral)
}

.legal__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-light)
}

.legal__section p {
  font-size: var(--font-size-md)
}

.legal__section a {
  color: var(--color-accent)
}

.legal__content.staggered .staggered {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--anim-duration) ease var(--delay, 0s), transform var(--anim-duration) ease var(--delay, 0s)
}

.legal__content.staggered .legal__title:not(.staggered),
.legal__content.staggered>:not(.staggered) {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important
}

.legal__content .legal__section:not(.staggered),
.legal__content .legal__section:not(.staggered) *,
.legal__content .legal__title:not(.staggered),
.legal__content.reveal .staggered,
.legal__content.staggered.reveal .staggered {
  opacity: 1 !important;
  transform: none !important
}

@media (max-width:767px) {
  .whatsapp-widget {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px
  }

  .whatsapp-widget img,
  .whatsapp-widget svg {
    width: 36px;
    height: 36px
  }

  .legal__title {
    font-size: var(--font-size-lg)
  }

  .legal__content {
    position: relative;
    margin: 0 auto;
    max-width: 266px;
    justify-content: center;
    overflow: hidden
  }
}