:root {
  --bg: #050505;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(0, 0, 0, 0.34);
  --shadow:
    0 25px 60px rgba(0, 0, 0, 0.42),
    0 8px 20px rgba(0, 0, 0, 0.28);
  --blur: 22px;
  --radius: 28px;
  --maxw: 1440px;
  --panel-w: 760px;
  --ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

body {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

.bg-stage {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 0;
  overflow: hidden;
}

.bg-stage__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: transparent;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 380ms ease,
    transform 6000ms ease;
  will-change: opacity, transform;
  --bg-image: none;
}

.bg-stage__image.is-visible {
  opacity: 1;
}

.bg-stage__image.is-zoomed {
  transform: scale(1.03);
}

@media (min-width: 901px) {
  .bg-stage__image {
    background-image: none !important;
    z-index: 1;
    overflow: hidden;
  }

  .bg-stage__image::before {
    content: "";
    position: absolute;
    inset: -30px;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(28px);
    transform: scale(1.12);
    opacity: 0.55;
    z-index: 0;
  }

  .bg-stage__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 2;
  }
}

.bg-stage__overlay {
  display: none;
}

.app-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 30;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  min-height: 62px;
  min-width: 280px;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 440px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 35;
}

.site-nav__link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  transition:
    background var(--ease),
    color var(--ease),
    transform var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 40;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.site-menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: #fff;
  display: block;
}

.site-menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
  pointer-events: none;
}

.main-stage {
  flex: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  place-items: center;
  position: relative;
  padding-bottom: 120px;
  min-height: 0;
}

.content-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 0;
  padding-inline: 0;
}

.content-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.content-panel--empty {
  pointer-events: none;
}

.glass-card {
  width: min(var(--panel-w), 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.42);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.glass-card--bio {
  padding: 28px;
  height: calc(100vh - 210px);
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.glass-card--booking {
  padding: 28px;
  width: min(860px, 100%);
  height: calc(100vh - 210px);
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  position: relative;
}
.glass-card--bio,
.glass-card--booking {
  overflow-y: auto;
  overflow-x: hidden;
}
.kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.section-title {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
}

.bio-copy {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.bio-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.72;
  font-size: 16px;
  font-weight: 500;
}

.booking-info {
  margin-top: 20px;
  display: block;
  width: 100%;
}

.pricing-list {
  display: grid;
  gap: 10px;
  width: 100%;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-item__label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-item__value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.deposit-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  width: 100%;
}

.booking-form {
  margin-top: 22px;
  display: block;
  width: 100%;
  clear: both;
}

.booking-form,
.booking-info,
.form-field--full,
.deposit-note,
.pricing-list {
  width: 100%;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  align-items: start;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field--full {
  margin-top: 14px;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 16px;
  padding: 14px 14px;
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-field select {
  appearance: none;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}

.booking-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition:
    background var(--ease),
    transform var(--ease);
}

.booking-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.booking-button--submit {
  appearance: none;
  cursor: pointer;
}

.image-nav {
  width: max-content;
  max-width: calc(100vw - 36px);
  margin: 0 auto 22px auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  z-index: 20;
}

.glass-float {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.image-nav__btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-width: 84px;
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background var(--ease),
    transform var(--ease);
}

.image-nav__btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.image-nav__meta {
  min-width: 120px;
  text-align: center;
  padding-inline: 8px;
}

.image-nav__mode,
.image-nav__count {
  display: block;
}

.image-nav__mode {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.image-nav__count {
  margin-top: 4px;
  font-size: 13px;
  color: #fff;
}

.site-logo,
.site-nav,
.glass-float {
  position: relative;
  overflow: hidden;
}

.glass-card {
  position: relative;
}

.site-logo::before,
.site-nav::before,
.glass-card::before,
.glass-float::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
  pointer-events: none;
}

.booking-status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.booking-status.is-error {
  color: rgba(255, 180, 180, 0.95);
}

.booking-status.is-success {
  color: rgba(190, 255, 210, 0.95);
}

.booking-button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 900px) {
  .app-shell {
    padding: 14px;
  }

  .site-header {
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
  }

  .site-menu-toggle {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
  }

  .site-logo {
    padding: 8px 12px;
    min-height: 54px;
    max-width: calc(100vw - 92px);
    min-width: 0;
  }

  .site-logo img {
    height: 40px;
    max-width: min(72vw, 320px);
  }

  .site-nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: min(240px, calc(100vw - 28px));
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--ease),
      transform var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__link {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    font-size: 14px;
  }

  .main-stage {
    padding-bottom: 150px;
  }

  .glass-card--bio,
  .glass-card--booking {
    width: 100%;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .glass-card--bio {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .glass-card--booking {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    position: relative;
  }

  .glass-card--booking .kicker {
    font-size: 11px;
  }

  .glass-card--booking .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .glass-card--booking .bio-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .bio-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

 .form-field input[type="date"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.form-field input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  margin-left: 0;
}

  .pricing-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-item__label {
    font-size: 13px;
    line-height: 1.35;
  }

  .pricing-item__value {
    font-size: 14px;
    white-space: normal;
  }

  .deposit-note {
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 14px;
  }

  .image-nav {
    gap: 8px;
    width: calc(100vw - 28px);
    justify-content: space-between;
    margin-bottom: 26px;
  }

  .image-nav__btn {
    min-width: 72px;
    padding: 11px 12px;
  }

  .image-nav__meta {
    min-width: 88px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-button {
    width: 100%;
  }
}
