:root {
  --green: #29d51d;
  --green-soft: rgba(41, 213, 29, 0.42);
  --green-dim: rgba(41, 213, 29, 0.14);
  --calendar-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2329d51d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect x='3' y='4' width='18' height='18' rx='3'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
  --paper: #f4f4f0;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.14);
  --black: #030504;
  --panel: #070907;
  --font-display: "Fang ExtraBold", Impact, "Arial Black", Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Fang ExtraBold";
  src: url("/assets/Fang%20ExtraBold.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 52% 3%, rgba(41, 213, 29, 0.22), transparent 25rem),
    radial-gradient(circle at 8% 100%, rgba(41, 213, 29, 0.12), transparent 18rem),
    #020403;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

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

.booking-standalone-page {
  padding: 20px;
}

.booking-page-shell {
  width: min(100%, 560px);
  margin: 0 auto;
}

.booking-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brand {
  width: clamp(160px, 46vw, 230px);
}

.brand img {
  width: 100%;
  mix-blend-mode: screen;
}

.booking-page-card {
  padding: 22px;
  border: 1px solid rgba(41, 213, 29, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0, rgba(41, 213, 29, 0.18), transparent 12rem),
    var(--panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(41, 213, 29, 0.12);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font: 900 15px/1.1 var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-page-title,
.modal-content h2 {
  margin: 0;
  font: 900 clamp(36px, 8.8vw, 52px) / 0.95 var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-page-title {
  margin-bottom: 16px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.field-message {
  display: none;
  width: fit-content;
  max-width: 100%;
  margin-top: -1px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 83, 83, 0.44);
  border-radius: 4px;
  color: #ffdede;
  font: 800 11px/1.25 var(--font-body);
  text-transform: none;
  background: rgba(255, 83, 83, 0.12);
}

.field-message.is-visible {
  display: inline-block;
}

.booking-form input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  inline-size: 100%;
  max-inline-size: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 0 13px;
  color: var(--paper);
  font: 700 16px/1 var(--font-body);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.booking-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  overflow: hidden;
  padding-right: 44px;
  cursor: pointer;
  color-scheme: dark;
  background:
    rgba(255, 255, 255, 0.06)
    var(--calendar-icon)
    no-repeat
    calc(100% - 13px)
    center / 20px 20px;
}

.booking-form input[type="date"]::-webkit-date-and-time-value {
  min-height: 1em;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0;
}

.booking-form input.has-error {
  border-color: rgba(255, 83, 83, 0.78);
  background: rgba(255, 83, 83, 0.08);
}

.booking-form input[type="date"].has-error {
  background:
    rgba(255, 83, 83, 0.08)
    var(--calendar-icon)
    no-repeat
    calc(100% - 13px)
    center / 20px 20px;
}

.booking-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  color: var(--paper);
  font: 900 14px/1 var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  width: 100%;
  margin-top: 6px;
  padding: 0 22px;
  color: #031003;
  background: var(--green);
  box-shadow: 0 0 26px rgba(41, 213, 29, 0.26);
}

.booking-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(41, 213, 29, 0.42);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #031003;
  background: var(--green);
  box-shadow: 0 0 24px rgba(41, 213, 29, 0.26);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form-message {
  margin: -2px 0 16px;
  padding: 11px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-info {
  border: 1px solid rgba(41, 213, 29, 0.46);
  color: #dfffdc;
  background: rgba(41, 213, 29, 0.12);
}

.form-message.is-error {
  border: 1px solid rgba(255, 83, 83, 0.5);
  color: #ffdede;
  background: rgba(255, 83, 83, 0.12);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.modal.is-open {
  display: grid;
}

.modal-content {
  width: min(100%, 420px);
  padding: 26px 22px 22px;
  border: 1px solid rgba(41, 213, 29, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0, rgba(41, 213, 29, 0.18), transparent 12rem),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.64), 0 0 38px rgba(41, 213, 29, 0.16);
}

.modal-content h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.booking-confirmation {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.booking-confirmation[hidden] {
  display: none;
}

.booking-confirmation div {
  display: grid;
  grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
}

.booking-confirmation dt,
.booking-confirmation dd {
  margin: 0;
}

.booking-confirmation dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-confirmation dd {
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.modal-content p {
  margin: 0 0 18px;
  color: #f0f0ed;
  font-size: 15px;
  line-height: 1.6;
}

.modal-actions {
  display: grid;
  gap: 10px;
}

.modal-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  color: #031003;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--green);
  cursor: pointer;
}

.modal-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

#floatingBarsG {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 40;
  display: none;
  width: 60px;
  height: 75px;
  transform: translate(-50%, -50%);
}

.blockG {
  position: absolute;
  left: 28px;
  top: 23px;
  width: 5px;
  height: 16px;
  border-radius: 4px 4px 0 0;
  background-color: var(--green);
  transform-origin: 3px 15px;
  animation-name: fadeG;
  animation-duration: 0.96s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

#rotateG_01 {
  transform: rotate(0deg);
  animation-delay: 0.36s;
}

#rotateG_02 {
  transform: rotate(45deg);
  animation-delay: 0.48s;
}

#rotateG_03 {
  transform: rotate(90deg);
  animation-delay: 0.6s;
}

#rotateG_04 {
  transform: rotate(135deg);
  animation-delay: 0.72s;
}

#rotateG_05 {
  transform: rotate(180deg);
  animation-delay: 0.84s;
}

#rotateG_06 {
  transform: rotate(225deg);
  animation-delay: 0.96s;
}

#rotateG_07 {
  transform: rotate(270deg);
  animation-delay: 1.08s;
}

#rotateG_08 {
  transform: rotate(315deg);
  animation-delay: 1.2s;
}

@keyframes fadeG {
  0% {
    background-color: var(--green);
  }

  100% {
    background-color: rgba(41, 213, 29, 0.14);
  }
}

@media (min-width: 700px) {
  body {
    padding: 28px 0;
  }

  .booking-standalone-page {
    padding-top: 30px;
  }

  .brand {
    width: 250px;
  }

  .booking-page-card {
    padding: 28px;
  }
}

@media (max-width: 380px) {
  .booking-standalone-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    width: 148px;
  }
}
