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

body {
  font-family: 'Georgia', serif;
  background-color: #0d1b2a;
  color: #e8dcc8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: min(88vw, 640px);
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.logo-img {
  display: block;
  width: min(88vw, 640px);
  max-width: 100%;
  max-height: 340px;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: #c9a84c;
  margin: 0 auto 2.5rem;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #b0a898;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
}

.contact a {
  color: #c9a84c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact a:hover {
  border-color: #c9a84c;
}

footer {
  position: fixed;
  bottom: 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  color: #4a4a4a;
  letter-spacing: 0.08em;
}
