* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --transparent: rgba(255, 255, 255, 0.7);
  --main: #ADBDA3;
  --white: #ffffff;
  --text: #242424;
  --background: #ffffff;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  outline: none;
  border: none;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: #ffffff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.main-logo {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  width: clamp(240px, 30vw, 560px);
  max-width: 75vw;

  height: auto;
}

.menu-trigger {
  position: absolute;

  left: clamp(18px, 2.2vw, 40px);
  top: clamp(18px, 2.2vw, 40px);

  z-index: 5;

  width: 52px;
  height: 52px;

  border: 0;
  background: transparent;

  color: var(--white);

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
}

.hamburger {
  display: block;

  font-size: clamp(40px, 3vw, 50px);
  line-height: 1;

  transform: translateY(-6px);
}

.booking {
  position: absolute;

  right: clamp(18px, 2.2vw, 40px);
  top: clamp(18px, 2.2vw, 40px);

  z-index: 4;

  padding:
    clamp(11px, 1vw, 13px) clamp(18px, 1.8vw, 25px);

  border: 0;
  border-radius: 50px;

  background: var(--main);
  color: var(--white);

  font-size: clamp(13px, 1.1vw, 20px);
  font-weight: 500;

  letter-spacing: 0.05em;

  cursor: pointer;

  white-space: nowrap;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.booking:hover {
  transform: translateY(-2px);
}

.booking:active {
  transform: translateY(0);
}

.socials {
  position: absolute;

  right: clamp(18px, 2.2vw, 40px);
  bottom: clamp(18px, 2.2vw, 40px);

  z-index: 4;

  display: flex;
  gap: clamp(10px, 1vw, 15px);
}

.socials .icon {
  width: clamp(42px, 3.5vw, 50px);
  height: clamp(42px, 3.5vw, 50px);

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--transparent);

  display: grid;
  place-items: center;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.socials .icon:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.socials .icon img {
  width: 50%;
  height: 50%;

  object-fit: contain;
}

.video-section {
  width: 100%;

  min-height: clamp(620px, 75vh, 820px);

  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);

  background: var(--white);
}

.video-section.reverse .section-video {
  order: 2;
}

.video-section.reverse .section-content {
  order: 1;
}

.section-video {
  position: relative;

  min-width: 0;
  min-height: inherit;

  overflow: hidden;

  background: #eaeaea;
}

.section-video video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.section-content {
  min-width: 0;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  padding:
    clamp(60px, 7vw, 120px) clamp(40px, 7vw, 130px);
}

.section-subtitle {
  margin-bottom: clamp(16px, 2vw, 24px);

  color: var(--main);

  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 500;

  line-height: 1.4;

  letter-spacing: 0.22em;
}

.section-content h2 {
  width: 100%;

  margin-bottom: clamp(22px, 2.4vw, 32px);

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(42px, 4.4vw, 82px);
  font-weight: 500;

  line-height: 0.98;

  color: var(--text);

  overflow-wrap: break-word;
}

.section-content p {
  width: 100%;
  max-width: 560px;

  margin-bottom: clamp(28px, 3vw, 42px);

  font-size: clamp(15px, 1.05vw, 18px);

  line-height: 1.8;

  font-weight: 300;

  color: #555555;
}

.section-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    clamp(12px, 1vw, 15px) clamp(20px, 2vw, 30px);

  border: 2px solid var(--main);
  border-radius: 50px;

  color: var(--main);

  text-decoration: none;

  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;

  line-height: 1.3;

  letter-spacing: 0.07em;

  text-align: center;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.section-button:hover {
  background: var(--main);
  color: var(--white);
}

.drawer-overlay {
  position: fixed;

  inset: 0;

  z-index: 20;

  background: rgba(0, 0, 0, 0.18);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;

  z-index: 30;

  left: 0;
  top: 0;

  width: min(400px, 85vw);

  height: 100vh;
  height: 100dvh;

  padding:
    clamp(25px, 3vw, 34px) clamp(24px, 3.5vw, 48px) clamp(28px, 3vw, 36px);

  background: var(--main);
  color: var(--white);

  transform: translateX(-102%);

  transition:
    transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);

  display: flex;
  flex-direction: column;

  overflow-y: auto;

  -webkit-overflow-scrolling: touch;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;

  justify-content: flex-start;
  align-items: flex-start;

  margin-bottom: clamp(25px, 4vh, 40px);
}

.drawer-close {
  border: 0;
  background: transparent;

  color: var(--white);

  font-size: clamp(42px, 4vw, 50px);
  line-height: 1;

  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
}

.drawer-nav a {
  position: relative;

  padding: clamp(14px, 2vh, 18px) 2px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  color: var(--white);

  text-decoration: none;

  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;

  line-height: 1.3;

  letter-spacing: 0.04em;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.drawer-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 8px;
}

.drawer-bottom {
  margin-top: auto;

  padding-top: 30px;
}

.drawer-bottom p {
  margin-bottom: 18px;

  font-size: clamp(14px, 1.2vw, 17px);

  line-height: 1.5;
}

.drawer-bottom button {
  width: 100%;

  padding: 14px 20px;

  border: 2px solid var(--white);
  border-radius: 50px;

  background: transparent;
  color: var(--white);

  font-size: clamp(15px, 1.2vw, 18px);

  letter-spacing: 0.05em;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.drawer-bottom button:hover {
  background: var(--white);
  color: var(--main);
}

body.drawer-active {
  width: 100%;
  overflow-y: scroll;
}

body.drawer-active .menu-trigger {
  pointer-events: none !important;
}

@media (min-width: 1600px) {

  .main-logo {
    width: clamp(420px, 27vw, 600px);
  }

  .section-content {
    padding-left: 9vw;
    padding-right: 9vw;
  }

}

@media (max-width: 1200px) {

  .video-section {
    grid-template-columns: 52% 48%;
  }

  .section-content {
    padding:
      70px 6vw;
  }

}

@media (max-width: 1000px) {

  .hero {
    min-height: 550px;
  }

  .main-logo {
    width: clamp(260px, 40vw, 420px);
  }

  .video-section {
    min-height: auto;

    grid-template-columns: 1fr;
  }

  .section-video {
    min-height: clamp(500px, 65vh, 700px);
  }

  .section-content {
    min-height: 520px;

    padding:
      70px clamp(35px, 8vw, 80px);
  }

  .video-section.reverse .section-video {
    order: 1;
  }

  .video-section.reverse .section-content {
    order: 2;
  }

  .section-content h2 {
    max-width: 700px;

    font-size: clamp(48px, 7vw, 72px);
  }

  .section-content p {
    max-width: 650px;
  }

}

@media (max-width: 768px) {

  .hero {
    min-height: 500px;
  }

  .main-logo {
    width: clamp(240px, 55vw, 380px);
  }

  .menu-trigger {
    left: 18px;
    top: 18px;
  }

  .booking {
    right: 18px;
    top: 20px;
  }

  .socials {
    right: 18px;
    bottom: 20px;
  }

  .section-video {
    min-height: 55vh;
  }

  .section-content {
    min-height: auto;

    padding:
      65px clamp(28px, 7vw, 55px);
  }

  .section-content h2 {
    font-size: clamp(44px, 9vw, 64px);
  }

}

@media (max-width: 600px) {

  .hero {
    height: 100svh;

    min-height: 480px;
  }

  .hero-video {
    object-position: center center;
  }

  .main-logo {
    width: min(68vw, 310px);
    max-width: none;
  }

  .menu-trigger {
    left: 12px;
    top: 13px;

    width: 46px;
    height: 46px;
  }

  .hamburger {
    font-size: 40px;
  }

  .booking {
    right: 14px;
    top: 16px;

    padding: 10px 17px;

    font-size: 12px;

    letter-spacing: 0.04em;
  }

  .socials {
    right: 14px;
    bottom: 18px;

    gap: 9px;
  }

  .socials .icon {
    width: 42px;
    height: 42px;
  }

  .section-video {
    min-height: 52vh;
  }

  .section-content {
    padding: 55px 24px;
  }

  .section-subtitle {
    margin-bottom: 18px;

    font-size: 10px;

    letter-spacing: 0.18em;
  }

  .section-content h2 {
    margin-bottom: 22px;

    font-size: clamp(40px, 12vw, 54px);

    line-height: 1;
  }

  .section-content p {
    margin-bottom: 28px;

    font-size: 15px;

    line-height: 1.7;
  }

  .section-button {
    width: 100%;
    max-width: 320px;

    padding: 13px 20px;

    font-size: 11px;
  }

  .drawer {
    width: min(88vw, 360px);

    padding:
      24px 24px 28px;
  }

  .drawer-nav a {
    padding: 14px 2px;

    font-size: 17px;
  }

  .drawer-bottom p {
    font-size: 14px;
  }

}

@media (max-width: 380px) {

  .main-logo {
    width: 72vw;
  }

  .menu-trigger {
    left: 8px;
    top: 10px;
  }

  .booking {
    right: 10px;
    top: 13px;

    padding: 9px 14px;

    font-size: 11px;
  }

  .socials {
    right: 10px;
    bottom: 14px;
  }

  .socials .icon {
    width: 39px;
    height: 39px;
  }

  .section-content {
    padding:
      48px 20px;
  }

  .section-content h2 {
    font-size: 39px;
  }

  .section-content p {
    font-size: 14px;
  }

}

@media (max-height: 650px) and (min-width: 700px) {

  .hero {
    min-height: 500px;
  }

  .main-logo {
    width: clamp(240px, 24vw, 380px);
  }

  .menu-trigger,
  .booking {
    top: 20px;
  }

  .socials {
    bottom: 20px;
  }

}

.booking {
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-links {
  display: flex;
  flex-direction: column;

  gap: 10px;

  margin-bottom: 35px;
}

.contact-links a {
  color: var(--text);

  text-decoration: none;

  font-size: clamp(15px, 1vw, 17px);

  font-weight: 400;

  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: var(--main);
}

.drawer-booking {
  width: 100%;

  padding: 15px 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 2px solid var(--white);

  border-radius: 50px;

  background: transparent;

  color: var(--white);

  text-decoration: none;

  font-size: 18px;

  letter-spacing: 0.05em;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.drawer-booking:hover {
  background: var(--white);

  color: var(--main);
}

.footer {
  width: 100%;

  background: var(--main);

  color: var(--white);

  padding:
    clamp(70px, 8vw, 130px) clamp(25px, 7vw, 130px) 30px;
}

.footer-main {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(260px, 2fr) repeat(3, minmax(140px, 1fr));

  gap: clamp(40px, 6vw, 100px);

  padding-bottom: clamp(60px, 7vw, 100px);
}

.footer-brand {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-logo {
  width: clamp(200px, 18vw, 320px);

  height: auto;

  margin-bottom: 30px;
}

.footer-brand p {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(22px, 2vw, 32px);

  line-height: 1.2;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 13px;
}

.footer-title {
  margin-bottom: 10px;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 0.2em;

  opacity: 0.75;
}

.footer-column a,
.footer-column p {
  color: var(--white);

  text-decoration: none;

  font-size: 15px;

  line-height: 1.5;
}

.footer-column a {
  transition: opacity 0.2s ease;
}

.footer-column a:hover {
  opacity: 0.65;
}

.footer-bottom {
  width: 100%;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.25);

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  font-size: 12px;

  opacity: 0.85;
}

.footer-bottom div {
  display: flex;

  gap: 25px;
}

.footer-bottom a {
  color: var(--white);

  text-decoration: none;
}

@media (max-width: 1000px) {

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 60px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 260px;
  }

}

@media (max-width: 600px) {

  .footer {
    padding:
      65px 24px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 60px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: min(70vw, 260px);
  }

  .footer-brand p {
    font-size: 26px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

  .footer-bottom div {
    flex-direction: column;

    gap: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
/* =========================================
   BOOKING MODAL
========================================= */

/*body.booking-modal-active {
  overflow: hidden;
}*/


/* =========================================
   CONTENITORE MODAL
========================================= */

.booking-modal {
  position: fixed;
  inset: 0;

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}


.booking-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* =========================================
   BACKDROP
========================================= */

.booking-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.18);
}


/* =========================================
   FINESTRA MODAL
========================================= */

.booking-modal-dialog {
  position: relative;

  z-index: 2;

  width: min(1100px, 100%);

  max-height: calc(100dvh - 64px);

  overflow-y: auto;

  padding:
    clamp(34px, 4vw, 58px);

  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2);

  scrollbar-width: thin;
}


/* =========================================
   CHIUSURA
========================================= */

.booking-modal-close {
  position: absolute;

  top: 18px;
  right: 20px;

  z-index: 10;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: transparent;

  color: #222222;

  font-family: Arial, sans-serif;

  font-size: 34px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.booking-modal-close:hover {
  background: #f1f1f1;
}


/* =========================================
   STEP
========================================= */

.booking-step {
  display: none;
}


.booking-step.is-active {
  display: block;

  animation: bookingStepIn 0.3s ease;
}


@keyframes bookingStepIn {

  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================
   HEADER
========================================= */

.booking-modal-header {
  padding-right: 50px;

  margin-bottom: 26px;
}


.booking-modal-subtitle {
  display: block;

  margin-bottom: 9px;

  color: var(--main);

  font-size: 10px;

  font-weight: 500;

  line-height: 1.4;

  letter-spacing: 0.2em;
}


.booking-modal-header h2 {
  margin: 0 0 10px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      44px,
      5vw,
      66px
    );

  font-weight: 500;

  line-height: 0.95;
}


.booking-modal-header p {
  max-width: 680px;

  margin: 0;

  color: #6b6b6b;

  font-size: 14px;

  font-weight: 300;

  line-height: 1.65;
}


/* =========================================
   AREA CALENDARI
========================================= */

.booking-calendar-area {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  align-items: stretch;

  gap: 22px;

  margin-bottom: 24px;
}


/* =========================================
   PANNELLO CALENDARIO
========================================= */

.booking-calendar-panel {
  position: relative;

  min-width: 0;

  display: flex;
  flex-direction: column;

  padding:
    clamp(
      20px,
      2vw,
      26px
    );

  border:
    1px solid #e3e3e3;

  border-radius: 20px;

  background: #fafafa;

  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}


.booking-calendar-panel.is-disabled {
  opacity: 0.55;
}


/* =========================================
   TESTATA CHECK-IN / CHECK-OUT
========================================= */

.booking-calendar-topline {
  min-height: 48px;

  margin-bottom: 12px;
}


.booking-calendar-label {
  display: block;

  margin-bottom: 6px;

  color: var(--main);

  font-size: 10px;

  font-weight: 500;

  line-height: 1.3;

  letter-spacing: 0.16em;
}


.booking-calendar-selected {
  display: block;

  color: #444444;

  font-size: 12px;

  font-weight: 400;

  line-height: 1.4;
}


/* =========================================
   NAVIGAZIONE MESE
========================================= */

.calendar-navigation {
  display: grid;

  grid-template-columns:
    42px 1fr 42px;

  align-items: center;

  gap: 12px;

  margin-bottom: 16px;
}


.calendar-month {
  min-width: 0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      25px,
      2vw,
      31px
    );

  font-weight: 600;

  line-height: 1;

  text-align: center;
}


.calendar-nav {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  padding: 0;

  border:
    1px solid #dedede;

  border-radius: 50%;

  background: #ffffff;

  color: #333333;

  font-size: 18px;

  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}


.calendar-nav:hover:not(:disabled) {
  border-color: var(--main);

  background: var(--main);

  color: #ffffff;

  transform: scale(1.04);
}


.calendar-nav:disabled {
  opacity: 0.25;

  cursor: default;
}


/* =========================================
   SETTIMANA
========================================= */

.calendar-weekdays {
  display: grid;

  grid-template-columns:
    repeat(
      7,
      minmax(0, 1fr)
    );

  column-gap: 7px;

  margin-bottom: 8px;
}


.calendar-weekdays span {
  min-height: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #929292;

  font-size: 8px;

  font-weight: 500;

  line-height: 1;

  text-align: center;
}


/* =========================================
   GRIGLIA GIORNI
========================================= */

.calendar-grid {
  display: grid;

  grid-template-columns:
    repeat(
      7,
      minmax(0, 1fr)
    );

  grid-template-rows:
    repeat(
      6,
      minmax(0, 1fr)
    );

  column-gap: 7px;

  row-gap: 7px;

  flex: 1;

  min-height: 0;
}


.calendar-empty,
.calendar-day {
  aspect-ratio: 1 / 1;
}


.calendar-day {
  width: 100%;

  max-width: 43px;

  min-width: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  justify-self: center;

  padding: 0;

  border:
    1px solid transparent;

  border-radius: 50%;

  background: #ffffff;

  color: #333333;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 12px;

  font-weight: 400;

  line-height: 1;

  cursor: pointer;

  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}


.calendar-day:hover:not(:disabled):not(.is-selected) {
  border-color: var(--main);

  color: var(--main);

  transform: translateY(-1px);
}


.calendar-day.is-today:not(.is-selected) {
  border-color: var(--main);
}


.calendar-day.is-selected {
  border-color: var(--main);

  background: var(--main);

  color: #ffffff;

  font-weight: 500;

  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.08);
}


.calendar-day.is-past {
  border-color: transparent;

  background: #eeeeee;

  color: #aaaaaa;

  cursor: not-allowed;
}


.calendar-day.is-booked {
  border-color:
    rgba(
      205,
      68,
      68,
      0.14
    );

  background: #f9dede;

  color: #c13e3e;

  cursor: not-allowed;
}


.calendar-day.is-unavailable:not(.is-booked):not(.is-past) {
  background: #eeeeee;

  color: #b5b5b5;

  cursor: not-allowed;
}


.calendar-day:disabled {
  opacity: 1;
}


/* =========================================
   MESSAGGIO CHECK-OUT DISABILITATO
========================================= */

.calendar-disabled-message {
  position: absolute;

  inset: 0;

  z-index: 4;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  border-radius: inherit;

  background:
    rgba(
      250,
      250,
      250,
      0.78
    );

  color: #666666;

  font-size: 12px;

  font-weight: 500;

  line-height: 1.5;

  text-align: center;

  pointer-events: none;
}


.calendar-disabled-message[hidden] {
  display: none;
}


/* =========================================
   BOTTONI STEP
========================================= */

.booking-step-actions {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 12px;
}


.booking-step-actions-double {
  justify-content: space-between;
}


.booking-continue,
.booking-submit {
  min-width: 190px;

  min-height: 54px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border: 2px solid var(--main);

  border-radius: 50px;

  background: var(--main);

  color: #ffffff;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.1em;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}


.booking-continue:hover:not(:disabled),
.booking-submit:hover {
  background: transparent;

  color: var(--main);

  transform: translateY(-1px);
}


.booking-continue:disabled {
  opacity: 0.35;

  cursor: default;

  transform: none;
}


.booking-back {
  min-height: 54px;

  padding: 14px 28px;

  border: 1px solid #d9d9d9;

  border-radius: 50px;

  background: transparent;

  color: #444444;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 0.1em;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}


.booking-back:hover {
  background: #f5f5f5;
}


/* =========================================
   RIASSUNTO PRENOTAZIONE
========================================= */

.booking-summary {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 12px;

  margin-bottom: 24px;
}


.booking-summary > div {
  padding: 18px;

  border: 1px solid #e6e6e6;

  border-radius: 14px;

  background: #fafafa;
}


.booking-summary span {
  display: block;

  margin-bottom: 5px;

  color: var(--main);

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 0.16em;
}


.booking-summary strong {
  color: #444444;

  font-size: 13px;

  font-weight: 400;
}


/* =========================================
   FORM
========================================= */

.booking-form {
  width: 100%;
}


.booking-form-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 18px;

  margin-bottom: 20px;
}


.booking-field {
  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 8px;
}


.booking-field-full {
  grid-column: 1 / -1;
}


.booking-field label {
  color: #5c5c5c;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.14em;
}


.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;

  border: 1px solid #dddddd;

  border-radius: 12px;

  background: #ffffff;

  color: #222222;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.booking-field input,
.booking-field select {
  min-height: 52px;

  padding: 0 15px;
}


.booking-field textarea {
  min-height: 110px;

  padding: 15px;

  resize: vertical;
}


.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--main);

  box-shadow:
    0 0 0 3px
    rgba(
      143,
      192,
      240,
      0.15
    );
}


/* =========================================
   PRIVACY
========================================= */

.booking-privacy {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 24px;

  color: #666666;

  font-size: 12px;

  font-weight: 300;

  line-height: 1.5;

  cursor: pointer;
}


.booking-privacy input {
  width: 16px;
  height: 16px;

  margin-top: 1px;

  flex: 0 0 auto;

  accent-color: var(--main);
}

body.booking-modal-active {
  position: fixed;

  width: 100%;

  left: 0;
  right: 0;

  overflow: hidden;
}


/* Evita piccoli spostamenti orizzontali
   quando scompare la scrollbar */

html.booking-modal-active {
  overflow: hidden;
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 901px) {

  /*body.booking-modal-active {
    position: fixed;

    width: 100%;

    overflow-y: scroll;
  }*/


  .booking-modal {
    padding:
      16px 32px;

    overflow: hidden;
  }


  /*
     LE DIMENSIONI DELLA MODAL RESTANO
     ESATTAMENTE QUELLE DEL TUO CSS ATTUALE.
  */

  .booking-modal-dialog {
    width: min(1100px, 100%);

    height: calc(100dvh - 32px);

    max-height: calc(100dvh - 32px);

    overflow: hidden;

    padding:
      clamp(
        28px,
        3.5dvh,
        40px
      )
      clamp(
        34px,
        4vw,
        58px
      );

    transform: none;
  }


  .booking-modal.open .booking-modal-dialog {
    transform: none;
  }


  .booking-modal-close {
    top: 12px;
    right: 14px;

    width: 42px;
    height: 42px;

    font-size: 31px;
  }


  /*
     STEP DATE:
     usa realmente tutta l'altezza disponibile.
  */

  #bookingStepDates.booking-step.is-active {
    height: 100%;

    display: flex;

    flex-direction: column;

    min-height: 0;
  }


  #bookingStepDates .booking-modal-header {
    flex: 0 0 auto;

    margin-bottom:
      clamp(
        16px,
        2dvh,
        22px
      );
  }


  #bookingStepDates .booking-calendar-area {
    flex: 1 1 auto;

    min-height: 0;

    margin-bottom:
      clamp(
        18px,
        2.2dvh,
        24px
      );
  }


  #bookingStepDates .booking-step-actions {
    flex: 0 0 auto;
  }


  /*
     HEADER
  */

  .booking-modal-header {
    margin-bottom:
      clamp(
        18px,
        2.4dvh,
        26px
      );
  }


  .booking-modal-subtitle {
    margin-bottom: 7px;

    font-size:
      clamp(
        9px,
        1.15dvh,
        11px
      );
  }


  .booking-modal-header h2 {
    margin-bottom: 8px;

    font-size:
      clamp(
        44px,
        6dvh,
        60px
      );
  }


  /*
     CALENDARI
  */

  .booking-calendar-area {
    gap:
      clamp(
        18px,
        1.8vw,
        24px
      );
  }


  .booking-calendar-panel {
    height: 100%;

    min-height: 0;

    padding:
      clamp(
        18px,
        2.2dvh,
        24px
      )
      clamp(
        18px,
        1.6vw,
        24px
      );
  }


  .booking-calendar-topline {
    flex: 0 0 auto;

    min-height:
      clamp(
        42px,
        5.5dvh,
        50px
      );

    margin-bottom:
      clamp(
        6px,
        1dvh,
        10px
      );
  }


  .booking-calendar-label {
    margin-bottom: 5px;

    font-size:
      clamp(
        9px,
        1.1dvh,
        10px
      );
  }


  .booking-calendar-selected {
    font-size:
      clamp(
        11px,
        1.35dvh,
        13px
      );
  }


  /*
     NAVIGAZIONE
  */

  .calendar-navigation {
    flex: 0 0 auto;

    grid-template-columns:
      clamp(
        38px,
        5dvh,
        44px
      )
      1fr
      clamp(
        38px,
        5dvh,
        44px
      );

    gap: 10px;

    margin-bottom:
      clamp(
        10px,
        1.5dvh,
        15px
      );
  }


  .calendar-nav {
    width:
      clamp(
        38px,
        5dvh,
        44px
      );

    height:
      clamp(
        38px,
        5dvh,
        44px
      );

    font-size:
      clamp(
        16px,
        2dvh,
        19px
      );
  }


  .calendar-month {
    font-size:
      clamp(
        25px,
        3.5dvh,
        32px
      );
  }


  /*
     NOMI DEI GIORNI
  */

  .calendar-weekdays {
    flex: 0 0 auto;

    column-gap:
      clamp(
        4px,
        0.6vw,
        8px
      );

    margin-bottom:
      clamp(
        6px,
        0.8dvh,
        9px
      );
  }


  .calendar-weekdays span {
    min-height:
      clamp(
        18px,
        2.4dvh,
        22px
      );

    font-size:
      clamp(
        7px,
        0.95dvh,
        9px
      );
  }


  /*
     GRIGLIA DATE:
     questa è la parte fondamentale.
     Ora occupa tutto lo spazio verticale rimanente.
  */

  .calendar-grid {
    flex: 1 1 auto;

    min-height: 0;

    grid-template-rows:
      repeat(
        6,
        minmax(0, 1fr)
      );

    column-gap:
      clamp(
        4px,
        0.6vw,
        8px
      );

    row-gap:
      clamp(
        4px,
        0.7dvh,
        8px
      );
  }


  .calendar-empty,
  .calendar-day {
    width: auto;
    height: auto;

    aspect-ratio: auto;
  }


  .calendar-day {
    width:
      min(
        100%,
        clamp(
          38px,
          5.5dvh,
          48px
        )
      );

    height:
      min(
        100%,
        clamp(
          38px,
          5.5dvh,
          48px
        )
      );

    aspect-ratio: 1 / 1;

    align-self: center;

    justify-self: center;

    font-size:
      clamp(
        11px,
        1.4dvh,
        13px
      );
  }


  /*
     PULSANTE PROSEGUI
  */

  #bookingStepDates .booking-step-actions {
    min-height: 58px;

    align-items: center;
  }


  .booking-continue,
  .booking-submit {
    min-width:
      clamp(
        190px,
        17vw,
        220px
      );

    min-height:
      clamp(
        52px,
        6.4dvh,
        58px
      );

    padding:
      14px 30px;
  }


  .booking-back {
    min-height:
      clamp(
        52px,
        6.4dvh,
        58px
      );
  }


  /*
     STEP 2
  */

  #bookingStepDetails.booking-step.is-active {
    height: 100%;

    overflow-y: auto;

    padding-right: 4px;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .booking-calendar-area {
    grid-template-columns: 1fr;
  }


  .calendar-day {
    font-size: 13px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .booking-modal {
    align-items: flex-end;

    padding: 0;
  }


  .booking-modal-dialog {
    width: 100%;

    max-height: 94dvh;

    padding:
      34px
      16px
      24px;

    border-radius:
      24px
      24px
      0
      0;
  }


  .booking-modal-close {
    top: 12px;
    right: 14px;
  }


  .booking-modal-header {
    padding-right: 42px;

    margin-bottom: 24px;
  }


  .booking-modal-header h2 {
    font-size:
      clamp(
        42px,
        13vw,
        56px
      );
  }


  .booking-calendar-area {
    gap: 14px;
  }


  .booking-calendar-panel {
    padding: 14px;

    border-radius: 16px;
  }


  .calendar-navigation {
    grid-template-columns:
      38px
      1fr
      38px;
  }


  .calendar-nav {
    width: 38px;
    height: 38px;
  }


  .calendar-weekdays {
    column-gap: 4px;
  }


  .calendar-grid {
    column-gap: 4px;
    row-gap: 4px;
  }


  .calendar-weekdays span {
    font-size: 7px;
  }


  .calendar-day {
    max-width: none;

    font-size: 12px;
  }


  .booking-form-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }


  .booking-field-full {
    grid-column: auto;
  }


  .booking-summary {
    grid-template-columns: 1fr;
  }


  .booking-step-actions,
  .booking-step-actions-double {
    flex-direction: column-reverse;

    align-items: stretch;
  }


  .booking-continue,
  .booking-submit,
  .booking-back {
    width: 100%;

    min-width: 0;
  }

}


/* =========================================
   MOBILE PICCOLO
========================================= */

@media (max-width: 380px) {

  .booking-modal-dialog {
    padding-left: 12px;
    padding-right: 12px;
  }


  .booking-calendar-panel {
    padding: 11px;
  }


  .calendar-weekdays {
    column-gap: 3px;
  }


  .calendar-grid {
    column-gap: 3px;
    row-gap: 3px;
  }


  .calendar-day {
    font-size: 11px;
  }


  .calendar-month {
    font-size: 22px;
  }

}


/* =========================================
   DESKTOP CON ALTEZZA RIDOTTA
========================================= */

@media (min-width: 901px) and (max-height: 760px) {

  .booking-modal-dialog {
    padding-top: 24px;
    padding-bottom: 24px;
  }


  .booking-modal-header h2 {
    font-size:
      clamp(
        40px,
        5.5dvh,
        52px
      );
  }


  #bookingStepDates .booking-modal-header {
    margin-bottom: 13px;
  }


  .booking-calendar-panel {
    padding:
      14px
      18px;
  }


  .booking-calendar-topline {
    min-height: 36px;

    margin-bottom: 4px;
  }


  .calendar-navigation {
    margin-bottom: 7px;
  }


  .calendar-weekdays {
    margin-bottom: 3px;
  }


  .calendar-day {
    width:
      min(
        100%,
        38px
      );

    height:
      min(
        100%,
        38px
      );
  }


  #bookingStepDates .booking-calendar-area {
    margin-bottom: 12px;
  }


  .booking-continue,
  .booking-submit,
  .booking-back {
    min-height: 48px;
  }

}


/* =========================================
   DESKTOP MOLTO ALTO
========================================= */

@media (min-width: 901px) and (min-height: 950px) {

  .booking-modal-dialog {
    padding-top: 44px;
    padding-bottom: 44px;
  }


  #bookingStepDates .booking-modal-header {
    margin-bottom: 26px;
  }


  .booking-calendar-panel {
    padding:
      24px
      26px;
  }


  .calendar-calendar-topline {
    margin-bottom: 14px;
  }


  .calendar-day {
    width:
      min(
        100%,
        50px
      );

    height:
      min(
        100%,
        50px
      );
  }

}

/* =========================================
   PAGINE INTERNE
========================================= */

.detail-hero {
  position: relative;
  width: 100%;
  height: min(88vh, 900px);
  min-height: 650px;
  overflow: hidden;
  background: #242424;
  color: var(--white);
}

.detail-hero-video,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero-video {
  object-fit: cover;
  object-position: center;
}

.detail-hero-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .04) 42%, rgba(0, 0, 0, .48) 100%);
  z-index: 1;
}

.detail-logo-link {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: clamp(20px, 2.4vw, 40px);
  transform: translateX(-50%);
  width: clamp(150px, 14vw, 235px);
}

.detail-logo {
  width: 100%;
  height: auto;
}

.detail-hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 8vw, 150px);
  bottom: clamp(70px, 10vh, 120px);
  width: min(850px, calc(100% - 48px));
}

.detail-eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
}

.detail-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 118px);
  font-weight: 500;
  line-height: .86;
}

.detail-hero-copy p {
  max-width: 620px;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 300;
  line-height: 1.75;
}

.detail-scroll {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 70px);
  bottom: clamp(32px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
}

.detail-scroll span {
  font-size: 18px;
  line-height: 1;
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(50px, 8vw, 150px);
  padding: clamp(95px, 10vw, 180px) clamp(28px, 9vw, 170px);
}

.detail-intro-heading h2,
.detail-feature-copy h2,
.detail-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 500;
  line-height: .95;
}

.detail-intro-text {
  display: flex;
  align-items: flex-end;
}

.detail-intro-text p,
.detail-feature-copy p,
.detail-cta p {
  max-width: 590px;
  color: #555;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.85;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.detail-card {
  min-height: 430px;
  padding: clamp(48px, 5vw, 85px) clamp(28px, 4vw, 68px);
  border-right: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-card:last-child {
  border-right: 0;
}

.detail-card-number {
  margin-bottom: auto;
  color: var(--main);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.detail-card-kicker {
  margin-bottom: 14px;
  color: var(--main);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
}

.detail-card h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 2.7vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.detail-card p {
  max-width: 390px;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.detail-feature {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  min-height: 720px;
}

.detail-feature-media {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  background: #eaeaea;
}

.detail-feature-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 8vw, 135px);
}

.detail-feature-copy h2 {
  margin-bottom: 28px;
}

.detail-feature-copy p {
  margin-bottom: 36px;
}

.booking-inline {
  cursor: pointer;
  background: transparent;
}

.detail-cta {
  padding: clamp(100px, 11vw, 190px) 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-cta h2 {
  margin-bottom: 28px;
}

.detail-cta p {
  margin-bottom: 38px;
}

.detail-cta-button {
  min-width: 190px;
  padding: 15px 28px;
  border: 2px solid var(--main);
  border-radius: 50px;
  background: var(--main);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: background .25s ease, color .25s ease;
}

.detail-cta-button:hover {
  background: transparent;
  color: var(--main);
}

.drawer-nav a.is-active {
  padding-left: 8px;
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1000px) {
  .detail-hero {
    height: 78vh;
    min-height: 620px;
  }

  .detail-logo-link {
    width: clamp(145px, 22vw, 210px);
  }

  .detail-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-intro-text {
    align-items: flex-start;
  }

  .detail-cards {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid #e7e7e7;
  }

  .detail-card:last-child {
    border-bottom: 0;
  }

  .detail-card-number {
    margin-bottom: 70px;
  }

  .detail-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .detail-feature-media {
    min-height: 60vh;
  }

  .detail-feature-copy {
    min-height: 520px;
    padding: 75px clamp(35px, 8vw, 80px);
  }
}

@media (max-width: 600px) {
  .detail-hero {
    height: 100svh;
    min-height: 560px;
  }

  .detail-logo-link {
    top: 24px;
    width: 145px;
  }

  .detail-hero-copy {
    left: 24px;
    bottom: 80px;
    width: calc(100% - 48px);
  }

  .detail-eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .detail-hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(50px, 15vw, 70px);
    line-height: .9;
  }

  .detail-hero-copy p {
    max-width: 90%;
    font-size: 14px;
    line-height: 1.65;
  }

  .detail-scroll {
    display: none;
  }

  .detail-intro {
    padding: 78px 24px;
    gap: 30px;
  }

  .detail-intro-heading h2,
  .detail-feature-copy h2,
  .detail-cta h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .detail-intro-text p,
  .detail-feature-copy p,
  .detail-cta p {
    font-size: 15px;
    line-height: 1.7;
  }

  .detail-card {
    min-height: 330px;
    padding: 48px 24px;
  }

  .detail-card-number {
    margin-bottom: 60px;
  }

  .detail-feature-media {
    min-height: 54vh;
  }

  .detail-feature-copy {
    min-height: auto;
    padding: 62px 24px;
  }

  .detail-feature-copy .section-button {
    width: 100%;
  }

  .detail-cta {
    padding: 85px 24px;
  }

  .detail-cta-button {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================
   BARRA FISSA DOPO LO SCROLL
========================================= */

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;

  background: #ffffff;

  z-index: 19;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);

  pointer-events: none;
}

.scroll-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  pointer-events: auto;
}


/* MENU A SINISTRA */

.scroll-header .menu-trigger {
  position: absolute;

  left: clamp(18px, 2.2vw, 40px);
  top: 50%;

  transform: translateY(-50%);

  color: #242424;

  z-index: 2;
}


/* PULSANTE PRENOTA A DESTRA */

.scroll-header .booking {
  position: absolute;

  right: clamp(18px, 2.2vw, 40px);
  top: 50%;

  transform: translateY(-50%);

  z-index: 2;
}

.scroll-header .booking:hover {
  transform: translateY(-50%) translateY(-2px);
}


/* MOBILE */

@media (max-width: 768px) {

  .scroll-header {
    height: 70px;
  }

  .scroll-header .menu-trigger {
    left: 13px;
    top: 50%;
  }

  .scroll-header .booking {
    right: 16px;
    top: 50%;
  }

}