:root {
  color-scheme: light;
  --navy-950: #04152d;
  --navy-900: #07254d;
  --blue-800: #0a4388;
  --blue-600: #1268c8;
  --blue-100: #dfedfb;
  --blue-50: #f2f7fd;
  --gold-500: #c8a15a;
  --gold-300: #dfc48d;
  --gold-100: #f7edda;
  --ink: #10233f;
  --muted: #64758d;
  --line: #dce6f1;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(9, 48, 94, 0.11);
  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: 110px;
}

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

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

button,
a {
  -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);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(24px, 6vw, 88px);
  color: var(--white);
  background: rgba(4, 21, 45, 0.94);
  border-bottom: 1px solid rgba(223, 196, 141, 0.25);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(223, 196, 141, 0.62);
  border-radius: 4px 15px 4px 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.brand-logo img {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 132px;
  max-width: none;
  transform: translateX(-50%);
}

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

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: #a8bdd6;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-link span {
  color: var(--gold-300);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 640px;
  padding: clamp(76px, 10vw, 124px) clamp(24px, 8vw, 120px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 36%, rgba(18, 104, 200, 0.55), transparent 29%),
    linear-gradient(118deg, var(--navy-950) 0%, #072d61 55%, #0a4388 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -9%;
  bottom: -30%;
  width: 52%;
  height: 90%;
  border: 1px solid rgba(223, 196, 141, 0.24);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 55%, #000);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(223, 196, 141, 0.3);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 12%;
  right: 10%;
  width: 360px;
  aspect-ratio: 1;
}

.hero-orbit-two {
  top: 25%;
  right: 20%;
  width: 170px;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.2);
}

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

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

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--gold-500);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(52px, 8vw, 102px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold-300);
  font-style: normal;
}

.hero-description {
  max-width: 560px;
  margin: 34px 0 0;
  color: #c6d5e8;
  font-size: 16px;
  line-height: 1.9;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 178px;
  margin-top: 36px;
  padding: 16px 18px;
  color: var(--navy-950);
  background: linear-gradient(145deg, #f0dcae, var(--gold-500));
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.hero-panel {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  bottom: 46px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px 20px;
  width: min(390px, calc(100% - 48px));
  padding: 24px;
  background: rgba(4, 21, 45, 0.52);
  border-top: 1px solid rgba(223, 196, 141, 0.65);
  backdrop-filter: blur(12px);
}

.panel-index {
  grid-row: span 2;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 36px;
}

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

.hero-panel > div p {
  color: #b8c9dd;
  font-size: 12px;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.09em;
}

.panel-note {
  grid-column: 1 / -1;
  padding-top: 14px;
  color: #aebfd2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1.7;
}

.directory-section,
.contacts-section,
.contact-note {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.directory-section {
  padding: 104px 0 76px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.6fr);
  gap: 54px;
  align-items: end;
}

.section-heading h2,
.contact-note h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hotel-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hotel-nav a {
  position: relative;
  display: grid;
  min-height: 180px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.hotel-nav a:last-child {
  border-right: 0;
}

.hotel-nav a:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.hotel-nav a:nth-child(4n) {
  border-right: 0;
}

.hotel-nav a:hover,
.hotel-nav a[aria-current="location"] {
  color: var(--white);
  background: var(--blue-800);
}

.hotel-nav a > span {
  align-self: start;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 24px;
}

.hotel-nav strong {
  align-self: end;
  margin-top: 30px;
  font-size: 14px;
}

.hotel-nav small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.hotel-nav a:hover small,
.hotel-nav a[aria-current="location"] small {
  color: #c4d7eb;
}

.hotel-nav i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--gold-300);
  font-style: normal;
}

.contacts-section {
  display: grid;
  gap: 28px;
  padding-bottom: 100px;
}

.hotel-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 42px rgba(11, 55, 104, 0.06);
  scroll-margin-top: 108px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hotel-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(var(--gold-300), var(--gold-500));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.hotel-card:target,
.hotel-card.is-active {
  border-color: var(--gold-300);
  box-shadow: 0 24px 64px rgba(9, 48, 94, 0.13);
  transform: translateY(-2px);
}

.hotel-card:target::before,
.hotel-card.is-active::before {
  opacity: 1;
}

.service-card::after {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 13px;
  color: var(--navy-950);
  background: var(--gold-300);
  content: "SIM SERVICE";
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hotel-card-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.hotel-number {
  margin: 0 0 38px;
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.hotel-card-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.18;
}

.hotel-card-heading div > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.status-badge {
  align-self: flex-start;
  padding: 8px 11px;
  color: #856222;
  background: var(--gold-100);
  border: 1px solid #ead29e;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-badge.is-configured {
  color: #0f6847;
  background: #e8f7f0;
  border-color: #b9e3d0;
}

.hotel-phone-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding: 14px;
  background: #f7faff;
  border: 1px solid var(--line);
}

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

.hotel-phone-links {
  display: grid;
  gap: 7px;
}

.hotel-phone-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hotel-phone-links a::after {
  color: var(--gold-500);
  content: "拨打 ↗";
  font-size: 9px;
  letter-spacing: 0.08em;
}

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

.hotel-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 14px;
  padding: 13px 15px;
  color: var(--white);
  background: var(--blue-800);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hotel-page-link:hover {
  color: var(--navy-950);
  background: var(--gold-300);
  transform: translateY(-2px);
}

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

.contact-channel {
  padding: 22px;
  background: #f7faff;
  border: 1px solid var(--line);
}

.channel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.channel-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.wechat-icon {
  background: #168c5b;
}

.telegram-icon {
  background: var(--blue-600);
}

.channel-heading small {
  color: var(--gold-500);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.channel-heading h3 {
  margin: 3px 0 0;
  color: var(--navy-900);
  font-size: 14px;
}

.qr-shell {
  position: relative;
  width: min(100%, 190px);
  aspect-ratio: 1;
  margin: 22px auto 16px;
  padding: 13px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 35, 72, 0.08);
}

.qr-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(21, 1fr);
  opacity: 0.74;
  filter: blur(0.15px);
}

.qr-placeholder i {
  background: transparent;
}

.qr-placeholder i.is-dark {
  background: var(--navy-950);
}

.qr-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.qr-shell > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112%;
  padding: 8px;
  color: var(--navy-950);
  background: rgba(223, 196, 141, 0.95);
  box-shadow: 0 4px 14px rgba(4, 21, 45, 0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-11deg);
}

.account-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-top: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.account-label strong {
  color: var(--blue-800);
}

.contact-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 100px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(118deg, var(--navy-950), var(--blue-800));
}

.note-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.contact-note h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
}

.contact-note div > p:last-child {
  margin: 14px 0 0;
  color: #b8cbe0;
  font-size: 13px;
  line-height: 1.7;
}

.contact-note > a {
  align-self: end;
  min-width: 150px;
  padding-bottom: 7px;
  color: var(--gold-300);
  border-bottom: 1px solid rgba(223, 196, 141, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.contact-note > a span {
  float: right;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 44px clamp(24px, 6vw, 88px);
  color: #9db0c7;
  background: var(--navy-950);
  border-top: 1px solid rgba(223, 196, 141, 0.25);
  font-size: 10px;
}

.footer-brand {
  color: var(--white);
}

footer p {
  margin: 0;
}

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

@media (max-width: 920px) {
  .hero {
    min-height: 690px;
  }

  .hero-orbit-one {
    right: -18%;
  }

  .hero-panel {
    right: 24px;
    bottom: 26px;
  }

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

  .hotel-nav a {
    border-bottom: 1px solid var(--line);
  }

  .hotel-nav a:nth-child(2n) {
    border-right: 0;
  }

  .hotel-nav a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .hotel-card-heading {
    min-height: auto;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-badge {
    margin-top: 30px;
  }

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

  .contact-note > a {
    grid-column: 2;
  }

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

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

  .site-header {
    height: 70px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-logo img {
    top: -3px;
    width: 116px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-link {
    gap: 8px;
    font-size: 10px;
  }

  .hero {
    min-height: 680px;
    padding: 74px 24px 180px;
  }

  .hero h1 {
    font-size: clamp(47px, 15vw, 68px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-panel {
    right: 24px;
    left: 24px;
    width: auto;
  }

  .directory-section,
  .contacts-section,
  .contact-note {
    width: min(100% - 32px, 1180px);
  }

  .directory-section {
    padding: 76px 0 54px;
  }

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

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

  .hotel-nav a {
    grid-template-columns: auto 1fr auto;
    gap: 5px 16px;
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hotel-nav a:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .hotel-nav a:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .hotel-nav a > span {
    grid-row: span 2;
  }

  .hotel-nav strong {
    align-self: auto;
    margin-top: 0;
  }

  .hotel-nav small {
    grid-column: 2;
  }

  .hotel-nav i {
    position: static;
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .hotel-card {
    gap: 28px;
    scroll-margin-top: 88px;
  }

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

  .qr-shell {
    width: 176px;
  }

  .contact-note {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .contact-note > a {
    grid-column: auto;
  }

  footer {
    padding: 38px 24px;
  }
}

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

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