:root {
  --bg: #0b0b0f;
  --panel: #121318;
  --text: #e8e6e3;
  --muted: #a8a7a4;
  --accent: #d94141;
  --line: #2a2b31;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* Общие стили */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s ease; }
a:hover { color: var(--accent); }

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,15,.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 18px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.logo {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}
.alias { font-size: 18px; font-weight: 700; color: var(--text); }
.name { font-size: 12px; color: var(--muted); }

.menu {
  display: flex;
  gap: 18px;
}
.menu a {
  color: var(--muted);
  font-weight: 500;
}
.menu a:hover {
  color: var(--text);
}

.cta {
  display: flex;
  gap: 10px;
}
.btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #15161b;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}
.hamb { display: none; }

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(0.6);
}
.slide.active { opacity: 1; }

/* Контент поверх слайдера */
.overlay {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  padding-top: 180px;
  color: #fff;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.7));
  margin-bottom: 25px;
  animation: float 4s ease-in-out infinite;
}

.hero-btn {
  background: var(--accent);
  color: #fff;
  padding: 14px 40px;
  font-size: 20px;
  border-radius: 999px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(217,65,65,0.35);
}
.hero-btn:hover {
  background: #f15b5b;
  transform: translateY(-3px);
}

.hero-tagline {
  font-size: 20px;
  color: #ddd;
  letter-spacing: 0.5px;
  margin-top: 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* === GRID + СЕКЦИИ === */
section {
  padding: 60px 0;
}
h2 {
  font-size: 28px;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0f1015;
  border: 1px solid var(--line);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.tile:hover img {
  transform: scale(1.06);
}
.tile .badge {
  position: absolute;
  right: 8px;
  top: 8px;
  background: rgba(217,65,65,.9);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

/* === ABOUT === */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about .card {
  background: #0f1015;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}
.muted { color: var(--muted); }

/* === CONTACTS === */
.contacts .card {
  background: #0f1015;
  padding: 22px;
  display: grid;
  gap: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

/* === Анимации === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === Адаптив === */
@media (max-width: 768px) {
  .menu { display: none; }
  .hamb { display: block; }
  .hero-logo { width: 130px; }
  .hero-btn { font-size: 16px; padding: 10px 26px; }
  .overlay { padding-top: 120px; }
  .about { grid-template-columns: 1fr; }
}
/* Увеличиваем визуально страницу до 150%, но без зума браузера */
body {
  transform: scale(1.5);
  transform-origin: top center;
  width: 66.6667%; /* 1 / 1.5 = 0.6666 */
  margin: 0 auto;
  overflow-x: hidden;
}
