:root {
  --background: #172334;
  --background-deep: #111b29;
  --gold: #d7a53a;
  --white: #f5f7fa;
  --muted: #c4ccd6;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--background);
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 24px 10px;
}

.hero {
  width: min(1050px, 100%);
  text-align: center;
}

.logo {
  width: min(640px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

h1 {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(1.9rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.copy {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  line-height: 1.52;
}

.copy p { margin: 0 0 12px; }
.copy p:last-child { margin-bottom: 0; }

.contact {
  display: inline-block;
  margin: 24px 0 0;
  padding: 12px 18px;
  border: 1px solid rgba(215, 165, 58, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  font-size: 1rem;
}

.contact a { color: var(--gold); font-weight: 700; text-decoration: none; }
.contact a:hover, .contact a:focus { text-decoration: underline; }

footer {
  padding: 14px 20px 22px;
  color: rgba(245, 247, 250, 0.72);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .page { padding: 28px 18px 12px; }
  .logo { width: min(520px, 94vw); margin-bottom: 24px; }
  h1 { font-size: clamp(2rem, 10vw, 3.05rem); }
  .copy { font-size: 1rem; line-height: 1.58; }
  .contact { border-radius: 18px; }
}
