:root {
      --bg: #080808;
      --panel: #101010;
      --field: #0b0b0b;
      --line: #292929;
      --muted: #858585;
      --soft: #b5b5b5;
      --white: #f7f7f7;
      --max: 1500px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      width: 100%;
      min-height: 100%;
      background: var(--bg);
      color: var(--white);
      font-family: Inter, Arial, Helvetica, sans-serif;
    }

    body {
      overflow: hidden;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    /* =========================
       3 SECOND LOADER
    ========================= */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: grid;
      place-items: center;
      background: #080808;
      transition:
        opacity .55s ease,
        visibility .55s ease;
    }

    #loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-content {
      width: min(320px, calc(100% - 48px));
      text-align: center;
    }

    .loader-logo {
      font-size: clamp(2.4rem, 7vw, 4.8rem);
      line-height: .82;
      font-weight: 950;
      letter-spacing: -.085em;
      text-transform: uppercase;
    }

    .loader-logo span {
      font-weight: 300;
    }

    .loader-progress {
      width: 100%;
      height: 2px;
      background: #242424;
      margin-top: 28px;
      overflow: hidden;
    }

    .loader-progress::after {
      content: "";
      display: block;
      width: 42%;
      height: 100%;
      background: #fff;
      animation: loaderProgress 3s linear forwards;
    }

    .loader-progress.restart-animation::after {
      animation: loaderProgress 3s linear forwards;
    }

    @keyframes loaderProgress {
      from { transform: translateX(-110%); }
      to { transform: translateX(250%); }
    }


    /* Loader can be reused when entering the mobile booking form. */
    #loader.reloading {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    /* =========================
       PAGE
    ========================= */
    .booking-page {
      width: 100%;
      height: 100dvh;
      min-height: 100dvh;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
      overflow: hidden;
    }

    /* =========================
       LEFT DESKTOP IMAGE PANEL
    ========================= */
    .visual-panel {
      position: relative;
      min-width: 0;
      min-height: 0;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.7)),
        linear-gradient(0deg, rgba(0,0,0,.62), rgba(0,0,0,.08)),
        url("https://images.unsplash.com/photo-1598371839696-5c5bb00bdc28?auto=format&fit=crop&w=1800&q=85")
        center center / cover no-repeat;
    }

    .visual-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.09), transparent 28%),
        linear-gradient(135deg, transparent 45%, rgba(0,0,0,.5));
      pointer-events: none;
    }

    .visual-content {
      position: absolute;
      z-index: 2;
      inset: auto 0 0 0;
      padding: clamp(28px, 5vw, 70px);
      max-width: 850px;
    }

    .visual-kicker {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 20px;
      color: #d4d4d4;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: .68rem;
      font-weight: 700;
    }

    .visual-kicker::before {
      content: "";
      width: 32px;
      height: 1px;
      background: #fff;
    }

    .visual-title {
      font-size: clamp(3rem, 6.8vw, 7.4rem);
      line-height: .82;
      letter-spacing: -.09em;
      text-transform: uppercase;
      font-weight: 950;
    }

    .visual-title span {
      display: block;
      color: #aaa;
      font-weight: 300;
    }

    .visual-description {
      margin-top: 25px;
      max-width: 500px;
      color: #c2c2c2;
      line-height: 1.65;
      font-size: clamp(.82rem, 1vw, .98rem);
    }

    /* =========================
       RIGHT FORM PANEL
    ========================= */
    .form-panel {
      min-width: 0;
      min-height: 0;
      height: 100dvh;
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior: contain;
      scrollbar-width: none;
      background: var(--panel);
    }

    .form-panel::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    .form-inner {
      width: min(100%, 620px);
      min-height: 100%;
      margin: 0 auto;
      padding:
        max(30px, env(safe-area-inset-top))
        clamp(22px, 4vw, 48px)
        max(35px, env(safe-area-inset-bottom));
    }

    .form-header {
      padding-bottom: 30px;
      border-bottom: 1px solid var(--line);
    }

    .brand {
      display: inline-block;
      color: var(--white);
      text-decoration: none;
      font-size: clamp(1.3rem, 2vw, 1.65rem);
      line-height: 1;
      font-weight: 950;
      letter-spacing: -.075em;
      text-transform: uppercase;
    }

    .brand span {
      font-weight: 300;
    }

    .form-header h2 {
      margin-top: 42px;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: .95;
      letter-spacing: -.065em;
      text-transform: uppercase;
    }

    .form-header p {
      margin-top: 15px;
      max-width: 470px;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.65;
    }

    /* =========================
       FORM
    ========================= */
    .booking-form {
      padding-top: 30px;
    }

    .field {
      display: grid;
      gap: 9px;
      margin-bottom: 19px;
    }

    .field label {
      color: #a5a5a5;
      font-size: .68rem;
      line-height: 1;
      font-weight: 750;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .field input,
    .field textarea {
      width: 100%;
      min-width: 0;
      border: 1px solid var(--line);
      border-radius: 0;
      outline: none;
      background: var(--field);
      color: var(--white);
      padding: 15px 14px;
      font-size: .92rem;
      line-height: 1.3;
      transition:
        border-color .2s ease,
        background .2s ease;
    }

    .field input {
      min-height: 50px;
    }

    .field textarea {
      min-height: 115px;
      resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #505050;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: #737373;
      background: #0f0f0f;
    }

    .field input:invalid:not(:placeholder-shown) {
      border-color: #555;
    }

    /* Only calendar dates are requested; no time field. */
    .calendar-wrap {
      position: relative;
    }

    .calendar-wrap input[type="date"] {
      color-scheme: dark;
    }

    .calendar-wrap input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      filter: invert(1);
      opacity: .75;
    }

    .two-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    /* Honeypots are intentionally invisible to normal users. */
    .hp {
      position: absolute !important;
      left: -10000px !important;
      top: auto !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .terms {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      margin: 3px 0 21px;
    }

    .terms input {
      width: 17px;
      height: 17px;
      flex: 0 0 17px;
      margin-top: 2px;
      accent-color: #fff;
      cursor: pointer;
    }

    .terms label {
      color: #777;
      font-size: .76rem;
      line-height: 1.55;
      cursor: pointer;
    }

    .terms a {
      color: #ddd;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .submit-button {
      width: 100%;
      min-height: 56px;
      border: 0;
      border-radius: 0;
      background: #fff;
      color: #080808;
      cursor: pointer;
      font-size: .72rem;
      font-weight: 950;
      letter-spacing: .17em;
      text-transform: uppercase;
      transition:
        transform .2s ease,
        background .2s ease,
        opacity .2s ease;
    }

    .submit-button:hover {
      background: #dedede;
      transform: translateY(-1px);
    }

    .submit-button:active {
      transform: translateY(0);
    }

    .submit-button:disabled {
      cursor: default;
      opacity: .55;
      transform: none;
    }

    .form-note {
      margin-top: 15px;
      color: #565656;
      text-align: center;
      font-size: .68rem;
      line-height: 1.5;
    }

    /* =========================
       SUCCESS STATE
    ========================= */
    .success-state {
      display: none;
      padding: 20px 0 10px;
    }

    .success-state.active {
      display: block;
    }

    .success-mark {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 1px solid #555;
      border-radius: 50%;
      font-size: 1.3rem;
      margin-bottom: 24px;
    }

    .success-state h3 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      line-height: .9;
      letter-spacing: -.07em;
      text-transform: uppercase;
    }

    .success-state p {
      max-width: 450px;
      margin-top: 18px;
      color: var(--soft);
      line-height: 1.7;
      font-size: .9rem;
    }

    .booking-summary {
      margin-top: 28px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 15px 0;
      border-bottom: 1px solid #1f1f1f;
    }

    .summary-row:last-child {
      border-bottom: 0;
    }

    .summary-label {
      color: #666;
      font-size: .65rem;
      text-transform: uppercase;
      letter-spacing: .13em;
    }

    .summary-value {
      color: #ddd;
      font-size: .82rem;
      text-align: right;
      word-break: break-word;
    }

    .new-booking {
      width: 100%;
      margin-top: 25px;
      min-height: 52px;
      border: 1px solid #3a3a3a;
      background: transparent;
      color: #fff;
      cursor: pointer;
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .new-booking:hover {
      background: #191919;
    }


    /* =========================
       MOBILE BOOKING CONTROLS
    ========================= */
    .mobile-booking-cta,
    .mobile-close {
      display: none;
    }


    @media (min-width: 701px) {
      .mobile-booking-cta,
      .mobile-close {
        display: none !important;
      }

      .booking-page {
        height: 100dvh;
        min-height: 100dvh;
        overflow: hidden;
      }

      .visual-panel,
      .form-panel {
        height: 100dvh;
        min-height: 100dvh;
      }
    }

    /* =========================
       TABLET / SMALL DESKTOP
    ========================= */
    @media (max-width: 1050px) and (min-width: 701px) {
      .booking-page {
        grid-template-columns: minmax(0, 46%) minmax(420px, 54%);
      }

      .visual-content {
        padding: 36px;
      }

      .visual-title {
        font-size: clamp(3.4rem, 7vw, 5.7rem);
      }

      .form-inner {
        padding-left: 32px;
        padding-right: 32px;
      }
    }

    /* =========================
       MOBILE
       Landing view first.
       "Start booking" opens the form.
    ========================= */
    @media (max-width: 700px) {
      body {
        overflow: hidden;
      }

      .booking-page {
        display: block;
        position: relative;
        height: 100dvh;
        min-height: 100dvh;
      }

      .visual-panel {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        min-height: 100dvh;
      }

      .visual-panel::before {
        content: "";
        position: absolute;
        z-index: 1;
        inset: 0;
        background: rgba(0,0,0,.25);
      }

      .visual-content {
        padding:
          28px
          max(28px, env(safe-area-inset-right))
          max(34px, env(safe-area-inset-bottom))
          max(28px, env(safe-area-inset-left));
      }

      .visual-title {
        font-size: clamp(3.4rem, 16vw, 6.2rem);
      }

      .visual-description {
        font-size: .82rem;
        max-width: 390px;
      }

      /* CTA visible on the mobile landing screen */
      .mobile-booking-cta {
        display: block;
        position: relative;
        z-index: 3;
        width: min(100%, 390px);
        min-height: 56px;
        margin-top: 28px;
        border: 0;
        background: #fff;
        color: #080808;
        cursor: pointer;
        font-size: .72rem;
        font-weight: 950;
        letter-spacing: .17em;
        text-transform: uppercase;
        transition: transform .2s ease, background .2s ease;
      }

      .mobile-booking-cta:active {
        transform: scale(.99);
      }


      .booking-page.booking-loading .form-panel {
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
      }

      /* The form becomes a full-screen mobile booking view only
         after Start booking is pressed. */
      .form-panel {
        display: block;
        position: fixed;
        z-index: 5000;
        inset: 0;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition:
          transform .42s cubic-bezier(.22,.8,.22,1),
          visibility 0s linear .42s;
      }

      .booking-page.booking-open .form-panel {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition:
          transform .42s cubic-bezier(.22,.8,.22,1),
          visibility 0s linear 0s;
      }

      .form-inner {
        width: 100%;
        min-height: 100%;
        padding:
          max(22px, env(safe-area-inset-top))
          max(20px, env(safe-area-inset-right))
          max(34px, env(safe-area-inset-bottom))
          max(20px, env(safe-area-inset-left));
      }

      .mobile-close {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        border: 0;
        padding: 0;
        margin: 0 0 22px;
        background: transparent;
        color: #999;
        cursor: pointer;
        font-size: .67rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
      }

      .mobile-close span:first-child {
        font-size: 1.65rem;
        font-weight: 300;
        line-height: .7;
      }

      .mobile-close:hover {
        color: #fff;
      }

      .form-header {
        padding-bottom: 25px;
      }

      .form-header h2 {
        margin-top: 30px;
        font-size: clamp(2.25rem, 11vw, 3.5rem);
      }

      .booking-form {
        padding-top: 25px;
      }

      .two-columns {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    /* Extra-small phones */
    @media (max-width: 380px) {
      .visual-content {
        padding-left: 22px;
        padding-right: 22px;
      }

      .visual-title {
        font-size: 3.3rem;
      }

      .visual-description {
        margin-top: 18px;
      }

      .mobile-booking-cta {
        margin-top: 22px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition: none !important;
      }

      .loader-progress::after {
        animation: none;
        transform: translateX(130%);
      }
    }


/* =========================
   TERMS & CONDITIONS PAGE
========================= */
.terms-page {
  overflow: auto;
  min-height: 100dvh;
  background: var(--bg);
}

.terms-page::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.terms-page {
  scrollbar-width: none;
}

.terms-header {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding:
    max(28px, env(safe-area-inset-top))
    0
    28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
}

.terms-back {
  color: #999;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.terms-back:hover {
  color: #fff;
}

.terms-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 80px;
}

.terms-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.terms-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
}

.terms-content > h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.terms-content > h1 span {
  color: #777;
  font-weight: 300;
}

.terms-intro {
  max-width: 650px;
  margin-top: 32px;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.75;
}

.terms-updated {
  margin-top: 18px;
  color: #555;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.terms-section {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 36px 0;
  border-bottom: 1px solid #222;
}

.terms-number {
  color: #555;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.terms-section h2 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.terms-section p {
  max-width: 700px;
  margin-top: 14px;
  color: #888;
  font-size: .88rem;
  line-height: 1.75;
}

.terms-footer-card {
  margin-top: 55px;
  padding: 30px;
  border: 1px solid #292929;
  background: #101010;
}

.terms-footer-card strong {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.terms-footer-card p {
  max-width: 600px;
  margin-top: 10px;
  color: #777;
  font-size: .82rem;
  line-height: 1.7;
}

.terms-footer-card a {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.terms-footer {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 max(30px, env(safe-area-inset-bottom));
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #555;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 600px) {
  .terms-header {
    width: calc(100% - 28px);
    padding-top: max(22px, env(safe-area-inset-top));
  }

  .terms-content {
    width: calc(100% - 28px);
    padding-top: 58px;
    padding-bottom: 55px;
  }

  .terms-content > h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .terms-intro {
    font-size: .88rem;
  }

  .terms-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .terms-footer-card {
    padding: 22px;
  }

  .terms-footer {
    width: calc(100% - 28px);
    flex-direction: column;
  }
}
