.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.trust-hero {
  max-width: 900px;
  padding-bottom: 26px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 22px 0 0;
}

.policy-meta div {
  display: flex;
  gap: 7px;
  align-items: baseline;
}

.policy-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 850;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 300px);
  gap: 30px;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 20px;
}

.trust-content {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.trust-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.trust-section h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.trust-section p,
.trust-section li,
.trust-notice p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.trust-section p:last-child,
.trust-notice p:last-child { margin-bottom: 0; }

.trust-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.trust-section a,
.trust-contact a {
  color: var(--accent-strong);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.trust-notice {
  margin: 24px 0 0;
  border: 1px solid rgba(22, 115, 95, 0.28);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 16px 18px;
  background: var(--surface-soft);
}

.trust-notice strong {
  display: block;
  margin-bottom: 5px;
}

.trust-sidebar {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 14px;
}

.trust-toc h2,
.trust-contact h2 { font-size: 16px; }

.trust-toc ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.trust-toc a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.trust-toc a:hover,
.trust-toc a:focus { color: var(--accent-strong); }

.trust-contact p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trust-footer { row-gap: 12px; }

@media (max-width: 920px) {
  .trust-layout { grid-template-columns: 1fr; }
  .trust-sidebar { position: static; grid-row: 1; }
  .trust-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .trust-section { padding: 22px 0; }
  .trust-section h2 { font-size: 21px; }
  .trust-toc ol { grid-template-columns: 1fr; }
  .policy-meta { display: grid; }
}
