:root {
  color-scheme: light;
  --ink: #163f46;
  --ink-strong: #0d3036;
  --muted: #66777b;
  --line: #dce5e2;
  --surface: #ffffff;
  --soft: #f4f8f7;
  --gold: #c39b52;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink-strong);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: var(--ink); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-150%);
}

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

.trust-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}

.trust-nav,
.trust-main,
.trust-footer-inner {
  width: min(920px, calc(100% - 32px));
  margin-inline: auto;
}

.trust-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.trust-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  font-weight: 800;
  text-decoration: none;
}

.trust-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(195,155,82,.45);
  border-radius: 6px;
  object-fit: cover;
}

.trust-back {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.trust-main { padding: 48px 0 64px; }

.trust-hero { margin-bottom: 28px; }

.trust-kicker {
  color: #8a6b32;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
}

.trust-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.trust-card {
  margin-top: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.trust-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
}

.trust-card p,
.trust-card ul { margin: 8px 0 0; }

.trust-card li + li { margin-top: 6px; }

.trust-note {
  border-left: 4px solid var(--gold);
  background: #fffaf0;
}

.trust-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-strong);
  color: #eaf1ef;
}

.trust-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.trust-footer a { color: #fff; }

@media (max-width: 640px) {
  .trust-nav { min-height: 62px; }
  .trust-main { padding: 32px 0 48px; }
  .trust-card { padding: 18px; }
  .trust-footer-inner { flex-direction: column; }
}

