/* ===== Local fonts (TTF) ===== */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS Reset / Base ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0f1416;
  background: #f7faf8;
  line-height: 1.65;
}

/* ===== Theme tokens ===== */
:root{
  --ink:#0f1416;
  --muted:#5d6a6f;
  --line:#e3ece6;
  --soft:#f1f6f3;
  --accent:#2f8d7e;
  --accent-2:#9bd7c7;
  --bg:#f7faf8;
  --white:#ffffff;
  --shadow: 0 8px 28px rgba(25,40,34,.08);
}

/* ===== Utilities ===== */
.container{ max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.visually-hidden{ position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0; }

/* ===== Fixed header ===== */
.site-header{
  position: fixed; inset: 0 0 auto 0; height: 72px; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.header-bar{
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo{
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 700;
}
.logo-mark{
  width: 22px; height: 22px; border-radius: 6px;
  background: radial-gradient(60% 60% at 60% 40%, var(--accent-2), var(--accent));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.logo-text{ letter-spacing: .2px; }

/* ===== Nav & burger ===== */
.nav ul{ display:flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav a{ color: var(--ink); text-decoration: none; font-weight: 700; }
.nav a:hover{ color: var(--accent); }
.nav a.pill{ padding: 6px 10px; border:1px solid var(--line); border-radius: 999px; background: var(--white); }
.burger{
  display:none; width: 44px; height: 44px; border:0; background: transparent; border-radius: 10px;
}
.burger:focus{ outline: 2px solid var(--accent); outline-offset: 2px; }
.burger-line{
  display:block; width: 22px; height: 2px; background:#1c2521; margin: 4px auto; border-radius: 1px;
}

/* ===== Main spacing (offset for fixed header) ===== */
#main{ padding-top: 92px; }

/* ===== Footer ===== */
.site-footer{
  margin-top: 60px;
  background: linear-gradient(180deg,#f2f7f4 0%, #eef6f2 100%);
  border-top: 1px solid var(--line);
}
.footer-grid{
  display:grid; grid-template-columns: 2fr 1fr; gap: 20px; padding: 28px 0;
}
.foot-title{ font-weight:700; }
.foot-text{ color: var(--muted); }
.foot-list{ list-style: none; margin:0; padding:0; }
.foot-list li{ display:flex; gap:8px; padding:4px 0; }
.footer-note{
  border-top:1px solid var(--line);
  text-align:center; padding:12px 0; color: var(--muted); font-size: 14px;
}

/* ===== Reveal animation baseline ===== */
.reveal{ opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ===== Images: глобальное ограничение ширины ===== */
img{ display:block; width:100%; height:auto; max-width:350px; }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav{ display:none; }
  .burger{ display:inline-block; }
}
@media (max-width: 520px){
  .header-bar{ height: 68px; }
  .site-header{ height: 68px; }
  #main{ padding-top: 88px; }
}
@media (prefers-reduced-motion: reduce){
  .reveal{ transition: none; opacity: 1; transform: none; }
}
/* раскрытое мобильное меню */
.nav.open{
  display:block;
  position: fixed;
  top: 72px;         /* высота хедера */
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  z-index: 60;
  animation: menuDrop .25s ease;
}
.nav.open ul{
  flex-direction: column;
  gap: 12px;
  padding: 10px 20px;
}
.nav.open a{
  display:block;
  padding: 10px 6px;
}

/* простая анимация выпадения */
@keyframes menuDrop{
  from{ opacity: 0; transform: translateY(-6px); }
  to{   opacity: 1; transform: translateY(0); }
}
.nav.open{ top: 68px; } /* под высоту .site-header на очень узких экранах */
body.menu-open{ overflow: hidden; }
/* Активная страница в хедере */
.nav a[aria-current="page"]{
  color: var(--accent);
  position: relative;
}
.nav a[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:2px; border-radius:2px;
  background: var(--accent);
}
@media (max-width: 860px){
  .nav.open a[aria-current="page"]::after{ bottom:-2px; }
}
/* Footer legal links */
.foot-legal{
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
.foot-legal a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color .2s ease, border-color .2s ease;
}
.foot-legal a:hover{
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 1024px){
  .foot-legal{ margin-top: 10px; display: block; }
}
/* Footer legal links — как кнопки */
.foot-legal{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
}

/* скрываем разделитель " · " из HTML */
.foot-legal span{ display: none; }

/* базовое состояние + фиксация :link/:visited, чтобы не были синими/фиолетовыми */
.foot-legal a,
.foot-legal a:link,
.foot-legal a:visited{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: color .2s ease, border-color .2s ease, box-shadow .25s ease, transform .15s ease;
}

/* hover/active/focus */
.foot-legal a:hover{
  color: var(--accent);
  border-color: var(--accent-2);
  box-shadow: 0 8px 22px rgba(20,42,35,.10);
  transform: translateY(-1px);
}
.foot-legal a:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(20,42,35,.08);
}
.foot-legal a:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* компактнее на очень узких экранах */
@media (max-width: 420px){
  .foot-legal{ gap: 6px; }
  .foot-legal a{ padding: 6px 10px; font-weight: 700; }
}
