/* ============================================
   B.A.R.D. - Глобален стил (за всички страници)
   ============================================ */
:root {
  --brand: #cf1259;
  --brand2: #a50e47;
  --brand-bg: #fde6ef;
  --dark: #241019;
  --gray: #7a6670;
  --border: #f0dde5;
  --r: 14px;
  --serif: 'Lora', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--serif); letter-spacing: -0.01em; line-height: 1.3; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Бутони */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 26px; border-radius: 100px; font-size: 0.9rem; font-weight: 700;
  transition: all 0.2s; cursor: pointer; font-family: inherit;
}
.btn-brand { background: var(--brand); color: #fff; border: none; }
.btn-brand:hover { background: var(--brand2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand-bg); }

.tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand); margin-bottom: 0.5rem; display: block;
}

/* Навигация */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
}
.nav-brand { font-size: 1.15rem; font-weight: 800; color: var(--dark); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--gray); transition: color 0.15s; }
.nav-links a:hover { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.lang-btn {
  font-size: 0.78rem; font-weight: 700; color: var(--brand);
  border: 1.5px solid var(--border); border-radius: 100px; padding: 5px 12px;
  background: #fff; transition: all 0.15s;
}
.lang-btn:hover { background: var(--brand-bg); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

/* Мобилно меню */
.mob-menu {
  display: none; position: fixed; inset: 0; top: 64px;
  background: #fff; z-index: 99; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1.3rem; font-weight: 700; color: var(--dark); }

/* Футър */
footer {
  background: var(--dark); color: #fff; padding: 2rem 5%;
  text-align: center; font-size: 0.82rem;
}
footer .foot-brand { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
footer p { color: #9ca3af; }

/* Адаптивност */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
}