:root {
  color-scheme: light;
  --black: #070707;
  --black-soft: #151515;
  --ink: #111318;
  --muted: #5c626d;
  --white: #ffffff;
  --paper: #f4f4f0;
  --line: #d9dadd;
  --blue: #1559e8;
  --cyan: #08c8ee;
  --orange: #ed6238;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 900;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: 54px;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

section,
article {
  scroll-margin-top: 88px;
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

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

.brand-copy strong {
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--cyan);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav > a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
}

.desktop-nav > a:not(.nav-contact):hover,
.desktop-nav > a:not(.nav-contact):focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
}

.nav-contact {
  color: var(--black);
  background: var(--orange);
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--white);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  min-width: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  text-align: center;
  font-weight: 800;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid #343434;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.mobile-nav nav a {
  padding: 12px 14px;
  border-bottom: 1px solid #2b2b2b;
  font-weight: 800;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
  color: var(--black);
  background: var(--orange);
}

.hero {
  position: relative;
  display: flex;
  height: 88svh;
  min-height: 690px;
  max-height: 840px;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: #1d2732;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  flex: 1;
  align-items: center;
  padding-block: 132px 54px;
}

.hero-copy {
  width: min(760px, 70%);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 900;
}

.hero-kicker::before {
  width: 54px;
  height: 3px;
  flex: 0 0 54px;
  background: var(--orange);
  content: "";
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 84px;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(7, 7, 7, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--black);
  background: var(--white);
}

.hero-selector {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 7, 7, 0.88);
}

.hero-selector a {
  display: flex;
  min-width: 0;
  min-height: 84px;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 900;
}

.hero-selector a:last-child {
  border-right: 0;
}

.hero-selector a:hover,
.hero-selector a:focus-visible {
  color: var(--black);
  background: var(--orange);
}

.hero-selector span {
  color: var(--cyan);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.hero-selector a:hover span,
.hero-selector a:focus-visible span {
  color: var(--black);
}

.hero-caption {
  position: absolute;
  right: 20px;
  bottom: 96px;
  z-index: 3;
  margin: 0;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 7, 7, 0.62);
  font-size: 10px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.answer-strip {
  color: var(--white);
  background: var(--blue);
}

.answer-strip .shell {
  display: grid;
  min-height: 112px;
  grid-template-columns: 250px 1fr;
  gap: 42px;
  align-items: center;
}

.answer-strip .eyebrow,
.answer-strip p {
  margin-bottom: 0;
}

.answer-strip .eyebrow {
  color: var(--cyan);
}

.answer-strip p:last-child {
  font-size: 18px;
}

.statement-section {
  padding-block: 92px 118px;
  overflow: hidden;
  background: var(--white);
}

.statement-lines {
  margin-bottom: 92px;
  border-top: 1px solid var(--line);
}

.statement-lines span {
  display: block;
  padding: 16px max(32px, calc((100% - var(--shell)) / 2));
  border-bottom: 1px solid var(--line);
  font-size: 76px;
  font-weight: 900;
  line-height: 1.1;
}

.statement-lines span:nth-child(2) {
  color: var(--orange);
  text-align: center;
}

.statement-lines span:nth-child(3) {
  text-align: right;
}

.statement-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.statement-copy h2 {
  max-width: 560px;
}

.statement-text {
  color: var(--muted);
  font-size: 18px;
}

.statement-text .lead {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.services-section {
  padding-block: 118px;
  color: var(--white);
  background: var(--black);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.7fr);
  gap: 80px;
  margin-bottom: 70px;
  align-items: end;
}

.services-heading .eyebrow {
  color: var(--orange);
}

.services-heading h2 {
  margin-bottom: 0;
  font-size: 64px;
}

.services-heading > p {
  margin-bottom: 6px;
  color: #b9bec8;
  font-size: 18px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.service-visual {
  position: relative;
  min-height: 620px;
  margin-bottom: 0;
  overflow: hidden;
  background: #222;
}

.service-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 62% center;
}

.service-visual figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.88);
}

.service-visual figcaption strong,
.service-visual figcaption span {
  display: block;
}

.service-visual figcaption strong {
  font-size: 20px;
}

.service-visual figcaption span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.service-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0 30px;
  border-top: 1px solid #393939;
}

.service-list article:last-child {
  border-bottom: 1px solid #393939;
}

.service-list article:target {
  border-top-color: var(--orange);
}

.service-index {
  color: var(--cyan);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.service-list h3 {
  margin-bottom: 10px;
  font-size: 31px;
}

.service-list article > div > p:last-child {
  margin-bottom: 0;
  color: #adb2bc;
}

.service-query {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.audience-section {
  padding-block: 112px;
  color: var(--white);
  background: var(--blue);
}

.suitable-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.24fr);
  gap: 82px;
}

.audience-section .section-heading {
  max-width: 470px;
}

.audience-section .eyebrow {
  color: var(--cyan);
}

.audience-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.suitable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.suitable-list article {
  min-height: 250px;
  padding: 28px;
  background: var(--blue);
}

.suitable-list article:nth-child(2),
.suitable-list article:nth-child(3) {
  background: #0f4ecf;
}

.suitable-list article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.suitable-list h3 {
  font-size: 23px;
}

.suitable-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-section {
  padding-block: 118px;
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: 94px;
}

.process-section .section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  color: var(--ink);
  font-weight: 900;
}

.process-list {
  margin-bottom: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process-list li > span {
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.process-list h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.venue-section {
  padding-block: 112px;
  background: var(--paper);
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 86px;
}

.venue-lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.venue-grid {
  border-bottom: 1px solid #bfc1c4;
}

.venue-grid article {
  display: grid;
  grid-template-columns: 72px minmax(150px, 0.48fr) minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #bfc1c4;
  align-items: start;
}

.venue-grid article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.venue-grid h3,
.venue-grid p {
  margin-bottom: 0;
}

.venue-grid p {
  color: var(--muted);
}

.principles-section {
  padding-block: 108px;
  color: var(--black);
  background: var(--orange);
}

.principles-layout .section-heading {
  max-width: 850px;
  margin-bottom: 50px;
}

.principles-section .eyebrow {
  color: var(--black);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.principle-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(7, 7, 7, 0.5);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  display: block;
  margin-bottom: 42px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.principle-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 21px;
}

.principle-grid p {
  margin-bottom: 0;
}

.faq-section {
  padding-block: 118px;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.faq-section .section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 23px 48px 23px 0;
  list-style: none;
  font-size: 19px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink);
  content: "+";
  text-align: center;
  font-size: 21px;
  line-height: 27px;
}

.faq-list details[open] summary::after {
  color: var(--white);
  background: var(--blue);
  content: "−";
}

.faq-list details p {
  margin-bottom: 24px;
  padding-right: 42px;
  color: var(--muted);
}

.contact-section {
  padding-block: 104px;
  color: var(--white);
  background: var(--black);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: 94px;
  align-items: end;
}

.contact-logo {
  width: 190px;
  height: 190px;
  margin-bottom: 20px;
  object-fit: contain;
}

.contact-section .eyebrow {
  color: var(--orange);
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 60px;
}

.contact-lead {
  max-width: 680px;
  color: #bcc1ca;
  font-size: 18px;
}

.phone-link {
  display: grid;
  max-width: 570px;
  gap: 2px;
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid #4a4a4a;
  border-bottom: 1px solid #4a4a4a;
}

.phone-link span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.phone-link strong {
  font-family: Arial, sans-serif;
  font-size: 46px;
  line-height: 1.15;
}

.phone-link:hover strong,
.phone-link:focus-visible strong {
  color: var(--orange);
}

.contact-note {
  margin: 20px 0 0;
  color: #9298a2;
}

.qr-figure {
  margin: 0;
  padding: 14px;
  border: 1px solid #343434;
  background: var(--white);
}

.qr-figure img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.qr-figure figcaption {
  padding: 12px 5px 2px;
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding-block: 32px;
  border-top: 1px solid #292929;
  color: #a8adb5;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer-inner p:last-child {
  text-align: right;
}

.footer-inner strong,
.footer-inner a {
  color: var(--white);
}

@media (max-width: 1040px) {
  .desktop-nav > a {
    padding-inline: 11px;
  }

  .statement-lines span {
    font-size: 64px;
  }

  .service-showcase {
    gap: 44px;
  }

  .suitable-layout,
  .venue-layout {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  h2 {
    font-size: 46px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-copy {
    width: min(700px, 85%);
  }

  .hero h1 {
    font-size: 70px;
  }

  .statement-copy,
  .services-heading,
  .service-showcase,
  .suitable-layout,
  .process-layout,
  .venue-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .statement-copy,
  .services-heading,
  .suitable-layout,
  .process-layout,
  .venue-layout,
  .faq-layout,
  .contact-layout {
    gap: 46px;
  }

  .services-heading h2 {
    font-size: 56px;
  }

  .services-heading > p {
    max-width: 650px;
  }

  .service-visual {
    min-height: 460px;
  }

  .service-visual img {
    height: 460px;
  }

  .audience-section .section-heading,
  .process-section .section-heading,
  .venue-layout > div:first-child,
  .faq-section .section-heading {
    max-width: 720px;
  }

  .venue-grid article {
    grid-template-columns: 66px minmax(150px, 0.42fr) minmax(0, 1fr);
  }

  .contact-copy {
    max-width: 760px;
  }

  .qr-figure {
    width: min(100%, 430px);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  h2 {
    font-size: 38px;
  }

  .site-header,
  .header-inner {
    min-height: 74px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

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

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

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

  .mobile-nav summary {
    min-width: 56px;
    padding-inline: 9px;
  }

  .hero {
    height: auto;
    min-height: 760px;
    max-height: none;
  }

  .hero-photo {
    object-position: 66% center;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.48);
  }

  .hero-inner {
    min-height: 585px;
    align-items: flex-end;
    padding-block: 112px 38px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    gap: 10px;
    font-size: 12px;
  }

  .hero-kicker::before {
    width: 34px;
    flex-basis: 34px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-selector a {
    min-height: 58px;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
  }

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

  .hero-selector a:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-selector a:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-caption {
    right: 10px;
    bottom: 185px;
    max-width: calc(100% - 20px);
    font-size: 9px;
  }

  .answer-strip .shell {
    min-height: 140px;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
  }

  .answer-strip p:last-child {
    font-size: 16px;
  }

  .statement-section,
  .services-section,
  .audience-section,
  .process-section,
  .venue-section,
  .principles-section,
  .faq-section,
  .contact-section {
    padding-block: 78px;
  }

  .statement-lines {
    margin-bottom: 64px;
  }

  .statement-lines span {
    padding: 13px 16px;
    font-size: 40px;
  }

  .statement-copy,
  .services-heading,
  .suitable-layout,
  .process-layout,
  .venue-layout,
  .faq-layout,
  .contact-layout {
    gap: 34px;
  }

  .statement-text,
  .services-heading > p,
  .audience-section .section-heading > p:last-child,
  .process-section .section-heading > p:not(.eyebrow),
  .venue-lead,
  .faq-section .section-heading > p:last-child,
  .contact-lead {
    font-size: 16px;
  }

  .statement-text .lead {
    font-size: 19px;
  }

  .services-heading {
    margin-bottom: 44px;
  }

  .services-heading h2 {
    font-size: 43px;
  }

  .service-showcase {
    gap: 30px;
  }

  .service-visual {
    min-height: 360px;
  }

  .service-visual img {
    height: 360px;
    object-position: 65% center;
  }

  .service-visual figcaption {
    min-height: 76px;
    padding: 16px;
  }

  .service-visual figcaption strong {
    font-size: 17px;
  }

  .service-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding-block: 24px;
  }

  .service-list h3 {
    font-size: 26px;
  }

  .suitable-list {
    grid-template-columns: 1fr;
  }

  .suitable-list article {
    min-height: auto;
    padding: 24px;
  }

  .suitable-list article > span {
    margin-bottom: 24px;
  }

  .process-list li {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .process-list li > span {
    font-size: 24px;
  }

  .venue-grid article {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .venue-grid article p {
    grid-column: 2;
  }

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

  .principle-grid article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.5);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .principle-grid span {
    margin-bottom: 24px;
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 17px;
  }

  .contact-logo {
    width: 150px;
    height: 150px;
  }

  .contact-section h2 {
    font-size: 40px;
  }

  .phone-link strong {
    font-size: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-inner p:last-child {
    grid-column: auto;
  }
}

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

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


/* First-round indexed content structure: 2026-08-07 */
.content-body{background:#f4f1e9;color:#171717}.content-header{position:sticky;top:0;z-index:20;background:rgba(7,7,7,.96);color:#fff;border-bottom:1px solid rgba(255,255,255,.12)}.content-header-inner{min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px}.content-brand{display:flex;align-items:center;gap:12px;color:#fff;text-decoration:none}.content-brand img{width:46px;height:46px;object-fit:contain;border-radius:50%}.content-brand span{display:flex;flex-direction:column}.content-brand strong{font-size:17px}.content-brand small{font-size:11px;color:#aaa}.content-nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap}.content-nav a{color:#ddd;text-decoration:none;font-size:13px}.content-nav a:hover,.content-nav a:focus-visible{color:#ffd85a}.content-hero{padding:96px 0 60px;background:linear-gradient(135deg,#090909,#26220f);color:#fff}.narrow-shell{max-width:980px}.content-hero h1{font-size:clamp(38px,7vw,76px);line-height:1.04;letter-spacing:-.045em;margin:14px 0 22px;max-width:900px}.content-lead{font-size:clamp(18px,2.4vw,26px);line-height:1.65;color:#e3dfd2;max-width:820px}.fact-line{font-size:13px;line-height:1.7;color:#afa997;border-left:3px solid #ffd85a;padding-left:14px;margin-top:30px}.content-main{padding:68px 0 100px}.answer-card,.content-section,.page-meta{background:#fff;border:1px solid #ded9cc;padding:clamp(24px,4vw,46px);margin-bottom:24px}.answer-card h2,.content-section h2,.page-meta h2{font-size:clamp(24px,3.5vw,38px);line-height:1.2;margin:0 0 18px}.answer-first{font-size:20px;line-height:1.8;font-weight:620}.answer-card p,.content-section p,.content-section li,.page-meta p,.page-meta dd{line-height:1.85;color:#4e4b43}.source-chip{font-size:13px;background:#f4f1e9;padding:12px 14px;border-left:3px solid #d0a600}.source-chip a,.inline-link,.content-main a{color:#705c00}.pending{background:#fff5c4;padding:14px;border:1px dashed #c9a72f;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:13px}.data-table-wrap{overflow-x:auto}.data-table-wrap table{width:100%;border-collapse:collapse;min-width:680px}.data-table-wrap th,.data-table-wrap td{padding:15px;border-bottom:1px solid #e2ddd1;text-align:left;vertical-align:top;line-height:1.6}.data-table-wrap th{background:#171717;color:#fff}.timeline,.number-list{list-style:none;padding:0;margin:0}.timeline li{display:grid;grid-template-columns:130px 1fr;gap:24px;padding:20px 0;border-bottom:1px solid #ded9cc}.timeline strong{font-size:22px}.timeline span{color:#555;line-height:1.75}.number-list li{padding:16px 0;border-bottom:1px solid #ded9cc;line-height:1.75}.check-grid,.article-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.check-grid article,.article-grid article{border:1px solid #ded9cc;padding:24px;background:#faf8f2}.check-grid h3,.article-grid h2{font-size:22px;margin-top:0}.article-grid article a{text-decoration:none}.article-grid time{font-size:12px;color:#777}.status-list{list-style:none;padding:0}.status-list li{display:grid;grid-template-columns:210px 1fr;gap:16px;padding:15px 0;border-bottom:1px solid #ded9cc}.status-list strong{font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:13px}.page-meta{margin-top:56px;background:#171717;color:#fff}.page-meta h2{color:#fff}.page-meta dl{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:#3a382f}.page-meta dl div{background:#171717;padding:16px}.page-meta dt{font-size:12px;color:#ffd85a;margin-bottom:6px}.page-meta dd{margin:0;color:#ddd}.page-meta p{color:#bdb9ad}.page-meta a{color:#ffd85a}.content-footer{background:#070707;color:#fff;padding:44px 0}.footer-grid{display:flex;justify-content:space-between;gap:28px}.content-footer a{color:#ffd85a}.content-footer p{color:#aaa;line-height:1.7}.content-faq details{margin-bottom:12px}.consult-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.consult-form label{display:flex;flex-direction:column;gap:8px;font-weight:700}.consult-form input,.consult-form select,.consult-form textarea{width:100%;padding:13px;border:1px solid #bdb7aa;background:#fff;color:#171717}.consult-form textarea{min-height:130px;resize:vertical}.consult-form label:nth-of-type(4){grid-column:1/-1}.consult-form button{justify-self:start}.consult-result{margin-top:26px;background:#171717;color:#fff;padding:24px}.consult-result output{display:block;line-height:1.8;white-space:pre-wrap}.form-status{color:#ffd85a!important}.contact-qr-small{max-width:250px;margin:24px 0 0}.contact-qr-small img{width:100%;height:auto;display:block}.contact-qr-small figcaption{font-size:12px;margin-top:8px;color:#666}.trust-section{background:#ffd85a;padding:72px 0}.trust-layout{display:grid;grid-template-columns:1.4fr .8fr;gap:60px;align-items:start}.trust-layout h2{font-size:clamp(32px,5vw,58px);line-height:1.05;margin:12px 0 22px}.trust-layout p{line-height:1.8}.trust-links{display:grid;gap:10px}.trust-links a{display:block;background:#111;color:#fff;padding:16px 18px;text-decoration:none}.home-meta{background:#111;color:#c8c3b5;padding:24px 0}.home-meta p{font-size:12px;line-height:1.8;margin:0}.home-meta strong{color:#fff}.visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
@media(max-width:1040px){.content-header{position:relative}.content-header-inner{align-items:flex-start;padding-top:16px;padding-bottom:16px}.content-nav{justify-content:flex-end}.content-nav a{font-size:12px}.trust-layout{grid-template-columns:1fr;gap:28px}}
@media(max-width:720px){.content-header-inner{display:block}.content-brand{margin-bottom:14px}.content-nav{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:#333}.content-nav a{background:#111;padding:12px 8px;text-align:center}.content-nav a:last-child{grid-column:1/-1}.content-hero{padding:58px 0 44px}.content-main{padding-top:38px}.check-grid,.article-grid,.page-meta dl,.consult-form{grid-template-columns:1fr}.timeline li,.status-list li{grid-template-columns:1fr;gap:6px}.consult-form label:nth-of-type(4){grid-column:auto}.footer-grid{display:block}.trust-section{padding:52px 0}}
