﻿:root {
  --bg: #0e0f1e;
  --bg-2: #14152a;
  --bg-3: #1c1d35;
  --text: #ececf2;
  --muted: #a8a9bd;
  --red: #d8232a;
  --red-2: #ff4148;
  --gold: #e6b941;
  --gold-2: #f1cd6a;
  --line: rgba(255,255,255,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Unbounded', 'Manrope', sans-serif; font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section__title { text-align: center; }
.section__lead { text-align: center; color: var(--muted); max-width: 720px; margin: 0 auto 48px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(14, 15, 30, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Unbounded', sans-serif; font-weight: 700; }
.brand img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.brand span { font-size: 1.05rem; letter-spacing: .02em; }

.nav__menu { display: flex; gap: 28px; }
.nav__menu a {
  color: var(--muted);
  font-weight: 500;
  font-size: .98rem;
  transition: color .2s;
  position: relative;
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--red); transition: right .25s;
}
.nav__menu a:hover::after { right: 0; }

.nav__toggle {
  display: none;
  background: transparent; border: 0;
  width: 40px; height: 40px; padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .2s;
}

/* HERO */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(14,15,30,.92) 0%, rgba(14,15,30,.55) 55%, rgba(14,15,30,.25) 100%),
    linear-gradient(0deg, rgba(14,15,30,.65) 0%, rgba(14,15,30,0) 50%);
}
.hero__content {
  max-width: 1180px; margin: 0 auto; padding: 96px 24px;
  width: 100%;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  margin: 0 0 14px;
}
.hero h1 {
  background: linear-gradient(180deg, #fff 0%, #d6d6e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.hero__tagline {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #d8d8e6;
  margin: 0 0 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, border-color .2s, color .2s;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(216, 35, 42, .35);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.18);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ABOUT */
.section--about { background: var(--bg); }
.grid-2 {
  display: grid; gap: 56px;
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}
.about__text h2 { margin-bottom: 24px; }
.about__text p { color: #d6d7e2; margin: 0 0 16px; }
.about__quote {
  margin-top: 28px !important;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(230, 185, 65, 0.06);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  color: #f3e7c6;
}
.about__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about__badge {
  position: absolute; right: 16px; bottom: 16px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--bg);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.about__badge img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* CARDS */
.cards {
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .2s, border-color .2s, background .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 35, 42, .45);
  background: linear-gradient(180deg, rgba(216, 35, 42, .08), rgba(255,255,255,.02));
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: rgba(216, 35, 42, .15);
  color: var(--gold);
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ACHIEVEMENTS */
.achievements {
  display: grid; gap: 48px;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
}
.achievements__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.achievements__list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #d6d7e2;
}
.achievements__list li::before {
  content: '';
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  box-shadow: 0 0 0 4px rgba(216, 35, 42, .12);
}
.achievements__list strong { color: #fff; }
.achievements__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.achievements__media img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }

/* CONTACTS */
.contacts {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px; margin: 0 auto;
}
.contact {
  display: flex; flex-direction: column; gap: 6px;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .15s, border-color .2s, background .2s;
}
.contact:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 185, 65, .5);
}
.contact__label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
}
.contact__value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #fff;
  word-break: break-word;
}

/* FOOTER */
.footer {
  background: #0a0b18;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
  font-size: .92rem;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.footer__brand strong { color: #fff; display: block; font-family: 'Unbounded', sans-serif; }
.footer__brand span { font-size: .9rem; }

/* RESPONSIVE */
@media (max-width: 920px) {
  .grid-2, .achievements { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contacts { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero__content { padding: 72px 24px; }
}

@media (max-width: 640px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(14, 15, 30, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transform: translateY(-110%);
    transition: transform .25s ease;
    pointer-events: none;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__menu a { padding: 14px 24px; }
  .nav__menu a::after { display: none; }
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}