:root {
  --bg: #070d1d;
  --surface: #0c152c;
  --surface-soft: #131f3a;
  --card: rgba(20, 32, 62, 0.72);
  --text: #f4f6fb;
  --muted: #b8c2dd;
  --accent: #e2bf67;
  --accent-strong: #b88a2f;
  --accent-2: #f1d891;
  --border: rgba(226, 191, 103, 0.24);
  --shadow: 0 22px 60px rgba(2, 8, 25, 0.6);
  --radius: 20px;
  --hero-overlay: linear-gradient(115deg, rgba(5, 10, 28, 0.93), rgba(11, 20, 51, 0.8));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-blur {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(85px);
  z-index: -1;
  pointer-events: none;
}

.bg-blur-left {
  left: -180px;
  top: -120px;
  background: rgba(226, 191, 103, 0.25);
}

.bg-blur-right {
  right: -160px;
  top: 290px;
  background: rgba(184, 138, 47, 0.18);
}

.hero {
  min-height: 92vh;
  background:
    var(--hero-overlay),
    url("https://images.pexels.com/photos/2760241/pexels-photo-2760241.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=1600") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(226, 191, 103, 0.16), transparent 35%),
    radial-gradient(circle at 90% 84%, rgba(184, 138, 47, 0.2), transparent 32%);
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.brand {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffffff;
}

.hero-shell {
  margin: auto;
  padding: 22px 0 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.12;
  text-wrap: balance;
}

.lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1206;
  box-shadow: 0 10px 24px rgba(184, 138, 47, 0.35);
}

.btn-solid:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(12, 21, 44, 0.38);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(226, 191, 103, 0.45);
}

.hero-panel {
  background: linear-gradient(160deg, rgba(19, 31, 58, 0.74), rgba(9, 16, 35, 0.78));
  border: 1px solid rgba(226, 191, 103, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel-title {
  margin: 0 0 16px;
  font-weight: 600;
  color: #f4e3bb;
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 12px;
  border-radius: 14px;
  background: rgba(10, 18, 39, 0.68);
  border: 1px solid rgba(226, 191, 103, 0.16);
}

.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section h2 {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

.section-text {
  color: var(--muted);
  margin: 0 0 26px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: linear-gradient(145deg, rgba(226, 191, 103, 0.12), rgba(184, 138, 47, 0.05)), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1206;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(226, 191, 103, 0.16), transparent 42%), var(--surface);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 240px;
  background: rgba(12, 21, 44, 0.72);
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 240px;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 12px 14px 14px;
  color: #f2e3bf;
  font-size: 0.95rem;
  border-top: 1px solid rgba(226, 191, 103, 0.18);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  border: 1px solid var(--border);
  background: rgba(12, 21, 44, 0.68);
  border-radius: var(--radius);
  padding: 22px;
}

.step-number {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.step h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.about-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefit {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.benefit-number {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-2);
}

.benefit p {
  margin: 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  background: #060d1e;
  padding: 36px 0;
  margin-top: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 20px;
}

.footer h3 {
  margin: 0 0 8px;
}

.footer p {
  margin: 6px 0;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer a {
  color: #f0d38e;
}

.footer a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .hero-shell,
  .about-shell,
  .timeline {
    grid-template-columns: 1fr;
  }

  .cards,
  .benefits {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .bg-blur {
    display: none;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 58px 0;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    grid-column: span 1;
    min-height: 200px;
  }

  .gallery-item img {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
