:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #f59e0b; /* amber */
  --accent: #ffb703; /* bright amber */
  --chip: #f1f5f9;
  --chip-ink: #0f172a;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 1px 3px rgba(0, 0, 0, 0.08), 0 12px 36px rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}
.canvas {
  background: var(--surface);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

/* Top Header */
.top-header {
  background: var(--brand);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-header-content {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-header-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.top-header-item:hover {
  opacity: 0.8;
  color: #fff;
}
.top-header-item svg,
.top-header-item i {
  width: 14px;
  height: 14px;
  fill: currentColor;
  font-size: 14px;
}
.top-header-social {
  display: flex;
  gap: 8px;
}
.top-header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.top-header-social a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.top-header-social a i {
  font-size: 12px;
}

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.logo-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffc107, #f59e0b);
  display: grid;
  place-items: center;
}
.logo-badge svg,
.logo-badge i {
  width: 14px;
  height: 14px;
  fill: #fff;
  color: #fff;
  font-size: 14px;
}
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--brand);
}
.nav a i {
  font-size: 13px;
}
.searchbar {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  flex: 1;
  max-width: 420px;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: #fafafa;
}
.searchbar input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  font-size: 14px;
}
.searchbar i {
  color: var(--muted);
  font-size: 14px;
}
.icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: #6b7280;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 6px;
}
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fafafa;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.btn-dark {
  background: var(--brand);
  color: #fff;
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  height: 500px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  min-height: 400px;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  z-index: 2;
  gap: 16px;
  max-width: 90%;
  margin: 0 auto;
}
.hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .tag {
  margin: 0;
  color: #fef3c7;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 18px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Search/Availability bar */
.search-panel {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}
.search-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}
.field {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fafafa;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
  min-width: 0;
}
.field:focus-within {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.field label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.field input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  width: 100%;
  font-weight: 500;
  min-width: 0;
}

.field input::placeholder {
  color: var(--muted);
  opacity: 0.8;
}
.btn-search {
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  border: 0;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-search:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.filter-row {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 6px 4px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--chip-ink);
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 12.5px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.chip:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Container */
.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 22px;
}

/* Sections */
section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}
section h2 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
}
section p.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
}

/* Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.room-card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: all 0.3s ease;
  height: 100%;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.room-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.accessible-badge {
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.room-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.room-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.room-count {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-description {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 183, 3, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.feature i {
  color: var(--brand);
  font-size: 13px;
}

.room-btn {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.room-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Cards/rows */
.cat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cat-card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.cat-card figure {
  margin: 0;
  height: 240px;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.cat-card:hover img {
  transform: scale(1.05);
}
.cat-card .meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.cat-card .meta b {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3;
}
.meta small {
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}
.scroller::-webkit-scrollbar {
  height: 10px;
}
.scroller::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}
.card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-1);
}
.card .thumb {
  background: #111;
  height: 200px;
  overflow: hidden;
  aspect-ratio: 1;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card .body {
  padding: 12px;
  display: grid;
  gap: 6px;
  overflow: hidden;
}
.title {
  font-weight: 800;
  font-size: 14px;
}
.sub {
  font-size: 12px;
  color: var(--muted);
}
.fineprint {
  color: var(--muted);
  font-size: 11px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: 24px;
  color: #fff;
  box-shadow: var(--shadow-2);
  aspect-ratio: 16/9;
  transition: all 0.3s ease;
}
.promo:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}
.promo:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
}
.promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.promo:hover img {
  transform: scale(1.05);
}
.promo .content {
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 8px;
}
.promo h3 {
  margin: 8px 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}
.promo small {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.5;
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
}
.partner {
  border: 2px solid var(--brand);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(255, 183, 3, 0.05));
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 12px;
  transition: all 0.3s ease;
  cursor: default;
}
.partner:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(255, 183, 3, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 20px;
}
.panel {
  border: none;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: all 0.3s ease;
}
.panel:hover {
  box-shadow: var(--shadow-2);
}
.panel.dark {
  background: linear-gradient(135deg, #0b0f19 0%, #1a1f2e 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}
.panel-cta {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 280px;
}
.panel-cta h3 {
  font-size: 22px;
  margin: 0;
  line-height: 1.3;
}
.panel-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.panel-cta .btn {
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  width: fit-content;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.panel-cta .btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.panel-photo {
  overflow: hidden;
  padding: 0;
  min-height: 380px;
  display: grid;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
}
.panel-photo .hero {
  height: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
}
.panel-photo .hero img {
  object-fit: cover;
  object-position: center;
}
.metric {
  font-size: 26px;
  font-weight: 900;
}

footer {
  padding: 24px 22px 28px;
  border-top: 1px solid var(--line);
  background: #0b0f19;
  color: #cbd5e1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 18px;
}
.brand-blurb {
  display: grid;
  gap: 8px;
}
.foot h4 {
  margin: 0 0 10px;
  color: #fff;
}
.foot a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}
.newsletter {
  display: grid;
  gap: 8px;
}
.newsletter .row {
  display: flex;
  gap: 8px;
}
.social {
  display: flex;
  gap: 8px;
}
.social .ico {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111626;
  display: grid;
  place-items: center;
}
.foot-mini {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .top-header {
    padding: 6px 0;
  }
  .top-header-content {
    padding: 0 12px;
    gap: 8px;
  }
  .top-header-left {
    gap: 16px;
  }
  .top-header-right {
    gap: 12px;
  }
  .hero {
    height: 450px;
    min-height: 350px;
  }
  .hero-inner {
    padding: 20px;
    gap: 14px;
  }
  .hero h1 {
    margin-bottom: 4px;
  }
  .hero .tag {
    margin-bottom: 12px;
  }
  .search-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .search-panel {
    padding: 14px;
    margin-top: 0;
  }
  .btn-search {
    width: 100%;
  }
  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .cat-row {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .btn-search {
    grid-column: 1/-1;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .top-header {
    padding: 4px 0;
    font-size: 12px;
  }
  .top-header-content {
    padding: 0 8px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .top-header-left {
    justify-content: center;
    gap: 12px;
  }
  .top-header-right {
    justify-content: center;
    gap: 8px;
  }
  .top-header-social {
    justify-content: center;
  }
  .topbar {
    flex-wrap: wrap;
  }
  .searchbar {
    order: 3;
    width: 100%;
    max-width: none;
  }
  .nav {
    order: 2;
  }
  .hero {
    height: 400px;
    min-height: 300px;
  }
  .hero-inner {
    padding: 16px;
    gap: 12px;
  }
  .hero h1 {
    font-size: clamp(24px, 6vw, 36px);
    margin: 0;
    line-height: 1.1;
  }
  .hero .tag {
    font-size: clamp(13px, 3vw, 16px);
    margin: 0;
  }
  .search-panel {
    padding: 12px;
    margin-top: 0;
    width: 100%;
  }
  .search-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .field {
    padding: 12px;
    flex-wrap: nowrap;
  }
  .field label {
    font-size: 11px;
  }
  .field input {
    font-size: 13px;
  }
  .btn-search {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
  }
  .filter-row {
    padding: 8px 4px 4px;
    gap: 6px;
    font-size: 12px;
  }
  .chip {
    padding: 6px 10px;
    font-size: 11px;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .cat-row {
    grid-template-columns: 1fr;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .partners {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 32px 0;
  }
  section h2 {
    font-size: 24px;
  }
  .room-image {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 350px;
    min-height: 280px;
  }
  .hero-inner {
    padding: 12px;
    gap: 10px;
  }
  .hero h1 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .hero .tag {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  .search-panel {
    padding: 10px;
    margin-top: 0;
  }
  .field {
    padding: 10px;
    gap: 6px;
  }
  .field label {
    font-size: 10px;
  }
  .field input {
    font-size: 12px;
  }
  .btn-search {
    padding: 12px 16px;
    font-size: 13px;
    width: 100%;
  }
  .filter-row {
    padding: 6px 2px 2px;
    gap: 4px;
    font-size: 11px;
  }
  .chip {
    padding: 5px 8px;
    font-size: 10px;
  }
}
