:root {
  --hotel-bg: #07152f;
  --hotel-bg-soft: #10295a;
  --hotel-panel: rgba(8, 21, 45, 0.62);
  --hotel-panel-light: rgba(255, 255, 255, 0.88);
  --hotel-text: #f7fbff;
  --hotel-text-dark: #0f2147;
  --hotel-muted: rgba(240, 246, 255, 0.8);
  --hotel-muted-dark: #5f7298;
  --hotel-line: rgba(120, 184, 255, 0.18);
  --hotel-blue: #4bb8ff;
  --hotel-blue-strong: #156eff;
  --hotel-pink: #ff4796;
  --hotel-warm: #ffc278;
  --hotel-shadow: 0 30px 88px rgba(3, 12, 28, 0.42);
  --hotel-shadow-soft: 0 18px 46px rgba(10, 25, 55, 0.28);
  --hotel-radius-xl: 40px;
  --hotel-radius-lg: 30px;
  --hotel-radius-md: 22px;
  --hotel-max: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--hotel-text);
  background:
    radial-gradient(circle at top left, rgba(75, 184, 255, 0.26), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(255, 71, 150, 0.2), transparent 20%),
    radial-gradient(circle at 80% 58%, rgba(255, 194, 120, 0.12), transparent 20%),
    linear-gradient(180deg, #061226 0%, #081937 28%, #0a2147 56%, #07152f 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(21, 110, 255, 0.12), transparent 34%),
    linear-gradient(320deg, rgba(255, 71, 150, 0.08), transparent 32%);
  pointer-events: none;
  z-index: -2;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(197, 228, 255, 0.9);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

section[id] {
  scroll-margin-top: 110px;
}

.hotel-container {
  width: min(calc(100% - 36px), var(--hotel-max));
  margin-inline: auto;
}

.hotel-topbar {
  position: sticky;
  top: 18px;
  z-index: 60;
  width: min(calc(100% - 36px), var(--hotel-max));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(6, 18, 38, 0.7);
  border: 1px solid rgba(122, 186, 255, 0.2);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 16px 40px rgba(3, 10, 22, 0.24);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  transform: translateZ(0);
  will-change: background, border-color, box-shadow;
}

.hotel-topbar.is-scrolled {
  background: rgba(6, 18, 38, 0.88);
  border-color: rgba(160, 214, 255, 0.28);
  box-shadow: 0 20px 48px rgba(2, 9, 20, 0.4);
}

.hotel-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease;
}

.hotel-brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 7px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(75, 184, 255, 0.24), transparent 48%),
    linear-gradient(135deg, rgba(21, 110, 255, 0.2), rgba(255, 71, 150, 0.14));
  border: 1px solid rgba(182, 219, 255, 0.16);
  box-shadow: 0 16px 34px rgba(21, 110, 255, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(21, 110, 255, 0.18));
}

.hotel-brand-copy {
  display: flex;
  align-items: center;
}

.hotel-brand-copy strong,
.hotel-nav a,
.hotel-button,
.story-index,
.highlight-index,
.gallery-caption strong,
.hotel-lightbox-close,
.hotel-pill,
.note-label {
  font-weight: 800;
}

.hotel-brand-copy strong,
.hotel-title,
.hotel-section-title,
.story-copy h2,
.statement-copy h2 {
  font-family: "Sora", sans-serif;
}

.hotel-brand-wordmark {
  display: block;
  width: clamp(132px, 11vw, 182px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hotel-nav a,
.hotel-subtitle,
.story-copy p,
.highlight-card p,
.hero-note p,
.hotel-compare-copy p,
.cta-text,
.gallery-caption small,
.hotel-lightbox figcaption p {
  color: var(--hotel-muted);
}

.hotel-brand:hover {
  transform: translateY(-1px);
}

.hotel-brand:hover .hotel-brand-mark,
.hotel-brand:focus-visible .hotel-brand-mark {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 40px rgba(21, 110, 255, 0.28);
}

.hotel-brand:hover .hotel-brand-wordmark,
.hotel-brand:focus-visible .hotel-brand-wordmark {
  transform: translateX(2px);
  filter: brightness(0) invert(1) drop-shadow(0 6px 12px rgba(75, 184, 255, 0.16));
}

.hotel-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.hotel-nav a {
  font-size: 0.94rem;
}

.hotel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hotel-button:hover,
.hotel-button:focus-visible,
.gallery-card:hover,
.gallery-card:focus-visible,
.highlight-card:hover {
  transform: translateY(-3px);
}

.hotel-button {
  color: white;
  background: #175de0;
  box-shadow: 0 14px 30px rgba(21, 110, 255, 0.18);
}

.hotel-button-secondary,
.hotel-button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(182, 219, 255, 0.22);
  box-shadow: 0 10px 24px rgba(2, 9, 20, 0.12);
}

.cta-actions .hotel-button-secondary {
  color: var(--hotel-text-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(182, 219, 255, 0.28);
}

.cta-actions .hotel-button-secondary:hover,
.cta-actions .hotel-button-secondary:focus-visible {
  color: var(--hotel-text-dark);
  background: rgba(255, 255, 255, 0.96);
}

.hotel-button-secondary:hover,
.hotel-button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hotel-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hotel-social-button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(182, 219, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #f5f9ff;
  box-shadow: 0 12px 28px rgba(2, 9, 20, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hotel-social-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hotel-social-button:hover,
.hotel-social-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 30px rgba(2, 9, 20, 0.22);
}

.hotel-eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d8ebff;
}

.hotel-section-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.08;
}

.hotel-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0 90px;
}

.hero-media,
.story-media,
.statement-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.story-media img,
.statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 28, 0.9) 0%, rgba(5, 14, 30, 0.58) 44%, rgba(7, 18, 38, 0.24) 100%),
    linear-gradient(180deg, rgba(6, 17, 35, 0.22), rgba(5, 16, 34, 0.7));
}

.hero-glow,
.statement-overlay {
  position: absolute;
  pointer-events: none;
}

.hero-glow-a {
  top: 14%;
  right: 14%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 166, 0.32), transparent 68%);
  filter: blur(14px);
}

.hero-glow-b {
  bottom: 8%;
  left: 6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 166, 255, 0.28), transparent 66%);
  filter: blur(10px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: end;
}

.hero-copy {
  max-width: 680px;
}

.hotel-title {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hotel-subtitle {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.78;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-float-grid {
  display: grid;
  gap: 16px;
}

.hero-note {
  padding: 20px;
  border-radius: 26px;
  background: rgba(7, 19, 38, 0.54);
  border: 1px solid rgba(190, 226, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--hotel-shadow-soft);
}

.hero-note strong,
.hotel-compare-copy h3,
.highlight-card h3,
.gallery-caption strong,
.hotel-lightbox figcaption strong {
  font-size: 1.08rem;
  line-height: 1.5;
}

.note-label,
.metric-value,
.story-index,
.highlight-index,
.hotel-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(182, 219, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #dbeeff;
}

.hero-note-image {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  touch-action: manipulation;
}

.hero-note-image img {
  height: 132px;
  object-fit: cover;
  border-radius: 20px;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.hero-note p,
.hero-note strong {
  margin: 0;
}

.hero-note-metrics {
  display: grid;
  gap: 16px;
}

.metric-value {
  margin-bottom: 12px;
  color: #ffe6c9;
  border-color: rgba(255, 220, 184, 0.18);
}

.hero-scroll-cue {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 36px), var(--hotel-max));
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 250, 255, 0.78);
}

.hero-scroll-cue span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(182, 219, 255, 0.2);
  position: relative;
}

.hero-scroll-cue span::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: translateX(-50%) rotate(45deg);
}

.story-overview,
.compare-header,
.gallery-header,
.highlights-intro {
  padding: 90px 0 28px;
}

.story-panel {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.story-panel-alt .story-overlay {
  background:
    linear-gradient(180deg, rgba(6, 18, 38, 0.14), rgba(5, 17, 35, 0.78)),
    linear-gradient(90deg, rgba(4, 12, 28, 0.34), rgba(4, 12, 28, 0.12));
}

.story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 28, 0.16), rgba(4, 12, 28, 0.76)),
    linear-gradient(90deg, rgba(4, 12, 28, 0.56), rgba(4, 12, 28, 0.16));
}

.story-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 76px;
  max-width: 660px;
}

.story-copy h2,
.statement-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.story-copy p {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hotel-compare {
  position: relative;
  padding: 22px 0 100px;
}

.hotel-compare::before,
.hotel-highlights::before,
.hotel-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(240, 246, 255, 0.94)),
    radial-gradient(circle at top right, rgba(95, 166, 255, 0.18), transparent 22%);
  z-index: -1;
}

.hotel-compare .hotel-section-title,
.hotel-highlights .hotel-section-title,
.hotel-cta .hotel-section-title {
  color: var(--hotel-text-dark);
}

.hotel-compare .hotel-eyebrow,
.hotel-highlights .hotel-eyebrow,
.hotel-cta .hotel-eyebrow {
  color: var(--hotel-blue-strong);
}

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

.hotel-compare-card,
.highlight-card,
.cta-panel {
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(80, 130, 214, 0.14);
  box-shadow: 0 22px 54px rgba(63, 107, 184, 0.12);
}

.hotel-compare-card {
  display: grid;
  gap: 18px;
}

.hotel-compare-stage {
  position: relative;
  --position: 50%;
  --base-filter: saturate(0.74) brightness(0.84) contrast(0.88);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 26px;
  background: #dbeafe;
  transition: box-shadow 0.32s ease, transform 0.32s ease;
  touch-action: manipulation;
}

.hotel-compare-base,
.hotel-compare-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.hotel-compare-base {
  filter: var(--base-filter);
}

.hotel-compare-overlay {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
  z-index: 1;
}

.hotel-compare-labels {
  position: absolute;
  inset: 16px 16px auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
  pointer-events: none;
}

.hotel-compare-labels span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(86, 127, 206, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 33, 71, 0.76);
}

.hotel-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 3;
}

.hotel-compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--hotel-blue-strong) 0%, var(--hotel-blue) 50%, var(--hotel-pink) 100%);
  box-shadow: 0 18px 36px rgba(43, 106, 210, 0.22);
}

.hotel-compare-divider span::before,
.hotel-compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.hotel-compare-divider span::before {
  left: 16px;
  transform: translateY(-50%) rotate(-135deg);
}

.hotel-compare-divider span::after {
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.hotel-compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.hotel-compare-copy {
  display: grid;
  gap: 10px;
}

.hotel-compare-copy h3,
.highlight-card h3 {
  margin: 0;
  color: var(--hotel-text-dark);
  font-size: 1.18rem;
  line-height: 1.4;
}

.hotel-compare-copy p,
.highlight-card p,
.cta-text {
  margin: 0;
  color: var(--hotel-muted-dark);
  line-height: 1.75;
}

.hotel-pill,
.highlight-index {
  color: var(--hotel-blue-strong);
  background: rgba(47, 125, 255, 0.08);
  border-color: rgba(47, 125, 255, 0.1);
}

.hotel-gallery {
  padding: 24px 0 110px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 300px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--hotel-shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
  backface-visibility: hidden;
  touch-action: manipulation;
}

.gallery-card-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 620px;
}

.gallery-card-wide {
  grid-column: span 8;
  min-height: 340px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 37, 0.06), rgba(7, 18, 38, 0.82));
}

.gallery-card:is(:hover, :focus-visible, .is-pressed) img {
  transform: scale(1.07);
}

.hero-note-image:is(:hover, .is-pressed) img,
.hotel-compare-stage:is(:hover, .is-pressed) .hotel-compare-base,
.hotel-compare-stage:is(:hover, .is-pressed) .hotel-compare-overlay img {
  transform: scale(1.05);
}

.hotel-compare-stage:is(:hover, .is-pressed) {
  box-shadow: 0 22px 50px rgba(43, 106, 210, 0.18);
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(6, 18, 38, 0.54);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-caption small {
  font-size: 0.82rem;
}

.hotel-highlights {
  position: relative;
  padding: 12px 0 110px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.highlight-card:hover {
  box-shadow: 0 26px 56px rgba(63, 107, 184, 0.16);
}

.hotel-statement {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.statement-overlay {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 28, 0.44), rgba(4, 12, 28, 0.76)),
    radial-gradient(circle at top left, rgba(255, 90, 166, 0.24), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(95, 166, 255, 0.22), transparent 26%);
}

.statement-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.statement-line {
  display: block;
}

.hotel-cta {
  position: relative;
  padding: 110px 0 120px;
}

.cta-panel {
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
  padding: 44px 32px;
}

.cta-text {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 1.04rem;
}

.cta-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hotel-lightbox[hidden] {
  display: none;
}

.hotel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.hotel-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hotel-lightbox-figure {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), 1120px);
  margin: 0;
  display: grid;
  gap: 18px;
}

.hotel-lightbox-figure img {
  max-height: 76vh;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 36px 80px rgba(2, 8, 20, 0.34);
}

.hotel-lightbox figcaption {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(8, 21, 45, 0.76);
  border: 1px solid rgba(182, 219, 255, 0.14);
}

.hotel-lightbox figcaption strong {
  display: block;
}

.hotel-lightbox figcaption p {
  margin: 10px 0 0;
}

.hotel-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .hero-layout,
  .hotel-compare-grid,
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout {
    align-items: start;
  }

  .gallery-card,
  .gallery-card-wide {
    grid-column: span 6;
  }

  .gallery-card-large {
    grid-column: span 12;
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .hotel-topbar {
    top: 10px;
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .hotel-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hotel-brand {
    width: 100%;
    justify-content: center;
  }

  .hotel-brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .hotel-brand-wordmark {
    width: clamp(118px, 34vw, 158px);
  }

  .hotel-nav-actions {
    width: 100%;
    justify-content: center;
  }

  .hotel-button-ghost {
    width: 100%;
  }

  .hero-layout,
  .hotel-compare-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hotel-hero {
    padding-top: 132px;
  }

  .hero-note-image {
    grid-template-columns: 96px 1fr;
  }

  .story-panel {
    min-height: 82vh;
  }

  .story-copy {
    padding-bottom: 42px;
  }

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

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide {
    grid-column: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hotel-container,
  .hotel-topbar {
    width: min(calc(100% - 24px), var(--hotel-max));
  }

  .hotel-title {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .hotel-subtitle,
  .story-copy p {
    font-size: 1rem;
  }

  .story-overview,
  .compare-header,
  .gallery-header,
  .highlights-intro {
    padding-top: 72px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide {
    min-height: 280px;
  }

  .hotel-compare-card,
  .highlight-card,
  .cta-panel {
    padding: 20px;
  }

  .hotel-compare-stage {
    aspect-ratio: 4 / 3;
  }

  .hotel-lightbox-figure {
    width: min(calc(100% - 20px), 1120px);
  }

  .hotel-lightbox-close {
    top: 12px;
    right: 12px;
  }
}
