:root {
  color-scheme: light;
  --paper: #fcfaf6;
  --paper-2: #f6f0e4;
  --card: #fffefb;
  --ink: #11100e;
  --text: #3b352f;
  --muted: #6f6962;
  --line: #e4ded4;
  --line-strong: #d7cec1;
  --brown: #3d1a0d;
  --accent: #7655d8;
  --accent-soft: #ede7ff;
  --footer: #545454;
  --display:
    "汉仪旗黑",
    "HYQiHei",
    "HYQiHei-70S",
    "HYQiHei-60S",
    "HYQiHei-50S",
    "Hanyi QiHei",
    "Iowan Old Style",
    "Palatino Linotype",
    "Book Antiqua",
    "Songti SC",
    "STSong",
    Georgia,
    serif;
  --sans:
    "汉仪旗黑",
    "HYQiHei",
    "HYQiHei-70S",
    "HYQiHei-60S",
    "HYQiHei-50S",
    "Hanyi QiHei",
    "Rethink Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  --page-pad: 24px;
  --content: 1180px;
  --narrow: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-header,
main,
.contact-section {
  width: min(100% - 16px, 1440px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 8px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 16px 32px;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
}

.nav a {
  min-height: 38px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: currentColor;
}

.nav-cta {
  border: 0;
  background: transparent;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.lang-switch a,
.lang-switch span {
  min-height: 34px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.lang-switch .is-current {
  background: var(--ink);
  color: var(--paper);
}

main {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.hero {
  display: block;
  min-height: auto;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: none;
  min-height: 540px;
  padding: 54px var(--page-pad) 70px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brown);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.hero h1 {
  width: min(100%, 1120px);
  margin: 0;
  color: #000;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 860px;
  margin: 34px 0 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.42;
}

.hero-lead {
  max-width: 840px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 160ms ease;
}

.button:hover {
  color: var(--accent);
}

.button.primary,
.button.secondary,
.button.ghost {
  background: transparent;
  color: var(--ink);
}

.profile-panel {
  display: block;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  overflow: visible;
}

.profile-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 560;
  border-radius: 0;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

.profile-panel-body {
  width: min(100% - 48px, 920px);
  margin: 44px auto 0;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  text-align: center;
}

.panel-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.45;
}

.fact-list {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.fact-list li {
  position: relative;
  padding: 0;
}

.fact-list li::before {
  color: var(--brown);
  content: "";
}

.section {
  padding: 96px var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.compact-section,
.works-section,
.notes-section {
  background: var(--paper);
}

.question-section,
.process-section {
  background: #fff;
}

.profile-section {
  background: var(--paper-2);
}

.section-heading {
  max-width: var(--narrow);
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.profile-layout h2,
.contact-section h2 {
  margin: 0;
  color: #000;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.services-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
  max-width: var(--content);
  margin: 0 auto;
  align-items: start;
}

.services-side {
  position: sticky;
  top: 120px;
  padding: 28px 0;
}

.services-mark {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 118px;
  font-weight: 500;
  line-height: 0.9;
}

.services-mark span {
  margin-left: 6px;
  font-family: var(--display);
  font-size: 0.42em;
}

.services-side-copy {
  max-width: 230px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
}

.services-main .section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
  overflow: hidden;
}

.service-list article {
  min-height: 320px;
  padding: 46px 42px;
  border: 0;
  background: var(--card);
  color: var(--ink);
}

.service-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-list article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.number {
  display: block;
  margin-bottom: 32px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

.service-list p,
.proof-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1180px;
  min-height: 700px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  overflow: hidden;
}

.question-list p {
  display: flex;
  min-height: 280px;
  margin: 0;
  padding: 54px 64px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--card);
  color: var(--ink);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.question-list p:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.question-list p:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.question-list p:first-child,
.question-list p:nth-child(2),
.question-list p:nth-child(5) {
  grid-column: auto;
  min-height: 280px;
  background: var(--card);
  color: var(--ink);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.35;
}

.question-list p:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 220px;
  background: var(--paper-2);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 360px;
  padding: 44px 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  counter-increment: process;
}

.process-list li:nth-child(1),
.process-list li:nth-child(2),
.process-list li:nth-child(3),
.process-list li:nth-child(4) {
  grid-column: auto;
  min-height: 360px;
  background: var(--card);
}

.process-list li::before {
  display: block;
  margin-bottom: 44px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  content: "STEP " counter(process, decimal-leading-zero);
}

.process-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.25;
}

.process-list span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 80px;
  max-width: 1120px;
  margin: 0 auto;
}

.profile-layout .section-kicker {
  text-align: left;
}

.profile-layout h2 {
  text-align: left;
}

.prose p {
  margin: 0 0 24px;
  color: var(--text);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  border: 0;
  background: transparent;
}

.proof-grid article {
  display: grid;
  grid-template-rows: 240px minmax(210px, auto);
  min-height: 450px;
  min-width: 0;
  grid-column: auto;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--card);
  overflow: hidden;
}

.proof-grid article:nth-child(1),
.proof-grid article:nth-child(2),
.proof-grid article:nth-child(6),
.proof-grid article:nth-child(7),
.proof-grid article:nth-child(8),
.proof-grid article:nth-child(9) {
  grid-column: auto;
  min-height: 450px;
}

.proof-grid img {
  width: 100%;
  height: 240px;
  border-bottom: 1px solid var(--line);
  background: #f4efe7;
  object-fit: cover;
  object-position: center;
}

.proof-grid .proof-img-contain {
  box-sizing: border-box;
  padding: 22px;
  object-fit: contain;
  object-position: center;
  background: #f4efe7;
}

.proof-grid .proof-img-top,
.proof-grid .proof-img-foundation,
.proof-grid .proof-img-middle,
.proof-grid .proof-img-left,
.proof-grid .proof-img-right,
.proof-grid .proof-img-japan {
  height: 240px;
}

.proof-grid .proof-img-top {
  object-position: center 45%;
}

.proof-grid .proof-img-foundation {
  object-position: center center;
}

.proof-grid .proof-img-middle {
  object-position: center center;
}

.proof-grid .proof-img-left {
  object-position: left center;
}

.proof-grid .proof-img-right {
  object-position: right center;
}

.proof-grid .proof-img-japan {
  object-position: center 76%;
}

.proof-body {
  display: block;
  padding: 30px 28px 34px;
}

.proof-body h3 {
  min-height: 0;
  color: var(--ink);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.works-section .section-heading,
.notes-section .section-heading {
  max-width: 980px;
  margin-bottom: 56px;
}

.works-section .section-heading p,
.notes-section .section-heading p {
  max-width: 760px;
}

.notes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  counter-reset: notes;
}

.consult-section {
  background: #fff;
}

.consult-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.consult-heading {
  margin-bottom: 28px;
}

.consult-agent-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffefb 0%, #f8f4ec 100%);
}

.consult-agent-media {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.consult-agent-media img {
  width: 148px;
  height: 148px;
  border: 1px solid var(--line);
  border-radius: 999px;
  object-fit: cover;
  object-position: center 32%;
  box-shadow: 0 14px 32px rgba(25, 20, 14, 0.08);
}

.consult-agent-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.consult-agent-copy {
  display: grid;
  gap: 14px;
}

.consult-agent-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.consult-agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.consult-agent-badge[data-ready="true"] {
  border-color: rgba(61, 124, 77, 0.18);
  background: rgba(232, 247, 236, 0.88);
}

.consult-agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a19c95;
}

.consult-agent-badge[data-ready="true"] .consult-agent-dot {
  background: #2b8a57;
  box-shadow: 0 0 0 5px rgba(43, 138, 87, 0.12);
}

.consult-agent-model {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.consult-agent-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.22;
}

.consult-agent-text {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.consult-agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consult-agent-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.consult-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.consult-side-card,
.consult-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
}

.consult-side-card {
  padding: 26px 22px;
  position: sticky;
  top: 118px;
}

.consult-side-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
}

.consult-prompt-list {
  display: grid;
  gap: 12px;
}

.consult-prompt {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.consult-prompt:hover {
  border-color: var(--line-strong);
  background: var(--paper-2);
  transform: translateY(-1px);
}

.consult-panel {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 85, 216, 0.06), transparent 28%),
    var(--card);
  box-shadow: 0 18px 46px rgba(25, 20, 14, 0.05);
}

.consult-log {
  display: grid;
  gap: 16px;
  min-height: 380px;
}

.consult-message {
  display: grid;
  gap: 10px;
  max-width: min(100%, 760px);
}

.consult-message.assistant {
  justify-self: start;
}

.consult-message.user {
  justify-self: end;
}

.consult-message-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.consult-bubble {
  padding: 18px 18px 16px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.82;
  white-space: pre-wrap;
  box-shadow: 0 8px 22px rgba(25, 20, 14, 0.04);
}

.consult-message.assistant .consult-bubble {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--text);
}

.consult-message.user .consult-bubble {
  background: var(--ink);
  color: var(--paper);
}

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

.consult-mini-action {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.consult-form {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.consult-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 144px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.7;
}

.consult-form textarea:focus {
  outline: 2px solid rgba(118, 85, 216, 0.18);
  border-color: var(--accent);
}

.consult-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.consult-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.consult-submit {
  min-width: 132px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.consult-submit:hover {
  background: #2b2926;
}

.consult-loading .consult-bubble {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.note-item {
  position: relative;
  min-height: 150px;
  padding: 30px 70px 32px 64px;
  border-bottom: 1px solid var(--line);
}

.note-item::before {
  position: absolute;
  top: 38px;
  left: 0;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  content: counter(notes, decimal-leading-zero);
  counter-increment: notes;
}

.note-link {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr) 36px;
  align-items: center;
  gap: 30px;
  color: var(--ink);
}

.note-title {
  display: block;
  padding: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.28;
}

.note-summary {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.note-link::after {
  justify-self: end;
  color: var(--brown);
  font-size: 30px;
  line-height: 1;
  content: "→";
}

.article-page {
  min-height: 100vh;
  background: var(--paper);
}

.article-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 28px 110px;
}

.article-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.12;
}

.article-meta {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.article-lead {
  margin: 22px 0 0;
  max-width: 780px;
  color: var(--text);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.75;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.article-body {
  padding-top: 38px;
}

.article-body h2 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.article-body p,
.article-body li {
  color: var(--text);
  font-size: 18px;
  line-height: 1.95;
}

.article-body p {
  margin: 0 0 20px;
}

.article-points {
  margin: 12px 0 0;
  padding-left: 22px;
}

.article-footnote {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 92px 28px 54px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: var(--footer);
  color: var(--paper);
  text-align: left;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-copy h2,
.contact-copy p {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}

.contact-copy h2 {
  color: var(--paper);
  font-family: var(--display);
  font-size: 86px;
  font-weight: 600;
  line-height: 1.02;
}

.contact-copy p {
  margin-top: 30px;
  color: rgba(252, 250, 246, 0.78);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 38px;
}

.contact-links a {
  color: rgba(252, 250, 246, 0.86);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.18);
  color: var(--paper);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.social-button:hover {
  transform: translateY(-1px);
  background: var(--paper);
  color: var(--footer);
}

.social-button-wide {
  width: auto;
  min-width: 86px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0;
}

.contact-list {
  display: grid;
  gap: 28px;
  padding-top: 6px;
}

.contact-row {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(252, 250, 246, 0.22);
}

.contact-row-label {
  display: block;
  color: var(--paper);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-row-value {
  display: block;
  margin-top: 12px;
  color: rgba(252, 250, 246, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 16px;
}

.contact-section .button {
  color: var(--paper);
}

@media (max-width: 1120px) {
  .site-header,
  main,
  .contact-section {
    width: 100%;
    border-radius: 0;
  }

  .site-header {
    top: 0;
    border-right: 0;
    border-left: 0;
  }

  main {
    border-right: 0;
    border-left: 0;
  }

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

  .services-shell,
  .contact-shell,
  .consult-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .consult-agent-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .consult-agent-copy {
    justify-items: center;
  }

  .consult-agent-topline,
  .consult-agent-tags {
    justify-content: center;
  }

  .services-side {
    position: static;
    display: grid;
    grid-template-columns: 160px repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: end;
    max-width: var(--content);
    margin: 0 auto;
    padding: 0;
  }

  .consult-side-card {
    position: static;
  }

  .services-side-copy {
    max-width: none;
    margin-top: 0;
  }

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

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

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .profile-layout .section-kicker,
  .profile-layout h2 {
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  .header-tools {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
    gap: 18px;
    font-size: 15px;
  }

  .lang-switch {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch a,
  .lang-switch span {
    flex: 1 1 0;
  }

  .hero-main {
    min-height: auto;
    padding: 52px 20px 58px;
  }

  .hero h1,
  .section-heading h2,
  .profile-layout h2,
  .contact-copy h2 {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-lead,
  .section-heading p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .consult-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .consult-submit {
    width: 100%;
  }

  .profile-panel img {
    aspect-ratio: 4 / 3;
  }

  .profile-panel-body {
    width: calc(100% - 32px);
    margin-top: 28px;
    padding: 30px 22px;
  }

  .panel-name {
    font-size: 25px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .services-side {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-mark {
    font-size: 86px;
  }

  .services-side-copy {
    font-size: 24px;
  }

  .service-list,
  .question-list,
  .process-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .service-list article:nth-child(odd),
  .service-list article:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-list article:last-child {
    border-bottom: 0;
  }

  h3 {
    font-size: 27px;
  }

  .question-list {
    min-height: auto;
  }

  .question-list p,
  .question-list p:first-child,
  .question-list p:nth-child(2),
  .question-list p:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding: 36px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 26px;
  }

  .question-list p:last-child {
    border-bottom: 0;
  }

  .process-list li,
  .process-list li:nth-child(1),
  .process-list li:nth-child(2),
  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    min-height: auto;
  }

  .prose p,
  .contact-copy p,
  .article-lead {
    font-size: 21px;
  }

  .note-item {
    padding: 28px 0 30px 42px;
  }

  .note-link {
    grid-template-columns: 1fr 28px;
    gap: 12px;
  }

  .note-summary {
    grid-column: 1 / -1;
  }

  .proof-grid article,
  .proof-grid article:nth-child(1),
  .proof-grid article:nth-child(2),
  .proof-grid article:nth-child(6),
  .proof-grid article:nth-child(7),
  .proof-grid article:nth-child(8),
  .proof-grid article:nth-child(9) {
    min-height: auto;
  }

  .contact-section {
    padding: 72px 22px 46px;
  }

  .contact-shell {
    gap: 46px;
  }

  .article-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-header h1 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 12px;
    font-size: 14px;
  }

  .hero h1,
  .section-heading h2,
  .profile-layout h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .service-list article,
  .process-list li {
    padding: 34px 24px;
  }

  .proof-grid {
    gap: 14px;
  }

  .proof-grid article {
    grid-template-rows: 210px auto;
  }

  .proof-grid img,
  .proof-grid .proof-img-top,
  .proof-grid .proof-img-foundation,
  .proof-grid .proof-img-middle,
  .proof-grid .proof-img-left,
  .proof-grid .proof-img-right,
  .proof-grid .proof-img-japan {
    height: 210px;
  }
}
