.reservations-hub{
  min-height:100vh;
  padding:150px 0 88px;
  background:
    linear-gradient(115deg,rgba(5,48,50,.94),rgba(5,48,50,.66)),
    url("../assets/hero-beach-optimized.jpg") center/cover no-repeat fixed;
  color:#fff;
}

.reservation-hub-panel{
  width:min(1120px,calc(100% - 36px));
  margin:0 auto;
}

.reservation-hub-intro{
  max-width:780px;
  margin-bottom:38px;
}

.reservation-hub-intro h1{
  margin:16px 0 18px;
  color:#fff;
  font-size:clamp(52px,7vw,90px);
  line-height:.96;
}

.reservation-hub-intro p{
  max-width:690px;
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:18px;
  line-height:1.75;
}

.reservation-hub-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.reservation-choice{
  min-height:310px;
  padding:30px;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(255,255,255,.20);
  border-radius:24px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 70px rgba(0,0,0,.18);
}

.reservation-choice--featured{
  border-color:rgba(216,188,124,.62);
  background:linear-gradient(145deg,rgba(216,188,124,.20),rgba(255,255,255,.10));
}

.reservation-choice__eyebrow{
  color:rgba(255,255,255,.68);
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.reservation-choice h2{
  margin:18px 0 12px;
  color:#fff;
  font-size:34px;
  line-height:1;
}

.reservation-choice p{
  margin:0 0 28px;
  color:rgba(255,255,255,.80);
  font-size:15px;
  line-height:1.65;
}

.reservation-choice .btn{
  width:100%;
  margin-top:auto;
  justify-content:center;
  background:#fff;
  border-color:#fff;
  color:var(--deep);
}

.reservation-choice--featured .btn{
  background:#d8bc7c;
  border-color:#d8bc7c;
}

.reservation-hub-fallback{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:24px;
  padding:22px 26px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  background:rgba(0,0,0,.12);
}

.reservation-hub-fallback p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.5;
}

.reservation-hub-fallback .btn{
  flex:0 0 auto;
}

@media(max-width:900px){
  .reservation-hub-grid{
    grid-template-columns:1fr;
  }

  .reservation-choice{
    min-height:0;
  }
}

@media(max-width:600px){
  .reservations-hub{
    padding:118px 0 64px;
    background-attachment:scroll;
  }

  .reservation-hub-panel{
    width:min(100% - 24px,1120px);
  }

  .reservation-hub-intro h1{
    font-size:48px;
  }

  .reservation-hub-intro p{
    font-size:16px;
  }

  .reservation-choice{
    padding:24px;
    border-radius:20px;
  }

  .reservation-hub-fallback{
    align-items:stretch;
    flex-direction:column;
  }
}
