/* ============================================================
   HOME.CSS — главная страница
   ============================================================ */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(12,12,12,0.75) 60%, #0c0c0c 100%);
}
.hero__fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to top, #0c0c0c, transparent);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px; padding: 0 24px;
}
.hero__title {
  font-family: Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero__title span { display: block; color: var(--gold); }
.hero__sub {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 48px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- FEATURES ---- */
.features { padding: 96px 0; background: var(--bg); }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(212,175,55,0.3); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(212,175,55,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.feature-card:hover .feature-icon { background: rgba(212,175,55,0.18); }
.feature-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-title {
  font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 12px;
}
.feature-desc { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ---- LATEST NEWS ---- */
.latest-news {
  padding: 96px 0;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.latest-news__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.latest-news__more {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.latest-news__more:hover { color: var(--gold); }
.latest-news__more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ---- NEWS CARD ---- */
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.news-card__img {
  height: 200px; overflow: hidden;
  position: relative; background: #1a1a1a;
}
.news-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__badge {
  position: absolute; top: 14px; left: 14px;
}
.news-card__body { padding: 24px; }
.news-card__date {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 10px;
}
.news-card__title {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 12px; line-height: 1.4;
  transition: color 0.2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card:hover .news-card__title { color: var(--gold); }
.news-card__excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card--placeholder {
  height: 340px;
  animation: pulse 1.5s ease-in-out infinite;
  background: rgba(255,255,255,0.04);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---- CTA ---- */
.cta-section {
  padding: 120px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
}
.cta-section__title {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 20px;
}
.cta-section__sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto 40px;
}
.cta-section__actions {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
