:root {
  color-scheme: light;
  --navy-950: #04152d;
  --navy-900: #07254d;
  --navy-800: #0a376f;
  --blue-600: #1268c8;
  --blue-100: #dceafb;
  --blue-50: #f3f7fc;
  --gold-500: #c59a4a;
  --gold-300: #e1c586;
  --gold-100: #f7ecd5;
  --ink: #12243e;
  --muted: #687990;
  --line: #dbe5ef;
  --white: #fff;
  --shadow: 0 28px 80px rgba(6, 38, 78, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue-50);
}

body::before {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  content: "";
}

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

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

button,
select,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hotel-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(20px, 5vw, 76px);
  color: var(--white);
  background: rgba(4, 21, 45, 0.94);
  border-bottom: 1px solid rgba(225, 197, 134, 0.26);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wordmark-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(145deg, #f3dfae, var(--gold-500));
  border-radius: 3px 15px 3px 3px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 800;
}

.wordmark-copy {
  display: grid;
  gap: 2px;
}

.wordmark-copy strong {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.wordmark-copy small {
  color: #9fb4cc;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-nav > a {
  color: #ccdae9;
  font-size: 12px;
  font-weight: 700;
}

.header-nav > a:hover {
  color: var(--gold-300);
}

.property-switcher {
  position: relative;
  color: var(--white);
  border-bottom: 1px solid var(--gold-500);
}

.property-switcher select {
  min-width: 150px;
  padding: 8px 24px 8px 0;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.property-switcher select option {
  color: var(--ink);
  background: var(--white);
}

.property-switcher::after {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--gold-300);
  content: "⌄";
  pointer-events: none;
  transform: translateY(-62%);
}

.hotel-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 118px) clamp(28px, 7vw, 104px);
  background:
    radial-gradient(circle at 90% 15%, rgba(18, 104, 200, 0.28), transparent 33%),
    linear-gradient(130deg, var(--navy-950), var(--navy-900));
}

.hero-copy::after {
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 470px;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 197, 134, 0.24);
  border-radius: 50%;
  content: "";
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.23em;
}

.kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-logo {
  width: min(260px, 70%);
  margin-bottom: 28px;
}

.hero-logo img {
  width: 100%;
  max-height: 170px;
  padding: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(225, 197, 134, 0.55);
}

.monogram-logo {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.monogram-logo > span {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.9;
}

.monogram-logo strong {
  display: block;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 23px;
  letter-spacing: 0.08em;
}

.monogram-logo small {
  display: block;
  margin-top: 6px;
  color: #9fb4cc;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero-copy h1 span {
  color: var(--gold-300);
}

.slogan {
  margin: 24px 0 0;
  color: #d5e1ee;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 17px;
  letter-spacing: 0.18em;
}

.hero-description {
  max-width: 540px;
  margin: 22px 0 0;
  color: #aebfd3;
  font-size: 14px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-950);
  background: linear-gradient(145deg, #f1dcaa, var(--gold-500));
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 21, 45, 0.42), transparent 42%);
  content: "";
}

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

.image-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  padding: 8px 11px;
  color: #d6e3f0;
  background: rgba(4, 21, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 9px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 56px);
  top: clamp(22px, 4vw, 56px);
  display: grid;
  gap: 3px;
  width: 170px;
  padding: 17px 19px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.92);
  border-top: 2px solid var(--gold-500);
  backdrop-filter: blur(10px);
}

.hero-status small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.hero-status strong {
  font-size: 12px;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  padding: 112px 0;
}

.section-index {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 14px;
}

.section-copy h2,
.section-heading h2,
.location-copy h2,
.contact-cta h2 {
  margin: 18px 0 0;
  color: var(--navy-900);
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.section-copy > p,
.section-heading > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  list-style: none;
}

.feature-list li {
  min-height: 142px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list li:nth-child(2n) {
  border-right: 0;
}

.feature-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-list span {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 23px;
}

.feature-list strong {
  display: block;
  margin-top: 27px;
  color: var(--navy-900);
  font-size: 13px;
}

.feature-list small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.rooms-section {
  padding: 104px 0 112px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 60px;
  align-items: end;
}

.section-heading > p {
  margin-bottom: 7px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.room-card {
  background: var(--blue-50);
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.room-card:hover {
  box-shadow: 0 22px 50px rgba(7, 45, 92, 0.12);
  transform: translateY(-5px);
}

.room-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.room-image span {
  position: absolute;
  bottom: 13px;
  left: 13px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(4, 21, 45, 0.74);
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.room-content {
  padding: 26px;
}

.room-content h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 25px;
  font-weight: 500;
}

.room-content > p {
  min-height: 42px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.price {
  padding: 17px 10px 0 0;
}

.price + .price {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.price strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-600);
  font-size: 14px;
}

.price em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  padding: 14px 17px;
  color: #745a2d;
  background: var(--gold-100);
  border: 1px solid #ead6aa;
  font-size: 10px;
  line-height: 1.7;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 70px;
  padding: 112px 0;
}

.location-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.location-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.location-list dt {
  color: var(--muted);
  font-size: 10px;
}

.location-list dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 65% 35%, rgba(18, 104, 200, 0.5), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: var(--shadow);
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  width: 150%;
  height: 80px;
  border: 1px solid rgba(225, 197, 134, 0.25);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.map-placeholder::after {
  transform: rotate(31deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 15px;
  justify-items: center;
  padding: 40px;
  text-align: center;
}

.map-pin i {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-300);
  border: 8px solid rgba(255, 255, 255, 0.13);
  border-radius: 50% 50% 50% 8px;
  font-style: normal;
  transform: rotate(-45deg);
}

.map-pin i span {
  font-weight: 900;
  transform: rotate(45deg);
}

.map-pin strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 23px;
  font-weight: 500;
}

.map-pin small {
  color: #a9bdd3;
  font-size: 10px;
}

.gallery-section {
  padding: 104px 0;
  background: var(--navy-950);
}

.gallery-section .section-heading h2 {
  color: var(--white);
}

.gallery-section .section-heading > p {
  color: #9fb4cc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.gallery-item:nth-child(n + 2) {
  min-height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(4, 21, 45, 0.72));
  content: "";
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  color: #d8e3ef;
  font-size: 9px;
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: end;
  margin-top: 96px;
  margin-bottom: 96px;
  padding: clamp(36px, 6vw, 70px);
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-900), var(--blue-600));
  box-shadow: var(--shadow);
}

.cta-qr {
  width: 150px;
}

.cta-qr-button {
  display: block;
  width: 100%;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(225, 197, 134, 0.62);
  box-shadow: 0 16px 34px rgba(4, 21, 45, 0.2);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-qr-button:hover {
  box-shadow: 0 20px 42px rgba(4, 21, 45, 0.28);
  transform: translateY(-3px);
}

.cta-qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.cta-qr span {
  display: block;
  padding: 8px 2px 2px;
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.contact-cta h2 {
  max-width: 740px;
  color: var(--white);
}

.contact-cta p {
  margin: 20px 0 0;
  color: #bfd0e2;
  font-size: 12px;
  line-height: 1.8;
}

.hotel-phone-list {
  display: grid;
  gap: 9px;
  max-width: 420px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(225, 197, 134, 0.38);
}

.hotel-phone-label {
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hotel-phone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotel-phone-links a {
  padding: 10px 13px;
  color: var(--white);
  background: rgba(5, 28, 59, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hotel-phone-links a:hover {
  color: var(--navy-950);
  background: var(--gold-300);
}

.hotel-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 44px clamp(24px, 5vw, 76px);
  color: #95aac1;
  background: var(--navy-950);
  border-top: 1px solid rgba(225, 197, 134, 0.24);
  font-size: 9px;
}

.hotel-footer p {
  margin: 0;
}

.hotel-footer a {
  color: var(--gold-300);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hotel-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 650px;
  }

  .hero-image {
    min-height: 560px;
  }

  .overview,
  .location-section {
    grid-template-columns: 1fr;
  }

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

  .room-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
  }

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

  .gallery-item:first-child {
    grid-column: 1 / -1;
  }

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

  .hotel-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .hotel-header {
    height: 72px;
    padding-inline: 16px;
  }

  .wordmark-copy strong {
    font-size: 12px;
  }

  .wordmark-copy small,
  .header-nav > a {
    display: none;
  }

  .property-switcher select {
    min-width: 116px;
    font-size: 10px;
  }

  .hero-copy {
    min-height: 610px;
    padding: 66px 24px;
  }

  .hero-image {
    min-height: 430px;
  }

  .hero-status {
    top: 18px;
    right: 18px;
  }

  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .overview,
  .location-section {
    gap: 44px;
    padding: 76px 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list li,
  .feature-list li:nth-child(2n),
  .feature-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-list li:last-child {
    border-bottom: 0;
  }

  .rooms-section,
  .gallery-section {
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .room-card:last-child {
    grid-column: auto;
    width: auto;
  }

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

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

  .gallery-item,
  .gallery-item:nth-child(n + 2) {
    min-height: 320px;
  }

  .contact-cta {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
