:root {
  --bg: #10151d;
  --bg-2: #18212b;
  --paper: #f8f5ef;
  --text: #f8fafc;
  --muted: #a7b0bd;
  --ink: #18212b;
  --gold: #d6b56d;
  --gold-2: #f1d895;
  --jade: #6ec7ae;
  --coral: #ee8b75;
  --line: rgba(255, 255, 255, .15);
  --shadow: 0 26px 80px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(110, 199, 174, .10), transparent 34%),
    linear-gradient(240deg, rgba(238, 139, 117, .12), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(214, 181, 109, .16), transparent 32%);
  z-index: -1;
}

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

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.app-shell {
  width: min(100%, 640px);
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, #10151d 0%, #161f29 52%, #f8f5ef 52%, #f8f5ef 100%);
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .05);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: max(18px, env(safe-area-inset-top)) 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(9, 13, 18, .42), rgba(9, 13, 18, .18) 32%, rgba(9, 13, 18, .88) 100%),
    linear-gradient(90deg, rgba(9, 13, 18, .64), transparent 64%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #10151d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  margin-top: 2px;
}

.topbar__call {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
}

.icon-phone {
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 4px 4px 8px 4px;
  transform: rotate(45deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 18vh 0 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 8em;
  font-size: clamp(42px, 14vw, 68px);
}

.hero__copy {
  max-width: 30em;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  min-width: 116px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #11161d;
  box-shadow: 0 14px 34px rgba(214, 181, 109, .34);
}

.btn--ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.promise-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
}

.promise-card span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  color: #fff8df;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: 34px 18px;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #10151d;
}

.service-item {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  text-align: center;
}

.service-item strong {
  color: var(--gold-2);
  font-size: 20px;
}

.service-item span {
  color: var(--muted);
  font-size: 11px;
}

.intro,
.rooms {
  background: var(--paper);
  color: var(--ink);
}

.intro p:not(.section-kicker) {
  color: #59616d;
  line-height: 1.8;
}

.intro h2,
.section-heading h2,
.lifestyle h2,
.contact h2 {
  font-size: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.feature-grid article {
  min-height: 154px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(24, 33, 43, .08);
}

.feature-icon {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--gold);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid #18212b;
  border-radius: 6px;
}

.feature-icon.wifi {
  background: var(--jade);
}

.feature-icon.guard {
  background: var(--coral);
}

.feature-icon.cart {
  background: #9db8ee;
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-grid p {
  margin: 0;
  font-size: 13px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.phase-tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px -18px 18px;
  padding: 10px 18px;
  background: rgba(248, 245, 239, .86);
  backdrop-filter: blur(14px);
}

.phase-tab {
  height: 42px;
  border: 1px solid rgba(24, 33, 43, .12);
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-weight: 800;
}

.phase-tab em {
  font-style: normal;
  color: #8b95a3;
}

.phase-tab.is-active {
  background: #18212b;
  color: #fff;
  border-color: #18212b;
}

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

.room-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(24, 33, 43, .12);
}

.room-card[hidden] {
  display: none;
}

.room-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.22;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #10151d;
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.room-card__media:active img {
  transform: scale(1.04);
}

.phase-badge,
.play-badge {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.phase-badge {
  left: 14px;
  color: #10151d;
  background: var(--gold-2);
}

.play-badge {
  right: 14px;
  color: #fff;
  background: rgba(16, 21, 29, .62);
  backdrop-filter: blur(10px);
}

.play-badge i {
  width: 0;
  height: 0;
  margin-right: 6px;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.room-card__body {
  padding: 18px;
}

.room-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.room-title-row p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.room-title-row h3 {
  margin: 0;
  font-size: 21px;
}

.room-title-row strong {
  color: #11161d;
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.room-title-row small {
  font-size: 13px;
}

.room-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-meta {
  margin: 14px 0;
}

.room-meta span,
.tag-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: #f1f4f7;
  color: #59616d;
  font-size: 12px;
  font-weight: 700;
}

.room-desc {
  margin: 0 0 14px;
  color: #59616d;
  line-height: 1.7;
  font-size: 14px;
}

.room-card__cta {
  margin-top: 16px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #18212b;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.lifestyle {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(214, 181, 109, .16), transparent 38%),
    #18212b;
}

.lifestyle ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lifestyle li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}

.lifestyle strong {
  color: var(--gold-2);
  font-size: 18px;
}

.lifestyle span {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.6;
}

.contact {
  padding-bottom: 96px;
  background: var(--paper);
  color: var(--ink);
}

.contact-card {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(24, 33, 43, .13);
}

.contact-card p:not(.section-kicker) {
  color: #59616d;
  line-height: 1.75;
}

.booking-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 0 14px;
  color: #18212b;
  background: #f8fafc;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 181, 109, .14);
}

.booking-form button {
  width: 100%;
}

.booking-form button:disabled {
  opacity: .72;
  cursor: wait;
}

.form-tip {
  min-height: 24px;
  margin: 0;
  font-size: 13px;
}

.form-tip.is-success {
  color: #13804d !important;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(7, 10, 14, .84);
  backdrop-filter: blur(18px);
}

.media-modal[aria-hidden="false"] {
  display: grid;
}

.media-modal__panel {
  width: min(100%, 620px);
  color: #fff;
}

.media-modal__panel img,
.media-modal__panel video {
  width: 100%;
  max-height: 76svh;
  object-fit: contain;
  border-radius: 22px;
  background: #000;
  box-shadow: var(--shadow);
}

.media-modal__panel h3 {
  margin: 14px 4px 0;
  font-size: 19px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: max(18px, env(safe-area-inset-top));
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 21px;
  width: 18px;
  height: 2px;
  background: #fff;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 20;
  width: min(92vw, 420px);
  height: 58px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
  border-radius: 999px;
  background: rgba(16, 21, 29, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.bottom-nav a:nth-child(3) {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #10151d;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

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

@media (min-width: 641px) {
  body {
    background: #0b0f14;
  }

  .app-shell {
    margin: 24px auto;
    border-radius: 34px;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 39px;
  }

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

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

  .service-band {
    grid-template-columns: 1fr 1fr;
  }
}

/* Extended H5 modules: configurable slogan, video tour, map and generated service icons. */
.promise-card {
  display: block;
  grid-template-columns: none;
  padding: 16px;
}

.promise-card strong {
  display: block;
  color: #fff8df;
  font-size: 15px;
  line-height: 1.7;
}

.promise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.promise-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff8df;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-grid--icons article {
  border-radius: 20px;
}

.feature-grid--icons .feature-icon::after {
  display: none;
}

.feature-grid--icons .feature-icon::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 10px;
  top: 10px;
  border: 2px solid #18212b;
  border-radius: 5px;
}

.feature-grid--icons .feature-icon.wifi::before {
  border-radius: 50%;
}

.feature-grid--icons .feature-icon.guard::before {
  border-radius: 4px 4px 8px 8px;
}

.feature-grid--icons .feature-icon.cart::before {
  border-radius: 4px;
}

.video-showcase {
  background:
    linear-gradient(135deg, rgba(214, 181, 109, .12), transparent 42%),
    #18212b;
  color: #fff;
}

.video-showcase p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.video-stage {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 26px;
  background: #05070a;
  box-shadow: var(--shadow);
}

.video-stage video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  padding: 0;
  background: #05070a;
}

.video-stage video {
  object-fit: cover;
}

.video-placeholder {
  position: relative;
  display: block;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
}

.video-placeholder strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  font-size: 16px;
  text-align: left;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .34);
  backdrop-filter: blur(14px);
}

.video-play::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  animation: pulse 1.8s ease infinite;
}

.video-play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse {
  0% {
    opacity: .9;
    transform: scale(.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

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

.map-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.map-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(24, 33, 43, .12);
}

.map-visual {
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(24, 33, 43, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(24, 33, 43, .08) 1px, transparent 1px),
    linear-gradient(135deg, #eef4f6, #f8efe1);
  background-size: 34px 34px, 34px 34px, auto;
}

.map-visual iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.map-fallback {
  min-height: 210px;
  padding: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #18212b;
}

.pin {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
  background: var(--coral);
  box-shadow: 0 10px 28px rgba(238, 139, 117, .35);
}

.pin::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 11px;
  top: 11px;
  border-radius: 50%;
  background: #fff;
}

.map-fallback strong,
.map-fallback small {
  display: block;
}

.map-fallback strong {
  margin-top: 14px;
  font-size: 24px;
}

.map-fallback small {
  max-width: 18em;
  color: #59616d;
  line-height: 1.6;
}

.map-card__body {
  padding: 18px;
}

.map-card__body h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.map-card__body p,
.map-card__body address {
  margin: 0 0 12px;
  color: #59616d;
  line-height: 1.75;
  font-style: normal;
}
