@media (min-width: 1401px) {
  .site-header {
    gap: clamp(14px, 1.3vw, 24px);
    padding-inline: clamp(24px, 3.2vw, 60px);
  }

  .site-header .brand {
    min-width: 230px;
  }

  .site-header .brand strong,
  .site-header .brand small {
    white-space: nowrap;
  }

  .site-header .desktop-nav {
    gap: clamp(16px, 1.45vw, 28px);
  }

  .site-header .header-booking-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .site-header .header-booking-actions .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .site-header .header-app-button {
    border: 1px solid var(--green-dark);
    color: #fff;
    background: var(--green-dark);
  }

  .site-header .header-app-button:hover {
    color: #fff;
    background: #1d3829;
  }
}

.site-social-strip {
  min-height: 44px;
  padding: 5px clamp(22px, 5vw, 80px);
  border-bottom: 1px solid rgba(39, 74, 54, 0.12);
  background: #f1f5ea;
}

.site-social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.site-social-label {
  color: #52665a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-social-link {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39, 74, 54, 0.25);
  border-radius: 50%;
  color: var(--green-dark, #274a36);
  background: #fffdf8;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

main .socials:not(.socials-official) {
  display: none;
}

main .socials.socials-official {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

main .socials.socials-official p {
  margin: 0;
}

main .socials .contact-social-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

main .socials .contact-social-links .site-social-link {
  width: 44px;
  height: 44px;
}

.site-social-link:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.site-social-link.social-facebook { --social-color: #0866ff; color: var(--social-color); }
.site-social-link.social-instagram { --social-color: #ff0069; color: var(--social-color); }
.site-social-link.social-linkedin { --social-color: #0a66c2; color: var(--social-color); }
.site-social-link.social-youtube { --social-color: #ff0000; color: var(--social-color); }
.site-social-link:hover { background: var(--social-color); }

body > footer .footer-brand {
  flex-wrap: wrap;
}

body > footer .footer-social-links {
  margin-left: 6px;
}

body > footer .footer-social-links .site-social-link {
  color: #fff;
  border-color: transparent;
  background: var(--social-color);
}

.site-hours-card {
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin-top: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(39, 74, 54, 0.18);
  border-radius: 16px 4px 16px 4px;
  color: var(--green-dark, #274a36);
  background: #f1f5ea;
}

.site-hours-status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-hours-status i {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #be6d12;
  box-shadow: 0 0 0 4px rgba(190, 109, 18, 0.13);
}

.site-hours-card[data-open] .site-hours-status i {
  background: #2f7a48;
  box-shadow: 0 0 0 4px rgba(47, 122, 72, 0.13);
}

.site-hours-card strong {
  font-size: 0.95rem;
}

.site-hours-card p {
  margin: 0;
  color: #52665a;
  font-size: 0.9rem;
}

.site-hours-card a {
  width: fit-content;
  margin-top: 2px;
  color: var(--green-dark, #274a36);
  font-size: 0.88rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-opening-hours {
  display: grid;
  gap: 2px;
  min-width: 215px;
  font-size: 0.84rem;
}

.footer-opening-hours strong {
  color: #d9efc2;
}

.footer-opening-hours span {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 760px) {
  .site-social-strip {
    min-height: 46px;
    padding-inline: 16px;
  }

  .site-social-strip-inner {
    justify-content: center;
  }

  .site-social-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-social-link {
    width: 36px;
    height: 36px;
  }

  body > footer .footer-social-links {
    width: 100%;
    margin: 10px 0 0;
  }

  main .socials.socials-official {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-hours-card {
    padding: 14px 15px;
  }

  .footer-opening-hours {
    width: 100%;
  }
}

.about-hero > img.about-portrait,
.about-hero > img[src*="didier-benac-medallion-v3"] {
  display: block;
  width: min(32vw, 340px) !important;
  height: auto !important;
  max-width: 340px !important;
  max-height: 340px !important;
  aspect-ratio: 1;
  justify-self: center;
  align-self: center;
  object-fit: contain !important;
  object-position: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 24px 60px rgba(39, 74, 54, 0.2);
  overflow: hidden;
}

@media (max-width: 900px) {
  .about-hero > img.about-portrait,
  .about-hero > img[src*="didier-benac-medallion-v3"] {
    width: min(45vw, 300px) !important;
    max-width: 300px !important;
    max-height: 300px !important;
    margin: 0 auto 56px;
  }
}

@media (max-width: 760px) {
  .about-hero > img.about-portrait,
  .about-hero > img[src*="didier-benac-medallion-v3"] {
    width: min(64vw, 250px) !important;
    max-width: 250px !important;
    max-height: 250px !important;
    margin-bottom: 44px;
  }
}

@media (pointer: coarse) {
  .site-social-link {
    min-height: 36px;
  }

  .site-social-link:hover {
    color: var(--social-color);
    border-color: rgba(39, 74, 54, 0.25);
    background: #fffdf8;
    transform: none;
  }

  body > footer .footer-social-links .site-social-link:hover {
    color: #fff;
    border-color: transparent;
    background: var(--social-color);
  }
}
