@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.website-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(var(--brand-primary-rgb), 0.2), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(var(--brand-primary-rgb), 0.14), transparent 24%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-primary-light) 58%, #fff8ef 42%) 0%, var(--brand-surface) 24%, var(--brand-light) 58%, color-mix(in srgb, var(--brand-primary-light) 42%, #f4efe6 58%) 100%);
  color: var(--brand-text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.website-body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--brand-text-muted);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.7rem;
  color: var(--brand-text);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.65rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.site-shell {
  width: min(1280px, calc(100vw - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100vw - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.25rem, 7vw, 6.8rem) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.08), transparent 42%),
    var(--brand-surface-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.73rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--brand-primary-dark) 60%, #443a29 40%);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(var(--brand-primary-rgb), 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--brand-secondary);
}

.text-link::after {
  content: '\2192';
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.85rem 1.28rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button-primary {
  background: var(--brand-primary);
  color: var(--brand-on-primary);
  box-shadow: 0 10px 24px rgba(var(--brand-primary-rgb), 0.26);
}

.button-primary:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--brand-primary) 88%, #000000 12%);
  box-shadow: 0 16px 30px rgba(var(--brand-primary-rgb), 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-text);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(var(--brand-primary-rgb), 0.35);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.site-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), color-mix(in srgb, var(--brand-primary) 60%, #ffffff 40%));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.site-ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.65;
}

.site-ambient-one {
  width: 360px;
  height: 360px;
  top: 90px;
  left: -130px;
  background: rgba(var(--brand-primary-rgb), 0.22);
}

.site-ambient-two {
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: 110px;
  background: rgba(var(--brand-primary-rgb), 0.16);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--brand-text);
  background: rgba(255, 251, 245, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--brand-primary-rgb), 0.14);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.is-inner-page .site-header,
.site-header.is-scrolled {
  color: var(--brand-text);
}

body.is-inner-page .site-header::before,
.site-header.is-scrolled::before {
  opacity: 0;
}

body.is-inner-page .site-header,
.site-header.is-scrolled {
  background: rgba(255, 251, 245, 0.96);
  border-bottom: 1px solid rgba(var(--brand-primary-rgb), 0.16);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.nav-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: min(190px, 28vw);
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.brand-wordmark {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-text);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand-primary-dark);
  opacity: 1;
}

.site-nav a span {
  position: relative;
}

.site-nav a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.2s ease;
}

.site-nav a:hover span::after,
.site-nav a.is-active span::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-support-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: var(--brand-primary-light);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.18);
  font-size: 0.82rem;
  color: var(--brand-text);
}

.header-support-pill i {
  color: var(--brand-primary);
}

.header-support-pill span {
  color: var(--brand-text-muted);
  opacity: 1;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.18);
  background: #ffffff;
  color: inherit;
}

body.is-inner-page .menu-toggle,
.site-header.is-scrolled .menu-toggle {
  border-color: rgba(var(--brand-primary-rgb), 0.18);
  background: #ffffff;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 69;
  background: rgba(7, 10, 17, 0.46);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(420px, 92vw);
  height: 100vh;
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  background: linear-gradient(180deg, #10161f, #0b0f16 78%);
  color: #ffffff;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.32);
  transform: translateX(104%);
  pointer-events: none;
  transition: transform 0.28s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-kicker {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu-head h3 {
  color: #ffffff;
}

.mobile-menu-head p:last-child,
.mobile-menu-intro p,
.mobile-menu-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mobile-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-menu-actions a {
  flex: 1 1 160px;
}

.mobile-menu-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mobile-menu-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-menu-footer {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.breadcrumbs-wrap {
  margin-top: 88px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 250, 244, 0.86);
  backdrop-filter: blur(12px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  font-size: 0.82rem;
  color: var(--brand-text-muted);
}

.breadcrumbs a {
  font-weight: 700;
  color: var(--brand-text);
}

.hotel-hero,
.page-hero,
.room-spotlight {
  position: relative;
  overflow: hidden;
  background-color: #1a2230;
}

.hotel-hero {
  min-height: 100vh;
  padding-top: 88px;
}

.hotel-hero-slides,
.hotel-hero-slide {
  position: absolute;
  inset: 0;
}

.hotel-hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hotel-hero-slide.is-active {
  opacity: 1;
}

.hotel-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero,
.room-spotlight {
  min-height: 60vh;
  padding-top: 88px;
  background-size: cover;
  background-position: center center;
}

.hotel-hero-backdrop,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.24) 0%, rgba(8, 12, 18, 0.68) 58%, rgba(8, 12, 18, 0.88) 100%),
    linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.34), rgba(var(--brand-primary-rgb), 0.06) 48%, transparent 78%),
    radial-gradient(circle at top right, rgba(var(--brand-primary-rgb), 0.28), transparent 32%);
}

.hotel-hero-grid,
.page-hero-inner,
.room-spotlight-inner {
  position: relative;
  z-index: 1;
}

.hotel-hero-grid {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 34px;
  padding-bottom: 64px;
}

.page-hero-inner,
.room-spotlight-inner {
  min-height: calc(60vh - 88px);
  display: flex;
  align-items: end;
  padding-bottom: 54px;
}

.hotel-hero-copy,
.page-hero-copy {
  max-width: 860px;
}

.hotel-hero-copy h1,
.page-hero-copy h1 {
  color: #ffffff;
  max-width: 12ch;
}

.hero-copy,
.page-hero-copy p,
.page-hero-copy > p:last-of-type,
.hotel-hero-copy > p:last-of-type {
  max-width: 62ch;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-cta,
.page-hero-actions,
.editorial-actions,
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.35rem;
}

.trust-row,
.hero-support-points,
.meta-pill-row,
.booking-reassurance,
.experience-points,
.amenity-list,
.room-amenities-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 1.35rem;
}

.trust-chip,
.meta-pill-row span,
.hero-support-points span,
.booking-reassurance span,
.room-amenities-inline span,
.experience-points span,
.experience-points a,
.amenity-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.trust-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.trust-chip i {
  font-size: 0.84rem;
  color: currentColor;
}

.hero-support-points span {
  border: 1px solid rgba(92, 214, 150, 0.28);
  background: rgba(92, 214, 150, 0.16);
  color: #dff9ea;
  backdrop-filter: blur(10px);
}

.hero-support-points span i {
  color: #7cf0b1;
  font-size: 0.86rem;
}

.section-kicker {
  background: var(--brand-primary-light);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.22);
  color: var(--brand-primary-dark);
}

.trust-chip-soft {
  background: rgba(var(--brand-primary-rgb), 0.18);
  border-color: rgba(var(--brand-primary-rgb), 0.28);
}

.hero-support-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.hero-support-line a,
.hero-support-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.hotel-hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.35rem;
}

.hotel-hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-hero-dot.is-active {
  background: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), 0.18);
  transform: scale(1.05);
}

.hotel-hero .eyebrow,
.page-hero .eyebrow,
.room-spotlight .eyebrow,
.hero-support-card .eyebrow,
.offer-card .eyebrow,
.experience-card-dark .eyebrow,
.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hotel-hero .eyebrow::before,
.page-hero .eyebrow::before,
.room-spotlight .eyebrow::before,
.hero-support-card .eyebrow::before,
.offer-card .eyebrow::before,
.experience-card-dark .eyebrow::before,
.site-footer .eyebrow::before {
  background: rgba(255, 255, 255, 0.28);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: clamp(360px, 44vw, 520px);
}

.hero-mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.18);
}

.hero-mosaic-item.is-main {
  grid-column: 1 / span 2;
  grid-row: 1 / span 3;
}

.hero-mosaic-count-1 {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.hero-mosaic-count-1 .hero-mosaic-item.is-main,
.hero-mosaic-count-2 .hero-mosaic-item.is-main,
.hero-mosaic-count-3 .hero-mosaic-item.is-main {
  grid-column: auto;
  grid-row: auto;
}

.hero-mosaic-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
}

.hero-mosaic-count-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero-mosaic-count-3 .hero-mosaic-item.is-main {
  grid-column: 1 / span 2;
}

.hero-mosaic-count-5 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero-mosaic-count-5 .hero-mosaic-item.is-main {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.hero-mosaic-item img,
.editorial-media img,
.editorial-gallery-item img,
.gallery-frame img,
.room-card-media img,
.room-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.36s ease;
}

.hero-mosaic-item:hover img,
.editorial-gallery-item:hover img,
.gallery-frame:hover img,
.room-card:hover .room-card-media img,
.room-gallery figure:hover img {
  transform: scale(1.05);
}

.hero-support-card,
.booking-widget-shell,
.trust-card,
.editorial-media,
.editorial-copy,
.experience-card,
.room-card,
.amenity-cluster,
.offer-card,
.destination-card,
.assurance-card,
.detail-panel,
.booking-card,
.contact-card,
.contact-form,
.map-card,
.policy-card,
.cta-banner,
.amenity-card,
.empty-state-premium {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-support-card {
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, rgba(var(--brand-primary-rgb), 0.34), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-support-card h3,
.hero-support-card p {
  color: #ffffff;
}

.hero-support-card p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-strip {
  position: relative;
  z-index: 5;
  margin-top: -58px;
}

.booking-widget-shell {
  padding: 24px;
  background: rgba(255, 251, 245, 0.92);
}

.booking-widget-head,
.section-head,
.footer-brand-card,
.booking-widget-foot,
.room-card-head,
.room-card-cta,
.cta-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.booking-widget-head h2,
.section-head h2 {
  margin-bottom: 0;
}

.booking-widget-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.booking-widget-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.22);
  background: var(--brand-primary-light);
  color: var(--brand-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.booking-widget-proof span i {
  font-size: 0.8rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.booking-form label,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f5b54;
}

.booking-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.92rem;
  border-radius: 12px;
  border: 1px solid #d8d3c9;
  background: #ffffff;
  color: var(--brand-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.booking-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(var(--brand-primary-rgb), 0.55);
  box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), 0.14);
}

.booking-submit {
  width: 100%;
}

.booking-widget-foot {
  margin-top: 16px;
  align-items: center;
  color: var(--brand-text-muted);
  font-size: 0.9rem;
}

.booking-widget-foot a {
  font-weight: 800;
  color: var(--brand-text);
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.trust-grid,
.amenity-cluster-grid,
.assurance-grid,
.offer-grid,
.room-grid,
.amenities-grid {
  display: grid;
  gap: 18px;
}

.trust-grid,
.assurance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.assurance-card,
.amenity-card {
  padding: 1.4rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card:hover,
.assurance-card:hover,
.amenity-cluster:hover,
.amenity-card:hover,
.detail-panel:hover,
.contact-card:hover,
.policy-card:hover,
.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(var(--brand-primary-rgb), 0.18);
}

.trust-card-icon,
.amenity-icon,
.assurance-card i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(var(--brand-primary-rgb), 0.18);
  color: color-mix(in srgb, var(--brand-primary-dark) 82%, #3d2b12 18%);
  font-size: 1.2rem;
}

.editorial-grid,
.destination-grid,
.contact-layout,
.policy-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 22px;
  align-items: start;
}

.editorial-grid-wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.editorial-media {
  overflow: hidden;
  min-height: 520px;
  padding: 12px;
}

.editorial-copy,
.experience-card,
.detail-panel,
.contact-card,
.policy-card {
  padding: clamp(1.45rem, 2vw, 2rem);
}

.experience-stack,
.contact-stack {
  display: grid;
  gap: 18px;
}

.experience-card-dark {
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.96), rgba(12, 15, 21, 0.98));
  color: #ffffff;
}

.experience-card-dark h3,
.experience-card-dark strong,
.experience-card-dark p {
  color: #ffffff;
}

.experience-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.detail-list p:last-child {
  margin-bottom: 0;
}

.experience-points,
.amenity-list,
.meta-pill-row {
  margin-top: 1.1rem;
}

.experience-points span,
.experience-points a,
.amenity-list span,
.meta-pill-row span,
.booking-reassurance span,
.room-amenities-inline span {
  background: var(--brand-primary-light);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.18);
  color: var(--brand-text);
}

.experience-points-stack {
  display: grid;
  gap: 10px;
}

.experience-points-stack a {
  justify-content: flex-start;
}

.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-grid-centered {
  justify-content: center;
}

.room-grid-centered.room-grid-count-1 {
  grid-template-columns: minmax(320px, 420px);
}

.room-grid-centered.room-grid-count-2 {
  grid-template-columns: repeat(2, minmax(320px, 420px));
}

.room-grid-full,
.room-grid-luxury {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(var(--brand-primary-rgb), 0.18);
}

.room-card-media {
  position: relative;
  aspect-ratio: 1.05 / 0.86;
  overflow: hidden;
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0.12), rgba(7, 11, 19, 0.74));
}

.room-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-media-link {
  align-self: flex-start;
  min-height: 36px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.room-card-body {
  padding: 1.3rem;
}

.room-card-head {
  align-items: flex-start;
  margin-bottom: 1rem;
}

.room-card-head p {
  margin-bottom: 0;
}

.room-price-panel {
  min-width: 100px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: var(--brand-primary-light);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.16);
  text-align: right;
}

.room-price-panel small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.room-price-panel strong {
  font-size: 1.25rem;
  color: var(--brand-text);
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.room-specs span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-surface-2);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  color: #4f4940;
}

.room-specs-large span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.room-amenities-inline span {
  margin-bottom: 1.1rem;
}

.room-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-cluster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amenity-cluster-grid-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amenity-cluster {
  padding: 1.5rem;
}

.amenities-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenities-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-gallery,
.gallery-mosaic {
  display: grid;
  gap: 14px;
}

.editorial-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-gallery-item,
.gallery-frame,
.room-gallery figure {
  overflow: hidden;
  border-radius: 20px;
  background: #d6d9de;
  box-shadow: var(--shadow-soft);
}

.editorial-gallery-item {
  min-height: 200px;
}

.editorial-gallery-item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}

.gallery-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-frame {
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

.gallery-frame:nth-child(5n + 1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(var(--brand-primary-rgb), 0.34), transparent 36%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-primary-dark) 28%, #131923 72%) 0%, #0c1119 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.offer-card h2,
.offer-card h3,
.offer-card p,
.offer-card small {
  color: #ffffff;
}

.offer-card p,
.offer-card small {
  color: rgba(255, 255, 255, 0.78);
}

.offer-card .button-primary {
  margin-top: 1rem;
}

.coupon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(var(--brand-primary-rgb), 0.16);
  color: #fff3dd;
  font-size: 0.8rem;
  font-weight: 800;
}

.destination-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
}

.destination-grid-expanded {
  align-items: stretch;
}

.destination-card,
.map-card {
  padding: 1.5rem;
}

.destination-card-list {
  display: grid;
  gap: 14px;
}

.destination-card-list article {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.destination-card-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.destination-card-list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.assurance-grid {
  margin-top: 1.2rem;
}

.assurance-card {
  padding: 1.4rem;
}

.assurance-card i {
  margin-bottom: 0.8rem;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy h1 {
  max-width: 13ch;
}

.room-spotlight .page-hero-copy h1 {
  max-width: 16ch;
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.room-detail-main {
  display: grid;
  gap: 18px;
}

.room-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-gallery-premium figure {
  aspect-ratio: 1 / 0.82;
  cursor: zoom-in;
}

.room-gallery-premium figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.detail-panel-soft {
  background: rgba(255, 255, 255, 0.68);
}

.booking-card {
  padding: 1.5rem;
}

.booking-card-sticky {
  position: sticky;
  top: 112px;
}

.booking-card-premium {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.98));
}

.booking-card .price {
  margin: 0.25rem 0 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-text);
}

.booking-card .price small {
  font-size: 0.82rem;
  color: var(--brand-text-muted);
}

.booking-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 1.2rem;
}

.policy-note {
  padding: 1.2rem 1.25rem;
  border-left: 3px solid var(--brand-primary);
  border-radius: 18px;
  background: var(--brand-primary-light);
}

.contact-layout-premium {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 1.15rem 0;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.contact-address {
  margin-top: 0.8rem;
}

.contact-form-premium {
  padding: clamp(1.45rem, 2vw, 2rem);
}

.form-head {
  margin-bottom: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.84rem;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}

.faq-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 1.15rem 1.2rem;
  background: transparent;
  border: 0;
  color: var(--brand-text);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: var(--brand-text-muted);
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 1.2rem;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

.policy-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.policy-card {
  min-height: 100%;
}

.prose p {
  color: #49443c;
}

.prose p:last-child {
  margin-bottom: 0;
}

.simple-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--brand-text-muted);
}

.simple-list li + li {
  margin-top: 0.45rem;
}

.cta-banner {
  padding: clamp(1.6rem, 2.5vw, 2.3rem);
  background:
    radial-gradient(circle at top right, rgba(var(--brand-primary-rgb), 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 236, 0.96));
}

.cta-banner h2 {
  max-width: 14ch;
}

.empty-state {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.empty-state-premium {
  padding: 2.2rem;
}

.flash.success {
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 138, 95, 0.18);
  background: #effcf5;
  color: #176445;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.35rem;
}

.gallery-filter button {
  min-height: 38px;
  padding: 0.55rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-text);
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gallery-filter button:hover,
.gallery-filter button.is-active {
  transform: translateY(-1px);
  border-color: rgba(var(--brand-primary-rgb), 0.3);
  background: var(--brand-primary-light);
  color: var(--brand-primary-dark);
}

[data-gallery-grid] [hidden] {
  display: none !important;
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 5rem;
  background:
    radial-gradient(circle at top center, rgba(var(--brand-primary-rgb), 0.24), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-primary-dark) 18%, #10161f 82%) 0%, #0a0f15 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer-top {
  margin-bottom: 1.25rem;
}

.footer-brand-card {
  padding: 1.3rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.footer-brand-card h3,
.footer-grid h4 {
  color: #ffffff;
}

.footer-brand-card p,
.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: auto;
  height: 62px;
  max-width: min(220px, 100%);
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 0.9fr;
  gap: 24px;
  padding-top: 1.2rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.55rem;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
}

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 55;
  display: none;
  background: rgba(11, 16, 22, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.24s ease;
}

.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.85rem 0.5rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta a:last-child {
  border-right: 0;
  background: var(--brand-primary);
  color: var(--brand-on-primary);
}

body.show-sticky-cta .sticky-cta {
  transform: translateY(0);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 54;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(22, 34, 22, 0.24);
}

.website-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(6, 10, 16, 0.88);
  backdrop-filter: blur(8px);
}

.website-lightbox-dialog {
  position: relative;
  width: min(1120px, 100%);
}

.website-lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
}

.website-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 18, 27, 0.76);
  color: #ffffff;
}

.reveal {
  opacity: 0;
  --parallax-shift: 0px;
  transform: translate3d(0, calc(18px + var(--parallax-shift)), 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-shift), 0);
}

[data-hero-parallax] {
  transition: transform 0.25s linear;
  will-change: transform;
}

@media (max-width: 1200px) {
  .hotel-hero-grid,
  .editorial-grid,
  .contact-layout,
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .hotel-hero-grid {
    align-items: center;
    padding-bottom: 52px;
  }

  .trust-grid,
  .assurance-grid,
  .amenity-cluster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav,
  .header-cta-wrap {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .booking-strip {
    margin-top: -36px;
  }

  .booking-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-detail-layout,
  .faq-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .booking-card-sticky {
    position: static;
  }

  .gallery-full,
  .editorial-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.website-body {
    overflow-x: hidden;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .site-shell,
  .narrow {
    width: calc(100vw - 28px);
  }

  .hotel-hero {
    min-height: auto;
  }

  .hotel-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 42px;
    gap: 24px;
  }

  .page-hero,
  .room-spotlight {
    min-height: auto;
  }

  .page-hero-overlay {
    position: relative;
    inset: auto;
    min-height: 100%;
  }

  .page-hero-inner,
  .room-spotlight-inner {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .hero-copy,
  .page-hero-copy p {
    font-size: 1rem;
  }

  .booking-widget-head,
  .section-head,
  .footer-brand-card,
  .booking-widget-foot,
  .contact-layout,
  .policy-layout,
  .faq-layout,
  .cta-banner,
  .room-card-head {
    flex-direction: column;
  }

  .section-head-actions {
    justify-items: start;
  }

  .hero-mosaic,
  .gallery-full,
  .room-gallery,
  .room-grid,
  .room-grid-full,
  .room-grid-luxury,
  .offer-grid,
  .amenities-grid.large,
  .amenities-grid.compact,
  .amenity-cluster-grid,
  .amenity-cluster-grid-full,
  .trust-grid,
  .assurance-grid,
  .form-grid,
  .editorial-gallery {
    grid-template-columns: 1fr;
  }

  .room-grid-centered.room-grid-count-1,
  .room-grid-centered.room-grid-count-2 {
    grid-template-columns: 1fr;
  }

  .contact-layout-premium {
    grid-template-columns: 1fr;
  }

  .contact-stack,
  .experience-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout > *,
  .contact-layout-premium > *,
  .destination-grid > *,
  .editorial-grid > *,
  .faq-layout > *,
  .policy-layout > *,
  .room-detail-layout > * {
    min-width: 0;
  }

  .hero-mosaic-item,
  .editorial-gallery-item,
  .gallery-frame,
  .room-gallery figure {
    min-height: 220px;
  }

  .hero-mosaic-item.is-main,
  .editorial-gallery-item.is-featured,
  .gallery-frame:nth-child(5n + 1),
  .room-gallery-premium figure:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 0.82;
  }

  .editorial-gallery-item.is-featured {
    min-height: 220px;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-submit {
    grid-column: 1 / -1;
  }

  .editorial-media {
    min-height: 320px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    justify-content: start;
  }

  .sticky-cta {
    display: flex;
  }

  .wa-float {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 80px;
  }

  .brand-logo {
    width: auto;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .booking-strip {
    margin-top: -24px;
  }

  .booking-widget-shell,
  .cta-banner,
  .contact-form-premium,
  .contact-card,
  .policy-card,
  .map-card,
  .hero-support-card,
  .booking-card,
  .detail-panel,
  .amenity-cluster,
  .trust-card,
  .assurance-card,
  .offer-card,
  .empty-state-premium,
  .experience-card {
    padding: 1.15rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-submit {
    grid-column: auto;
  }

  .mobile-menu {
    width: 100vw;
    padding: 20px;
  }

  .button-primary,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-cta .button-primary,
  .hero-cta .button-secondary,
  .hero-cta .button-ghost,
  .page-hero-actions .button-primary,
  .page-hero-actions .button-secondary,
  .page-hero-actions .button-ghost,
  .editorial-actions .button-secondary,
  .cta-banner-actions .button-primary,
  .cta-banner-actions .button-secondary,
  .mobile-menu-actions .button-primary,
  .mobile-menu-actions .button-secondary {
    width: 100%;
  }
}
