:root {
  --background: #07090d;
  --background-soft: #0d1219;
  --panel: #121922;
  --panel-light: #18212d;
  --gold: #d7ad55;
  --gold-light: #f1d589;
  --gold-dark: #8f6a2a;
  --white: #f7f8fa;
  --silver: #c6ced8;
  --muted: #929daa;
  --line: rgba(255, 255, 255, 0.09);
  --gold-line: rgba(215, 173, 85, 0.28);
  --radius: 21px;
  --maximum-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(
      circle at 14% 3%,
      rgba(215, 173, 85, 0.13),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #07090d 0%,
      #0a0e14 50%,
      #07090d 100%
    );
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.68;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 36px), var(--maximum-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.91);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07090d;
  background:
    linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  font-family: Georgia, serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
}

.brand small {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 23px;
  color: var(--silver);
  font-size: 0.88rem;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.hero {
  padding: 115px 0 95px;
  border-bottom: 1px solid var(--gold-line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 750px;
  color: var(--silver);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #080a0e;
  background:
    linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 800;
}

.button-secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.notice {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(215, 173, 85, 0.045);
  font-size: 0.82rem;
}

.future-panel {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  border: 1px solid var(--gold-line);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(241, 213, 137, 0.2),
      transparent 29%
    ),
    linear-gradient(145deg, #263542, #090d13 70%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.panel-label {
  width: fit-content;
  margin-bottom: 13px;
  padding: 6px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.future-panel h2 {
  margin-bottom: 12px;
  font-size: 2.3rem;
  line-height: 1.05;
}

.future-panel p {
  color: var(--silver);
}

.section {
  padding: 90px 0;
}

.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 490px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card,
.direction-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.016)
    );
}

.card-number,
.direction-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 800;
}

.card h3,
.direction-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.card p,
.direction-card p {
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px;
  border: 1px solid var(--gold-line);
  border-radius: 26px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 173, 85, 0.08),
      rgba(255, 255, 255, 0.018)
    );
}

.contact-panel h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-panel p {
  max-width: 700px;
  color: var(--silver);
}

.legal-notice {
  padding: 31px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.legal-notice h2 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.legal-notice p {
  color: var(--muted);
  font-size: 0.78rem;
}

footer {
  padding: 38px 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

@media (max-width: 950px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }

  .section-heading,
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid {
    flex-direction: column;
  }
}
