:root {
  --ink: #182027;
  --soft-ink: #536270;
  --paper: #f4f1ea;
  --surface: #fffdf8;
  --line: rgba(24, 32, 39, .12);
  --night: #102630;
  --sea: #0f7183;
  --sage: #7e8f73;
  --sun: #d98754;
  --shadow: 0 26px 80px rgba(16, 38, 48, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
  color: white;
  mix-blend-mode: difference;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.brand span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
  font-weight: 800;
}

nav a { padding: 8px 0; }

.nav-group {
  position: relative;
  padding: 8px 0;
}

.submenu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 18px 54px rgba(8, 18, 23, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}

.submenu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.submenu a:hover {
  background: #efe8dc;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-link {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: 100svh;
  padding: 112px clamp(18px, 5vw, 72px) 84px;
  overflow: hidden;
  background: var(--night);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(16, 38, 48, .94), rgba(16, 38, 48, .7) 38%, rgba(16, 38, 48, .16)),
    url("assets/images/booking/478553707.jpg") center/cover;
  opacity: .72;
}

.hero-copy,
.hero-stage,
.booking-panel { position: relative; z-index: 1; }

.hero-copy {
  align-self: center;
  max-width: 690px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1,
h2,
h3 { letter-spacing: 0; }

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .94;
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.button-primary { background: var(--sun); color: white; }
.button-ghost { border: 1px solid rgba(255, 255, 255, .46); color: white; }

.hero-stage {
  align-self: center;
  min-height: 660px;
}

.hero-main {
  width: min(620px, 100%);
  height: 76vh;
  min-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  width: min(280px, 42%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid rgba(255, 253, 248, .92);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
}

.hero-card.one { right: 2%; top: 7%; }
.hero-card.two { right: 12%; bottom: 2%; }

.booking-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  width: min(620px, calc(100vw - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(255, 253, 248, .12);
  backdrop-filter: blur(18px);
}

.score {
  display: block;
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
}

.booking-panel strong,
.booking-panel small { display: block; }
.booking-panel small { color: rgba(255, 255, 255, .7); }

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

dt {
  color: var(--sun);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

section {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.statement {
  display: grid;
  grid-template-columns: 220px minmax(0, 950px);
  gap: clamp(20px, 5vw, 80px);
  background: var(--surface);
}

.statement h2,
.section-title h2 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: 1.03;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.highlights article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 28px;
  background: var(--paper);
}

.highlights strong { font-size: 22px; }
.highlights span { color: var(--soft-ink); }

.rooms {
  background: var(--paper);
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 44px;
}

.section-title .muted,
.muted {
  max-width: 620px;
  color: var(--soft-ink);
  font-size: 17px;
}

.section-link {
  margin-top: 34px;
}

.page-topbar {
  color: var(--ink);
  mix-blend-mode: normal;
  background: rgba(244, 241, 234, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.page-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding-top: 140px;
  color: white;
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .88), rgba(16, 38, 48, .42)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.page-hero > div {
  max-width: 900px;
}

.page-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
}

.room-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .9), rgba(16, 38, 48, .38)),
    url("assets/images/booking/728875205.jpg") center/cover;
}

.apartment-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .86), rgba(16, 38, 48, .28)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.superior-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .86), rgba(16, 38, 48, .34)),
    url("assets/images/booking/907903078.jpg") center/cover;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .9), rgba(16, 38, 48, .4)),
    url("assets/images/booking/478553694.jpg") center/cover;
}

.rooms-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .88), rgba(16, 38, 48, .32)),
    url("assets/images/booking/728875205.jpg") center/cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .9), rgba(16, 38, 48, .36)),
    url("assets/images/booking/478553694.jpg") center/cover;
}

.area-hero {
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .88), rgba(16, 38, 48, .32)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  background: var(--surface);
}

.detail-layout h2,
.contact-copy h2,
.area-story h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

.detail-layout p,
.contact-copy p,
.area-story p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 18px;
}

.detail-facts {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  color: white;
  background: var(--night);
}

.detail-facts strong {
  font-size: 24px;
  line-height: 1.1;
}

.detail-facts span {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}

.gallery-grid-large {
  grid-auto-rows: 118px;
}

.contact-page {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  background: var(--surface);
}

.contact-card-large {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 420px;
  padding: 34px;
  border-radius: 8px;
  color: white;
  background: var(--sea);
}

.contact-card-large a {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-card-large span {
  color: rgba(255, 255, 255, .78);
}

.contact-line {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-line span {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-line a {
  font-size: clamp(20px, 2.2vw, 32px);
}

.booking-logo-link {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #003b95;
  color: white;
}

.booking-logo {
  color: white !important;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
}

.booking-logo-link small {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 750;
}

.contact-copy {
  align-self: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-ghost.dark {
  border-color: var(--line);
  color: var(--ink);
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.contact-checklist article {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 28px;
  background: var(--paper);
}

.contact-checklist strong {
  font-size: 24px;
}

.contact-checklist span {
  color: var(--soft-ink);
}

.area-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: var(--surface);
}

.area-story img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-grid article {
  display: grid;
  gap: 14px;
  padding: 14px 14px 24px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(16, 38, 48, .1);
}

.area-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.area-grid strong {
  padding: 0 10px;
  font-size: 24px;
}

.area-grid span {
  padding: 0 10px;
  color: var(--soft-ink);
}

.room-list {
  display: grid;
  gap: 90px;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.room-card:nth-child(even) .room-gallery {
  order: 2;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 14px;
}

.room-gallery button,
.gallery-grid button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.room-gallery img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 38, 48, .14);
}

.room-gallery > button:first-child img {
  aspect-ratio: 4 / 5;
}

.room-side {
  display: grid;
  gap: 14px;
}

.room-side img { aspect-ratio: 4 / 3; }

.room-copy {
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.room-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.room-lead-link img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.premium-room-card:nth-child(even) .room-lead-link {
  order: 2;
}

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

.room-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--night);
  background: #ece5d8;
  font-size: 13px;
  font-weight: 900;
}

.room-copy p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: 17px;
}

.room-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin-top: 24px;
}

.room-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-wrap {
  background: var(--surface);
}

.gallery-teaser {
  background: var(--surface);
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.gallery-preview button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

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

.gallery-grid button {
  aspect-ratio: 1;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  background: var(--night);
  color: white;
}

.map-panel,
.contact-panel {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.map-panel {
  background:
    linear-gradient(rgba(16, 38, 48, .15), rgba(16, 38, 48, .72)),
    url("assets/images/booking/478553694.jpg") center/cover;
}

.map-panel span {
  color: var(--sun);
  font-weight: 950;
  text-transform: uppercase;
}

.map-panel strong {
  font-size: clamp(34px, 5vw, 72px);
  line-height: .96;
}

.map-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.contact-panel {
  background: var(--sea);
}

.contact-panel a {
  font-size: 25px;
  font-weight: 950;
}

.contact-panel small {
  color: rgba(255, 255, 255, .76);
}

.lightbox {
  width: min(1080px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #0b171d;
  color: white;
}

.lightbox::backdrop { background: rgba(4, 10, 14, .86); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 14px 18px 18px; }

#lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, .58);
  font-size: 28px;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, .52);
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox-arrow.prev { left: 12px; }
.lightbox-arrow.next { right: 12px; }

.rooms-overview-wrap {
  background: var(--surface);
}

.rooms-overview {
  display: grid;
  gap: 18px;
}

.overview-room {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
}

.overview-room img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.overview-room h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.02;
}

.overview-room p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 17px;
}

.admin-body {
  background: var(--surface);
}

.admin-hero {
  min-height: 48svh;
  display: grid;
  align-items: end;
  padding-top: 128px;
  color: white;
  background:
    linear-gradient(90deg, rgba(16, 38, 48, .92), rgba(16, 38, 48, .5)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.admin-hero h1 {
  font-size: clamp(38px, 5vw, 72px);
}

.admin-panel {
  background: var(--surface);
}

.admin-login,
#admin-form {
  display: grid;
  gap: 22px;
}

.admin-login[hidden],
#admin-form[hidden] {
  display: none;
}

.admin-login {
  max-width: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.admin-panel label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-weight: 800;
}

.admin-panel input,
.admin-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.admin-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-room {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
}

.admin-room legend {
  padding: 0 8px;
  font-weight: 950;
}

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

.admin-photo {
  position: relative;
  cursor: pointer;
}

.admin-photo input {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  accent-color: var(--sea);
}

.admin-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid transparent;
  border-radius: 8px;
}

.admin-photo input:checked + img {
  border-color: var(--sea);
}

.admin-photo-manager {
  display: grid;
  gap: 18px;
}

.admin-photo-manager h3 {
  margin: 8px 0 0;
  font-size: 18px;
}

.admin-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.admin-library-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 10px;
}

.admin-media-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.admin-media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.admin-media-card span {
  min-width: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  word-break: break-word;
}

.admin-media-card small {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 800;
}

.admin-media-delete {
  border: 1px solid #f1c3b8;
  border-radius: 7px;
  padding: 7px 8px;
  color: #8e2b1f;
  background: #fff1ee;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-selected-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px;
}

.admin-selected-photo {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: grab;
}

.admin-selected-photo.dragging {
  opacity: .55;
  outline: 2px solid var(--sea);
}

.admin-selected-photo:active {
  cursor: grabbing;
}

.admin-selected-photo img,
.admin-available-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.admin-selected-photo span {
  min-width: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  word-break: break-word;
}

.admin-photo-remove,
.admin-available-photo {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f7fbfc;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.admin-photo-remove {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  padding: 0;
  color: white;
  background: rgba(16, 38, 48, .82);
}

.admin-available-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.admin-available-photo {
  display: grid;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
}

.admin-available-photo span {
  min-width: 0;
  font-size: 10px;
  font-weight: 800;
  word-break: break-word;
}

.admin-available-photo b {
  font-size: 11px;
}

.admin-footer-link {
  opacity: .55;
  font-size: 12px;
}

.admin-save-row {
  position: sticky;
  bottom: 18px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(14px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .74);
  background: #081217;
}

@media (max-width: 1040px) {
  .topbar { position: absolute; mix-blend-mode: normal; }
  nav { gap: 12px; font-size: 13px; }
  .submenu { left: auto; right: 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-stage { min-height: 560px; }
  .hero-main { height: 560px; min-height: 0; }
  .booking-panel { position: relative; inset: auto; width: 100%; margin-top: 24px; }
  .statement,
  .highlights,
  .location,
  .detail-layout,
  .contact-page,
  .area-story,
  .overview-room { grid-template-columns: 1fr 1fr; }
  .room-card,
  .room-card:nth-child(even) .room-gallery { grid-template-columns: 1fr; order: initial; }
  .premium-room-card:nth-child(even) .room-lead-link { order: initial; }
}

@media (max-width: 680px) {
  .topbar { padding: 14px 16px; }
  .brand strong { display: none; }
  nav {
    max-width: calc(100vw - 86px);
    gap: 8px 12px;
    font-size: 12px;
  }
  nav a { padding: 5px 0; }
  .call-link { padding: 6px 10px; }
  .submenu {
    position: fixed;
    top: 58px;
    left: 12px;
    right: 12px;
    width: auto;
  }
  .hero { padding: 92px 18px 44px; }
  h1 { font-size: 50px; }
  .hero-stage { min-height: 430px; }
  .hero-main { width: 78%; height: 430px; }
  .hero-card { border-width: 6px; }
  .hero-card.one { right: 0; top: 14%; }
  .hero-card.two { right: 5%; bottom: 4%; }
  .booking-panel,
  dl,
  .statement,
  .highlights,
  .location,
  .detail-layout,
  .contact-page,
  .contact-checklist,
  .area-story,
  .area-grid,
  .overview-room { grid-template-columns: 1fr; }
  .page-hero { min-height: 66svh; padding-top: 112px; }
  .page-hero h1 { font-size: 48px; }
  .detail-facts { position: static; }
  section { padding: 58px 18px; }
  .room-list { gap: 58px; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-side { grid-template-columns: 1fr 1fr; }
  .room-copy { padding: 24px; }
  .room-strip { grid-template-columns: repeat(4, 1fr); }
  .gallery-preview { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid button,
  .gallery-grid button:nth-child(n) { grid-column: auto; grid-row: auto; }
  .lightbox-arrow { width: 42px; height: 50px; font-size: 34px; }
  .admin-gallery { grid-template-columns: repeat(3, 1fr); }
  .admin-selected-photo {
    padding: 8px;
  }
  .admin-available-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .admin-upload-row {
    grid-template-columns: 1fr;
  }
  footer { display: grid; }
}

/* GPT-5.6 reference direction */
:root {
  --ink: #0d2238;
  --soft-ink: #677587;
  --paper: #fbfdfd;
  --surface: #fff;
  --line: #dfe8eb;
  --night: #071a2a;
  --sea: #0b819d;
  --sea-2: #38b7c8;
  --sage: #7e8f73;
  --sun: #ee9b51;
  --sand: #f4efe6;
  --shadow: 0 24px 70px rgba(13, 34, 56, .12);
}

body {
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

.topbar {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 50;
  padding: 0 clamp(13px, 4vw, 40px);
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(13, 34, 56, .08);
  backdrop-filter: blur(14px);
  mix-blend-mode: normal;
  min-height: 84px;
}

.brand {
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(145deg, var(--sea-2), var(--sea));
  color: white;
  font-size: 18px;
}

nav {
  gap: 24px;
  color: var(--ink);
  font-weight: 750;
}

.call-link,
.button {
  border-radius: 999px;
}

.call-link,
.button-primary {
  border-color: transparent;
  background: var(--sea);
  color: white;
  box-shadow: 0 10px 30px rgba(11, 129, 157, .25);
}

.button-primary:hover,
.call-link:hover {
  background: #086e87;
}

.button-ghost {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .09);
}

.button-ghost.dark {
  border-color: var(--line);
  color: var(--ink);
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: end;
  min-height: 78svh;
  padding: 120px clamp(20px, calc((100vw - 1180px) / 2), 72px) 72px;
  background: var(--night);
}

.hero::before {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(8, 24, 39, .18), rgba(8, 24, 39, .72)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
}

.hero-copy {
  align-self: end;
  max-width: 860px;
}

.hero-stage {
  display: none;
}

.booking-panel {
  position: relative;
  inset: auto;
  grid-column: 1;
  width: min(100%, 780px);
  margin-top: 38px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .12);
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .9);
}

section {
  padding: 96px clamp(20px, calc((100vw - 1180px) / 2), 72px);
}

.statement,
.gallery-teaser,
.rooms-overview-wrap,
.detail-layout,
.contact-page,
.area-story,
.gallery-wrap,
.admin-panel {
  background: var(--surface);
}

.statement {
  grid-template-columns: minmax(0, 1fr) minmax(0, .75fr);
  gap: 40px;
  align-items: center;
}

.statement-image {
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.statement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-copy {
  max-width: 640px;
}

.statement-copy p:not(.kicker) {
  color: var(--soft-ink);
  font-size: 18px;
}

.statement h2,
.section-title h2,
.detail-layout h2,
.contact-copy h2,
.area-story h2 {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.statement .kicker,
.section-title .kicker {
  color: var(--sea);
}

.highlights {
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.highlights article {
  min-height: 150px;
  justify-content: start;
  padding: 27px;
  background: white;
}

.highlights strong {
  color: var(--ink);
  font-size: 23px;
}

.room-list {
  gap: 22px;
}

.room-card,
.overview-room {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 14px 45px rgba(13, 34, 56, .07);
  overflow: hidden;
  transition: .25s;
}

.room-card:hover,
.overview-room:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.premium-room-card {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 0;
}

.room-lead-link img {
  height: 100%;
  min-height: 460px;
  border-radius: 0;
  box-shadow: none;
}

.room-copy {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.room-copy h3,
.overview-room h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0;
}

.room-meta span {
  background: #eef9fa;
  color: var(--ink);
}

.room-strip {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-preview {
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-template-rows: 260px 260px;
}

.gallery-preview button {
  overflow: hidden;
  border-radius: 22px;
}

.gallery-preview button:first-child {
  grid-row: 1 / 3;
}

.gallery-preview img {
  height: 100%;
  border-radius: 0;
  transition: .35s;
}

.gallery-preview button:hover img {
  transform: scale(1.03);
}

.page-hero {
  min-height: auto;
  padding-top: 135px;
  padding-bottom: 65px;
  color: var(--ink);
  background: linear-gradient(180deg, #eef9fa, #fbfdfd);
}

.page-hero h1 {
  font-size: clamp(45px, 6vw, 86px);
}

.page-hero .lead,
.page-hero p {
  color: var(--soft-ink);
}

.room-hero,
.apartment-hero,
.superior-hero,
.gallery-hero,
.contact-hero,
.area-hero,
.rooms-hero {
  min-height: 68svh;
  color: white;
  background-size: cover;
  background-position: center;
}

.rooms-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .12), rgba(4, 19, 31, .72)),
    url("assets/images/booking/728875205.jpg") center/cover;
}

.gallery-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .08), rgba(4, 19, 31, .75)),
    url("assets/images/booking/478553694.jpg") center/cover;
}

.contact-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .08), rgba(4, 19, 31, .75)),
    url("assets/images/booking/478553694.jpg") center/cover;
}

.area-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .08), rgba(4, 19, 31, .75)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.room-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .08), rgba(4, 19, 31, .75)),
    url("assets/images/booking/728875205.jpg") center/cover;
}

.apartment-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .08), rgba(4, 19, 31, .75)),
    url("assets/images/booking/478553707.jpg") center/cover;
}

.superior-hero {
  background:
    linear-gradient(180deg, rgba(4, 19, 31, .08), rgba(4, 19, 31, .75)),
    url("assets/images/booking/907903078.jpg") center/cover;
}

.room-hero .lead,
.apartment-hero .lead,
.superior-hero .lead,
.gallery-hero .lead,
.contact-hero .lead,
.area-hero .lead,
.rooms-hero .lead {
  color: rgba(255, 255, 255, .9);
}

.detail-facts,
.contact-card-large {
  border-radius: 24px;
  background: var(--night);
}

.detail-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: 52px;
  align-items: start;
}

.detail-layout > * {
  min-width: 0;
  max-width: 100%;
}

.detail-layout > .detail-facts {
  order: 2;
}

.detail-layout > div {
  order: 1;
}

.detail-layout > div::after {
  content: "";
  display: block;
  width: min(100%, 620px);
  height: 1px;
  margin-top: 32px;
  background: var(--line);
}

.detail-facts {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: 30px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-facts .kicker {
  color: var(--sea);
}

.detail-facts h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.12;
}

.detail-facts .button {
  width: 100%;
}

.detail-facts .button-ghost.dark {
  color: var(--ink);
}

.info-list {
  display: grid;
  gap: 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-row span {
  color: var(--soft-ink);
}

.info-row b {
  text-align: right;
}

.room-fact-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}

.room-fact-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: #415062;
  background: #fbfdfd;
  font-size: 13px;
  font-weight: 750;
}

.detail-layout p[data-room-description] {
  color: #415062;
  font-size: 19px;
  line-height: 1.75;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbfc;
}

.language-switch button {
  min-width: 34px;
  border: 0;
  border-radius: 999px;
  padding: 6px 8px;
  color: var(--soft-ink);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.language-switch button.active {
  color: white;
  background: var(--sea);
}

.reviews-section {
  background: var(--surface);
}

.reviews-section .section-title h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.1vw, 46px);
}

.review-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.google-source-card,
.guest-review-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: white;
  box-shadow: 0 14px 45px rgba(13, 34, 56, .07);
}

.google-source-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(245, 250, 248, .96)),
    radial-gradient(circle at 18% 8%, rgba(31, 111, 137, .16), transparent 34%);
}

.google-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: var(--sea);
  font-size: 30px;
  font-weight: 900;
}

.google-source-card strong,
.google-source-card small {
  display: block;
}

.google-source-card strong {
  margin-top: 72px;
  font-size: 26px;
  letter-spacing: 0;
}

.google-source-card small,
.guest-review-card p {
  color: var(--soft-ink);
}

.text-link {
  width: fit-content;
  margin-top: 24px;
  color: var(--sea);
  font-weight: 850;
  text-decoration: none;
}

.review-card-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guest-review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 238px;
}

.guest-review-card span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--sea);
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.guest-review-card strong {
  font-size: 22px;
  line-height: 1.18;
}

.review-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.contact-form-section {
  background: var(--surface);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #ccdadd;
  border-radius: 13px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdfd;
  font: inherit;
}

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

.map-section {
  background: var(--paper);
}

.map-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: min(58vh, 520px);
  min-height: 360px;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.gallery-grid button,
.gallery-grid button:nth-child(n) {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-grid img {
  border-radius: 0;
  box-shadow: none;
}

body[data-gallery-page="true"] .gallery-grid button {
  background: #f7fbfc;
}

body[data-gallery-page="true"] .gallery-grid img {
  object-fit: contain;
  padding: 6px;
}

.area-grid article,
.contact-checklist article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 45px rgba(13, 34, 56, .06);
}

.location {
  background: var(--night);
}

.map-panel,
.contact-panel {
  border-radius: 28px;
}

footer {
  background: var(--night);
}

@media (max-width: 900px) {
  .topbar {
    position: sticky;
  }

  nav {
    gap: 12px;
  }

  .statement,
  .premium-room-card,
  .overview-room,
  .detail-layout,
  .contact-page,
  .area-story,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .google-source-card {
    min-height: 280px;
  }

  .google-source-card strong {
    margin-top: 42px;
  }

  .review-card-stack {
    grid-template-columns: 1fr;
  }

  .highlights {
    width: min(100% - 26px, 1180px);
    grid-template-columns: repeat(2, 1fr);
  }

  .room-lead-link img {
    min-height: 340px;
  }

  .statement-image {
    min-height: 420px;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 190px;
  }

  .gallery-preview button:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 580px) {
  .topbar {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    font-size: 0;
  }

  nav {
    max-width: calc(100vw - 76px);
    font-size: 12px;
  }

  .language-switch {
    order: 5;
  }

  .hero {
    min-height: 76svh;
    padding: 86px 13px 50px;
  }

  .booking-panel,
  dl,
  .highlights,
  .area-grid,
  .contact-checklist {
    grid-template-columns: 1fr;
  }

  .statement-image {
    min-height: 320px;
    border-radius: 24px;
  }

  .gallery-preview {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 180px 180px;
  }

  .gallery-preview button:first-child {
    grid-column: auto;
  }

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

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

}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .topbar {
    position: sticky;
    min-height: 66px;
    padding: 12px 16px;
  }

  .topbar .brand {
    position: relative;
    z-index: 61;
    gap: 9px;
    max-width: calc(100vw - 82px);
    font-size: 15px;
  }

  .topbar .brand strong {
    display: inline;
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 0;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 61;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    box-shadow: 0 8px 24px rgba(13, 34, 56, .08);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform .18s ease, opacity .18s ease;
  }

  .topbar.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .topbar nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 60;
    display: none;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 70px rgba(13, 34, 56, .18);
    backdrop-filter: blur(18px);
    font-size: 15px;
  }

  .topbar.menu-open nav {
    display: grid;
  }

  .topbar nav a,
  .topbar .nav-group {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .topbar nav a:hover {
    background: #f1f7f8;
  }

  .topbar .nav-group {
    display: grid;
    gap: 7px;
    padding-bottom: 8px;
  }

  .topbar .submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .topbar .submenu a {
    padding: 8px 10px;
    color: var(--soft-ink);
    font-size: 13px;
  }

  .topbar .call-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
  }

  .topbar .language-switch {
    justify-self: start;
    order: initial;
    margin: 4px 0 0 12px;
  }
}

body[data-gallery-page="true"] .gallery-grid {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: start;
}

body[data-gallery-page="true"] .gallery-grid button,
body[data-gallery-page="true"] .gallery-grid button:nth-child(n) {
  display: block;
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 18px;
  background: #f7fbfc;
}

body[data-gallery-page="true"] .gallery-grid img,
body[data-gallery-page="true"] .gallery-grid button:nth-child(n) img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0;
  border-radius: 18px;
}

@media (max-width: 680px) {
  body[data-gallery-page="true"] .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
