* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050506;
  color: #e8e2d2;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 181, 109, 0.18);
}

.logo {
  color: #d8b56d;
  font-weight: 900;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: #e8e2d2;
  text-decoration: none;
  font-size: 15px;
}

.nav a:hover {
  color: #f0cf84;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 7% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.1) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.tag {
  color: #d8b56d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  color: #f8f0df;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.75);
}

.hero p {
  max-width: 720px;
  color: #e0d7c8;
  font-size: 21px;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 15px 28px;
  background: #d8b56d;
  color: #111;
  text-decoration: none;
  font-weight: 900;
  border-radius: 6px;
}

.button:hover {
  background: #f0cf84;
}

/* SECTIONS */

.section,
.section-column {
  padding: 100px 7%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 56px;
  align-items: center;
}

.section h2,
.section-column h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: #f8f0df;
  margin-bottom: 28px;
}

.section-text p {
  max-width: 850px;
  color: #c9c0aa;
  font-size: 19px;
  margin-bottom: 20px;
}

.section-image {
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(216, 181, 109, 0.25);
  background: #101014;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.card {
  background: #101014;
  border: 1px solid rgba(216, 181, 109, 0.16);
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.card:hover {
  border-color: rgba(216, 181, 109, 0.48);
  transform: translateY(-4px);
  transition: 0.2s;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #08080a;
}

.card span {
  display: block;
  color: #d8b56d;
  font-weight: 900;
  margin: 22px 24px 10px;
}

.card h3 {
  color: #f0cf84;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 24px 12px;
}

.card p {
  color: #c9c0aa;
  margin: 0 24px 26px;
}

/* LEGIONS */

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 45px;
}

.panel {
  background: #101014;
  border: 1px solid rgba(216, 181, 109, 0.16);
  border-radius: 18px;
  padding: 32px;
}

.panel h3 {
  color: #f0cf84;
  font-size: 28px;
  margin-bottom: 20px;
}

.panel ul {
  padding-left: 20px;
}

.panel li {
  color: #c9c0aa;
  margin-bottom: 13px;
}

/* TIMELINE */

.timeline {
  display: grid;
  gap: 15px;
  max-width: 1000px;
  margin-top: 45px;
}

.timeline div {
  background: #101014;
  border-left: 4px solid #d8b56d;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  color: #c9c0aa;
}

.timeline strong {
  color: #f0cf84;
}

/* FOOTER */

.footer {
  padding: 38px 7%;
  text-align: center;
  color: #8f8675;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* MOBILE */

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header {
    position: absolute;
    flex-direction: column;
    gap: 14px;
    padding: 18px 5%;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding: 150px 5% 70px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }

  .section,
  .section-column {
    padding: 80px 5%;
  }

  .cards,
  .columns {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card img {
    height: 300px;
  }

  .section-image {
    height: 300px;
  }
}
