:root {
  color-scheme: dark;
  --black: #090808;
  --black-soft: #100e0f;
  --panel: #151214;
  --panel-2: #1c1719;
  --panel-3: #231c1e;
  --ivory: #f7f0e5;
  --ivory-soft: #ded4c6;
  --muted: #aea398;
  --gold: #d7b57a;
  --gold-light: #f1d59a;
  --gold-dark: #8f6c34;
  --wine: #7a1f3d;
  --wine-light: #d99ab0;
  --line: rgba(215, 181, 122, .24);
  --line-soft: rgba(247, 240, 229, .1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--black);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% -8%, rgba(215, 181, 122, .15), transparent 32rem),
    radial-gradient(circle at -10% 42%, rgba(122, 31, 61, .12), transparent 34rem),
    var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(215, 181, 122, .25); color: #fff; }

.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--black);
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 8, 8, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 213, 154, .6);
  border-radius: 50%;
  background: rgba(215, 181, 122, .05);
  color: var(--gold-light);
  font: 27px/1 var(--serif);
  box-shadow: inset 0 0 0 5px rgba(215, 181, 122, .04);
}
.brand-copy { display: grid; min-width: 0; }
.brand-copy strong {
  color: #fffaf2;
  font: 700 24px/1.05 var(--serif);
  letter-spacing: .02em;
}
.brand-copy small {
  margin-top: 6px;
  color: #a69b90;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.document-tabs {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.document-tabs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #d2c8bb;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.document-tabs a:hover,
.document-tabs a:focus-visible {
  border-color: rgba(215, 181, 122, .35);
  color: var(--gold-light);
}
.document-tabs a[aria-current="page"] {
  border-color: rgba(215, 181, 122, .42);
  background: rgba(215, 181, 122, .1);
  color: var(--gold-light);
}
.language-switch {
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 181, 122, .45);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.legal-hero::after {
  content: "M";
  position: absolute;
  right: -1vw;
  bottom: -10vw;
  color: rgba(215, 181, 122, .025);
  font: 500 min(36vw, 470px)/1 var(--serif);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) 0 clamp(38px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  align-items: end;
  gap: clamp(28px, 6vw, 86px);
}
.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.back-link::before { content: "←"; font-size: 18px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fffaf3;
  font: 500 clamp(44px, 7vw, 84px)/.98 var(--serif);
  letter-spacing: -.045em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
html[lang="ru"] .legal-privacy .legal-hero h1 {
  font-size: clamp(48px, 5.2vw, 72px);
  overflow-wrap: normal;
}
.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #c8bdb0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}
.legal-meta {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(35, 28, 30, .95), rgba(16, 14, 15, .88));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.document-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.document-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(215, 181, 122, .1);
}
.legal-meta dl { margin: 0; }
.legal-meta div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
}
.legal-meta dt { color: #8f857c; font-size: 11px; }
.legal-meta dd { margin: 0; color: #e8dfd4; font-size: 12px; font-weight: 700; }

.legal-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}
.toc {
  position: sticky;
  top: 104px;
  max-height: calc(100dvh - 126px);
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(21, 18, 20, .88);
}
.toc-title {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.toc ol { display: grid; gap: 3px; margin: 0; padding: 0; list-style: none; }
.toc a {
  display: block;
  padding: 8px 9px;
  border-radius: 10px;
  color: #b9aea2;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}
.toc a:hover,
.toc a:focus-visible { background: rgba(215, 181, 122, .1); color: var(--gold-light); }
.toc .toc-cta {
  width: 100%;
  appearance: none;
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px solid rgba(215, 181, 122, .42);
  border-radius: 10px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.legal-document {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 181, 122, .3);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(215, 181, 122, .08), transparent 26rem),
    var(--panel);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .32);
}
.key-facts {
  padding: clamp(28px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
}
.key-facts > span {
  color: var(--wine-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.key-facts h2 {
  max-width: 780px;
  margin: 12px 0 24px;
  color: #fffaf2;
  font: 500 clamp(30px, 4vw, 48px)/1.07 var(--serif);
  letter-spacing: -.03em;
  text-wrap: balance;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.fact {
  min-height: 118px;
  padding: 19px;
  border: 1px solid var(--line-soft);
  border-radius: 17px;
  background: rgba(247, 240, 229, .035);
}
.fact b { display: block; margin-bottom: 7px; color: var(--gold-light); font-size: 13px; }
.fact p { margin: 0; color: #bfb4a8; font-size: 13px; line-height: 1.55; }
.legal-safety .key-facts { background: linear-gradient(135deg, rgba(122, 31, 61, .16), transparent 58%); }
.legal-safety .key-facts > span { color: #efb1c5; }

.mobile-toc {
  display: none;
  margin: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-2);
}
.mobile-toc summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.mobile-toc summary::after { content: "+"; font-size: 20px; }
.mobile-toc[open] summary::after { content: "−"; }
.mobile-toc:not([open]) > :not(summary) { display: none !important; }
.mobile-toc ol { display: grid; gap: 3px; margin: 0; padding: 0 16px 16px; list-style: none; }
.mobile-toc a { min-height: 44px; display: flex; align-items: center; padding: 7px 0; color: #c2b7aa; font-size: 13px; text-decoration: none; }

.clause {
  position: relative;
  padding: 31px clamp(24px, 5vw, 52px) 34px;
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 0;
}
.clause:last-of-type { border-bottom: 0; }
.clause-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 15px;
}
.clause-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}
.clause h2 {
  margin: 1px 0 0;
  color: #f8f1e7;
  font: 600 clamp(24px, 3vw, 32px)/1.15 var(--serif);
  letter-spacing: -.02em;
  text-wrap: balance;
}
.clause h3 { margin: 22px 0 8px; color: var(--gold-light); font-size: 14px; }
.clause p,
.clause li {
  color: #c2b7aa;
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: break-word;
}
.clause > p,
.clause > ul,
.clause > ol,
.clause > h3,
.clause > .warning,
.clause > .purpose-list { max-width: 72ch; }
.clause p { margin: 0 0 13px; }
.clause p:last-child { margin-bottom: 0; }
.clause ul,
.clause ol { margin: 11px 0 15px; padding-left: 1.35em; }
.clause li + li { margin-top: 7px; }
.clause strong { color: #eee5d9; }
.clause a { color: var(--gold-light); text-underline-offset: 3px; }
.legal-safety .clause[data-risk="high"] { background: rgba(122, 31, 61, .08); }
.legal-safety .clause[data-risk="high"] .clause-number { border-color: rgba(217, 154, 176, .4); color: #efb1c5; }

.purpose-list { display: grid; gap: 9px; margin-top: 16px; }
.purpose-row {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 15px 17px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(247, 240, 229, .025);
}
.purpose-row b { color: var(--gold-light); font-size: 13px; }
.purpose-row span { color: #bcb1a5; font-size: 13px; line-height: 1.55; }
.warning {
  margin: 18px 0 0;
  padding: 17px 19px;
  border: 1px solid rgba(217, 154, 176, .3);
  border-radius: 16px;
  background: rgba(122, 31, 61, .13);
  color: #e5cbd4;
  font-size: 14px;
  line-height: 1.65;
}
.warning strong { color: #ffdce8; }

.document-footer {
  padding: clamp(28px, 5vw, 48px);
  border-top: 1px solid var(--line);
  background: var(--black-soft);
}
.document-footer p { margin: 0 0 19px; color: #978c81; font-size: 12px; line-height: 1.65; }
.footer-actions { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; }
.next-document {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.primary-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(110deg, #b98a39, #f1d592 52%, #c7994a);
  color: #1a1510;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(185, 138, 57, .18);
}

.site-footer {
  border-top: 1px solid rgba(215, 181, 122, .16);
  background: #070606;
}
.site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #81776e;
  font-size: 11px;
}
.site-footer a { color: var(--gold); text-decoration: none; }
.privacy-settings {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(215, 181, 122, .28);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 11px;
  cursor: pointer;
}
.privacy-settings:hover,
.privacy-settings:focus-visible { border-color: var(--gold); color: var(--gold-light); }

.inline-legal-request {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(215, 181, 122, .42);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 800;
  cursor: pointer;
}

.legal-request-dialog {
  width: min(620px, calc(100% - 24px));
  max-height: min(850px, calc(100dvh - 24px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(215, 181, 122, .42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(215, 181, 122, .12), transparent 22rem),
    var(--panel);
  color: var(--ivory);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .72);
}
.legal-request-dialog::backdrop {
  background: rgba(4, 3, 3, .82);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.legal-request-shell { position: relative; padding: clamp(26px, 6vw, 42px); }
.legal-request-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(9, 8, 8, .7);
  color: var(--gold-light);
  font-size: 24px;
  cursor: pointer;
}
.legal-request-kicker {
  margin: 0 52px 10px 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.legal-request-title {
  margin: 0 52px 10px 0;
  color: #fffaf2;
  font: 600 clamp(30px, 6vw, 42px)/1.05 var(--serif);
  letter-spacing: -.03em;
}
.legal-request-intro { max-width: 500px; margin: 0 0 24px; color: #bfb4a8; font-size: 14px; line-height: 1.6; }
.legal-request-form { display: grid; gap: 15px; }
.legal-request-field { display: grid; gap: 7px; }
.legal-request-field label,
.legal-request-consent span { color: #d9cfc2; font-size: 12px; font-weight: 750; }
.legal-request-field input,
.legal-request-field select,
.legal-request-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 181, 122, .28);
  border-radius: 14px;
  background: rgba(9, 8, 8, .6);
  color: #fffaf2;
}
.legal-request-field textarea { min-height: 132px; resize: vertical; line-height: 1.5; }
.legal-request-field input::placeholder,
.legal-request-field textarea::placeholder { color: #796f67; }
.legal-request-consent { display: grid; grid-template-columns: 22px minmax(0, 1fr); align-items: start; gap: 9px; }
.legal-request-consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--gold-dark); }
.legal-request-consent span { font-weight: 500; line-height: 1.5; }
.legal-request-submit {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(110deg, #b98a39, #f1d592 52%, #c7994a);
  color: #1a1510;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.legal-request-submit:disabled { cursor: wait; opacity: .65; }
.legal-request-status { min-height: 0; margin: 0; color: #bfb4a8; font-size: 13px; line-height: 1.5; }
.legal-request-status[data-state="success"] { color: #e9d39c; }
.legal-request-status[data-state="error"] { color: #efb1c5; }

:focus-visible { outline: 3px solid #f1cd7b; outline-offset: 3px; }

@media (max-width: 900px) {
  html { scroll-padding-top: 128px; }
  .header-inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 9px 12px 0;
  }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; font-size: 23px; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { display: none; }
  .language-switch { min-width: 44px; min-height: 44px; }
  .language-switch { grid-column: 2; grid-row: 1; }
  .document-tabs {
    grid-column: 1 / -1;
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 6px 12px 9px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .document-tabs::-webkit-scrollbar { display: none; }
  .document-tabs a { min-height: 44px; flex: 1 0 auto; padding-inline: 13px; }
  .hero-inner {
    width: min(100% - 24px, 680px);
    padding: 34px 0 38px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .back-link { margin-bottom: 25px; }
  .legal-hero h1 { font-size: clamp(38px, 10vw, 58px); }
  html[lang="ru"] .legal-privacy .legal-hero h1 { overflow-wrap: anywhere; }
  .hero-lead { margin-top: 18px; font-size: 16px; }
  .legal-meta { padding: 18px; }
  .legal-layout {
    width: min(100% - 24px, 680px);
    padding: 24px 0 48px;
    display: block;
  }
  .toc { display: none; }
  .legal-document { border-radius: 22px; }
  .mobile-toc { display: block; }
  .clause { scroll-margin-top: 0; }
}

@media (max-width: 560px) {
  .header-inner { padding-top: 8px; }
  .document-tabs a { font-size: 11px; }
  .hero-inner,
  .legal-layout { width: calc(100% - 20px); }
  .hero-inner { padding-top: 27px; }
  .legal-hero h1 { font-size: clamp(36px, 11vw, 48px); }
  html[lang="ru"] .legal-privacy .legal-hero h1 { font-size: clamp(28px, 8.6vw, 36px); overflow-wrap: anywhere; }
  .legal-meta div { grid-template-columns: 78px minmax(0, 1fr); }
  .key-facts { padding: 25px 19px; }
  .key-facts h2 { font-size: 30px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact { min-height: 0; }
  .mobile-toc { margin: 12px; }
  .clause { padding: 25px 19px 28px; }
  .clause-header { grid-template-columns: 34px minmax(0, 1fr); gap: 11px; }
  .clause-number { width: 32px; height: 32px; }
  .clause h2 { font-size: 24px; }
  .clause p,
  .clause li { font-size: 15px; line-height: 1.68; }
  .purpose-row { grid-template-columns: 1fr; gap: 6px; }
  .document-footer { padding: 26px 19px max(30px, env(safe-area-inset-bottom)); }
  .footer-actions { grid-template-columns: 1fr; }
  .next-document { justify-content: center; order: 2; }
  .primary-action { width: 100%; }
  .site-footer-inner { width: calc(100% - 24px); min-height: 0; padding: 25px 0 32px; display: grid; gap: 8px; text-align: center; }
}

@media (max-width: 400px) {
  .clause-header { grid-template-columns: 30px minmax(0, 1fr); gap: 9px; }
  .clause-number { width: 30px; height: 30px; }
  .clause h2 {
    min-width: 0;
    font-size: 22px;
    line-height: 1.18;
    overflow-wrap: normal;
    hyphens: auto;
    text-wrap: pretty;
  }
}

@media (max-width: 360px) {
  .document-tabs { gap: 2px; padding: 4px 4px 8px; }
  .document-tabs a { min-height: 44px; padding-inline: 5px; font-size: 9.5px; }
  .legal-hero h1 { font-size: 35px; }
  html[lang="ru"] .legal-privacy .legal-hero h1 { font-size: 28px; }
  .legal-meta dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 9px; }
  .legal-meta div { display: block; min-width: 0; padding: 8px 3px; }
  .legal-meta dt { font-size: 9px; }
  .legal-meta dd { margin-top: 3px; font-size: 10.5px; line-height: 1.3; overflow-wrap: anywhere; }
  .clause-header { display: block; }
  .clause-number { margin-bottom: 10px; }
  .clause h2 { font-size: 21px; overflow-wrap: normal; hyphens: auto; }
}

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

@media print {
  :root { color-scheme: light; }
  body { background: #fff; color: #111; }
  .site-header, .back-link, .toc, .mobile-toc, .document-footer, .site-footer { display: none !important; }
  .legal-hero { border: 0; }
  .hero-inner, .legal-layout { width: 100%; padding: 0; display: block; }
  .legal-hero h1, .key-facts h2, .clause h2 { color: #111; }
  .hero-lead, .clause p, .clause li { color: #333; }
  .legal-meta { margin: 20px 0; border-color: #bbb; background: #fff; box-shadow: none; }
  .legal-meta dt, .legal-meta dd { color: #333; }
  .legal-document { border: 0; background: #fff; box-shadow: none; }
  .key-facts, .clause { padding-inline: 0; border-color: #ccc; }
  .fact, .purpose-row { border-color: #ccc; background: #fff; }
  .fact p, .purpose-row span { color: #333; }
  .eyebrow,
  .document-status,
  .key-facts > span,
  .fact b,
  .clause-number,
  .clause h3,
  .purpose-row b,
  .clause a { color: #5c3d16 !important; }
  .clause strong,
  .warning strong { color: #111 !important; }
  .warning { border-color: #777; background: #fff; color: #222; }
  .clause { break-inside: avoid; }
}
