/* ============================================================
   MAIN — guest-facing site
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 56px; display: flex; align-items: center;
  justify-content: space-between; transition: all .3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  padding: 13px 56px;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 600;
  color: #fff; text-decoration: none; letter-spacing: .01em;
  display: flex; align-items: center; gap: 9px; transition: color .3s;
}
.nav-logo .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--orange); display: grid; place-items: center;
  font-size: .9rem; color: #fff; flex-shrink: 0;
}
.nav-logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .15); }
nav.scrolled .nav-logo { color: var(--blue); }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255, 255, 255, .88);
  text-decoration: none; transition: color .2s; cursor: pointer;
}
nav.scrolled .nav-links a { color: var(--gray); }
.nav-links a:hover { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; background: rgba(255, 255, 255, .18);
  border-radius: 20px; padding: 3px; gap: 2px;
}
nav.scrolled .lang-toggle { background: var(--sky); }
.lang-btn {
  padding: 5px 13px; border-radius: 16px; border: none; cursor: pointer;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  background: transparent; color: rgba(255, 255, 255, .8);
  transition: all .2s; font-family: var(--sans);
}
.lang-btn.active { background: #fff; color: var(--blue); }
nav.scrolled .lang-btn { color: var(--gray); }
nav.scrolled .lang-btn.active { background: var(--blue); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
nav.scrolled .hamburger span { background: var(--blue); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--blue-dark);
  z-index: 998; flex-direction: column; align-items: center;
  justify-content: center; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 2.1rem; color: #fff; text-decoration: none; cursor: pointer; }
.mobile-menu-close {
  position: absolute; top: 22px; right: 24px; background: none; border: none;
  color: #fff; font-size: 1.8rem; cursor: pointer;
}
.mobile-lang { display: flex; gap: 8px; margin-top: 14px; }

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-outline {
  padding: 14px 30px; border-radius: var(--radius-sm); text-decoration: none;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; transition: all .2s; font-family: var(--sans); border: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); }
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }

/* ---------- HERO ---------- */
#hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 120px 20px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #07304b 0%, var(--blue) 45%, var(--blue-light) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(240, 122, 26, .28), transparent 45%);
}
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .07);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hero-content { position: relative; text-align: center; color: #fff; max-width: 760px; animation: fadeUp 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-label {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px; display: block; font-weight: 600;
}
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 8vw, 5.6rem); font-weight: 300; line-height: 1.08; margin-bottom: 22px; }
.hero-title em { font-style: italic; color: var(--orange); }
.hero-sub { font-size: 1.02rem; font-weight: 300; color: rgba(255, 255, 255, .82); max-width: 540px; margin: 0 auto 34px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 38px; }

/* Search bar */
.hero-search {
  display: flex; align-items: center; background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 60px; padding: 6px; max-width: 720px; margin: 0 auto;
}
.hs-field { display: flex; flex-direction: column; padding: 8px 18px; flex: 1; min-width: 0; }
.hs-field label { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .65); margin-bottom: 4px; }
.hs-field input, .hs-field select {
  background: transparent; border: none; outline: none; color: #fff;
  font-family: var(--sans); font-size: .9rem; font-weight: 500; cursor: pointer; width: 100%;
}
.hs-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; cursor: pointer; }
.hs-field input::placeholder { color: rgba(255,255,255,.75); }
.hs-field select option { background: var(--blue-dark); color: #fff; }
.hs-divider { width: 1px; height: 38px; background: rgba(255, 255, 255, .22); flex-shrink: 0; align-self: center; }
.hs-btn {
  background: var(--orange); color: #fff; border: none; padding: 14px 28px;
  border-radius: 50px; font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: background .2s; white-space: nowrap; font-family: var(--sans); flex-shrink: 0;
}
.hs-btn:hover { background: var(--orange-dark); }
.hero-search-wrap { position: relative; max-width: 720px; margin: 0 auto; }
.hero-search-wrap .hero-search { max-width: none; }
#hs-checkin, #hs-checkout { cursor: pointer; }
/* Centered dialog so it is never clipped by the hero */
.hero-cal-pop {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(6, 18, 29, .55); align-items: center; justify-content: center; padding: 20px;
}
.hero-cal-pop.open { display: flex; }
.hero-cal-card {
  background: #fff; color: var(--dark); border-radius: 16px; padding: 18px;
  width: 330px; max-width: 100%; box-shadow: var(--shadow); animation: fadeUp .25s ease both;
}
.hero-cal-card .mini-cal-day-label { color: var(--gray); }
.hero-cal-done {
  width: 100%; margin-top: 12px; background: var(--orange); color: #fff; border: none;
  padding: 11px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; font-family: var(--sans);
}
.hero-cal-done:hover { background: var(--orange-dark); }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255, 255, 255, .45); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; animation: bounce 2.5s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ---------- SECTIONS ---------- */
section { padding: 96px 56px; }
.section-label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: block; font-weight: 600; }
.section-title { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 400; color: var(--blue); line-height: 1.18; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--orange); }

/* ---------- ABOUT ---------- */
#about { background: var(--sky); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-text p { color: var(--gray); line-height: 1.85; font-size: .98rem; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-top: 34px; }
.stat-card { background: #fff; padding: 22px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); }
.stat-number { font-family: var(--serif); font-size: 2.3rem; font-weight: 600; color: var(--orange); display: block; }
.stat-label { font-size: .78rem; color: var(--gray); }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 440px; }
.about-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; color: rgba(255, 255, 255, .85);
  font-size: .76rem; letter-spacing: .05em; text-transform: uppercase;
  background-size: cover; background-position: center;
}
.about-photo span.ph-emoji { font-size: 2.2rem; }
.about-real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* ---------- AMENITIES ---------- */
#amenities { background: #fff; text-align: center; }
.amenities-head { max-width: 620px; margin: 0 auto 50px; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; }
.amenity {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; transition: all .25s; text-align: center;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.amenity .am-icon {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 12px;
  background: var(--orange-soft); display: grid; place-items: center; font-size: 1.5rem;
}
.amenity h4 { font-size: .92rem; color: var(--blue); margin-bottom: 4px; font-weight: 600; }
.amenity p { font-size: .78rem; color: var(--gray); line-height: 1.5; }

/* ---------- ROOMS ---------- */
#rooms { background: var(--paper); }
.rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; gap: 20px; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 26px; }
.room-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  transition: all .3s; cursor: pointer; background: #fff; display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.room-img {
  width: 100%; aspect-ratio: 4 / 3; display: flex; align-items: center;
  justify-content: center; font-size: 3.4rem; flex-shrink: 0;
  background-size: cover; background-position: center; position: relative;
}
.room-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.room-badge {
  position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .92);
  color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 20px; text-transform: uppercase; z-index: 2;
}
.room-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.room-type { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; font-weight: 600; }
.room-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--blue); margin-bottom: 10px; }
.room-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; flex: 1; }
.room-feature { font-size: .76rem; color: var(--gray); }
.room-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
.room-price .amount { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--blue); }
.room-price .per { font-size: .76rem; color: var(--gray); margin-left: 3px; }
.btn-check {
  background: var(--blue); color: #fff; border: none; padding: 9px 18px;
  border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: background .2s; font-family: var(--sans); white-space: nowrap;
}
.btn-check:hover { background: var(--blue-light); }
.no-rooms-msg { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--gray); }
.no-rooms-msg p { font-size: 1.1rem; margin-bottom: 8px; }

/* Filter banner */
.filter-banner {
  background: var(--blue); color: #fff; padding: 14px 22px; border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 26px; gap: 12px; flex-wrap: wrap;
}
.filter-banner span { font-size: .88rem; }
.btn-clear-filter {
  background: rgba(255, 255, 255, .18); color: #fff; border: none; padding: 8px 16px;
  border-radius: 20px; font-size: .8rem; cursor: pointer; font-family: var(--sans); transition: background .2s;
}
.btn-clear-filter:hover { background: rgba(255, 255, 255, .3); }

/* ---------- CONTACT ---------- */
#contact { background: var(--sky); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; background: var(--blue); border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; color: var(--blue); font-size: .88rem; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: .85rem; color: var(--gray); text-decoration: none; line-height: 1.6; }
.contact-detail a:hover { color: var(--orange); }
.map-box {
  width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .7); gap: 12px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.map-box span { font-size: 2.4rem; }
.map-box p { font-size: .84rem; text-align: center; line-height: 1.6; padding: 0 20px; }

/* ---------- FEEDBACK ---------- */
#feedback { background: var(--blue-dark); }
#feedback .section-label { color: var(--orange); }
#feedback .section-title { color: #fff; }
.fb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.fb-text p { color: rgba(255, 255, 255, .72); line-height: 1.85; font-size: .95rem; }
.fb-form .form-group label { color: rgba(255, 255, 255, .6); }
.fb-form input, .fb-form textarea, .fb-form select {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #fff;
}
.fb-form input::placeholder, .fb-form textarea::placeholder { color: rgba(255, 255, 255, .35); }
.fb-form input:focus, .fb-form textarea:focus, .fb-form select:focus { border-color: var(--orange); }
.fb-form select option { background: var(--blue-dark); }

/* ---------- RULES ---------- */
#rules { background: #fff; }
#rules .inner { max-width: 980px; margin: 0 auto; }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; margin-top: 38px; }
.rule-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.rule-card-icon { font-size: 1.7rem; margin-bottom: 12px; }
.rule-card-title { font-family: var(--serif); font-size: 1.15rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.rule-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.rule-card ul li { font-size: .84rem; color: var(--gray); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.rule-card ul li::before { content: '✓'; color: var(--orange); flex-shrink: 0; margin-top: 1px; font-weight: 700; }

/* ---------- FOOTER ---------- */
footer { background: #06121d; color: rgba(255, 255, 255, .6); }
.footer-main { max-width: 1140px; margin: 0 auto; padding: 52px 56px 32px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-col h5 { color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: rgba(255, 255, 255, .6); text-decoration: none; font-size: .85rem; line-height: 1.5; margin-bottom: 9px; transition: color .2s; cursor: pointer; }
.footer-col a:hover { color: var(--orange); }
.footer-brand .footer-logo-img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; background: #fff; margin-bottom: 12px; }
.footer-logo { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.footer-tagline { font-size: .85rem; line-height: 1.6; margin-bottom: 12px; color: rgba(255, 255, 255, .55); }
.footer-brand .footer-ig { color: var(--orange); font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 56px; text-align: center; font-size: .76rem; color: rgba(255, 255, 255, .45); }
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; padding: 40px 22px 24px; gap: 28px; } .footer-bottom { padding: 16px 22px; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; } }

/* ---------- FORMS (shared) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .7rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .88rem; color: var(--dark); outline: none;
  transition: border-color .2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 70px; }
.btn-submit {
  width: 100%; margin-top: 12px; background: var(--orange); color: #fff; border: none;
  padding: 13px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .2s; font-family: var(--sans); letter-spacing: .03em;
}
.btn-submit:hover { background: var(--orange-dark); }
.extra-fee-notice { background: var(--amber-soft); border-radius: var(--radius-sm); padding: 9px 12px; font-size: .8rem; color: var(--amber); margin-top: 8px; display: none; }

/* ---------- MODAL ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(6, 18, 29, .68); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 18px; max-width: 660px; width: 100%; max-height: 92vh; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.modal-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.modal-title { font-family: var(--serif); font-size: 1.7rem; color: var(--blue); line-height: 1.15; }
.modal-features { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 12px; }
.feature-tag { background: var(--sky); color: var(--blue); padding: 4px 11px; border-radius: 20px; font-size: .75rem; }
.modal-desc { color: var(--gray); line-height: 1.6; font-size: .86rem; margin-bottom: 12px; }
.extra-guest-info { background: var(--amber-soft); border: 1px solid #f3d9a6; border-radius: var(--radius-sm); padding: 9px 13px; font-size: .81rem; color: var(--amber); margin-bottom: 12px; }
.modal-close {
  position: absolute; top: 10px; left: 12px; background: rgba(6, 18, 29, .4); border: none;
  font-size: 1rem; cursor: pointer; color: #fff; z-index: 3; width: 32px; height: 32px;
  border-radius: 50%; display: grid; place-items: center; transition: background .2s;
}
.modal-close:hover { background: rgba(6, 18, 29, .65); }

/* Photo gallery */
.photo-gallery { position: relative; overflow: hidden; border-radius: 18px 18px 0 0; flex-shrink: 0; }
.photo-slides { display: flex; transition: transform .4s ease; }
.photo-slide { position: relative; }
.photo-real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.photo-slide {
  min-width: 100%; height: 200px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 7px; font-size: .76rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255, 255, 255, .7); background-size: cover; background-position: center;
}
.photo-slide .big-emoji { font-size: 3rem; }
.photo-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(6, 18, 29, .4); border: none; color: #fff; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: grid; place-items: center; transition: background .2s; z-index: 2; }
.photo-nav:hover { background: rgba(6, 18, 29, .65); }
.photo-prev { left: 12px; } .photo-next { right: 12px; }
.photo-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; }
.photo-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .5); cursor: pointer; transition: all .2s; border: none; }
.photo-dot.active { background: #fff; transform: scale(1.3); }
.photo-count { position: absolute; top: 12px; right: 12px; background: rgba(6, 18, 29, .45); color: #fff; font-size: .72rem; padding: 4px 10px; border-radius: 20px; }

/* Calendar */
.calendar-section { background: var(--sky); border-radius: var(--radius); padding: 14px; margin-bottom: 0; }
.calendar-title { font-weight: 600; color: var(--blue); margin-bottom: 10px; font-size: .86rem; }
.date-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.date-input-group label { display: block; font-size: .7rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.date-input-group input { width: 100%; padding: 8px 11px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--sans); font-size: .86rem; background: #fff; color: var(--dark); outline: none; }
.date-input-group input:focus { border-color: var(--orange); }
.avail-result { padding: 10px 14px; border-radius: var(--radius-sm); font-size: .84rem; font-weight: 500; margin-top: 10px; display: none; }
.avail-result.ok { background: var(--green-soft); color: var(--green); display: block; }
.avail-result.no { background: var(--red-soft); color: var(--red); display: block; }
.price-summary { background: var(--blue); color: #fff; padding: 13px 17px; border-radius: var(--radius-sm); margin-top: 10px; display: none; }
.price-summary.show { display: flex; justify-content: space-between; align-items: center; }
.price-nights { font-size: .8rem; opacity: .8; }
.price-total { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; }

.mini-calendar { margin-top: 8px; }
.mini-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.mini-cal-nav { background: none; border: none; cursor: pointer; color: var(--blue); font-size: 1rem; padding: 4px 8px; border-radius: 4px; transition: background .15s; }
.mini-cal-nav:hover { background: rgba(14, 77, 119, .1); }
.mini-cal-month { font-weight: 600; font-size: .84rem; color: var(--blue); }
.mini-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.mini-cal-day-label { text-align: center; font-size: .6rem; color: var(--gray); padding: 2px 0 5px; }
.mini-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: .73rem; cursor: pointer; transition: all .15s; user-select: none; }
.mini-cal-day:hover:not(.blocked):not(.past):not(.empty) { background: var(--blue); color: #fff; }
.mini-cal-day.blocked { background: var(--red-soft); color: var(--red); cursor: not-allowed; }
.mini-cal-day.sel-start, .mini-cal-day.sel-end { background: var(--orange); color: #fff; font-weight: 600; }
.mini-cal-day.in-range { background: rgba(240, 122, 26, .15); border-radius: 0; }
.mini-cal-day.past { color: #cbd3da; cursor: default; }
.mini-cal-day.today { font-weight: 700; color: var(--orange); }
.mini-cal-day.empty { cursor: default; }
.cal-legend { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 4px; font-size: .7rem; color: var(--gray); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* Sticky modal action bar */
.modal-sticky-bar { flex-shrink: 0; background: #fff; border-top: 1px solid var(--line); padding: 14px 24px; display: none; }
.modal-sticky-bar.show { display: block; }
.modal-sticky-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.modal-sticky-price { display: flex; flex-direction: column; }
.modal-sticky-price .nights-label { font-size: .74rem; color: var(--gray); }
.modal-sticky-price .total-label { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--blue); line-height: 1.1; }
.modal-sticky-btns { display: flex; gap: 8px; flex-shrink: 0; }
.btn-wa-sm { background: var(--wa); color: #fff; border: none; padding: 11px 16px; border-radius: var(--radius-sm); font-size: .84rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; font-family: var(--sans); transition: background .2s; white-space: nowrap; }
.btn-wa-sm:hover { background: #1da851; }
.btn-form-sm { background: var(--orange); color: #fff; border: none; padding: 11px 18px; border-radius: var(--radius-sm); font-size: .84rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: background .2s; white-space: nowrap; }
.btn-form-sm:hover { background: var(--orange-dark); }

/* Form drawer */
.form-drawer-overlay { position: fixed; inset: 0; background: rgba(6, 18, 29, .55); z-index: 2500; display: none; align-items: flex-end; justify-content: center; }
.form-drawer-overlay.open { display: flex; }
.form-drawer { background: #fff; width: 100%; max-width: 600px; border-radius: 18px 18px 0 0; padding: 26px 28px 36px; max-height: 90vh; overflow-y: auto; animation: slideUp .3s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.form-drawer-handle { width: 40px; height: 4px; background: var(--line); border-radius: 2px; margin: 0 auto 20px; }
.form-drawer-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.form-drawer-title { font-family: var(--serif); font-size: 1.5rem; color: var(--blue); }
.form-drawer-subtitle { font-size: .82rem; color: var(--gray); margin-top: 2px; }
.form-drawer-close { background: var(--sky); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: grid; place-items: center; flex-shrink: 0; }

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: 96px; right: 28px; background: var(--blue); color: #fff; padding: 13px 18px; border-radius: var(--radius-sm); font-size: .86rem; z-index: 9999; display: none; box-shadow: var(--shadow); max-width: 330px; line-height: 1.5; animation: slideIn .3s ease; }
.toast.err { background: var(--red); }
@keyframes slideIn { from { transform: translateX(110px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ---------- CONFIRM ---------- */
.confirm-overlay { position: fixed; inset: 0; background: rgba(6, 18, 29, .6); z-index: 5000; display: none; align-items: center; justify-content: center; padding: 20px; }
.confirm-overlay.open { display: flex; }
.confirm-card { background: #fff; border-radius: var(--radius); padding: 30px; max-width: 360px; width: 100%; text-align: center; }
.confirm-card h4 { font-family: var(--serif); font-size: 1.5rem; color: var(--blue); margin-bottom: 12px; }
.confirm-card p { color: var(--gray); font-size: .88rem; line-height: 1.65; margin-bottom: 22px; }
.confirm-btns { display: flex; gap: 10px; }
.btn-confirm-no { flex: 1; padding: 12px; background: var(--sky); color: var(--blue); border: none; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.btn-confirm-yes { flex: 1; padding: 12px; background: var(--red); color: #fff; border: none; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.btn-confirm-yes.orange { background: var(--orange); }
.btn-confirm-yes.navy { background: var(--blue); }
.btn-confirm-yes:hover { opacity: .9; }

/* ---------- FLOATING BUTTONS ---------- */
.wa-fab { position: fixed; bottom: 26px; right: 26px; z-index: 999; background: var(--wa); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, .45); transition: all .3s; animation: pulse-wa 2.6s infinite; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); } 50% { box-shadow: 0 4px 32px rgba(37, 211, 102, .7); } }
.wa-fab:hover { transform: scale(1.1); background: #1da851; }
.wa-fab svg { width: 26px; height: 26px; fill: #fff; }
.scroll-btn { position: fixed; bottom: 94px; left: 26px; z-index: 998; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; display: grid; place-items: center; transition: all .3s; box-shadow: var(--shadow-sm); font-size: 1.1rem; background: rgba(14, 77, 119, .9); color: #fff; }
.scroll-btn:hover { background: var(--blue); transform: scale(1.1); }

/* ---------- LEGAL ---------- */
.legal-title { font-family: var(--serif); font-size: 1.8rem; color: var(--blue); margin-bottom: 6px; }
.legal-updated { font-size: .74rem; color: var(--gray); margin-bottom: 22px; }
.legal-section { margin-bottom: 20px; }
.legal-section h4 { font-weight: 600; color: var(--blue); font-size: .9rem; margin-bottom: 7px; }
.legal-section p, .legal-section li { font-size: .87rem; color: var(--gray); line-height: 1.75; }
.legal-section ul { padding-left: 16px; display: flex; flex-direction: column; gap: 4px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  nav { padding: 16px 20px; } nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; } .hamburger { display: flex; }
  section { padding: 64px 22px; }
  footer { flex-direction: column; text-align: center; padding: 28px 20px; }
  .footer-links { justify-content: center; }
  #about, #contact, .fb-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-photo-grid { height: 280px; }
  .rooms-header { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-search { border-radius: 16px; flex-direction: column; padding: 16px; }
  .hs-divider { width: 100%; height: 1px; }
  .hs-field { padding: 4px 0; } .hs-btn { width: 100%; }
  .modal { height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh; border-radius: 0; }
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-close { top: calc(10px + env(safe-area-inset-top, 0px)); }
  .photo-gallery { border-radius: 0; }
  .date-inputs { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
