:root {
  --np-navy: #0c1424;
  --np-navy-2: #152033;
  --np-cream: #f3ead8;
  --np-gold: #c9a35c;
  --np-gold-soft: rgba(201, 163, 92, 0.18);
  --np-text: #f7f1e6;
  --np-muted: #c6bba8;
}

*,
*::before,
*::after { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body.new-public {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--np-navy);
  color: var(--np-text);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.booking-header,
.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}

.booking-brand {
  color: var(--np-cream);
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-main { flex: 1 1 auto; width: 100%; }
.booking-landing { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem 2.5rem; }

.booking-hero { margin-bottom: 1.25rem; }
.booking-hero__frame {
  position: relative;
  height: 62vh;
  min-height: 18rem;
  max-height: 34rem;
  overflow: hidden;
  border-radius: 18px;
  background: var(--np-navy-2);
}

.booking-hero__image,
.booking-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-hero__fallback {
  background:
    radial-gradient(circle at 20% 20%, rgba(201,163,92,0.28), transparent 42%),
    linear-gradient(160deg, #1a2740, #0c1424);
}

.booking-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,36,0.15) 20%, rgba(12,20,36,0.78) 100%);
}

.booking-hero__copy {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
}

.booking-hero__brand {
  margin: 0 0 0.35rem;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--np-gold);
}

.booking-hero__tagline {
  margin: 0;
  max-width: 28rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.25;
  color: var(--np-cream);
}

.booking-gallery {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.booking-gallery__thumb {
  flex: 0 0 4.6rem;
  width: 4.6rem;
  height: 3.4rem;
  padding: 0;
  border: 1px solid rgba(201,163,92,0.35);
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.booking-gallery__thumb.is-active { border-color: var(--np-gold); }
.booking-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-date-card {
  background: var(--np-navy-2);
  border: 1px solid rgba(201,163,92,0.28);
  border-radius: 18px;
  padding: 1.25rem 1.2rem 1.35rem;
}

.booking-date-card h1 {
  margin: 0 0 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--np-cream);
}

.booking-date-card__lead {
  margin: 0 0 1rem;
  color: var(--np-muted);
  font-size: 0.92rem;
}

.booking-date-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-date-fields label,
.booking-auth label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.booking-date-fields span,
.booking-auth label span { color: var(--np-muted); font-size: 0.78rem; }

.booking-date-fields input,
.booking-auth input[type="text"],
.booking-auth input[type="email"],
.booking-auth input[type="password"] {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(243,234,216,0.18);
  border-radius: 10px;
  background: #0c1424;
  color: var(--np-cream);
  padding: 0.7rem 0.75rem;
  font-size: 1rem;
}

.booking-date-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0 0.9rem;
}

.booking-date-summary em {
  display: block;
  color: var(--np-gold);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-date-summary strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

.booking-date-summary__meta {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--np-cream);
  font-weight: 600;
}

.booking-availability__btn,
.booking-auth button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: var(--np-gold);
  color: #1b1408;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.booking-availability__result {
  margin: 0.85rem 0 0;
  color: var(--np-cream);
  font-size: 0.92rem;
}

.booking-availability__result.is-ok { color: #d7eccf; }
.booking-availability__result.is-no { color: #f0d0c8; }

.booking-footer {
  color: var(--np-muted);
  font-size: 0.78rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-auth {
  max-width: 24rem;
  margin: 2rem auto;
  padding: 0 1rem 2rem;
}

.booking-auth h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--np-cream);
}

.booking-auth form { display: grid; gap: 0.85rem; }
.booking-auth__remember { display: flex; align-items: center; gap: 0.45rem; }
.booking-auth__errors { color: #f0d0c8; }

@media (max-width: 768px) {
  .booking-hero__frame { height: 48vh; min-height: 16rem; }
  .booking-date-fields { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .booking-hero__frame { height: 42vh; min-height: 14rem; border-radius: 12px; }
  .booking-date-card { padding: 1rem; }
}
