/* Reset, document defaults, accessibility basics. Nothing project-specific. */

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

html {
  -webkit-text-size-adjust: 100%;
  /* Шапка липкая (88px, на мобильном 64px): без этого отступа переход по
     якорю — включая skip-link — уводит цель под неё, и заголовок не виден. */
  scroll-padding-top: 96px;
}
@media (max-width: 767px) {
  html { scroll-padding-top: 72px; }
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  min-height: 100vh;
  overflow-x: hidden;          /* nothing may scroll the page sideways */
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: var(--lh-tight); }

a { color: inherit; }

ul, ol { list-style: none; padding: 0; }

/* Visible focus is not optional, whatever the mockup shows. */
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: var(--z-modal);
  padding: var(--space-8) var(--space-16);
  /* Текст тёмный: белый на лайме давал контраст 1.15:1. */
  background: var(--color-accent); color: var(--color-on-accent);
  font-weight: 700;
}
.skip-link:focus { left: var(--space-8); top: var(--space-8); }
/* main получает tabindex="-1", чтобы skip-link реально переносил фокус. Рамку
   вокруг всей страницы при этом не рисуем: цель не достижима табуляцией. */
#main:focus { outline: none; }

/* A hidden element must stay hidden even when a component sets display.
   Without this a closed panel keeps its height and pushes sections down. */
[hidden][hidden] { display: none !important; }

/* Tap targets: 24×24 minimum (WCAG 2.2 AA, 2.5.8) added by a pseudo-element,
   never by padding — padding changes the layout, this does not. */
.tap-target { position: relative; }
.tap-target::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; translate: 0 -50%;
  height: 100%; min-height: 24px; z-index: 1;
}

/* Номер телефона не должен разрываться посреди цифр: на узких экранах строка
   «call 1800 858 858 or visit …» ломала его на «1800 858» и «858». */
a[href^="tel:"] { white-space: nowrap; }
