.site-header {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(9, 25, 35, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  left: 50%;
  padding: 14px 18px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  transition:
    background 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  width: var(--container);
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(9, 25, 35, 0.78);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(9, 25, 35, 0.22);
  transform: translateX(-50%) translateY(-4px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-logo {
  display: block;
  height: 34px;
  object-fit: contain;
  width: 140px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.site-nav a,
.header-cta {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: color 0.28s ease;
}

.site-nav a::after {
  background: var(--sand);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.site-nav a:hover {
  color: white;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  color: white;
}

.nav-toggle {
  background: transparent;
  border: 0;
  border-radius: 9px;
  display: none;
  height: 36px;
  padding: 0;
  width: 36px;
}

.nav-toggle span {
  background: white;
  border-radius: 999px;
  display: block;
  height: 5px;
  transition:
    opacity 0.24s ease,
    transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    width 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  width: 5px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary {
  background: #0f7f88;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0b6f77;
  box-shadow: 0 12px 28px rgba(15, 127, 136, 0.24);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
}

.text-link {
  color: var(--deep);
  font-weight: 800;
}

.booking-form {
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(185, 154, 106, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(9, 25, 35, 0.14);
  color: var(--ink);
  padding: 24px;
}

.booking-form .form-head,
.booking-form .errorlist {
  margin-bottom: 18px;
}

.form-head h2 {
  font-size: 26px;
  margin-bottom: 0;
}

.booking-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.booking-grid label {
  color: var(--deep);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.booking-grid .wide {
  grid-column: 1 / -1;
}

.form-control,
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(9, 25, 35, 0.11);
  border-radius: 7px;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 14px;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  width: 100%;
}

.form-control:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(51, 174, 182, 0.68);
  box-shadow: 0 0 0 4px rgba(51, 174, 182, 0.14);
  outline: 0;
}

.booking-grid label.has-error .form-control,
.booking-grid label.has-error input,
.booking-grid label.has-error select,
.booking-grid label.has-error textarea {
  border-color: rgba(196, 57, 57, 0.72);
  box-shadow: 0 0 0 3px rgba(196, 57, 57, 0.12);
}

.hero-booking .booking-form {
  align-items: end;
  display: flex;
  gap: 20px;
  padding: 22px 26px;
}

.hero-booking .form-head {
  align-self: center;
  flex: 0 0 230px;
}

.hero-booking .form-head .eyebrow {
  margin-bottom: 8px;
}

.hero-booking .form-head h2 {
  font-size: 24px;
}

.hero-booking .booking-grid {
  align-items: end;
  display: flex;
  flex: 1 1 auto;
  gap: 14px;
  min-width: 0;
}

.hero-booking .booking-grid label {
  flex: 1 1 0;
  min-width: 0;
}

.hero-booking .booking-grid label:nth-child(4) {
  flex: 0 1 116px;
}

.hero-booking .booking-grid label input,
.hero-booking .booking-grid label select {
  min-width: 0;
}

.hero-booking .booking-form .btn {
  flex: 0 0 250px;
  min-height: 46px;
  padding-left: 28px;
  padding-right: 28px;
  white-space: nowrap;
}

.booking-form > .btn {
  display: flex;
  margin-top: 18px;
  min-width: 220px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-booking .booking-form > .btn {
  margin-top: 0;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
  width: auto;
}

.booking-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease;
  z-index: 120;
}

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

body.booking-modal-open {
  overflow: hidden;
}

.booking-modal__backdrop {
  background: rgba(9, 25, 35, 0.68);
  inset: 0;
  position: absolute;
}

.booking-modal__dialog {
  background: var(--paper);
  border: 1px solid rgba(185, 154, 106, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 86px rgba(9, 25, 35, 0.34);
  color: var(--ink);
  max-height: min(760px, calc(100vh - 48px));
  max-width: 620px;
  overflow: auto;
  padding: 30px;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  width: min(100%, 620px);
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  background: rgba(9, 25, 35, 0.06);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

.booking-modal__close::before,
.booking-modal__close::after {
  background: var(--deep);
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  top: 19px;
  width: 18px;
}

.booking-modal__close::before {
  transform: rotate(45deg);
}

.booking-modal__close::after {
  transform: rotate(-45deg);
}

.booking-modal__head {
  padding-right: 48px;
}

.booking-modal__head h2 {
  font-size: 34px;
  margin-bottom: 22px;
}

.booking-modal__progress {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.booking-modal__progress span {
  border-bottom: 3px solid rgba(9, 25, 35, 0.14);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.booking-modal__progress span.is-active {
  border-color: var(--aqua);
  color: var(--deep);
}

.booking-modal__step {
  display: none;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-modal__step.is-active {
  display: grid;
}

.booking-modal__step label {
  color: var(--deep);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.booking-modal__step label:first-child:last-child {
  grid-column: 1 / -1;
}

.booking-modal__availability {
  background: rgba(51, 174, 182, 0.08);
  border: 1px solid rgba(51, 174, 182, 0.2);
  border-radius: 7px;
  color: var(--deep);
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  padding: 14px;
}

.booking-modal__availability.is-error {
  background: rgba(196, 57, 57, 0.08);
  border-color: rgba(196, 57, 57, 0.24);
}

.booking-modal__availability p {
  margin: 0;
}

.booking-modal__availability-note {
  color: var(--muted);
  font-size: 13px;
}

.booking-modal__recommendations {
  display: grid;
  gap: 10px;
}

.booking-modal__recommendation {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(9, 25, 35, 0.12);
  border-radius: 7px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  text-align: left;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.booking-modal__recommendation:hover,
.booking-modal__recommendation:focus-visible {
  border-color: rgba(51, 174, 182, 0.54);
  box-shadow: 0 10px 24px rgba(9, 25, 35, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.booking-modal__recommendation strong {
  color: var(--deep);
  font-size: 15px;
}

.booking-modal__recommendation span,
.booking-modal__recommendation small {
  color: var(--muted);
}

.booking-modal__step .has-error .form-control,
.booking-modal__step .has-error input,
.booking-modal__step .has-error select {
  border-color: rgba(196, 57, 57, 0.72);
  box-shadow: 0 0 0 3px rgba(196, 57, 57, 0.12);
}

.booking-modal__actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 26px;
}

.booking-modal__prev {
  background: transparent;
  border-color: rgba(9, 25, 35, 0.18);
  color: var(--deep);
}

.booking-modal__prev[hidden],
.booking-modal__next[hidden],
.booking-modal__submit[hidden] {
  display: none;
}

.counter-control {
  align-items: center;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
}

.counter-control button {
  background: var(--ink);
  border: 0;
  color: white;
  cursor: pointer;
  height: 46px;
}

.snackbar-stack {
  display: grid;
  gap: 10px;
  left: 50%;
  max-width: min(520px, calc(100vw - 32px));
  position: fixed;
  top: 104px;
  transform: translateX(-50%);
  width: max-content;
  z-index: 90;
}

.snackbar {
  align-items: center;
  animation: snackbar-in 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
  background: rgba(9, 25, 35, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(9, 25, 35, 0.24);
  color: #ffffff;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: 56px;
  padding: 12px 14px 12px 18px;
}

.snackbar.success {
  border-color: rgba(51, 174, 182, 0.34);
}

.snackbar.error {
  border-color: rgba(185, 154, 106, 0.42);
}

.snackbar p {
  margin: 0;
}

.snackbar a {
  background: #ffffff;
  border-radius: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
}

.snackbar button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 28px;
  opacity: 0.72;
  padding: 0;
  position: relative;
  width: 28px;
}

.snackbar button::before,
.snackbar button::after {
  background: #ffffff;
  content: "";
  height: 2px;
  left: 7px;
  position: absolute;
  top: 13px;
  width: 14px;
}

.snackbar button::before {
  transform: rotate(45deg);
}

.snackbar button::after {
  transform: rotate(-45deg);
}

.snackbar.is-hiding {
  animation: snackbar-out 0.28s ease both;
}

@keyframes snackbar-in {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes snackbar-out {
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

.site-footer {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: 72px max(20px, calc((100vw - 1180px) / 2)) 28px;
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  justify-content: space-between;
}

.footer-grid h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  max-width: 760px;
  overflow-wrap: anywhere;
}

.footer-contacts {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-contacts p,
.footer-contacts a,
.footer-bottom span,
.footer-bottom a {
  overflow-wrap: anywhere;
}

.footer-contacts a,
.footer-bottom a {
  color: var(--aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 48px;
  padding-top: 24px;
}
