:root {
  --olive: #5c6b2e;
  --olive-dark: #37401b;
  --olive-darker: #2b3115;
  --olive-light: #7c8c46;
  --pink: #e8749a;
  --pink-light: #f4a9c2;
  --pink-pale: #fbe6ee;
  --cream: #faf8f3;
  --ink: #2c2c26;
  --muted: #7a7a6e;
  --line: #e7e3d8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 49, 21, 0.10);
  --shadow-sm: 0 4px 14px rgba(43, 49, 21, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
h1, h2, h3, h4 { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; margin: 0; font-weight: 700; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
/* The `hidden` attribute is only a UA default of display:none, which any later display
   rule silently beats. Making it !important means hiding a block stays a one-attribute
   change that cannot be undone by a stylesheet edit elsewhere. */
[hidden] { display: none !important; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: 999px; padding: 12px 22px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--olive-dark); color: #fff; }
.btn-primary:hover { background: var(--olive); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border: 1.5px solid #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-block { width: 100%; justify-content: center; }

.eyebrow {
  color: var(--pink); font-weight: 700; letter-spacing: 1.5px;
  font-size: 12px; text-transform: uppercase; margin-bottom: 8px; display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: var(--olive-dark); }
.brand img { height: 63px; width: 63px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 500; color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease; }
.main-nav a.active, .main-nav a:hover { color: var(--olive-dark); border-color: var(--pink); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: #fff; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 640px; display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(20,24,10,.20) 0%, rgba(18,22,9,.40) 45%, rgba(12,15,6,.82) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(232,116,154,.16), transparent 45%),
    url('/images/hero-madikere.webp') center 42%/cover no-repeat,
    linear-gradient(160deg, #2f3a1b 0%, #47552a 35%, #6a7a3c 65%, #3c4620 100%);
  background-blend-mode: normal, normal, normal, normal;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.35), transparent 60%);
}
.hero-inner { position: relative; width: 100%; }
.hero-content { position: relative; z-index: 2; padding: 40px 0; width: 100%; box-sizing: border-box; color: #fff; }
.hero-tagline { font-family: 'Dancing Script', cursive; font-weight: 700; color: var(--pink-light); font-size: 38px; margin-bottom: 2px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 100px; line-height: 1.05; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,.35); }
.hero-sub { font-size: 24px; margin-top: 10px; font-weight: 300; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.hero-motto { margin-top: 18px; font-size: 18px; letter-spacing: .5px; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.hero-badges { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; font-size: 13.5px; }
.hero-badges span { display: flex; align-items: center; gap: 7px; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero-badges .divider { color: rgba(255,255,255,.4); text-shadow: none; }
.hero-card {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(30, 38, 16, .82); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius);
  padding: 24px; max-width: 280px; color: #fff;
}
.hero-card .lotus { color: var(--pink-light); font-size: 22px; margin-bottom: 10px; }
.hero-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
.hero-card p { font-size: 13.5px; line-height: 1.6; color: #e7e7dc; margin-bottom: 16px; }

/* ---------- Booking widget ---------- */
.booking-widget {
  position: relative; z-index: 10; margin: -58px auto 0; max-width: 1150px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 22px 26px 22px;
}
#bookingWidgetSpacer { height: 0; }

/* ---------- Booking bar merged into the header on scroll ---------- */
.header-booking-slot { display: none; flex: 1; max-width: 900px; margin: 0 24px; }
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.site-header.scrolled .main-nav,
.site-header.scrolled .header-actions { display: none; }
.site-header.scrolled .header-booking-slot { display: flex; align-items: center; width: 100%; }

.booking-widget.in-header {
  position: static; margin: 0; max-width: none; width: 100%;
  background: transparent; box-shadow: none; border-radius: 0; padding: 0;
}
.booking-widget.in-header .bw-heading { display: none; }
.booking-widget.in-header .bw-date-error { display: none; }
.booking-widget.in-header .bw-fields { grid-template-columns: repeat(4, 1fr) auto; gap: 10px; }
.booking-widget.in-header .bw-field label { font-size: 10.5px; }
.booking-widget.in-header .bw-field select,
.booking-widget.in-header .bw-field input[type="date"],
.booking-widget.in-header .bw-field .bw-fake-input { padding: 7px 10px; font-size: 12.5px; }
.booking-widget.in-header .input-icon-wrap input[type="date"] { padding-left: 30px; }
.booking-widget.in-header .field-icon,
.booking-widget.in-header .field-icon-inline { width: 14px; height: 14px; }
.booking-widget.in-header .input-icon-wrap .field-icon { left: 9px; }
.booking-widget.in-header .bw-search-btn { padding: 9px 16px; font-size: 12.5px; }

@media (max-width: 980px) {
  .booking-widget.in-header .bw-fields {
    display: flex; overflow-x: auto; gap: 10px; padding-bottom: 2px; -webkit-overflow-scrolling: touch;
  }
  .booking-widget.in-header .bw-field { flex: 0 0 130px; }
  .booking-widget.in-header .bw-search-btn { flex: 0 0 auto; }
  .site-header.scrolled .container { flex-wrap: wrap; height: auto; padding: 14px 20px 16px; row-gap: 10px; }
  .site-header.scrolled .header-booking-slot { flex: 0 0 100%; max-width: none; margin: 0; }
}
.bw-heading { font-size: 15px; font-weight: 700; color: var(--olive-dark); padding: 4px 0 14px; }
.bw-fields { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr auto; gap: 14px; align-items: end; }
.bw-field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.bw-field label { font-size: 12px; color: var(--muted); font-weight: 600; }
.bw-field select, .bw-field input[type="date"], .bw-field .bw-fake-input {
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; font-size: 14px;
  background: #fff; color: var(--ink); font-family: inherit; width: 100%;
}
.input-icon-wrap { position: relative; display: flex; align-items: center; }
.input-icon-wrap .field-icon { position: absolute; left: 12px; width: 17px; height: 17px; color: var(--muted); pointer-events: none; z-index: 1; }
.input-icon-wrap input[type="date"] { padding-left: 36px; }
.bw-field .bw-fake-input { cursor: pointer; display: flex; align-items: center; gap: 8px; }
.bw-fake-input .field-icon-inline { width: 17px; height: 17px; color: var(--muted); flex-shrink: 0; }
.bw-fake-input #guestsText { flex: 1; }
.bw-fake-input .chevron { color: var(--muted); }
.bw-search-btn { background: var(--olive-dark); color: #fff; border: none; border-radius: 10px; padding: 12px 24px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.bw-search-btn:hover { background: var(--olive); }
.bw-date-error { grid-column: 1 / -1; color: var(--olive-dark); font-size: 12.5px; margin-top: -4px; display: none; }
.bw-date-error.show { display: block; }

/* guests popover */
.guests-pop {
  position: absolute; top: calc(100% + 8px); left: 0; width: 300px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 16px; z-index: 20; display: none;
}
.guests-pop.open { display: block; }
.gp-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.gp-row:last-of-type { border-bottom: none; }
.gp-row-label b { display: block; font-size: 14px; }
.gp-row-label span { font-size: 12px; color: var(--muted); }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 16px; line-height: 1; }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper span { width: 16px; text-align: center; font-weight: 600; }
.gp-done { margin-top: 10px; }

/* ---------- Section shells ---------- */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin: 0 auto 46px; text-align: center; }

/* ---------- About ---------- */
/* #about needs its own vertical padding: .about also carries the .container class,
   whose class-selector padding rule otherwise wins over the plain `section` rule
   and collapses this section's top/bottom padding to 0. */
#about { padding: 60px 24px 100px; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { border-radius: var(--radius); }
.about-badge {
  position: absolute; bottom: 18px; left: 18px; width: 64px; height: 64px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.about-badge img { width: 44px; height: 44px; }
.about h2 { font-size: 34px; margin: 6px 0 16px; color: var(--olive-darker); }
.about p.desc { color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-size: 15px; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.about-season-note { color: var(--muted); font-size: 13.5px; font-style: italic; }
.check-dot { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* ---------- Rooms ---------- */
.rooms { background: #f6f3ea; }
.room-carousel { position: relative; }
.room-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.room-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-4px); }
.room-card .thumb { height: 210px; overflow: hidden; flex-shrink: 0; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.room-card h3 { font-size: 19px; margin-bottom: 6px; color: var(--olive-darker); }
.room-card .desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.room-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.room-meta span { display: flex; align-items: center; gap: 5px; }
/* Room cards show no rates — booking is handled off-site by Zotel. `margin-top: auto`
   is what keeps every card's Book Now button on the same baseline regardless of how
   long the room description runs, so it has to stay. */
.room-cta-row { border-top: 1px dashed var(--line); padding-top: 14px; margin-top: auto; }
.room-cta-row .btn-primary { padding: 11px 18px; font-size: 13.5px; }
.season-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 12px; }

/* ---------- Amenities (flip cards with real photos) ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.amenity-card { aspect-ratio: 1 / 1; height: auto; perspective: 1200px; cursor: pointer; }
.amenity-flip {
  position: relative; width: 100%; height: 100%; text-align: center;
  transition: transform .65s cubic-bezier(.4,.2,.2,1); transform-style: preserve-3d;
}
.amenity-card:hover .amenity-flip,
.amenity-card.flipped .amenity-flip { transform: rotateY(180deg); }
.amenity-front, .amenity-back {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.amenity-front { background: #fff; }
.amenity-photo { flex: 1; min-height: 0; background: var(--pink-pale); }
.amenity-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.amenity-label { padding: 12px 10px; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.amenity-back {
  transform: rotateY(180deg); background: var(--olive-dark); color: #fff;
  align-items: center; justify-content: center; padding: 22px;
}
.amenity-back p { font-size: 13px; line-height: 1.6; color: #f0efe6; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; }
.testi-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avatar { min-width: 42px; height: 42px; padding: 0 6px; border-radius: 999px; background: var(--pink-pale); color: var(--pink); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.testi-top b { display: block; font-size: 14px; }
.testi-top span { font-size: 11.5px; color: var(--muted); }
.stars { color: #f0a93a; font-size: 12px; margin-bottom: 8px; }
.testi-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.gallery-grid img:hover { transform: scale(1.04); box-shadow: var(--shadow); }

/* ---------- Gallery lightbox ---------- */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(10,10,6,0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, background-color .25s ease, visibility 0s linear .25s;
}
.lightbox-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto; background: rgba(10,10,6,.92);
  transition: opacity .25s ease, background-color .25s ease, visibility 0s linear 0s;
}
.lightbox-stage { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 88vw; }
.lightbox-stage img { max-width: 88vw; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-counter { color: #e7e7dc; font-size: 13px; letter-spacing: .5px; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.24); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.24); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 22px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 14px; width: 36px; height: 36px; font-size: 15px; }
}
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

/* ---------- Footer ---------- */
footer { background: var(--olive-darker); color: #d9d9cc; padding: 60px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: #b9b9a8; margin: 4px 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #4a5530; display: flex; align-items: center; justify-content: center; font-size: 13px; }
footer h4 { color: #fff; font-size: 14.5px; margin-bottom: 16px; font-family: inherit; }
footer ul li { margin-bottom: 10px; font-size: 13px; color: #b9b9a8; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list .ci { flex-shrink: 0; width: 18px; text-align: center; line-height: 1.5; }
.contact-list li > span:last-child { line-height: 1.5; }
.footer-bottom { border-top: 1px solid #454f2a; margin-top: 40px; padding-top: 18px; display: flex; justify-content: space-between; font-size: 12px; color: #9c9c8c; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { border-bottom: 1px solid currentColor; transition: color .2s ease; }
.footer-bottom a:hover { color: var(--pink-light); }

/* ---------- Booking modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(20,20,10,0); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, background-color .25s ease, visibility 0s linear .25s;
}
.modal-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto; background: rgba(20,20,10,.55);
  transition: opacity .25s ease, background-color .25s ease, visibility 0s linear 0s;
}
.modal-box {
  background: #fff; border-radius: var(--radius); width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; padding: 26px; position: relative;
  transform: scale(.94) translateY(12px); transition: transform .28s cubic-bezier(.34,1.3,.64,1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: #f2f0e6; border: none; width: 30px; height: 30px; border-radius: 50%; font-size: 15px; }
.modal-box h3 { font-size: 20px; margin-bottom: 4px; color: var(--olive-darker); }
.modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-row input { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 14px; font-family: inherit; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.modal-edit-block { background: #f8f6ee; border-radius: 10px; padding: 14px; margin-bottom: 16px; }
.modal-edit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.modal-edit-row:last-of-type { margin-bottom: 0; }
.modal-edit-row.modal-stepper-row { grid-template-columns: repeat(3, 1fr); }
.modal-edit-field { display: flex; flex-direction: column; gap: 4px; }
.modal-edit-field-wide { grid-column: 1 / -1; }
.modal-edit-field label { font-size: 11px; font-weight: 600; color: var(--muted); }
.modal-edit-field input, .modal-edit-field select {
  border: 1px solid var(--line); border-radius: 7px; padding: 7px 8px; font-size: 13px; font-family: inherit; background: #fff; width: 100%;
}
.modal-stepper {
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
  border: 1px solid var(--line); border-radius: 7px; padding: 4px 6px; background: #fff;
}
.modal-stepper button {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  font-size: 13px; line-height: 1; flex-shrink: 0;
}
.modal-stepper button:disabled { opacity: .35; cursor: not-allowed; }
.modal-stepper span { font-size: 13px; font-weight: 600; }
.modal-edit-msg { font-size: 12px; color: #b83b3b; margin: 8px 0 0; display: none; }
.modal-edit-msg.show { display: block; }

.summary-box { background: #f8f6ee; border-radius: 10px; padding: 14px; margin: 16px 0; font-size: 13.5px; }
.summary-box .row { display: flex; justify-content: space-between; padding: 4px 0; }
.summary-box .total { border-top: 1px dashed var(--line); margin-top: 8px; padding-top: 10px; font-weight: 700; color: var(--olive-dark); font-size: 15px; }
.form-msg { font-size: 13px; margin-top: 10px; text-align: center; }
.form-msg.error { color: #b83b3b; }
.form-msg.success { color: #2f7a4a; }

.thank-you-panel { text-align: center; padding: 10px 4px 4px; }
.thank-you-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--pink-pale); color: var(--pink);
  display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700;
  margin: 0 auto 18px; animation: thankyou-pop .45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes thankyou-pop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.12); opacity: 1; } 100% { transform: scale(1); } }
.thank-you-panel h3 { margin-bottom: 10px; }
.thank-you-panel p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }

/* ---------- smooth scroll-reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-32px); }
.reveal-left.reveal-visible { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.reveal-visible { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .modal-box, .modal-overlay, .thank-you-icon { transition: none !important; animation: none !important; }
}
/* gentle stagger so grouped cards don't all animate in at the exact same instant */
.amenities-grid .amenity-card:nth-child(3n+1) { transition-delay: 0s; }
.amenities-grid .amenity-card:nth-child(3n+2) { transition-delay: .08s; }
.amenities-grid .amenity-card:nth-child(3n+3) { transition-delay: .16s; }
.testi-grid .testi-card:nth-child(1) { transition-delay: 0s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: .08s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: .16s; }
.testi-grid .testi-card:nth-child(4) { transition-delay: .24s; }
.room-track .room-card:nth-child(1) { transition-delay: 0s; }
.room-track .room-card:nth-child(2) { transition-delay: .1s; }
.room-track .room-card:nth-child(3) { transition-delay: .2s; }
.room-track .room-card:nth-child(4) { transition-delay: .3s; }
.room-track .room-card:nth-child(5) { transition-delay: .4s; }

.results-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px; margin: 24px auto 0; max-width: 1150px; }
.results-panel h4 { font-size: 16px; margin-bottom: 14px; }
.result-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 10px; }
.result-row:last-child { border-bottom: none; }
.result-left b { font-size: 15px; }
.result-left .avail { font-size: 12px; color: #2f7a4a; margin-top: 3px; }
.result-left .avail.none { color: #b83b3b; }
.result-right { display: flex; align-items: center; gap: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 58px; }
  .hero { flex-direction: column; align-items: stretch; }
  .hero-content { order: 1; padding-top: 100px; }
  .hero-card { position: static; margin: 24px 0 32px; max-width: none; order: 2; transform: none; }
  .bw-fields { grid-template-columns: 1fr 1fr; }
  .bw-search-btn { grid-column: 1 / -1; }
  .about { grid-template-columns: 1fr; }
  .room-track { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-widget { margin-top: -30px; padding: 14px 16px 18px; }
}
