/* HLV Hilltop — Mona Sans, #ffffff #60ce80 #001540 */
@font-face {
  font-family: 'Mona Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/npm/@fontsource-variable/mona-sans@5.1.0/files/mona-sans-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  --white: #ffffff;
  --surface: #fafbfc;
  --mint: #60ce80;
  --mint-light: #78d89a;
  --mint-deep: #4fb86e;
  --navy: #001540;
  --navy-soft: #0a2558;
  --navy-deep: #000f30;
  --mint-dim: rgba(96, 206, 128, 0.15);
  --mint-glow: rgba(96, 206, 128, 0.35);
  --text-muted: rgba(0, 21, 64, 0.55);
  --border: rgba(0, 21, 64, 0.08);
  --sheen-top: rgba(255, 255, 255, 0.72);
  --sheen-edge: rgba(255, 255, 255, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 1px 0 var(--sheen-top) inset, 0 8px 32px rgba(0, 21, 64, 0.07);
  --shadow-lg: 0 1px 0 var(--sheen-top) inset, 0 20px 50px rgba(0, 21, 64, 0.11), 0 2px 8px rgba(0, 21, 64, 0.04);
  --font: 'Mona Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--navy);
  background:
    radial-gradient(ellipse 110% 70% at 50% -15%, rgba(96, 206, 128, 0.045) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0, 21, 64, 0.025) 0%, transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--white) 35%, var(--white) 100%);
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

::selection {
  background: rgba(96, 206, 128, 0.22);
  color: var(--navy);
}

h1, h2,
.section-head h2,
.hero-book h1,
.login-card h1,
.login-visual .visual-copy h2,
.use-card .use-title {
  color: var(--navy-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.text-mint,
.hero-book h1 .accent,
.section-head .eyebrow,
.eyebrow,
.use-card .use-kicker,
.hlv-brand em {
  background: linear-gradient(168deg, var(--mint-light) 0%, var(--mint) 42%, var(--mint-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-extrabold { font-weight: 800; }

.text-muted { color: var(--text-muted); }
.text-mint { color: var(--mint); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-mint-soft { background: linear-gradient(180deg, rgba(96, 206, 128, 0.1) 0%, rgba(96, 206, 128, 0.05) 100%); }

/* Dot pattern */
.dot-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(96, 206, 128, 0.35) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Progressive blur (CSS layers) */
.progressive-blur {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  pointer-events: none;
  z-index: 2;
}
.progressive-blur span {
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 85%);
  mask-image: linear-gradient(to bottom, transparent, #000 85%);
}
.progressive-blur span:nth-child(1) { backdrop-filter: blur(1px); z-index: 1; }
.progressive-blur span:nth-child(2) { backdrop-filter: blur(3px); z-index: 2; -webkit-mask-position: 0 25%; mask-position: 0 25%; }
.progressive-blur span:nth-child(3) { backdrop-filter: blur(8px); z-index: 3; -webkit-mask-position: 0 50%; mask-position: 0 50%; }
.progressive-blur span:nth-child(4) { backdrop-filter: blur(16px); z-index: 4; -webkit-mask-position: 0 75%; mask-position: 0 75%; }

/* Nav */
.hlv-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--sheen-top) inset, 0 4px 24px rgba(0, 21, 64, 0.04);
}
.hlv-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.hlv-brand img { width: 36px; height: 36px; object-fit: contain; }
.hlv-brand em { font-style: normal; color: var(--mint); font-weight: 600; }
.hlv-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.8rem;
  font-weight: 500;
}
.hlv-nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}
.hlv-nav-links a:hover { color: var(--navy); }
.hlv-nav-user {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hlv-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 102;
}
.hlv-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.hlv-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hlv-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hlv-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hlv-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 21, 64, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
  pointer-events: none;
}
.hlv-nav-backdrop.is-open {
  visibility: visible;
}
.hlv-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hlv-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(100%, 300px);
  height: 100%;
  height: 100dvh;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0, 21, 64, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.hlv-nav-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.hlv-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--navy);
}
.hlv-nav-close {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: var(--mint-dim);
  border-radius: var(--radius-sm);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}
.hlv-nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  overflow-y: auto;
}
.hlv-nav-drawer-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hlv-nav-drawer-links a:hover {
  background: var(--mint-dim);
}
.hlv-nav-drawer-links .hlv-nav-user {
  max-width: none;
  padding: 0.5rem 0.5rem 0.75rem;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
.hlv-nav-drawer-links .btn {
  margin-top: 0.75rem;
  width: 100%;
}
.btn-nav-cta {
  padding: 0.5rem 1.1rem !important;
  font-size: 0.8rem !important;
}

@media (max-width: 900px) {
  .hlv-nav-desktop {
    display: none;
  }
  .hlv-nav-toggle {
    display: flex;
  }
  .hlv-brand {
    font-size: 0.85rem;
    min-width: 0;
  }
  .hlv-brand em {
    display: inline;
  }
}
@media (max-width: 380px) {
  .hlv-brand-text-long {
    display: none;
  }
  .hlv-brand-text-short {
    display: inline;
  }
}
@media (min-width: 381px) {
  .hlv-brand-text-short {
    display: none;
  }
}

body.hlv-nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--mint) 48%, var(--mint-deep) 100%);
  color: var(--navy-deep);
  box-shadow:
    0 1px 0 var(--sheen-edge) inset,
    0 4px 20px var(--mint-glow),
    0 1px 2px rgba(0, 21, 64, 0.06);
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 8px 28px var(--mint-glow),
    0 2px 4px rgba(0, 21, 64, 0.08);
  filter: brightness(1.03) saturate(1.04);
}
.btn-navy {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 4px 16px rgba(0, 21, 64, 0.2);
}
.btn-navy:hover {
  background: linear-gradient(180deg, #0d2a62 0%, var(--navy-soft) 55%, var(--navy) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 6px 22px rgba(0, 21, 64, 0.24);
}
.btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.85) 100%);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: 0 1px 0 var(--sheen-top) inset;
}
.btn-ghost:hover {
  border-color: rgba(96, 206, 128, 0.45);
  background: linear-gradient(180deg, var(--white) 0%, var(--mint-dim) 100%);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; }

/* Auth switch */
.auth-switch {
  display: flex;
  padding: 4px;
  background: var(--mint-dim);
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.auth-switch button {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.auth-switch button.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

/* Form fields */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px var(--mint-dim);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.pw-field { position: relative; }
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.alert-error {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(193, 60, 60, 0.08);
  border: 1px solid rgba(193, 60, 60, 0.2);
  color: #a33;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hint-box {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  background: var(--mint-dim);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--mint);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: hlv-marquee var(--marquee-duration, 35s) linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes hlv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}
.marquee-item {
  flex-shrink: 0;
  width: clamp(140px, 28vw, 220px);
  height: clamp(140px, 28vw, 220px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
  filter: contrast(1.02) saturate(1.05);
}
.marquee-item:hover img { transform: scale(1.04); }

/* Offer cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.offer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--navy);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  width: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  text-align: left;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint);
}
.offer-card.selected {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px var(--mint-dim);
}
.offer-card .offer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.offer-card .offer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 15, 48, 0.25) 55%,
    rgba(0, 15, 48, 0.82) 78%,
    rgba(0, 10, 32, 0.94) 100%
  );
}
.offer-card .offer-body {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 1.25rem;
  padding-top: 2rem;
}
.offer-card .offer-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  -webkit-text-fill-color: currentColor;
  background: none;
}
.offer-card .offer-body p {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.offer-tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.6rem;
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--mint) 100%);
  color: var(--navy-deep);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 0 var(--sheen-edge) inset;
}

/* Occasion pills */
.occasion-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.occasion-pill {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: 0 1px 0 var(--sheen-top) inset;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.occasion-pill:hover { border-color: rgba(96, 206, 128, 0.45); }
.occasion-pill.active {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

/* Use case cards */
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.use-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  box-shadow: 0 1px 0 var(--sheen-top) inset, 0 4px 20px rgba(0, 21, 64, 0.04);
  transition: border-color 0.2s, box-shadow 0.25s var(--ease);
}
.use-card:hover {
  border-color: rgba(96, 206, 128, 0.4);
  box-shadow: 0 1px 0 var(--sheen-top) inset, 0 8px 28px rgba(0, 21, 64, 0.07);
}
.use-card .use-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint);
  margin-bottom: 0.35rem;
}
.use-card .use-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--navy);
}
.use-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.55;
}

/* Booking panel */
.book-panel {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.book-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .book-layout { grid-template-columns: 1fr; }
  .quote-sticky { position: static !important; }
}
.quote-sticky {
  position: sticky;
  top: 5rem;
}

.unit-option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.unit-option:hover:not(.disabled) { border-color: var(--mint); }
.unit-option.selected { border-color: var(--mint); background: var(--mint-dim); }
.unit-option.disabled { opacity: 0.5; cursor: not-allowed; }
.unit-option.disabled input { pointer-events: none; }
.unit-option.needs-cabins { opacity: 0.85; cursor: pointer; }
.unit-option input { margin-top: 0.25rem; accent-color: var(--mint); }
.unit-meta strong { display: block; font-weight: 600; font-size: 0.95rem; }
.unit-meta small { color: var(--text-muted); font-size: 0.8rem; }
.avail-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.avail-available { background: var(--mint-dim); color: var(--navy); }
.avail-pending_hold { background: #fff8e6; color: #8a6d00; }
.avail-pending_payment { background: #fdeee8; color: #9a3b2a; }
.avail-booked, .avail-unavailable { background: #f0f0f0; color: #666; }

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.summary-total {
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.cabin-picker {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.cabin-picker h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.cabin-picker .cabin-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.cabin-picker .cabin-avail {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.cabin-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.cabin-icon {
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--border);
  transition: color 0.15s, transform 0.1s;
}
.cabin-icon svg { width: 100%; height: 100%; display: block; }
.cabin-icon:hover { transform: scale(1.08); }
.cabin-icon.taken { color: #c5c5c5; cursor: not-allowed; }
.cabin-icon.free { color: #b8d4c4; }
.cabin-icon.free:hover { color: #8fc4a8; }
.cabin-icon.selected { color: var(--mint); }
.cabin-icon.selected:hover { color: var(--navy); }

.cabin-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.cabin-qty-row:last-child { border-bottom: none; }
.cabin-qty-row label { font-weight: 600; font-size: 0.9rem; flex: 1; }
.cabin-qty-row small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.75rem; }
.cabin-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cabin-qty-controls input[type="number"] {
  width: 3rem;
  text-align: center;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.cabin-qty-controls button {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.cabin-qty-controls button:disabled { opacity: 0.4; cursor: not-allowed; }

.cabin-assign-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.cabin-assign-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--border);
}
.cabin-assign-row label {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-weight: 600;
}
.cabin-assign-row input {
  font-size: 0.85rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.cabin-assign-row input.full { grid-column: 1 / -1; }
.hall-requires {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}
.hall-requires.ready { color: var(--navy); font-weight: 600; }

.steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.step {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--mint-dim);
  color: var(--text-muted);
}
.step.active { background: var(--navy); color: var(--white); }

/* Reservations */
.res-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--white);
}
.res-card header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}
.status-pending_hold { background: #fff8e6; color: #8a6d00; }
.status-pending_payment { background: #fdeee8; color: #9a3b2a; }
.status-confirmed { background: var(--mint-dim); color: var(--navy); }
.status-cancelled, .status-expired { background: #eee; color: #666; }
.share-box {
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: var(--mint-dim);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  word-break: break-all;
}
.pay-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 21, 64, 0.5);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active,
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-box-wide { max-width: 520px; }
.guest-summary {
  background: var(--mint-dim);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.guest-checkout {
  margin-top: 0.25rem;
}
.guest-divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid var(--border);
}
.guest-success-panel {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--mint-dim);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.guest-link-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  background: #fafafa;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 300;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s var(--ease);
  max-width: min(90vw, 360px);
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.invite-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Hero */
.hero-book {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.hero-book::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/views/full.jpg') center 35% / cover no-repeat;
  opacity: 0.09;
  pointer-events: none;
}
.hero-book::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.96) 45%,
    rgba(255, 255, 255, 0.98) 100%
  );
  pointer-events: none;
}
.hero-book > * {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-book .hero-preview {
  max-width: 520px;
}
.hero-book h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero-book h1 .accent { color: var(--mint); }
.hero-book .lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 540px;
  margin: 0 auto 1.75rem;
}
.hero-cta-wrap { position: relative; display: inline-block; }

.founding-counter {
  margin-top: 1.25rem;
  max-width: 22rem;
}
.founding-counter-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.founding-counter-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--mint-dim);
  overflow: hidden;
}
.founding-counter-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint-deep), var(--mint-light));
  transition: width 0.5s var(--ease);
}
.founding-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--mint-dim);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.founding-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--navy);
}
.founding-perks li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
}
.founding-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.founding-full-note {
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--mint-dim);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.hero-preview {
  margin-top: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 0 var(--sheen-top) inset,
    var(--shadow-lg),
    0 0 0 1px rgba(0, 21, 64, 0.04);
  position: relative;
  aspect-ratio: 16 / 10;
}
.hero-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.06);
}

#hero-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}
#hero-canvas.is-hidden {
  opacity: 0;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
}
.section-head {
  margin-bottom: 1.5rem;
}
.section-head .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint);
  margin-bottom: 0.5rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 400;
  max-width: 520px;
}

/* Login layout */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .login-page { grid-template-columns: 1fr; }
  .login-visual { display: none; }
}
.login-visual {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.login-visual .visual-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.login-visual .visual-copy p {
  font-weight: 300;
  opacity: 0.85;
  max-width: 400px;
  font-size: 0.95rem;
}
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.login-card {
  width: 100%;
  max-width: 400px;
}
.login-card .hlv-brand { margin-bottom: 2rem; }
.login-card h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.login-card .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.login-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 320px;
}
.login-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 90;
}
@media (max-width: 900px) {
  .mobile-book-bar { display: block; }
  body.has-mobile-bar { padding-bottom: 4.5rem; }
}

.policy-compact {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.policy-compact strong { color: var(--navy); font-weight: 600; }
