:root {
  color-scheme: light;
  --ink: #111214;
  --muted: #5d6065;
  --paper: #f4f4f1;
  --surface: #ffffff;
  --line: #d5d6d3;
  --blue: #175cff;
  --night: #0c0c0d;
  --white: #f8f8f5;
  --page-pad: clamp(18px, 4vw, 56px);
  --radius: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.gallery-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--surface);
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 244, 241, 0.96);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-group.end {
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--blue);
}

.nav-phone {
  border-bottom: 1px solid currentColor;
}

.brand {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.editorial-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(78dvh, 760px);
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.editorial-hero > img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-hero > img {
  object-fit: cover;
}

.hero-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 72px var(--page-pad);
}

.hero-content h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.05;
}

.hero-content p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.editorial-hero .eyebrow {
  color: #c7d4ff;
}

.content-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 112px var(--page-pad);
}

.location-grid,
.room-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
}

.content-shell h2,
.section-heading {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.12;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.location-grid article,
.fact-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.location-grid article h3,
.fact-list article h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.location-grid article p,
.fact-list article p {
  margin: 0;
  color: var(--muted);
}

.notice {
  margin-top: 24px;
  padding: 20px;
  border-left: 3px solid var(--blue);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
}

.cta-row {
  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 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 90ms ease, background-color 180ms ease, color 180ms ease;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button:hover {
  background: var(--ink);
  color: #fff;
}

.button.primary:hover {
  background: #0648dc;
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.inline-call {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.phase-note {
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.gallery {
  background: var(--night);
  color: var(--white);
}

.gallery-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 72px var(--page-pad) 96px;
}

.gallery-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  overflow: hidden;
  background: #171719;
}

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

.gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(12, 12, 13, 0.7);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  transform: translateY(-50%);
}

.gallery-control.previous {
  left: 18px;
}

.gallery-control.next {
  right: 18px;
}

.gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(12, 12, 13, 0.72);
  font-size: 13px;
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.gallery-thumb {
  flex: 0 0 150px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  color: #fff;
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
}

.gallery-thumb figure {
  margin: 0;
}

.gallery-thumb[aria-pressed="true"] {
  border-color: #8fb0ff;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-thumb figcaption {
  padding: 8px 6px;
  font-size: 12px;
}

.room-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.room-features li {
  padding: 18px;
  background: var(--surface);
}

.faq-shell {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: 100px var(--page-pad);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 650;
  text-align: left;
}

.faq-answer {
  max-width: 700px;
  padding: 0 48px 26px 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

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

.room-directory-section .content-shell {
  padding-top: 88px;
  padding-bottom: 88px;
}

.room-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.room-directory a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 0;
  border-bottom: 1px solid var(--line);
}

.room-directory li:nth-child(even) a {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.room-directory a:hover {
  color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: end;
  padding: 56px var(--page-pad);
  background: var(--night);
  color: var(--white);
}

.footer-brand {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 28px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: center;
}

.footer-address a {
  border-bottom: 1px solid currentColor;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

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

  .nav-group:first-child {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-group.end {
    grid-column: 2;
    grid-row: 1;
    gap: 14px;
  }

  .nav-phone {
    display: none;
  }

  .nav-group.end .nav-link:first-child {
    display: none;
  }

  .editorial-hero {
    min-height: 70dvh;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .content-shell,
  .faq-shell {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .location-grid,
  .room-intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .gallery-shell {
    padding-top: 38px;
    padding-bottom: 56px;
  }

  .gallery-stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gallery-control {
    width: 42px;
    height: 42px;
  }

  .gallery-thumb {
    flex-basis: 112px;
  }

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

  .room-directory li:nth-child(even) a {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-address {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 5px;
    max-width: 520px;
    min-height: 64px;
    margin: 0 auto;
    padding: 5px;
    padding-bottom: calc(5px + env(safe-area-inset-bottom));
    border: 1px solid rgba(17, 18, 20, 0.12);
    border-radius: 18px;
    background: rgba(244, 244, 241, 0.94);
    box-shadow: 0 16px 44px rgba(12, 12, 13, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    display: grid;
    min-width: 0;
    min-height: 54px;
    place-content: center;
    border-radius: 13px;
    text-align: center;
    transition: transform 80ms ease, background-color 180ms ease;
  }

  .mobile-contact-bar small,
  .mobile-contact-bar strong {
    display: block;
    line-height: 1.25;
  }

  .mobile-contact-bar small {
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 650;
    opacity: 0.7;
  }

  .mobile-contact-bar strong {
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-call {
    background: #dedfdb;
    color: var(--ink);
  }

  .mobile-booking {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-contact-bar a:active {
    transform: translateY(1px) scale(0.98);
  }
}

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

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