:root {
  --bg: #0b1320;
  --bg-soft: #101b2c;
  --panel: rgba(12, 22, 36, 0.9);
  --text: #eef3fb;
  --muted: #b0bed3;
  --gold: #d9b46b;
  --gold-strong: #efcc88;
  --line: rgba(255,255,255,0.08);
  --danger: #ff7474;
  --ok: #76d6a1;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--text); background: linear-gradient(180deg, #08111f 0%, #0b1320 100%); }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); background: rgba(8, 17, 31, 0.72); border-bottom: 1px solid var(--line); }
.nav-bar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--text); text-decoration: none; font-weight: 700; font-size: 1.05rem; }
.nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover, .nav-admin { color: var(--gold-strong); }
.hero { min-height: 86vh; display: grid; align-items: center; background: linear-gradient(120deg, rgba(6, 12, 22, 0.88), rgba(6, 12, 22, 0.45)), url('/images/hero-room.svg') center/cover; }
.hero-content { padding: 80px 0 100px; max-width: 720px; }
.eyebrow { letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-strong); font-size: 0.78rem; margin-bottom: 18px; }
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.05; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
p { color: var(--muted); line-height: 1.7; }
.hero-copy { font-size: 1.06rem; max-width: 620px; margin: 18px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.button { border: 0; border-radius: 999px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; padding: 14px 22px; }
.button-primary { background: linear-gradient(180deg, var(--gold-strong), var(--gold)); color: #1b1810; }
.button-secondary { background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--line); }
.section { padding: 84px 0; }
.section-muted { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 28px; }
.section-head.left { text-align: left; }
.panel, .result-card, .experience-card { background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 24px; }
.room-layout { display: grid; gap: 18px; }
.room-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.room-image { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.room-copy { padding: 28px; display: grid; gap: 16px; }
.room-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); }
.experience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.experience-card { padding: 22px; text-decoration: none; color: var(--text); display: grid; gap: 8px; }
.experience-icon { font-size: 2rem; }
.booking-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.form-grid { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--text); font-size: 0.95rem; }
input, textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12); color: var(--text); border-radius: 14px; padding: 14px; font: inherit; }
textarea { resize: vertical; }
.full-width { width: 100%; }
.feedback { margin-top: 14px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.feedback.error { border-color: rgba(255,116,116,0.4); color: #ffd3d3; }
.feedback.success { border-color: rgba(118,214,161,0.35); color: #d7ffea; }
.hidden { display: none !important; }
.results-list { display: grid; gap: 14px; margin-top: 18px; }
.result-card { padding: 20px; display: grid; gap: 12px; }
.result-card.is-disabled { opacity: 0.6; }
.result-top { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.plan-badge { color: var(--gold-strong); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.result-quote { display: grid; gap: 6px; color: var(--muted); }
.badge { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; font-size: 0.82rem; background: rgba(255,255,255,0.05); border: 1px solid var(--line); width: fit-content; }
.badge.ok { color: var(--ok); }
.badge.danger { color: var(--danger); }
.quote-box { padding: 16px; border: 1px dashed rgba(217,180,107,0.4); border-radius: 18px; background: rgba(217,180,107,0.07); }
@media (max-width: 980px) {
  .room-card, .booking-layout, .experience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-bar { flex-direction: column; align-items: flex-start; padding: 16px 0; }
  .hero { min-height: 78vh; }
  .hero-content { padding-top: 40px; }
}
