@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink, #172c47);
  background: var(--paper, #fff);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
svg {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.25;
}
h1 {
  font-weight: 650;
  letter-spacing: -0.045em;
}
h2 {
  font-size: 34px;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 20px;
}
p {
  color: var(--muted, #65717f);
}
small {
  font-size: 11px;
}
section {
  position: relative;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent, #1f6bef);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
::selection {
  color: var(--paper, #fff);
  background: var(--accent, #176dd8);
}
.wrap {
  width: min(1220px, calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 650;
  line-height: 1.6;
  text-transform: uppercase;
}
.section-label {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.section-label:before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.section-top p {
  max-width: 390px;
  font-size: 14px;
}
.site-header {
  width: min(1320px, calc(100% - 80px));
  height: 94px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.brand svg {
  width: 35px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.brand strong {
  font-size: 23px;
  letter-spacing: 0.08em;
  display: block;
  line-height: 1.2;
}
.brand small {
  display: block;
  font-size: 6px;
  letter-spacing: 0.16em;
  margin-top: 6px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 13px;
}
.navigation a {
  position: relative;
  padding-block: 9px;
}
.navigation a:after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 100%;
  background: currentColor;
  transition: right 0.2s;
}
.navigation a:hover:after {
  right: 0;
}
.language-toggle {
  font-size: 11px;
  background: none;
  border-left: 1px solid currentColor;
  padding: 0 0 0 20px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.menu-toggle {
  display: none;
  background: none;
  padding: 8px;
}
.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  background: var(--accent);
  color: var(--button-ink, #fff);
  font-size: 13px;
  font-weight: 550;
  transition:
    transform 0.2s,
    filter 0.2s;
  border: 1px solid transparent;
}
.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.button.ghost {
  background: transparent;
  border-color: var(--line, #d4dce5);
  color: inherit;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.text-link {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 550;
  border-bottom: 1px solid currentColor;
  padding-block: 7px;
}
.arrow {
  font-size: 21px;
  font-weight: 400;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat strong {
  font-size: 44px;
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stat strong small {
  font-size: 22px;
  font-weight: 400;
}
.stat p {
  font-size: 12px;
  margin-top: 9px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  padding: 30px;
  border: 1px solid var(--line, #dbe2e9);
}
.card p {
  font-size: 13px;
  margin-top: 16px;
  line-height: 1.9;
}
.card-index {
  font:
    12px Consolas,
    monospace;
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
}
.card .text-link {
  margin-top: 24px;
}
.news-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--line, #dbe2e9);
}
.news-row time {
  font-size: 12px;
  color: var(--muted);
}
.news-row h3 {
  font-size: 17px;
  font-weight: 500;
}
.news-row p {
  font-size: 12px;
  margin-top: 8px;
}
.news-row .arrow {
  transition: transform 0.2s;
}
.news-row:hover .arrow {
  transform: translate(4px, -4px);
}
.site-footer {
  padding: 65px max(56px, calc((100% - 1220px) / 2)) 70px;
  background: var(--footer, #152c47);
  color: var(--footer-ink, #fff);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
}
.site-footer .eyebrow {
  opacity: 0.5;
}
.site-footer h2 {
  font-size: 27px;
  margin-top: 18px;
}
.contact-number {
  font-size: 28px;
  letter-spacing: -0.03em;
}
.contact-number span {
  margin-left: 24px;
}
.footer-meta {
  grid-column: 1/-1;
  border-top: 1px solid #ffffff29;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  opacity: 0.6;
}
.reference-return {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 152px;
  height: 58px;
  border: 1px solid #ffffff80;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: #eff3f4a8;
  box-shadow: 0 -3px 22px #13213a20;
  color: #263649;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 3px 8px 12px;
  transition:
    transform 0.22s,
    background 0.22s;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}
.reference-return .grip {
  font-size: 10px;
  line-height: 9px;
}
.reference-return:hover,
.reference-return:focus-visible {
  transform: translate(-50%, 6%);
  background: #f6f8f9e8;
}
.reference-return small {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.18em;
  opacity: 0.5;
}
.photo-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.detail {
  border-top: 1px solid var(--line, #dbe2e9);
  padding: 20px 0;
}
.detail summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
}
.detail summary:after {
  content: "+";
}
.detail[open] summary:after {
  content: "−";
}
.detail p {
  max-width: 700px;
  padding-top: 15px;
  font-size: 14px;
}
.detail summary::-webkit-details-marker {
  display: none;
}
.mono {
  font-family: Consolas, "Courier New", monospace;
}
.serif {
  font-family: Georgia, "Songti SC", "Noto Serif CJK SC", SimSun, serif;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.tag {
  padding: 5px 10px;
  border: 1px solid var(--line, #dbe2e9);
  border-radius: 50px;
}
.ruled {
  border-top: 1px solid var(--line, #dbe2e9);
}
.news-expand {
  border-top: 1px solid var(--line, #dbe2e9);
}
.news-expand summary {
  display: grid;
  grid-template-columns: 100px 1fr 20px;
  align-items: center;
  gap: 30px;
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
}
.news-expand summary::-webkit-details-marker {
  display: none;
}
.news-expand summary time {
  font-size: 12px;
  color: var(--muted);
}
.news-expand h3 {
  font-size: 17px;
  font-weight: 500;
}
.news-expand > p {
  font-size: 13px;
  margin: 0 50px 24px 130px;
  line-height: 1.9;
}
.news-toggle:after {
  content: "+";
  font-size: 20px;
}
.news-expand[open] .news-toggle:after {
  content: "−";
}
.card,
.gold-service {
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.card:hover,
.gold-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 25px #18283c0b;
}
.reveal.arrived {
  animation: arrive 0.55s ease both;
}
@keyframes arrive {
  from {
    opacity: 0.5;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 680px) {
  .news-expand summary {
    grid-template-columns: 64px 1fr 20px;
    gap: 14px;
  }
  .news-expand h3 {
    font-size: 14px;
  }
  .news-expand summary time {
    font-size: 10px;
  }
  .news-expand > p {
    margin: 0 0 24px 78px;
    font-size: 12px;
  }
}
@media (min-width: 1600px) {
  .wrap {
    width: 1320px;
  }
  .site-header {
    width: 1440px;
  }
}
@media (max-width: 960px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    width: calc(100% - 48px);
    gap: 22px;
  }
  .navigation {
    gap: 20px;
    font-size: 12px;
  }
  .brand strong {
    font-size: 20px;
  }
  .brand small {
    font-size: 5px;
  }
  .site-footer {
    padding: 50px 32px 75px;
  }
  .card {
    padding: 23px;
  }
  .cards {
    gap: 16px;
  }
  h2 {
    font-size: 29px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
    width: calc(100% - 40px);
    gap: 14px;
  }
  .brand strong {
    font-size: 20px;
  }
  .brand svg {
    width: 30px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    font-size: 20px;
  }
  .language-toggle {
    padding-left: 14px;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--paper, #fff);
    color: var(--ink, #172c47);
    border: 1px solid var(--line, #dbe2e9);
    box-shadow: 0 15px 30px #0002;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .menu-open .navigation {
    display: flex;
  }
  h2 {
    font-size: 28px;
  }
  .section-top {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .stats {
    gap: 12px;
  }
  .stat strong {
    font-size: 32px;
  }
  .stat strong small {
    font-size: 16px;
  }
  .stat p {
    font-size: 10px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 44px 20px 84px;
  }
  .site-footer h2 {
    font-size: 25px;
  }
  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
  .contact-number {
    font-size: 25px;
  }
  .news-row {
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
  }
  .news-row h3 {
    font-size: 14px;
  }
  .news-row p {
    display: none;
  }
  .news-row time {
    font-size: 10px;
  }
  .button {
    padding: 13px 20px;
  }
  .actions {
    gap: 10px;
  }
  .reference-return {
    width: 142px;
  }
  .card {
    padding: 27px;
  }
}
@media (hover: none) {
  .reference-return {
    height: 68px;
    transform: translate(-50%, 35%);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
