.reservation-dialog{
  width:min(420px,calc(100vw - 36px));
  max-width:none;
  padding:0;
  border:0;
  background:transparent;
  color:var(--ivory,#f2ede3);
  overflow:visible;
}
.reservation-dialog::backdrop{
  background:rgba(2,10,16,.78);
  backdrop-filter:blur(4px);
}
.reservation-dialog:focus{outline:0}
.reservation-sheet{
  position:relative;
  padding:32px 30px 28px;
  border:1px solid rgba(184,154,97,.42);
  background:linear-gradient(145deg,rgba(16,42,58,.99),rgba(6,19,29,.995));
  box-shadow:0 28px 80px rgba(0,0,0,.42);
}
.reservation-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--ivory-soft,#d9d0c2);
  cursor:pointer;
}
.reservation-close::before,.reservation-close::after{
  content:"";
  position:absolute;
  top:20px;
  left:12px;
  width:18px;
  height:1px;
  background:currentColor;
}
.reservation-close::before{transform:rotate(45deg)}
.reservation-close::after{transform:rotate(-45deg)}
.reservation-close:hover{color:var(--ivory,#f2ede3)}
.reservation-close:focus-visible,.reservation-action:focus-visible{
  outline:2px solid var(--pool,#57a5ad);
  outline-offset:3px;
}
.reservation-eyebrow{
  margin:0 54px 9px 0;
  color:var(--brass,#b89a61);
  font:500 8px/1.3 var(--sans,"Manrope",Arial,sans-serif);
  letter-spacing:.2em;
  text-transform:uppercase;
}
.reservation-title{
  margin:0;
  color:var(--ivory,#f2ede3);
  font:400 46px/.9 var(--display,"Cormorant Garamond",Georgia,serif);
  letter-spacing:-.025em;
}
.reservation-number{
  margin:14px 0 24px;
  color:var(--ivory-soft,#d9d0c2);
  font:400 10px/1.4 var(--sans,"Manrope",Arial,sans-serif);
  letter-spacing:.14em;
}
.reservation-actions{
  border-top:1px solid rgba(242,237,227,.16);
  border-bottom:1px solid rgba(242,237,227,.16);
}
.reservation-action{
  min-height:62px;
  display:grid;
  grid-template-columns:24px 1fr;
  gap:15px;
  align-items:center;
  padding:0 4px;
  color:var(--ivory,#f2ede3);
  text-decoration:none;
  transition:color .22s ease,background .22s ease,padding .22s ease;
}
.reservation-action+.reservation-action{border-top:1px solid rgba(242,237,227,.12)}
.reservation-action:hover{
  padding-left:10px;
  background:rgba(184,154,97,.06);
  color:var(--brass,#b89a61);
}
.reservation-action svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.45;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.reservation-action span{
  font:500 11px/1.25 var(--sans,"Manrope",Arial,sans-serif);
  letter-spacing:.06em;
}
body.reservation-open{overflow:hidden}

@media(max-width:600px){
  .reservation-dialog{
    inset:auto 0 0;
    width:calc(100vw - 24px);
    margin:0 auto calc(12px + env(safe-area-inset-bottom));
  }
  .reservation-sheet{padding:28px 20px 20px}
  .reservation-title{font-size:42px}
  .reservation-number{margin-bottom:20px}
  .reservation-action{min-height:60px}
}

@media(prefers-reduced-motion:no-preference){
  .reservation-dialog[open] .reservation-sheet{animation:reservation-in .28s cubic-bezier(.22,.78,.28,1)}
  @keyframes reservation-in{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
}
