/* Grand Vista — public & user area */
:root {
  --navy-950: #0b1220;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --gold-400: #c9a962;
  --gold-500: #b8954a;
  --cream: #f8f5ef;
  --paper: #fdfcfa;
  --muted: #64748b;
  --success: #0d9488;
  --danger: #dc2626;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy-900);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--gold-500);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-main {
  flex: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  color: var(--navy-800);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.brand-text {
  font-family: var(--display);
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--navy-700);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.35rem 0.2rem;
}
.main-nav a:hover {
  color: var(--navy-900);
}

.nav-cta {
  background: var(--navy-900);
  color: var(--cream) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--navy-800);
  color: var(--cream) !important;
  text-decoration: none;
}

.nav-cta.ghost {
  background: transparent;
  color: var(--navy-900) !important;
  border: 1px solid var(--navy-700);
}
.nav-cta.ghost:hover {
  background: var(--navy-900);
  color: var(--cream) !important;
}

.nav-admin {
  font-size: 0.8rem !important;
  color: var(--muted) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--navy-700);
  background: var(--paper);
  border-radius: 8px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: relative;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--navy-900);
}
.nav-toggle::before {
  top: 0.85rem;
  box-shadow: 0 6px 0 var(--navy-900);
}
.nav-toggle::after {
  bottom: 0.85rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .site-header {
    position: relative;
  }
}

/* Hero landing */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 18, 32, 0.92) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(11, 18, 32, 0.88) 100%),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 36rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}
.btn-primary:hover {
  color: var(--navy-950);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248, 245, 239, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--navy-900);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 41, 59, 0.06);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(201, 169, 98, 0.2);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rooms-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.room-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 41, 59, 0.06);
  display: flex;
  flex-direction: column;
}

.room-card-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.room-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.room-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.price-tag {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.1rem;
  margin-top: auto;
}

.status-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-top: 0.5rem;
}

.status-available {
  background: rgba(13, 148, 136, 0.15);
  color: var(--success);
}
.status-booked {
  background: rgba(220, 38, 38, 0.12);
  color: var(--danger);
}
.status-na {
  background: rgba(100, 116, 139, 0.2);
  color: var(--navy-700);
}

.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--cream);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  margin: 0 0 0.75rem;
}
.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

/* Forms & panels */
.panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 41, 59, 0.06);
  max-width: 520px;
  margin-inline: auto;
}

.panel-wide {
  max-width: 900px;
}

.page-hero {
  background: var(--navy-900);
  color: var(--cream);
  padding: 2.5rem 0;
}
.page-hero h1 {
  font-family: var(--display);
  margin: 0;
  font-size: 1.85rem;
}
.page-hero p {
  margin: 0.5rem 0 0;
  opacity: 0.88;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-800);
  display: block;
  margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.25);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.filters-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(30, 41, 59, 0.08);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 41, 59, 0.08);
  background: var(--paper);
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.data-table th {
  background: rgba(15, 23, 42, 0.04);
  font-weight: 600;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.25);
}
.alert-success {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 0.88rem;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .split-2 {
    grid-template-columns: 1fr;
  }
}

.room-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .room-detail-layout {
    grid-template-columns: 1fr;
  }
}

.room-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.link-back {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--navy-700);
  font-weight: 500;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.dash-tile {
  background: var(--paper);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 41, 59, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.dash-tile h3 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-tile p {
  margin: 0.35rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(248, 245, 239, 0.85);
  margin-top: auto;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: rgba(248, 245, 239, 0.75);
}
.footer-links li {
  margin-bottom: 0.35rem;
}

.brand-footer {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 245, 239, 0.1);
  padding: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.55);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guest-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 10.5rem;
}
.guest-booking-actions .guest-pay-form {
  margin: 0;
}
.guest-booking-actions .guest-pay-btn {
  width: 100%;
  justify-content: center;
}
a.guest-pay-btn {
  text-decoration: none;
  box-sizing: border-box;
}

/* Dummy UPI payment gateway (guest) */
.pay-demo-gateway {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(30, 41, 59, 0.1);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 2rem;
}
.pay-demo-brand {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
}
.pay-demo-ref {
  margin: 0 0 1rem;
}
.pay-demo-amount {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-family: var(--display);
  color: var(--navy-900);
}
.pay-demo-amount strong {
  font-weight: 700;
}
.pay-demo-stay {
  margin: 0 0 1.25rem;
}
.pay-demo-form {
  margin-top: 0.5rem;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  border-radius: 8px;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover {
  color: #fff;
}

.btn-secondary {
  background: var(--navy-800);
  color: #fff;
}
.btn-secondary:hover {
  color: #fff;
}

.text-right {
  text-align: right;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}
.breadcrumb-inner {
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.breadcrumb-inner a {
  color: var(--navy-700);
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb-inner a:hover {
  color: var(--navy-900);
  text-decoration: underline;
}
.breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Room listing cards (pro) */
.room-card-pro {
  position: relative;
}
.room-card-media {
  position: relative;
}
.room-card-photo-badge {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  background: rgba(11, 18, 32, 0.78);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.room-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0 0 0.5rem;
}
.room-card-facts span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  opacity: 0.45;
}
.room-chip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.room-chip-list li {
  font-size: 0.78rem;
  background: rgba(15, 23, 42, 0.06);
  color: var(--navy-800);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

/* Room detail hero */
.room-hero {
  position: relative;
  min-height: 320px;
  background-color: var(--navy-900);
  background-image: linear-gradient(120deg, rgba(11, 18, 32, 0.75) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(11, 18, 32, 0.82) 100%),
    var(--room-hero-image);
  background-size: cover;
  background-position: center;
  color: var(--cream);
}
.room-hero-overlay {
  display: none;
}
.room-hero-inner {
  position: relative;
  padding: 3rem 0 2.5rem;
  max-width: 52rem;
}
.room-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold-400);
  margin: 0 0 0.5rem;
}
.room-hero-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
.room-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  opacity: 0.92;
}
.room-hero-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 1rem;
  opacity: 0.45;
}
.room-hero-status {
  background: rgba(253, 252, 250, 0.14);
  border: 1px solid rgba(253, 252, 250, 0.2);
}

/* Gallery */
.room-gallery {
  margin-bottom: 1.75rem;
}
.room-gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy-900);
}
.room-gallery-main img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.room-gallery-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  background: rgba(11, 18, 32, 0.45);
  backdrop-filter: blur(6px);
}
.room-gallery-caption {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  background: var(--paper);
  color: var(--navy-700);
  border-top: 1px solid rgba(30, 41, 59, 0.08);
}
.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.room-gallery-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--navy-900);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.room-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.room-gallery-thumb:hover {
  transform: translateY(-1px);
}
.room-gallery-thumb.is-active {
  border-color: var(--gold-400);
}

/* Detail layout */
.room-detail-page {
  padding-top: 2rem;
}
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr min(340px, 34%);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .room-detail-grid {
    grid-template-columns: 1fr;
  }
  .room-reserve-rail {
    order: -1;
  }
}
.detail-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(30, 41, 59, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.detail-card-title {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--navy-900);
}
.prose {
  color: var(--navy-800);
  line-height: 1.65;
}
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.amenity-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--navy-800);
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-400);
}
.policy-list {
  margin: 0;
  padding-left: 1.1rem;
}
.policy-list li {
  margin-bottom: 0.4rem;
}

.room-reserve-rail {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}
/* Full card chrome on the aside so all booking UI stays inside one panel (avoids inner wrapper height issues with grid + sticky). */
.reserve-sidebar-card {
  display: flow-root;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 41, 59, 0.06);
  margin: 0;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.reserve-sidebar-back {
  margin-top: 1rem;
  display: inline-block;
}
.reserve-price {
  margin: 0;
}
.reserve-amount {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--display);
  color: var(--navy-900);
}
.reserve-heading {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 1rem 0 0.65rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.88);
  z-index: 0;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  border: none;
  background: rgba(253, 252, 250, 0.12);
  color: var(--cream);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: none;
  background: rgba(253, 252, 250, 0.12);
  color: var(--cream);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.lightbox-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(960px, 92vw);
  max-height: 82vh;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.lightbox-figure figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: rgba(248, 245, 239, 0.88);
  font-size: 0.95rem;
}

/* Guest top bar */
.guest-topbar {
  background: var(--navy-950);
  color: rgba(248, 245, 239, 0.88);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(248, 245, 239, 0.08);
}
.guest-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  padding: 0.45rem 0;
}
.guest-topbar-tagline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.guest-topbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}
.guest-topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.guest-topbar-link {
  color: rgba(248, 245, 239, 0.85);
  text-decoration: none;
  font-weight: 500;
}
.guest-topbar-link:hover {
  color: var(--gold-400);
  text-decoration: underline;
}

/* Hero extras */
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.75);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  border-top: 1px solid rgba(30, 41, 59, 0.06);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1.25rem 0;
}
.trust-item {
  text-align: center;
  padding: 0.35rem;
}
.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.2rem;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

.section-story {
  background: var(--cream);
}
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
  }
}
.story-visual {
  min-height: 300px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.45)),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.story-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold-500);
  margin: 0 0 0.5rem;
}
.story-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.story-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--navy-800);
}
.story-list li {
  margin-bottom: 0.45rem;
}

.rooms-preview-home .room-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rooms-preview-home .room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}
.room-card-cta {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Room catalog */
.catalog-hero {
  padding: 2.75rem 0 2rem;
}
.catalog-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold-500);
  margin: 0 0 0.5rem;
}
.catalog-hero-lead {
  margin: 0;
  max-width: 46rem;
  color: rgba(248, 245, 239, 0.9);
  line-height: 1.65;
  font-size: 1.02rem;
}
.catalog-hero h1 {
  font-family: var(--display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
}
.section-catalog {
  padding-top: 0;
}
.catalog-layout {
  display: grid;
  grid-template-columns: min(300px, 32%) 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-aside {
    order: 2;
  }
  .catalog-main {
    order: 1;
  }
}
.catalog-aside-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.1rem;
}
.catalog-filter-form {
  max-width: none;
}
.catalog-hint-panel {
  margin-top: 1rem;
  padding: 1rem !important;
}
.catalog-toolbar {
  margin-bottom: 1.25rem;
}
.catalog-results {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy-900);
}
.catalog-toolbar-sub {
  margin: 0.35rem 0 0;
}
.catalog-type-banner {
  background: var(--paper);
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.catalog-type-banner-title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.1rem;
}
.catalog-empty {
  grid-column: 1 / -1;
  padding: 2rem !important;
}
.rooms-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.room-card-luxe {
  border: 1px solid rgba(30, 41, 59, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.room-card-luxe:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}
.room-card-media {
  position: relative;
}
.room-card-type-pill {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(253, 252, 250, 0.94);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}
.room-card-title {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}
.room-card-desc {
  line-height: 1.55;
}
.room-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(30, 41, 59, 0.08);
}

/* Room detail — hero rate & specs */
.room-hero-rate {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
  color: rgba(248, 245, 239, 0.92);
}
.room-hero-rate strong {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--gold-400);
}
.room-hero-rate-note {
  font-size: 0.88rem;
  opacity: 0.85;
}

.spec-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.spec-tile {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.spec-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.spec-value {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.98rem;
}

.prose-room {
  max-width: 52rem;
}

.type-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold-400);
  background: rgba(201, 169, 98, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.type-callout-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-800);
}
.type-callout-text {
  margin: 0;
  line-height: 1.55;
}

.stay-estimate {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.22);
}
.stay-estimate-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--success);
}
.stay-estimate-figures {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.related-rooms {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
}
.related-rooms-title {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.related-rooms-intro {
  margin: 0 0 1.25rem;
}
.related-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.related-room-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.85rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  padding: 0.65rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.related-room-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  text-decoration: none;
}
.related-room-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy-900);
}
.related-room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-room-type {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  font-weight: 600;
}
.related-room-name {
  margin: 0.15rem 0;
  font-weight: 700;
  font-family: var(--display);
}
.related-room-meta {
  margin: 0;
}
.related-room-price {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--navy-900);
}

/* Footer pro */
.footer-grid-pro {
  grid-template-columns: 1.2fr repeat(3, 1fr);
}
@media (max-width: 900px) {
  .footer-grid-pro {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-grid-pro {
    grid-template-columns: 1fr;
  }
}
.footer-address {
  margin-top: 0.75rem;
  line-height: 1.5;
}
.footer-contact-block a {
  color: rgba(248, 245, 239, 0.88);
  text-decoration: none;
}
.footer-contact-block a:hover {
  text-decoration: underline;
  color: var(--gold-400);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom-links a {
  color: rgba(248, 245, 239, 0.65);
}
.footer-dot {
  opacity: 0.45;
}
