/* ── TOKENS ───────────────────────────────────────────────────────────── */
:root {
  --primary:       #067484;
  --primary-dark:  #055f6d;
  --primary-light: #e6f3f5;
  --dark:          #0d1f21;
  --text:          #1a2e30;
  --muted:         #6b8a8d;
  --border:        #d4e6e9;
  --white:         #ffffff;
  --cream:         #f7fafa;
  --shadow-sm:     0 2px 12px rgba(6,116,132,0.07);
  --shadow-md:     0 8px 32px rgba(6,116,132,0.11);
  --shadow-lg:     0 20px 60px rgba(6,116,132,0.14);
  --radius:        14px;
  --radius-sm:     8px;
  --nav-h:         72px;
  --container:     1240px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}
em { font-style: italic; color: var(--primary); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

/* ── LAYOUT ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; justify-content: center; padding: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-book {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--primary-dark); }

/* Sign-in nav button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
.nav-signin:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.nav-signin svg { flex-shrink: 0; }
.nav-link-signin { display: none; }
.nav-link-account { display: inline; }

/* Guest nav dropdown (injected by guest-nav.js when logged in) */
.nav-guest {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  background: var(--primary-light);
  transition: all .2s;
}
.nav-guest:hover { background: var(--primary); color: #fff; }
.nav-guest-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  min-width: 190px;
  z-index: 200;
  overflow: hidden;
}
.nav-guest-dropdown.open { display: block; }
.nav-guest-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s;
  text-decoration: none;
}
.nav-guest-dropdown a:hover { background: var(--cream); }
.nav-guest-dropdown a i { width: 16px; text-align: center; color: var(--muted); }
.nav-guest-dropdown .dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.nav-guest-dropdown a.logout-link { color: #b91c1c; }
.nav-guest-dropdown a.logout-link i { color: #b91c1c; }
.nav-guest-dropdown a.logout-link:hover { background: #fef2f2; }

/* ── PROMO BANNER ─────────────────────────────────────────────────────── */
.promo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  background: #14807a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 10px 44px 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.promo-banner-code {
  background: rgba(255,255,255,.2);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
}
.promo-banner-cta {
  background: #fff;
  color: #14807a;
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}
.promo-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
  padding: 4px;
}
.promo-banner-close:hover { opacity: 1; }
@media (max-width: 640px) {
  .promo-banner { font-size: 12.5px; padding: 10px 40px 10px 12px; }
}

/* ── NAVIGATION ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--promo-h, 0px); left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  height: var(--nav-h);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: box-shadow .3s, top .2s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: default;
}
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
/* Option 1 hover (commented out — basic slingshot)
.nav-logo.logo-hover .logo-img {
  animation: slingshot .7s cubic-bezier(.22,.68,.31,1.2) forwards;
}
.nav-logo.logo-hover .logo-name {
  animation: textBounce .5s cubic-bezier(.22,.68,.31,1.2) .25s both;
}
*/
/* After page-load animation completes, kill pseudo-element animations */
.nav-logo.logo-loaded::before,
.nav-logo.logo-loaded::after {
  animation: none;
  opacity: 0;
}
/* Hover overrides loaded state for pseudo-elements */
.nav-logo.logo-loaded.logo-hover::before {
  animation: handGrab 1.5s ease-in-out both;
  opacity: 1;
}
.nav-logo.logo-loaded.logo-hover::after {
  animation: crackFlash 1.5s ease-out both;
}
/* Option 2 hover — hand grabs logo, slingshot pull, snap back with crack */
.nav-logo.logo-hover .logo-img {
  animation: ballSling 1.5s cubic-bezier(.22,.68,.31,1) both;
}
.nav-logo.logo-hover .logo-name {
  animation: textImpact 1.5s ease-in-out both;
}
.nav-logo.logo-hover::before {
  animation: handGrab 1.5s ease-in-out both;
}
.nav-logo.logo-hover::after {
  animation: crackFlash 1.5s ease-out both;
}
/* Option 2 hover (commented out — uses logo-played class on mouseleave)
.nav-logo.logo-played .logo-img {
  animation: slamHover .6s cubic-bezier(.22,.68,.31,1) forwards;
}
.nav-logo.logo-played .logo-name {
  animation: rubberPullHover .6s cubic-bezier(.22,.68,.31,1) both;
}
.nav-logo.logo-played::before {
  animation: handPullHover .6s ease-in-out both;
}
.nav-logo.logo-played::after {
  animation: crackHover .6s ease-out both;
}
*/
/* Option 3 hover
.nav-logo:hover .logo-img {
  animation: logoBounceHover 0.8s cubic-bezier(.33,.66,.36,1) forwards;
}
.nav-logo:hover .logo-name {
  animation: textSquishHover 0.8s cubic-bezier(.33,.66,.36,1) both;
}
*/
.footer-logo .logo-img {
  height: 48px;
}
.logo-name {
  color: var(--dark);
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: rgba(13,31,33,.6);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    display: none;
    border-top: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 24px; width: 100%; }
  .nav-signin, .nav-guest { display: none; }
  .nav-link-signin,
  .nav-link-logout {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 4px;
    padding-top: 12px;
  }
  .nav-link-logout { color: #b91c1c; }
  .hamburger { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { object-position: center 30%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,33,.55) 0%,
    rgba(13,31,33,.70) 60%,
    rgba(13,31,33,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero-heading em { color: rgba(255,255,255,.65); }

.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Booking widget */
.booking-widget {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  max-width: 740px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  flex: 1;
  min-width: 0;
}
.booking-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-field input,
.booking-field select {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
}

.booking-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-search:hover { background: var(--primary-dark); }

/* Homepage guest counters */
.booking-field-counter { min-width: 110px; }
.hw-counter {
  display: flex; align-items: center; gap: 4px;
}
.hw-counter-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary-light); color: var(--primary);
  font-size: 18px; font-weight: 700; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
  border: 1.5px solid var(--border);
}
.hw-counter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.hw-counter-btn:disabled { opacity: .3; cursor: not-allowed; background: var(--cream); color: var(--muted); }
.hw-counter-val {
  min-width: 28px; text-align: center;
  font-size: 17px; font-weight: 700; color: var(--dark);
}

/* Selection bar */
.hw-selection-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--primary); color: #fff;
  border-radius: var(--radius); padding: 18px 24px;
  margin-top: 24px; flex-wrap: wrap; gap: 12px;
  position: sticky; bottom: 20px; z-index: 50;
  box-shadow: 0 8px 32px rgba(6,116,132,.35);
}
.hw-sel-info { font-size: 14px; color: rgba(255,255,255,.9); }
.hw-sel-info strong { color: #fff; }
.hw-selection-bar .btn-search {
  background: #fff; color: var(--primary); border-radius: 10px;
  padding: 12px 28px; font-weight: 700;
}
.hw-selection-bar .btn-search:hover { background: var(--primary-light); }

/* Room card search mode */
.room-card.hw-searching { position: relative; }
.room-card.hw-unavailable { opacity: .45; }
.room-card.hw-selectable { cursor: pointer; }
.room-card.hw-selected {
  border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary);
}

/* Checkbox circle on top-right of image */
.hw-check-circle {
  display: none; position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.9);
  color: var(--muted); font-size: 20px;
  cursor: pointer; transition: all .15s; z-index: 5;
  align-items: center; justify-content: center;
}
.room-card.hw-searching .hw-check-circle { display: flex; }
.hw-check-circle:hover { background: #fff; transform: scale(1.1); }
.hw-check-circle.checked {
  background: var(--primary); border-color: var(--primary);
  color: #fff;
}
.hw-booked-overlay {
  display: none; position: absolute; top: 12px; right: 12px;
  background: rgba(185,28,28,.85); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; z-index: 5;
}
.room-card.hw-unavailable .hw-booked-overlay { display: inline-flex; align-items: center; gap: 4px; }

/* Search pricing line */
.room-card .hw-search-price {
  display: none; font-size: 13px; color: var(--text);
  margin-top: 6px; padding: 8px 0; border-top: 1px solid var(--border);
}
.room-card.hw-searching .hw-search-price { display: block; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: .8; transform: scaleY(1.2); }
}

@media (max-width: 640px) {
  .booking-widget { flex-direction: column; }
  .booking-divider { height: 1px; margin: 0 20px; width: calc(100% - 40px); }
  .btn-search { padding: 18px; border-radius: 0 0 var(--radius) var(--radius); justify-content: center; }
}

/* ── TRUST BAR ────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--primary);
  overflow: hidden;
  padding: 14px 0;
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.trust-item {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 400;
  flex-shrink: 0;
}
.trust-item strong { color: var(--white); font-weight: 600; }
.trust-sep { color: rgba(255,255,255,.4); font-size: 18px; flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-16.6667%); }
}

/* ── ABOUT ────────────────────────────────────────────────────────────── */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}
.stat-num small { font-size: 1.5rem; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

.about-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-city { font-weight: 700; font-size: 14px; color: var(--dark); }
.badge-country { font-size: 12px; color: var(--muted); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { order: -1; }
  .about-img-wrap { aspect-ratio: 16/9; }
}

/* ── ROOMS ────────────────────────────────────────────────────────────── */
.rooms-section { background: var(--white); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 20px;
}

.rooms-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 2.5rem;
}
.rooms-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-size: 15px;
}

/* Room card */
.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.room-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.room-card-img img { transition: transform .4s ease; }
.room-card:hover .room-card-img img { transform: scale(1.04); }

.room-num {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(13,31,33,.7);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.room-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.room-card-body h3 {
  font-size: 1.15rem;
  color: var(--dark);
}
.room-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.room-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}
/* title row: name left, View Room right */
.room-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.room-title-row h3 { flex: 1; font-size: 1.1rem; }
.room-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s;
  animation: viewRoomPulse 2.8s ease-in-out infinite;
  will-change: box-shadow;
}
.room-link-btn:hover {
  background: var(--primary);
  color: #fff;
  gap: 9px;
  animation: none;
}
@keyframes viewRoomPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,116,132,0); }
  50%       { box-shadow: 0 0 0 5px rgba(6,116,132,.18); }
}

/* price row: price left, Book Now right */
.room-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.room-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 4px; }
.room-price strong {
  font-size: 1.1rem;
  color: var(--dark);
  font-family: 'DM Serif Display', Georgia, serif;
}
.room-price span { font-size: 12px; color: var(--muted); }
.room-price-sep { color: var(--border); font-size: 12px; margin: 0 2px; }
.room-longstay {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 6px;
}
.room-longstay i { margin-right: 4px; font-size: 11px; }

/* Search-results price breakdown — same figures shown later in the Invoice,
   surfaced here so guests see the full math before opening it. */
.room-price-breakdown {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
}
.room-price-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 0;
  color: var(--muted);
}
.room-price-breakdown-row.surcharge { color: #d97706; }
.room-price-breakdown-row.discount { color: #16a34a; }
.room-price-breakdown-row.total {
  font-weight: 700;
  color: var(--dark);
  padding-top: 5px;
  margin-top: 3px;
  border-top: 1px solid var(--border);
}
.room-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.room-book-btn:hover { background: var(--primary-dark); }

.rooms-nav { display: none; }
.rooms-arrow {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .2s;
}
.rooms-arrow:hover { border-color: var(--primary); color: var(--primary); }
.rooms-dots { display: flex; gap: 8px; }
.rooms-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
}
.rooms-dot.active { background: var(--primary); transform: scale(1.3); }

@media (max-width: 600px) {
  .rooms-track { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

/* ── GALLERY ──────────────────────────────────────────────────────────── */
.gallery-section { background: var(--cream); padding-bottom: 60px; }
.gallery-section .container { margin-bottom: 3rem; }

/* CSS columns masonry — images stack naturally by height */
.gallery-grid {
  columns: 4;
  column-gap: 4px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  display: block;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.25,.8,.25,1), filter .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.07) saturate(1.15);
}

@media (max-width: 860px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ── AMENITIES ────────────────────────────────────────────────────────── */
.amenities-section { background: var(--dark); }
.amenities-section .section-tag { color: rgba(255,255,255,.5); }
.amenities-section .section-heading { color: var(--white); }
.amenities-section .section-heading em { color: rgba(255,255,255,.5); }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.amenities-sub { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.75; margin-top: .5rem; }

.amenities-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.amenity-item:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(255,255,255,.06); }
.amenity-item:nth-child(even) { padding-left: 32px; }

.amenity-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(6,116,132,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenity-icon svg { width: 18px; height: 18px; stroke: var(--primary); }

.amenity-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.amenity-item span { color: rgba(255,255,255,.45); font-size: 13px; }

@media (max-width: 900px) {
  .amenities-grid { grid-template-columns: 1fr; gap: 48px; }
  .amenities-right { grid-template-columns: 1fr; }
  .amenity-item { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
}

/* ── THINGS TO DO ─────────────────────────────────────────────────────── */
.todo-section { background: var(--white); }

.todo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.todo-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
}
.todo-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
}
.todo-img {
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
}
.todo-img img { transition: transform .4s ease; }
.todo-card:hover .todo-img img { transform: scale(1.04); }
.todo-body h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.todo-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) { .todo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .todo-grid { grid-template-columns: 1fr; } }

.todo-dir {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: opacity .2s;
}
.todo-dir:hover { opacity: .75; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }

.testimonials-wrap { margin-top: 3rem; }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2.5rem;
}
.testimonial-card { display: none; }
.testimonial-card.active { display: flex; animation: fadeSlideIn .45s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) { .testimonials-track { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: default;
}
.testimonial-card.active:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6,116,132,.13);
  border-color: var(--primary);
}
.testimonial-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--dark); }
.testimonial-author span  { font-size: 12px; color: var(--muted); }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.t-arrow {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .2s;
}
.t-arrow:hover { border-color: var(--primary); color: var(--primary); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s;
}
.t-dot.active { background: var(--primary); }


/* ── HOUSE RULES ──────────────────────────────────────────────────────── */
.rules-section { background: var(--white); }

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.rules-sub { color: var(--muted); font-size: 15px; line-height: 1.75; margin-top: .5rem; }

.rules-list { display: flex; flex-direction: column; }
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.rule-item:first-child { border-top: 1px solid var(--border); }
.rule-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.rule-item strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.rule-item span { font-size: 13px; color: var(--muted); }

@media (max-width: 860px) { .rules-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── CONTACT ──────────────────────────────────────────────────────────── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); margin-top: 3px; }
.contact-item strong { display: block; font-size: 13px; color: var(--dark); font-weight: 600; }
.contact-item span { font-size: 14px; color: var(--muted); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-note {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  min-height: 20px;
}
.form-note.success { color: #16a34a; }
.form-note.error   { color: #dc2626; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-map { margin-bottom: 28px; border-radius: 12px; overflow: hidden; line-height: 0; }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { width: 30px; height: 30px; object-fit: contain; }
.footer-logo span { color: var(--white); font-weight: 600; font-size: 15px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; max-width: 28ch; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.footer-socials a:hover { border-color: var(--primary); color: var(--primary); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  color: rgba(255,255,255,.45);
  font-size: 14px;
  transition: color .2s;
}
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.3);
  font-size: 13px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT VIDEO ──────────────────────────────────────────────────────── */
@keyframes panRightToLeft {
  0%   { object-position: 100% 50%; }
  100% { object-position: 0% 50%; }
}
.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: panRightToLeft 16s linear infinite alternate;
}

/* ══════════════════════════════════════════════════════════════════════════
   LOGO ANIMATION — OPTION 1 (original slingshot-in from right)
   Uncomment this block and comment Option 2 to switch back.
   ══════════════════════════════════════════════════════════════════════════
@keyframes slingshot {
  0%   { transform: translateX(0) rotate(0deg) scale(1); }
  12%  { transform: translateX(20px) rotate(10deg) scale(0.88); }
  22%  { transform: translateX(35px) rotate(16deg) scale(0.78); }
  30%  { transform: translateX(42px) rotate(20deg) scale(0.72); }
  42%  { transform: translateX(-35px) rotate(-22deg) scale(1.25); }
  55%  { transform: translateX(8px) rotate(5deg) scale(1.05); }
  68%  { transform: translateX(-4px) rotate(-3deg) scale(0.98); }
  80%  { transform: translateX(2px) rotate(1deg) scale(1.02); }
  100% { transform: translateX(0) rotate(0deg) scale(1); }
}
@keyframes handSlingshot {
  0%   { opacity: 1; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(1); }
  12%  { opacity: 1; transform: translateY(-50%) translateX(20px) scaleX(-1) scale(0.95); }
  22%  { opacity: 1; transform: translateY(-50%) translateX(35px) scaleX(-1) scale(0.93); }
  30%  { opacity: 1; transform: translateY(-50%) translateX(42px) scaleX(-1) scale(0.9); }
  35%  { opacity: 1; transform: translateY(-50%) translateX(42px) scaleX(-1) scale(1.1); }
  42%  { opacity: 0; transform: translateY(-50%) translateX(50px) scaleX(-1) scale(1.3); }
  100% { opacity: 0; transform: translateY(-50%) translateX(50px) scaleX(-1) scale(1.3); }
}
@keyframes textBounce {
  0%   { transform: translateX(0) scale(1); opacity: 1; }
  20%  { transform: translateX(12px) scale(1.08); }
  40%  { transform: translateX(-6px) scale(0.96); }
  60%  { transform: translateX(4px) scale(1.03); }
  80%  { transform: translateX(-2px) scale(0.99); }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes slingshotIn {
  0%   { opacity: 0; transform: translateX(60px) rotate(25deg) scale(0.5); }
  30%  { opacity: 1; transform: translateX(20px) rotate(18deg) scale(0.8); }
  48%  { transform: translateX(-28px) rotate(-18deg) scale(1.18); }
  62%  { transform: translateX(8px) rotate(5deg) scale(1.05); }
  76%  { transform: translateX(-4px) rotate(-2deg) scale(0.98); }
  88%  { transform: translateX(2px) rotate(1deg) scale(1.01); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg) scale(1); }
}
@keyframes textBounceIn {
  0%   { opacity: 0; transform: translateX(-20px) scale(0.7); }
  30%  { opacity: 1; transform: translateX(14px) scale(1.1); }
  50%  { transform: translateX(-6px) scale(0.95); }
  70%  { transform: translateX(3px) scale(1.03); }
  85%  { transform: translateX(-1px) scale(0.99); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
.logo-img  { animation: slingshotIn .9s cubic-bezier(.22,.68,.31,1.2) both; }
.logo-name { animation: textBounceIn .6s cubic-bezier(.22,.68,.31,1.2) .35s both; }
   ══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   LOGO ANIMATION — OPTION 2 (hand-pull slingshot → slam → wall crack)
   Hand grabs text, pulls right (stretch). Releases. Logo fires left with
   force, slams into position — no bounce. Crack appears on impact, fades.
   ══════════════════════════════════════════════════════════════════════════ */

/* --- positioning context for pseudo-elements --- */
.nav-logo { position: relative; overflow: visible; }

/* --- Hand pseudo-element (positioned next to logo image) --- */
.nav-logo::before {
  content: '🤏';
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  font-size: 18px;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  animation: handGrab 1.5s ease-in-out both;
}

/* --- Crack pseudo-element (appears on impact) --- */
.nav-logo::after {
  content: '';
  position: absolute;
  left: -25px;
  top: -20px;
  width: 90px;
  height: 80px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 100'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M60,45 L28,12' stroke='%23888' stroke-width='2.2'/%3E%3Cpath d='M38,24 L22,22' stroke='%23999' stroke-width='1.4'/%3E%3Cpath d='M44,30 L35,18' stroke='%23999' stroke-width='1'/%3E%3Cpath d='M60,45 L18,38' stroke='%23888' stroke-width='2'/%3E%3Cpath d='M34,40 L20,48' stroke='%23999' stroke-width='1.2'/%3E%3Cpath d='M60,45 L25,65' stroke='%23888' stroke-width='2.2'/%3E%3Cpath d='M38,58 L28,72' stroke='%23999' stroke-width='1.4'/%3E%3Cpath d='M60,45 L40,82' stroke='%23888' stroke-width='1.8'/%3E%3Cpath d='M48,68 L55,80' stroke='%23999' stroke-width='1'/%3E%3Cpath d='M60,45 L82,18' stroke='%23888' stroke-width='1.6'/%3E%3Cpath d='M73,28 L85,25' stroke='%23999' stroke-width='1'/%3E%3Cpath d='M60,45 L90,70' stroke='%23888' stroke-width='1.4'/%3E%3Cpath d='M78,60 L92,62' stroke='%23999' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  animation: crackFlash 1.5s ease-out both;
}

/* --- Hand: always at the right tip of the rubber band as it stretches --- */
@keyframes handPull {
  /* appear at Z (right edge of text) */
  0%   { opacity: 0; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(0.8); }
  8%   { opacity: 1; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(1); }
  /* pinch the Z */
  14%  { opacity: 1; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(0.92); }
  /* pulling — hand stays at the far right tip of the stretching line */
  18%  { transform: translateY(-50%) translateX(30px) scaleX(-1) scale(0.95); }
  22%  { transform: translateY(-50%) translateX(80px) scaleX(-1) scale(0.96); }
  26%  { transform: translateY(-50%) translateX(130px) scaleX(-1) scale(0.97); }
  32%  { transform: translateY(-50%) translateX(210px) scaleX(-1) scale(0.96); }
  36%  { transform: translateY(-50%) translateX(280px) scaleX(-1) scale(0.95); }
  /* max pull — hand at furthest point (8x) */
  40%  { transform: translateY(-50%) translateX(310px) scaleX(-1) scale(0.93); }
  /* RELEASE — fingers open, hand flings right and disappears */
  43%  { opacity: 1; transform: translateY(-50%) translateX(330px) scaleX(-1) scale(1.2); }
  48%  { opacity: 0.5; transform: translateY(-50%) translateX(370px) scaleX(-1) scale(1.4); }
  53%  { opacity: 0; transform: translateY(-50%) translateX(410px) scaleX(-1) scale(1.5); }
  100% { opacity: 0; transform: translateY(-50%) translateX(410px) scaleX(-1); }
}

/* --- Crack: flash on impact ~0.5s then gone --- */
@keyframes crackAppear {
  0%   { opacity: 0; transform: scale(0); }
  54%  { opacity: 0; transform: scale(0); }
  /* IMPACT — crack appears */
  56%  { opacity: 1; transform: scale(0.8); }
  58%  { opacity: 1; transform: scale(1.1); }
  60%  { opacity: 1; transform: scale(1); }
  /* hold ~0.5s */
  76%  { opacity: 0.8; transform: scale(1); }
  /* fade out */
  80%  { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}

/* --- Logo (rock): loaded in slingshot → fires left → SLAMS (no bounce) --- */
@keyframes rockSlam {
  /* sitting in slingshot, small, far right */
  0%   { opacity: 1; transform: translateX(120px) scale(0.35); }
  14%  { opacity: 1; transform: translateX(120px) scale(0.35); }
  /* being pulled back with the hand */
  28%  { transform: translateX(140px) scale(0.3) rotate(5deg); }
  36%  { transform: translateX(155px) scale(0.28) rotate(8deg); }
  /* max tension */
  40%  { transform: translateX(160px) scale(0.25) rotate(10deg); }
  /* RELEASE — fires left with extreme speed */
  44%  { transform: translateX(100px) scale(0.4) rotate(2deg); }
  48%  { transform: translateX(40px) scale(0.6) rotate(-5deg); }
  52%  { transform: translateX(5px) scale(0.85) rotate(-8deg); }
  /* SLAM — hits position hard, slight compress */
  55%  { transform: translateX(-3px) scale(1.08) rotate(-2deg); }
  58%  { transform: translateX(-1px) scale(1.12) rotate(0deg); }
  /* micro recoil — NOT a bounce, just impact settle */
  63%  { transform: translateX(2px) scale(1.05) rotate(0deg); }
  68%  { transform: translateX(0px) scale(1.02); }
  74%  { transform: translateX(0px) scale(1.0); }
  100% { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
}

/* --- Text (rubber): collapses into thick band, stretches far right to the hand, snaps back --- */
@keyframes rubberPull {
  0%   { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
  /* idle while hand appears and grabs Z */
  14%  { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
  /* hand pulls — text collapses into rubber band, stretching to follow hand */
  18%  { transform: translateX(5px) scaleX(1.5) scaleY(0.6); letter-spacing: -0.15em; }
  22%  { transform: translateX(15px) scaleX(3) scaleY(0.2); letter-spacing: -0.35em; }
  /* thick line stretching across the nav — crosses through the middle */
  26%  { transform: translateX(25px) scaleX(3.5) scaleY(0.12); letter-spacing: -0.45em; }
  32%  { transform: translateX(45px) scaleX(5.5) scaleY(0.09); letter-spacing: -0.5em; }
  36%  { transform: translateX(60px) scaleX(7) scaleY(0.07); letter-spacing: -0.5em; }
  /* max tension — 8x stretch */
  40%  { transform: translateX(70px) scaleX(8) scaleY(0.06); letter-spacing: -0.5em; }
  /* SNAP — release, rubber contracts fast back to position */
  44%  { transform: translateX(20px) scaleX(3) scaleY(0.2); letter-spacing: -0.3em; }
  48%  { transform: translateX(2px) scaleX(1.2) scaleY(0.7); letter-spacing: -0.02em; }
  /* text re-forms */
  52%  { transform: translateX(-3px) scaleX(0.95) scaleY(1.08); letter-spacing: 0.08em; }
  56%  { transform: translateX(1px) scaleX(1.02) scaleY(0.98); letter-spacing: 0.1em; }
  62%  { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
  100% { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
}

/* Old Option 2 page-load assignments (commented out — rubber pull text + rock slam)
.nav-logo .logo-name {
  transform-origin: left center;
  position: relative;
  z-index: 10;
  animation: rubberPull 2.2s ease-in-out both;
}
.nav-logo .logo-img {
  animation: rockSlam 2.2s cubic-bezier(.22,.68,.31,1) both;
}
*/

/* --- Hover: quick pull-slam replay (no hand/crack on hover) --- */
@keyframes slamHover {
  /* logo rides with the hand to the right (in the pouch) */
  0%   { transform: translateX(0) scale(1) rotate(0deg); }
  8%   { transform: translateX(30px) scale(0.6) rotate(4deg); }
  15%  { transform: translateX(90px) scale(0.4) rotate(6deg); }
  25%  { transform: translateX(155px) scale(0.3) rotate(8deg); }
  /* RELEASE — logo fires back left */
  35%  { transform: translateX(60px) scale(0.5) rotate(-2deg); }
  45%  { transform: translateX(10px) scale(0.8) rotate(-6deg); }
  /* SLAM — hits position hard */
  52%  { transform: translateX(-3px) scale(1.1) rotate(-1deg); }
  60%  { transform: translateX(2px) scale(1.05) rotate(0deg); }
  72%  { transform: translateX(0px) scale(1.02); }
  85%  { transform: translateX(0px) scale(1.0); }
  100% { transform: translateX(0) scale(1) rotate(0deg); }
}
@keyframes rubberPullHover {
  0%   { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
  15%  { transform: translateX(10px) scaleX(2) scaleY(0.3); letter-spacing: -0.2em; }
  25%  { transform: translateX(30px) scaleX(4) scaleY(0.1); letter-spacing: -0.4em; }
  40%  { transform: translateX(8px) scaleX(1.5) scaleY(0.5); letter-spacing: -0.05em; }
  55%  { transform: translateX(-2px) scaleX(0.95) scaleY(1.05); letter-spacing: 0.08em; }
  70%  { transform: translateX(1px) scaleX(1.02) scaleY(0.99); letter-spacing: 0.1em; }
  100% { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
}
@keyframes handPullHover {
  0%   { opacity: 1; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(0.92); }
  15%  { transform: translateY(-50%) translateX(80px) scaleX(-1) scale(0.95); }
  25%  { transform: translateY(-50%) translateX(150px) scaleX(-1) scale(0.93); }
  35%  { opacity: 1; transform: translateY(-50%) translateX(160px) scaleX(-1) scale(1.2); }
  45%  { opacity: 0; transform: translateY(-50%) translateX(200px) scaleX(-1) scale(1.4); }
  100% { opacity: 0; transform: translateY(-50%) translateX(200px) scaleX(-1); }
}
@keyframes crackHover {
  0%   { opacity: 0; transform: scale(0); }
  45%  { opacity: 0; transform: scale(0); }
  48%  { opacity: 1; transform: scale(0.8); }
  52%  { opacity: 1; transform: scale(1.1); }
  55%  { opacity: 1; transform: scale(1); }
  75%  { opacity: 0.6; transform: scale(1); }
  82%  { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}

/* ══════════════════════════════════════════════════════════════════════════
   NEW OPTION 2 KEYFRAMES — hand grabs logo ball, slingshot, snap + bounce
   ══════════════════════════════════════════════════════════════════════════ */

/* --- Logo ball: pulled right by hand, released, snaps left, bounces to settle --- */
@keyframes ballSling {
  0%   { transform: translateX(0) scale(1) rotate(0deg); }
  /* hand grabs — slight squeeze */
  8%   { transform: translateX(0) scale(0.85) rotate(0deg); }
  /* pulled right — shrinks to hand size (~0.5) */
  14%  { transform: translateX(40px) scale(0.7) rotate(6deg); }
  20%  { transform: translateX(100px) scale(0.58) rotate(12deg); }
  26%  { transform: translateX(160px) scale(0.52) rotate(16deg); }
  30%  { transform: translateX(190px) scale(0.48) rotate(20deg); }
  /* max tension — same size as hand */
  34%  { transform: translateX(200px) scale(0.45) rotate(22deg); }
  /* RELEASE — snaps left fast */
  40%  { transform: translateX(60px) scale(0.85) rotate(5deg); }
  46%  { transform: translateX(-15px) scale(1.15) rotate(-10deg); }
  /* IMPACT — slams into position */
  50%  { transform: translateX(-8px) scale(1.2) rotate(-4deg); }
  /* bounce 1 */
  58%  { transform: translateX(10px) scale(0.95) rotate(3deg); }
  64%  { transform: translateX(-5px) scale(1.06) rotate(-2deg); }
  /* bounce 2 */
  72%  { transform: translateX(4px) scale(0.98) rotate(1deg); }
  80%  { transform: translateX(-2px) scale(1.02) rotate(-0.5deg); }
  /* settle */
  90%  { transform: translateX(1px) scale(1.01) rotate(0deg); }
  100% { transform: translateX(0) scale(1) rotate(0deg); }
}

/* --- Hand: appears at logo, grabs, pulls right with it, lets go on release --- */
@keyframes handGrab {
  0%   { opacity: 0; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(0.6); }
  /* fade in next to logo */
  5%   { opacity: 1; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(1); }
  /* pinch/grab */
  8%   { opacity: 1; transform: translateY(-50%) translateX(0px) scaleX(-1) scale(0.88); }
  /* pull right — hand stays with logo */
  14%  { opacity: 1; transform: translateY(-50%) translateX(40px) scaleX(-1) scale(0.88); }
  20%  { opacity: 1; transform: translateY(-50%) translateX(100px) scaleX(-1) scale(0.86); }
  26%  { opacity: 1; transform: translateY(-50%) translateX(160px) scaleX(-1) scale(0.84); }
  30%  { opacity: 1; transform: translateY(-50%) translateX(190px) scaleX(-1) scale(0.82); }
  /* max tension — still holding */
  34%  { opacity: 1; transform: translateY(-50%) translateX(200px) scaleX(-1) scale(0.8); }
  /* RELEASE — fingers open, hand flings right and fades */
  38%  { opacity: 1; transform: translateY(-50%) translateX(220px) scaleX(-1) scale(1.15); }
  44%  { opacity: 0.4; transform: translateY(-50%) translateX(240px) scaleX(-1) scale(1.3); }
  50%  { opacity: 0; transform: translateY(-50%) translateX(260px) scaleX(-1) scale(1.4); }
  100% { opacity: 0; transform: translateY(-50%) translateX(260px) scaleX(-1) scale(1.4); }
}

/* --- Text: stretches like rubber during pull, snaps back + shakes on impact --- */
@keyframes textImpact {
  0%   { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
  /* still while hand grabs */
  8%   { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
  /* logo passes Z — text starts stretching like rubber */
  14%  { transform: translateX(8px) scaleX(1.3) scaleY(0.85); letter-spacing: 0.02em; }
  20%  { transform: translateX(18px) scaleX(1.8) scaleY(0.6); letter-spacing: -0.08em; }
  26%  { transform: translateX(28px) scaleX(2.3) scaleY(0.4); letter-spacing: -0.18em; }
  30%  { transform: translateX(34px) scaleX(2.6) scaleY(0.3); letter-spacing: -0.25em; }
  /* max tension — thinnest stretch */
  34%  { transform: translateX(38px) scaleX(2.8) scaleY(0.25); letter-spacing: -0.3em; }
  /* RELEASE — rubber snaps back fast */
  40%  { transform: translateX(12px) scaleX(1.5) scaleY(0.55); letter-spacing: -0.05em; }
  46%  { transform: translateX(-2px) scaleX(0.92) scaleY(1.1); letter-spacing: 0.12em; }
  /* IMPACT — text overshoots and jolts */
  50%  { transform: translateX(-6px) scaleX(0.88) scaleY(1.12); letter-spacing: 0.14em; }
  54%  { transform: translateX(4px) scaleX(1.05) scaleY(0.97); letter-spacing: 0.1em; }
  60%  { transform: translateX(-3px) scaleX(0.97) scaleY(1.02); letter-spacing: 0.1em; }
  66%  { transform: translateX(2px) scaleX(1.02) scaleY(0.99); letter-spacing: 0.1em; }
  74%  { transform: translateX(-1px) scaleX(1.0) scaleY(1.0); letter-spacing: 0.1em; }
  82%  { transform: translateX(0px) scaleX(1.0) scaleY(1.0); letter-spacing: 0.1em; }
  100% { transform: translateX(0) scaleX(1) scaleY(1); letter-spacing: 0.1em; }
}

/* --- Crack: flash on impact, fade out --- */
@keyframes crackFlash {
  0%   { opacity: 0; transform: scale(0); }
  46%  { opacity: 0; transform: scale(0); }
  /* IMPACT */
  50%  { opacity: 1; transform: scale(0.8); }
  53%  { opacity: 1; transform: scale(1.1); }
  56%  { opacity: 1; transform: scale(1); }
  /* hold */
  72%  { opacity: 0.7; transform: scale(1); }
  /* fade */
  80%  { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}

/* ══════════════════════════════════════════════════════════════════════════
   LOGO ANIMATION — OPTION 3 (bounce across text: Z → S)
   Uncomment this block and comment Option 2 to switch.
   ══════════════════════════════════════════════════════════════════════════
@keyframes logoBouncePath {
  0%   { opacity: 0; transform: translateX(155px) translateY(-80px) scale(0.25) rotate(0deg); }
  2%   { opacity: 1; transform: translateX(155px) translateY(-75px) scale(0.25) rotate(-5deg); }
  6%   { transform: translateX(153px) translateY(-30px) scale(0.25) rotate(-15deg); }
  10%  { transform: translateX(150px) translateY(2px) scale(0.28) rotate(-25deg); }
  13%  { transform: translateX(138px) translateY(-25px) scale(0.32) rotate(-55deg); }
  16%  { transform: translateX(122px) translateY(-38px) scale(0.36) rotate(-90deg); }
  21%  { transform: translateX(108px) translateY(2px) scale(0.38) rotate(-125deg); }
  25%  { transform: translateX(92px) translateY(-22px) scale(0.44) rotate(-165deg); }
  28%  { transform: translateX(78px) translateY(-32px) scale(0.48) rotate(-200deg); }
  33%  { transform: translateX(65px) translateY(1px) scale(0.52) rotate(-240deg); }
  37%  { transform: translateX(52px) translateY(-18px) scale(0.6) rotate(-280deg); }
  40%  { transform: translateX(42px) translateY(-28px) scale(0.66) rotate(-320deg); }
  45%  { transform: translateX(30px) translateY(1px) scale(0.72) rotate(-365deg); }
  49%  { transform: translateX(20px) translateY(-15px) scale(0.82) rotate(-405deg); }
  52%  { transform: translateX(12px) translateY(-22px) scale(0.9) rotate(-440deg); }
  57%  { transform: translateX(5px) translateY(1px) scale(0.95) rotate(-480deg); }
  61%  { transform: translateX(2px) translateY(-12px) scale(1.15) rotate(-520deg); }
  64%  { transform: translateX(0px) translateY(-18px) scale(1.35) rotate(-560deg); }
  68%  { transform: translateX(-1px) translateY(-10px) scale(1.5) rotate(-600deg); }
  72%  { transform: translateX(-1px) translateY(1px) scale(1.4) rotate(-640deg); }
  77%  { transform: translateX(0px) translateY(-6px) scale(1.25) rotate(-670deg); }
  82%  { transform: translateX(0px) translateY(0px) scale(1.15) rotate(-692deg); }
  87%  { transform: translateX(0px) translateY(-2px) scale(1.08) rotate(-706deg); }
  92%  { transform: translateX(0px) translateY(0px) scale(1.03) rotate(-714deg); }
  96%  { transform: translateX(0px) translateY(-1px) scale(1.01) rotate(-718deg); }
  100% { opacity: 1; transform: translateX(0) translateY(0) rotate(-720deg) scale(1); }
}
@keyframes textBounceImpact {
  0%   { opacity: 0; transform: scaleY(1) scaleX(1); }
  2%   { opacity: 1; }
  10%  { transform: scaleY(0.88) scaleX(1.05); }
  13%  { transform: scaleY(1.02) scaleX(0.99); }
  21%  { transform: scaleY(0.89) scaleX(1.05); }
  25%  { transform: scaleY(1.02) scaleX(0.99); }
  33%  { transform: scaleY(0.9) scaleX(1.04); }
  37%  { transform: scaleY(1.02) scaleX(0.99); }
  45%  { transform: scaleY(0.91) scaleX(1.04); }
  49%  { transform: scaleY(1.01) scaleX(1.0); }
  57%  { transform: scaleY(0.93) scaleX(1.03); }
  61%  { transform: scaleY(1.01) scaleX(1.0); }
  72%  { transform: scaleY(0.96) scaleX(1.02); }
  77%  { transform: scaleY(1.01) scaleX(1.0); }
  87%  { transform: scaleY(1.0) scaleX(1.0); }
  100% { opacity: 1; transform: scaleY(1) scaleX(1); }
}
/* Option 3 page-load assignments (commented out — bounce across text)
.nav-logo .logo-img {
  animation: logoBouncePath 3s ease-in-out both;
}
.nav-logo .logo-name {
  transform-origin: center bottom;
  animation: textBounceImpact 3s ease-in-out both;
}
*/
/* Option 2 page-load — hand grabs logo ball, slingshot pull, snap back + bounces + crack */
.nav-logo .logo-img {
  animation: ballSling 1.5s cubic-bezier(.22,.68,.31,1) both;
}
.nav-logo .logo-name {
  transform-origin: left center;
  animation: textImpact 1.5s ease-in-out both;
}
@keyframes logoBounceHover {
  0%   { transform: translateX(0) translateY(0) rotate(-720deg) scale(1); }
  8%   { transform: translateX(15px) translateY(-20px) rotate(-740deg) scale(0.8); }
  18%  { transform: translateX(40px) translateY(-30px) rotate(-770deg) scale(0.6); }
  28%  { transform: translateX(60px) translateY(1px) rotate(-810deg) scale(0.55); }
  38%  { transform: translateX(35px) translateY(-22px) rotate(-850deg) scale(0.75); }
  48%  { transform: translateX(15px) translateY(1px) rotate(-890deg) scale(0.9); }
  56%  { transform: translateX(5px) translateY(-15px) rotate(-930deg) scale(1.15); }
  64%  { transform: translateX(0px) translateY(-8px) rotate(-965deg) scale(1.4); }
  72%  { transform: translateX(-1px) translateY(1px) rotate(-1000deg) scale(1.5); }
  80%  { transform: translateX(0px) translateY(-4px) rotate(-1030deg) scale(1.25); }
  88%  { transform: translateX(0px) translateY(0px) rotate(-1055deg) scale(1.1); }
  94%  { transform: translateX(0px) translateY(-1px) rotate(-1072deg) scale(1.03); }
  100% { transform: translateX(0) translateY(0) rotate(-1080deg) scale(1); }
}
@keyframes textSquishHover {
  0%   { transform: scaleY(1) scaleX(1); }
  28%  { transform: scaleY(0.9) scaleX(1.04); }
  35%  { transform: scaleY(1.02) scaleX(0.99); }
  48%  { transform: scaleY(0.92) scaleX(1.03); }
  55%  { transform: scaleY(1.01) scaleX(1.0); }
  72%  { transform: scaleY(0.95) scaleX(1.02); }
  80%  { transform: scaleY(1.01) scaleX(1.0); }
  92%  { transform: scaleY(0.99) scaleX(1.0); }
  100% { transform: scaleY(1) scaleX(1); }
}
   ══════════════════════════════════════════════════════════════════════════ */

/* ── FLATPICKR THEME ──────────────────────────────────────────────────── */
.flatpickr-calendar {
  font-family: 'DM Sans', system-ui, sans-serif !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 40px rgba(6,116,132,.14) !important;
  border: 1.5px solid var(--border) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.flatpickr-day:hover {
  background: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
}
.flatpickr-months .flatpickr-month { color: var(--dark) !important; }
.flatpickr-current-month { font-family: 'DM Sans', sans-serif !important; }
.numInputWrapper span.arrowUp::after  { border-bottom-color: var(--primary) !important; }
.numInputWrapper span.arrowDown::after { border-top-color: var(--primary) !important; }
.flatpickr-day.nextMonthDay,
.flatpickr-day.prevMonthDay {
  color: var(--text, #1a2e30) !important;
  opacity: 1 !important;
}
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.prevMonthDay:hover {
  background: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
}

/* ── MOBILE RESPONSIVENESS ─────────────────────────────────────────────── */

/* Reduce section padding on tablet */
@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 60px 24px 80px; }
  .stats-row { gap: 24px; flex-wrap: wrap; }
  .about-text { font-size: 15px; }
}

/* Reduce further on small phones */
@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .hero-content { padding: 40px 16px 72px; }
  .hero-sub { font-size: 15px; margin-bottom: 2rem; }
  .section-heading { margin-bottom: 1rem; }
  .stats-row { gap: 20px; }
  .stat-num { font-size: 2rem; }

  /* Rooms — stack title + View Room button vertically on very small screens */
  .room-title-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .room-link-btn { align-self: flex-start; }
  .room-card-body { padding: 16px; gap: 8px; }

  /* Gallery — small gap looks better in single-column */
  .gallery-grid { column-gap: 0; }
  .gallery-item { margin-bottom: 2px; border-radius: 0; }

  /* Testimonials */
  .testimonial-card { padding: 24px 18px; }

  /* Things to do */
  .todo-img { height: 180px; }
  .todo-num { font-size: 2rem; }

  /* Rules */
  .rule-item { gap: 12px; }

  /* Footer */
  .footer-grid { gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Nav */
  .logo-name { font-size: 14px; }
}

/* Extra small (iPhone SE, Galaxy A series) */
@media (max-width: 375px) {
  .hero-heading { font-size: 2rem; }
  .room-price strong { font-size: 1.1rem; }
  .room-book-btn { font-size: 12px; padding: 8px 12px; }
  .booking-field { padding: 12px 14px; }
}

/* Safari / WebKit — smooth momentum scrolling */
@supports (-webkit-overflow-scrolling: touch) {
  .thumb-row,
  .other-rooms-inner { -webkit-overflow-scrolling: touch; }
}

/* Prevent iOS tap highlight on interactive elements */
a, button { -webkit-tap-highlight-color: transparent; }

/* Ensure images never break layout on any screen */
img { max-width: 100%; }

/* ── INVOICE MODAL (shared across pages) ─────────────────────────────── */
.inv-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(13,31,33,.55); backdrop-filter: blur(3px);
  justify-content: center; align-items: center; padding: 20px;
}
.inv-overlay.active { display: flex; }
.inv-modal {
  background: var(--white); border-radius: var(--radius);
  width: 100%; max-width: 480px; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 16px 64px rgba(0,0,0,.25);
}
/* Wider variant — multi-room "Book Now" invoice, which has two extra sections
   (Guest Distribution Per Room, Pricing Breakdown) laid out two-up so the whole
   invoice fits without vertical scrolling on wider screens. */
.inv-modal-wide { max-width: 820px; }
.inv-two-col-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.inv-two-col-row + .inv-two-col-row { margin-top: 16px; }
@media (max-width: 700px) {
  .inv-modal-wide { max-width: 480px; }
  .inv-two-col-row { grid-template-columns: 1fr; }
}

.inv-header {
  padding: 20px 24px 0; border-bottom: none;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.inv-brand { display: flex; align-items: center; gap: 10px; }
.inv-brand img { height: 36px; width: auto; }
.inv-brand-text {
  font-weight: 900; font-size: 13px; color: var(--dark);
  text-transform: uppercase; letter-spacing: .08em;
}
.inv-close {
  width: 32px; height: 32px; border: none; background: var(--cream);
  border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.inv-close:hover { background: #fef2f2; color: #b91c1c; }
.inv-biz-info {
  font-size: 11px; color: var(--muted); line-height: 1.6;
  padding: 8px 24px 0; margin-bottom: 4px;
}
.inv-title-bar {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 24px 14px; border-bottom: 2px solid var(--primary); margin: 0;
}
.inv-title-bar h3 { font-size: 1.1rem; margin: 0; color: var(--primary); }
.inv-title-bar .inv-date { font-size: 11px; color: var(--muted); }
.inv-body { padding: 20px 24px; }
.inv-section-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; margin-top: 16px;
}
.inv-section-title:first-child { margin-top: 0; }
.inv-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text); padding: 4px 0;
}
.inv-row.sub { padding-left: 12px; color: var(--muted); font-size: 12px; }
.inv-row.discount { color: #16a34a; }
.inv-row.surcharge { color: #d97706; }
.inv-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.inv-total {
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 700; color: var(--dark); padding: 4px 0;
}
.inv-names-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.inv-name-field label {
  display: block; font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 3px;
}
.inv-name-field input {
  width: 100%; padding: 9px 12px; font-size: 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--cream); color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif; outline: none;
  transition: border-color .2s; box-sizing: border-box;
}
.inv-name-field input:focus { border-color: var(--primary); }
.inv-policies {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; margin-top: 16px;
}
.inv-policies ul { list-style: none; padding: 0; margin: 0; }
.inv-policies li {
  font-size: 11px; color: var(--muted); padding: 3px 0;
  display: flex; align-items: baseline; gap: 6px; line-height: 1.5;
}
.inv-policies li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--border); flex-shrink: 0; margin-top: 5px;
}
.inv-status-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.inv-footer {
  padding: 16px 24px 20px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.inv-book-btn {
  width: 100%; padding: 13px; background: var(--primary); color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.inv-book-btn:hover:not(:disabled) { background: var(--primary-dark); }
.inv-book-btn:disabled { opacity: .5; cursor: not-allowed; }
.inv-err {
  display: none; background: #fef2f2; border: 1px solid #fecaca;
  color: #b91c1c; font-size: 12px; padding: 8px 12px;
  border-radius: 6px; text-align: center;
}
