:root {
  color-scheme: dark;
  --bg: #02070d;
  --panel: #071018;
  --panel-2: #0b1421;
  --line: rgba(99, 215, 242, .24);
  --line-soft: rgba(169, 239, 255, .12);
  --line-strong: rgba(104, 230, 239, .42);
  --text: #fffaf0;
  --muted: #c6d8e4;
  --accent: #68e6ef;
  --accent-2: #8f65ff;
  --accent-deep: #1320a6;
  --surface: rgba(6, 17, 27, .78);
  --surface-strong: rgba(9, 24, 36, .92);
  --shadow-panel: 0 26px 80px rgba(0, 0, 0, .36);
  --shadow-glow: 0 0 0 1px rgba(104, 230, 239, .06), 0 18px 44px rgba(30, 174, 224, .08);
  --shadow-lift: 0 24px 68px rgba(0, 0, 0, .34);
  --section-gap: 38px;
  --section-pad: clamp(30px, 4vw, 46px);
  --card-pad: 24px;
  --radius: 8px;
  --wrap: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(104, 230, 239, .10), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(143, 101, 255, .12), transparent 26%),
    linear-gradient(115deg, rgba(28, 66, 86, .20), transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, #04111a 46%, #010409 100%);
  color: var(--text);
  line-height: 1.8;
  padding-bottom: 0;
}
a { color: inherit; text-decoration: none; }
.text-phone { color: var(--accent); font-weight: 900; white-space: nowrap; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--wrap)) / 2));
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(1, 5, 10, .90);
  border-bottom: 1px solid rgba(104, 230, 239, .12);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
  isolation: isolate;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #d8ffff;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #061f2b, #111b47 62%, #3b1b90);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 12px 30px rgba(41, 149, 205, .20);
}
.brand__name { font-size: 20px; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-shadow: 0 1px 16px rgba(104, 230, 239, .12); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; font-weight: 800; }
.site-nav a { padding: 10px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav .is-active { color: var(--accent); border-color: var(--accent); }
.header-phone {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(104, 230, 239, .12), rgba(143, 101, 255, .07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}
main { overflow: hidden; }
.hero, .content-band, .page-hero, .article-list, .article-shell, .article-nav, .site-footer {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}
.hero { position: relative; min-height: 740px; display: grid; align-items: center; gap: 30px; padding: 70px 0 52px; }
.hero-jinli { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.05fr); }
.hero-jinli .hero__copy { padding: 34px 0; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-weight: 900; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 5.6vw, 78px); line-height: 1.04; margin-bottom: 22px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.18; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.35; margin-bottom: 10px; }
.hero__copy p:not(.eyebrow), .band-head p, .page-hero p, .article-body p, .about-columns p { color: var(--muted); font-size: 17px; line-height: 1.92; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.button--primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #021016; box-shadow: 0 16px 36px rgba(104, 230, 239, .14); }
.button--ghost { color: var(--text); background: rgba(255, 255, 255, .035); }
@media (hover: hover) {
  .button:hover, .header-phone:hover, .article-card a:hover { transform: translateY(-1px); }
}
.hero__media { position: relative; }
.hero-picture img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); object-fit: cover; box-shadow: 0 28px 90px rgba(0, 0, 0, .55); }
.hero-jinli .hero-picture img { aspect-ratio: 4 / 3; }
.hero-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .72);
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 900;
}
.hero-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}
.hero-facts article { padding: 22px; border-right: 1px solid var(--line); }
.hero-facts article:last-child { border-right: 0; }
.hero-facts span, .article-card p:first-child, .room-noimage span, .flow-grid span, .signal-grid span { color: var(--accent); font-size: 13px; font-weight: 900; display: block; }
.hero-facts strong { display: block; font-size: 19px; margin-top: 6px; }
.hero-leiju { width: 100%; max-width: none; min-height: 790px; align-content: end; padding-top: 100px; }
.hero__imageback { position: absolute; inset: 0; z-index: -1; }
.hero__imageback .hero-picture { display: block; }
.hero__imageback .hero-picture, .hero__imageback img { width: 100%; height: 100%; }
.hero__imageback img { object-fit: cover; opacity: .92; border: 0; border-radius: 0; filter: saturate(1.16) contrast(1.02) brightness(1.32); }
.hero-leiju::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2,7,13,.90), rgba(2,7,13,.54) 48%, rgba(2,7,13,.04)),
    linear-gradient(180deg, rgba(2,7,13,.24), transparent 26%, var(--bg) 94%);
}
.hero-leiju .hero__copy { width: min(var(--wrap), calc(100% - 40px)); max-width: none; margin-inline: auto; }
.hero-leiju .hero__copy h1 { text-shadow: 0 18px 46px rgba(0, 0, 0, .42), 0 0 28px rgba(104, 230, 239, .10); }
.hero-facts--strip { width: min(var(--wrap), calc(100% - 40px)); margin: 56px auto 0; backdrop-filter: blur(10px); }
.content-band, .page-hero, .article-shell {
  margin-top: var(--section-gap);
  padding: var(--section-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(104, 230, 239, .065), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .014)),
    rgba(3, 11, 18, .72);
  box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}
.content-band::before, .page-hero::before, .article-shell::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.band-head { max-width: 820px; margin-bottom: 26px; }
.band-head h2 { max-width: 760px; }
.band-head--wide { max-width: 100%; display: grid; grid-template-columns: .74fr 1fr; gap: 28px; align-items: end; }
.split-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.split-list article, .preview-columns article, .article-card, .room-noimage article, .flow-grid article, .signal-grid article, .job-list article, .about-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--card-pad);
  background:
    linear-gradient(150deg, rgba(104, 230, 239, .052), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .040), rgba(255, 255, 255, .012)),
    rgba(0, 0, 0, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 14px 34px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
@media (hover: hover) {
  .split-list article:hover, .preview-columns article:hover, .article-card:hover, .room-noimage article:hover, .flow-grid article:hover, .signal-grid article:hover, .job-list article:hover, .about-metrics article:hover, .room-gallery article:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, .09);
  }
}
.split-list span { color: var(--accent); font-size: 30px; font-weight: 900; }
.room-preview { display: grid; grid-template-columns: .55fr 1fr; gap: 34px; align-items: start; }
.preview-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.text-link, .article-card a { color: var(--accent); font-weight: 900; border-bottom: 1px solid currentColor; }
.article-row, .article-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card time { display: block; color: var(--muted); font-size: 14px; margin: 8px 0 12px; }
.article-row .article-card h3 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-card p:last-of-type { color: var(--muted); }
.article-list { align-items: stretch; }
.article-list--news {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(104, 230, 239, .040), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.034), rgba(255,255,255,.010)),
    rgba(2, 7, 13, .82);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgba(255,255,255,.06);
}
.article-list--news .article-card {
  min-height: 328px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 32px 28px;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(104, 230, 239, .055), transparent 44%),
    rgba(7, 16, 24, .84);
  box-shadow: none;
}
.article-list--news .article-card:nth-child(3n) { border-right: 0; }
.article-list--news .article-card:nth-last-child(-n+3) { border-bottom: 0; }
.article-list--news .article-card:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(143, 101, 255, .045), transparent 44%),
    rgba(10, 20, 29, .88);
}
@media (hover: hover) {
  .article-list--news .article-card:hover {
    transform: none;
    border-color: var(--line-soft);
    background:
      linear-gradient(145deg, rgba(104, 230, 239, .095), transparent 46%),
      rgba(10, 24, 34, .94);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
}
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(198, 216, 228, .74);
  font-size: 13px;
  font-weight: 900;
}
.article-card__meta span::after {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 50%;
  background: rgba(104, 230, 239, .55);
}
.article-card__meta time {
  margin: 0;
  color: rgba(198, 216, 228, .74);
  font-size: 13px;
  letter-spacing: 0;
}
.article-card--news h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.44;
  min-height: calc(2em * 1.44);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.article-card--news h3 a {
  color: var(--text);
  border: 0;
}
.article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-list--news .article-card__tags {
  max-height: 55px;
  overflow: hidden;
}
.article-card__tags li {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border: 1px solid rgba(169, 239, 255, .25);
  border-radius: 4px;
  color: rgba(236, 253, 255, .92);
  background: rgba(104, 230, 239, .045);
  font-size: 12px;
  line-height: 1.4;
}
.article-card--news .article-card__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15.5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.article-card--news .article-card__read {
  margin-top: auto;
  color: #a6f4ef;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}
.article-card--indexed {
  position: relative;
  overflow: hidden;
  min-height: 328px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 15px;
  padding: 26px;
}
.article-card--indexed::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(104, 230, 239, .11), transparent 38%);
  opacity: .72;
}
.article-card--indexed > * { position: relative; z-index: 1; }
.article-card__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line-soft);
}
.article-card__time span,
.article-card--indexed h3 span,
.article-card__keywords span,
.article-card__summary span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 7px;
}
.article-card__time time {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}
.article-card--indexed h3 { margin: 0; font-size: 21px; line-height: 1.36; }
.article-card--indexed h3 a { color: var(--text); border: 0; }
.article-card__keywords,
.article-card__summary {
  margin: 0;
  color: var(--muted);
}
.article-card__keywords {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(104, 230, 239, .045);
}
.article-card__read {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
}
.image-triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.triptych-picture { min-width: 0; overflow: hidden; border-radius: var(--radius); background: rgba(255,255,255,.035); }
.triptych-picture img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 20px 46px rgba(0, 0, 0, .26); transition: transform .28s ease, filter .28s ease; }
@media (hover: hover) {
  .triptych-picture:hover img { transform: scale(1.025); filter: brightness(1.06) saturate(1.04); }
}
.band-action { margin-top: 22px; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.signal-grid span { width: 26px; height: 4px; background: var(--accent); margin-bottom: 18px; }
.page-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 320px); gap: 30px; align-items: center; min-height: 270px; }
.page-hero h1, .article-shell h1 { font-size: clamp(34px, 4vw, 56px); }
.page-hero aside { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; color: var(--muted); background: rgba(0, 0, 0, .20); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06); }
.page-hero aside strong, .page-hero aside span { display: block; color: var(--text); font-weight: 900; }
.rooms-main { margin-top: 34px; }
.room-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.room-gallery article { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(0,0,0,.28); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06); }
.room-picture { display: block; overflow: hidden; background: rgba(255,255,255,.035); }
.room-picture img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; transition: transform .28s ease, filter .28s ease; }
@media (hover: hover) {
  .room-gallery article:hover .room-picture img { transform: scale(1.025); filter: brightness(1.06) saturate(1.04); }
}
.room-gallery article div { padding: 20px; }
.room-gallery h2 { font-size: 21px; line-height: 1.34; }
.room-noimage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-flow .flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flow-grid article { display: grid; grid-template-columns: 42px 1fr; column-gap: 16px; align-items: start; }
.service-flow .flow-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 28px;
}
.flow-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: #021016;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-size: 17px;
  box-shadow: 0 12px 30px rgba(104, 230, 239, .12);
}
.service-flow .flow-grid span { margin: 0 auto 8px; }
.flow-grid article h3,
.flow-grid article p {
  grid-column: 2;
}
.service-flow .flow-grid article h3,
.service-flow .flow-grid article p {
  grid-column: auto;
  width: 100%;
}
.flow-grid article h3 { margin-bottom: 0; }
.flow-grid article p { margin-top: 4px; }
.service-flow .flow-grid article p { max-width: 230px; margin: 6px auto 0; line-height: 1.72; }
.article-list { margin-top: 42px; }
.pagination { width: min(var(--wrap), calc(100% - 40px)); margin: 28px auto 0; display: flex; justify-content: center; gap: 10px; }
.pagination a { width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.pagination .is-active { color: var(--accent); background: rgba(255,255,255,.06); }
.article-shell { max-width: 920px; }
.article-header { text-align: center; border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 28px; }
.article-header div { color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.article-header__tags { justify-content: center; margin: 12px 0 16px; }
.article-shell .article-body p, .article-shell .article-body li { color: var(--muted); font-size: 18px; }
.article-shell .article-body h2 { font-size: 30px; margin-top: 34px; }
.article-shell .article-body a { color: var(--accent); overflow-wrap: anywhere; }
.article-shell .article-body img, .article-shell .article-body video, .article-shell .article-body iframe { max-width: 100% !important; width: 100% !important; height: auto !important; border-radius: var(--radius); }
.article-cover { margin: 28px 0 28px; }
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.article-shell .article-body table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.article-nav { margin-top: 24px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.article-nav a { min-width: 150px; text-align: center; padding: 12px 18px; border-radius: 8px; border: 1px solid var(--line); color: var(--accent); font-weight: 900; }
.article-nav__disabled { min-width: 150px; text-align: center; padding: 12px 18px; border-radius: 8px; border: 1px solid var(--line); color: var(--line); font-weight: 900; opacity: .45; pointer-events: none; }
.related-news { margin-top: 36px; }
.about-copy { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(360px, .82fr); gap: 34px; align-items: center; }
.about-copy .copy-stack {
  position: relative;
  gap: 18px;
  padding-left: 22px;
  border-left: 3px solid rgba(104, 230, 239, .62);
}
.about-copy .copy-stack p { line-height: 1.95; }
.about-metrics {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(104, 230, 239, .07), transparent 44%),
    rgba(1, 8, 14, .48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 42px rgba(0,0,0,.16);
}
.about-metrics article {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  padding: 24px;
  background: transparent;
  box-shadow: none;
}
.about-metrics article:nth-child(1),
.about-metrics article:nth-child(3) { border-right: 1px solid var(--line-soft); }
.about-metrics article:nth-child(1),
.about-metrics article:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
.about-metrics span { color: var(--accent); font-weight: 900; line-height: 1.35; }
.about-metrics strong { color: var(--text); font-size: 19px; line-height: 1.36; word-break: break-word; }
.contact-panel { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.copy-stack { display: grid; gap: 16px; color: var(--muted); }
.copy-stack p { margin: 0; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--card-pad);
  background:
    linear-gradient(150deg, rgba(104, 230, 239, .052), transparent 42%),
    rgba(0, 0, 0, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 14px 34px rgba(0, 0, 0, .18);
}
.detail-grid span { display: block; margin-bottom: 8px; color: var(--accent); font-size: 13px; font-weight: 900; }
.detail-grid p { color: var(--muted); }
.jobs-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 300px); gap: 26px; align-items: start; }
.jobs-copy { min-width: 0; }
.jobs-copy .copy-stack { max-width: 780px; }
.job-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.job-list article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(150deg, rgba(104, 230, 239, .075), transparent 44%),
    rgba(4, 14, 23, .62);
}
.job-list h3 { margin-bottom: 12px; color: var(--text); }
.job-list p { color: var(--muted); line-height: 1.72; }
.job-qr {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(104, 230, 239, .10), transparent 42%),
    linear-gradient(180deg, rgba(7, 16, 24, .94), rgba(3, 10, 17, .92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.24);
}
.job-qr h2 { margin-bottom: 14px; font-size: clamp(26px, 2.4vw, 34px); }
.job-qr img { width: 214px; margin: 10px auto 14px; border-radius: 10px; background: #fff; padding: 6px; }
.job-qr p { max-width: 220px; margin: 0 auto; color: var(--muted); font-size: 15px; line-height: 1.55; }
.job-qr strong { display: block; color: var(--accent); font-size: 18px; line-height: 1.35; }
.sitemap-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sitemap-list a { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; color: var(--accent); font-weight: 900; }
.site-footer { margin-top: 34px; padding: 0 0 38px; border-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.48fr .9fr 160px;
  gap: 18px;
  align-items: start;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(104, 230, 239, .045), transparent 36%),
    rgba(0, 0, 0, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.site-footer h2 { margin-bottom: 6px; font-size: 19px; color: var(--accent); }
.site-footer p { color: var(--muted); line-height: 1.58; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 12px; font-weight: 900; }
.footer-phone { color: var(--accent); font-weight: 900; font-size: 17px; }
.footer-qr { text-align: center; }
.footer-qr img { width: 120px; height: auto; margin: 2px auto 6px; border-radius: 8px; background: #fff; padding: 4px; }
.footer-qr p { margin-bottom: 0; line-height: 1.38; font-size: 13px; }
.footer-qr strong { color: var(--accent); font-size: 16px; }
.footer-bottom { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--accent); }
.call-float {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #021016;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 34px rgba(0,0,0,.45);
}
.call-float svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.call-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.mobile-bottom-nav { display: none; }
.mobile-bottom-nav svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 980px) {
  .site-header { gap: 14px; min-height: 64px; padding: 10px 14px; }
  .site-nav { display: none; }
  .brand__mark { width: 34px; height: 34px; font-size: 13px; }
  .brand__name { font-size: 17px; }
  .header-phone { margin-left: auto; font-size: 15px; padding: 7px 10px; }
  .hero, .content-band, .page-hero, .article-list, .article-shell, .article-nav, .site-footer, .pagination { width: min(100% - 28px, var(--wrap)); }
  .hero { min-height: auto; padding: 22px 0 28px; display: block; }
  .hero-jinli .hero__media { margin-top: 22px; }
  .hero-leiju {
    width: 100%;
    min-height: auto;
    padding: 0 14px 28px;
    display: block;
    overflow: visible;
    isolation: isolate;
  }
  .hero__imageback {
    position: relative;
    inset: auto;
    z-index: 0;
    height: min(72vw, 320px);
    min-height: 268px;
    margin: 0;
  }
  .hero__imageback .hero-picture {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .hero__imageback img {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 72% center;
    filter: brightness(1.18) saturate(1.12) contrast(1.04);
  }
  .hero-leiju::after {
    display: none;
  }
  .hero-leiju .hero__copy {
    width: 100%;
    max-width: none;
    margin: 10px 0 0;
    padding: 17px 16px 16px;
    border: 1px solid rgba(104, 230, 239, .26);
    border-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    background:
      linear-gradient(145deg, rgba(104, 230, 239, .08), transparent 44%),
      linear-gradient(180deg, rgba(13, 31, 48, .90), rgba(4, 15, 26, .84));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.18);
  }
  .hero-leiju .eyebrow {
    width: fit-content;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    color: #b9fbff;
    background: transparent;
    backdrop-filter: none;
    letter-spacing: .08em;
  }
  .hero-leiju .hero__copy h1 {
    margin-bottom: 10px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.06;
    letter-spacing: 0;
  }
  .hero-leiju .hero__copy p:not(.eyebrow) {
    max-width: 28em;
    color: rgba(241, 252, 255, .92);
    font-size: 15.5px;
    line-height: 1.65;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .58);
  }
  h1 { font-size: clamp(38px, 12vw, 52px); }
  h2 { font-size: 30px; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 10px; margin-top: 16px; }
  .hero-leiju .button {
    min-height: 48px;
    border-color: rgba(104, 230, 239, .42);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .10);
  }
  .hero-leiju .button--ghost {
    background: rgba(4, 16, 26, .54);
    backdrop-filter: blur(10px);
  }
  .hero-facts, .hero-facts--strip {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    border-color: rgba(104, 230, 239, .30);
    border-top-color: rgba(169, 239, 255, .14);
    border-radius: 0 0 var(--radius) var(--radius);
    background:
      linear-gradient(145deg, rgba(104, 230, 239, .075), transparent 44%),
      linear-gradient(180deg, rgba(6, 20, 32, .86), rgba(1, 9, 16, .76));
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 44px rgba(0, 0, 0, .28);
  }
  .hero-facts article { min-height: 68px; border-right: 0; border-bottom: 1px solid rgba(169, 239, 255, .14); padding: 9px 12px; }
  .hero-facts article:nth-last-child(-n+2) { border-bottom: 0; }
  .hero-facts span { font-size: 11px; letter-spacing: .04em; }
  .hero-facts strong { font-size: 16px; line-height: 1.26; word-break: keep-all; }
  .content-band, .page-hero, .article-shell { padding: 24px 18px; margin-top: 24px; }
  .band-head--wide, .room-preview, .page-hero, .about-copy, .jobs-layout { grid-template-columns: 1fr; }
  .about-copy { gap: 22px; }
  .about-copy .copy-stack { padding-left: 0; border-left: 0; }
  .job-list { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
  .job-list article { min-height: auto; }
  .job-qr { padding: 18px 16px; }
  .job-qr img { width: 176px; }
  .job-qr h2 { font-size: 28px; }
  .split-list, .article-row, .article-list, .room-gallery, .service-flow .flow-grid, .sitemap-list { grid-template-columns: 1fr; }
  .article-list--news .article-card {
    min-height: auto;
    padding: 26px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .article-list--news .article-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-soft); }
  .article-list--news .article-card:last-child { border-bottom: 0; }
  .preview-columns, .signal-grid, .room-noimage, .about-metrics, .image-triptych, .detail-grid { grid-template-columns: 1fr; }
  .about-metrics article { min-height: auto; padding: 20px; text-align: center; }
  .about-metrics article:nth-child(1),
  .about-metrics article:nth-child(3) { border-right: 0; }
  .about-metrics article:nth-child(1),
  .about-metrics article:nth-child(2),
  .about-metrics article:nth-child(3) { border-bottom: 1px solid var(--line-soft); }
  .page-hero { min-height: auto; }
  .article-nav { display: grid; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 10px; padding: 14px 12px; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-qr img { width: 114px; }
  .site-footer { margin-top: 28px; padding-bottom: 70px; }
  .call-float { right: 10px; bottom: 70px; width: 42px; height: 42px; opacity: .92; }
  .call-float svg { width: 19px; height: 19px; }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(0,0,0,.94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -16px 34px rgba(0, 0, 0, .32);
  }
  .mobile-bottom-nav a { display: grid; place-items: center; gap: 2px; padding: 7px 0 5px; color: var(--muted); font-size: 12px; }
  .mobile-bottom-nav a:hover { color: var(--accent); }
}
@media (max-width: 420px) {
  body { padding-bottom: 64px; }
  .site-header { gap: 8px; padding-inline: 12px; }
  .brand { gap: 8px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { max-width: 132px; font-size: 14px; }
  .header-phone { font-size: 13px; padding: 7px 8px; }
  .button { min-height: 48px; padding-inline: 10px; }
  .hero__copy p:not(.eyebrow), .band-head p, .page-hero p, .article-body p, .about-columns p { font-size: 16px; }
  .article-card--indexed { min-height: auto; padding: 22px; }
  .article-card--indexed h3 { padding-right: 44px; }
  .article-card--news h3 { padding-right: 36px; }
  .article-card__time { align-items: flex-start; }
}
