/* Full-width reservation section with a restrained, centered content grid. */
.booking-modern{
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
  background:linear-gradient(115deg,#f8f0e8 0%,#f2e4d7 58%,#efe0d2 100%);
}

.booking-panel-v2{
  width:min(1380px,calc(100% - clamp(32px,7vw,120px)));
  min-height:clamp(460px,34vw,520px);
  margin-inline:auto;
  padding:clamp(80px,7vw,104px) 0;
  display:grid;
  grid-template-columns:minmax(330px,40%) minmax(0,60%);
  align-items:center;
  gap:clamp(52px,6vw,96px);
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.booking-intro{
  min-width:0;
}

.booking-intro h2{
  margin:10px 0 18px;
  font-size:clamp(38px,3vw,50px);
  line-height:1.1;
}

.booking-intro>p:not(.overline){
  max-width:500px;
  margin:0 0 27px;
  font-size:clamp(11px,.82vw,13px);
  line-height:1.8;
}

.booking-intro .btn{
  min-height:46px;
  padding-inline:clamp(22px,2vw,30px);
  border-radius:3px;
  transition:background-color .22s ease,box-shadow .22s ease,transform .22s ease;
}

.booking-intro .btn:hover{
  transform:translateY(-1px);
  background:#a97643;
  box-shadow:0 11px 28px rgba(134,91,49,.2);
}

.booking-intro .btn:focus-visible{
  outline:2px solid #7f5733;
  outline-offset:4px;
}

.booking-steps{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(28px,3vw,48px);
  align-items:stretch;
}

.booking-step{
  position:relative;
  min-width:0;
  min-height:220px;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
}

.booking-step+.booking-step::before{
  content:"";
  position:absolute;
  top:55px;
  right:calc(100% + 4px);
  width:clamp(22px,2.5vw,42px);
  height:1px;
  background:rgba(185,133,79,.48);
}

.booking-step small{
  display:block;
  margin:0 0 10px;
  color:#a87549;
  font-size:10px;
  line-height:1;
  letter-spacing:.15em;
}

.booking-step i{
  width:78px;
  height:78px;
  flex:0 0 78px;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  border:1px solid #c99b6e;
  border-radius:50%;
  color:#98683e;
  background:rgba(255,255,255,.3);
  transition:background-color .22s ease,border-color .22s ease,transform .22s ease;
}

.booking-step:hover i{
  transform:translateY(-2px);
  border-color:#b9854f;
  background:rgba(255,255,255,.5);
}

.booking-step i svg{
  width:35px;
  height:35px;
}

.booking-step h3{
  width:100%;
  min-height:1.3em;
  margin:0 0 9px;
  font-size:clamp(17px,1.25vw,20px);
  line-height:1.3;
}

.booking-step p{
  width:100%;
  max-width:190px;
  margin:auto auto 0;
  font-size:clamp(10px,.74vw,12px);
  line-height:1.65;
}

@media (max-width:1100px){
  .booking-panel-v2{
    width:min(100% - 64px,1050px);
    min-height:0;
    padding:80px 0;
    grid-template-columns:minmax(0,1fr);
    gap:54px;
  }

  .booking-intro{
    max-width:680px;
  }

  .booking-intro h2{
    max-width:640px;
  }

  .booking-steps{
    max-width:850px;
  }
}

@media (max-width:720px){
  .booking-modern{
    padding:0;
  }

  .booking-panel-v2{
    width:100%;
    padding:clamp(64px,17vw,78px) clamp(24px,6vw,28px);
    gap:45px;
    border-radius:0;
  }

  .booking-intro h2{
    font-size:clamp(34px,9vw,40px);
  }

  .booking-intro>p:not(.overline){
    font-size:12px;
  }

  .booking-steps{
    grid-template-columns:minmax(0,1fr);
    gap:18px;
  }

  .booking-step{
    min-height:112px;
    height:112px;
    display:grid;
    grid-template-columns:68px minmax(0,1fr);
    grid-template-rows:auto auto auto;
    column-gap:18px;
    padding:16px 0;
    text-align:left;
    align-items:center;
  }

  .booking-step+.booking-step::before{
    display:none;
  }

  .booking-step small{
    grid-column:2;
    grid-row:1;
    margin:0 0 4px;
  }

  .booking-step i{
    grid-column:1;
    grid-row:1 / 4;
    width:64px;
    height:64px;
    min-width:64px;
    flex-basis:64px;
    margin:0;
  }

  .booking-step i svg{
    width:30px;
    height:30px;
  }

  .booking-step h3{
    grid-column:2;
    grid-row:2;
    min-height:0;
    margin:0 0 4px;
    font-size:18px;
  }

  .booking-step p{
    grid-column:2;
    grid-row:3;
    max-width:none;
    margin:0;
    font-size:11px;
  }
}

@media (prefers-reduced-motion:reduce){
  .booking-intro .btn,
  .booking-step i{
    transition:none;
  }
}
