:root {
  --mt-navy: #112e51;
  --mt-navy-d: #0e2545;
  --mt-gold: #b8905b;
  --mt-gold-h: #9c7849;
  --mt-cream: #fdfbf7;
}

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

body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(160deg, var(--mt-navy) 0%, var(--mt-navy-d) 100%);
  color: #2f333a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mt-maintenance {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-card {
  background: var(--mt-cream);
  max-width: 560px;
  width: 100%;
  padding: 56px 40px;
  border-radius: 6px;
  border-top: 4px solid var(--mt-gold);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.mt-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.mt-logo-mark {
  width: 64px;
  height: 64px;
  border: 2px solid var(--mt-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--mt-navy);
  letter-spacing: 1px;
}

.mt-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mt-navy);
  line-height: 1.4;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 4vw, 34px);
  color: var(--mt-navy);
  font-weight: 600;
  margin-bottom: 18px;
}

.mt-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a4f57;
  margin-bottom: 40px;
}

.mt-contact {
  border-top: 1px solid rgba(17, 46, 81, 0.12);
  padding-top: 28px;
}

.mt-contact h2 {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mt-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.mt-contact p {
  font-size: 14px;
  color: #4a4f57;
  margin-bottom: 14px;
}

.mt-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mt-contact a {
  color: var(--mt-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
}

.mt-contact a:hover {
  color: var(--mt-gold-h);
}
