/* TimeTrace — base.css : reset, tokens, typography */

[hidden]{display:none!important}

:root {
  --color-graphite: #1F1F1F;
  --color-gold: #D4AF37;
  --color-bg: #F5F3EE;
  --color-text: #1A1A1A;
  --color-bronze: #B8933A;
  --color-border: #D9D5CB;

  --font-heading: "Source Serif 4", Georgia, serif;
  --font-body: "Manrope", -apple-system, Segoe UI, sans-serif;

  --container-max: 1200px;
  --gutter-mobile: 24px;
  --gutter-desktop: 48px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-graphite);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-top: 1.6em; }
h3 { font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.5rem); margin-top: 1.4em; }

p { margin: 0 0 1.1em; }

a {
  color: var(--color-bronze);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover, a:focus { color: var(--color-bronze); }
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.5em; }

blockquote {
  font-family: var(--font-body);
  font-weight: 600;
  border-left: 3px solid var(--color-gold);
  margin: 1.6em 0;
  padding: 0.2em 0 0.2em 1.2em;
  color: var(--color-graphite);
}

hr.divider {
  border: none;
  border-top: 1px solid var(--color-gold);
  opacity: 0.6;
  margin: 2.5em 0;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-gold);
  color: var(--color-graphite);
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

::selection { background: var(--color-gold); color: var(--color-graphite); }

/* Notis "uточнить/verify" */
.verify {
  font-style: normal;
  color: var(--color-bronze);
  font-weight: 600;
  font-size: 0.85em;
  white-space: nowrap;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
th { font-family: var(--font-heading); font-weight: 600; color: var(--color-graphite); }

@media print {
  header.site-header, footer.site-footer, .no-print { display: none !important; }
  body { background: #fff; color: #000; }
}
