:root {
  --bg: #151515;
  --panel: #ffffff;
  --text: #202020;
  --muted: #666666;
  --red: #d91f26;
  --line: #e8e0dc;
  --cream: #f7f2ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
}

a {
  color: inherit;
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.68)),
    url("../img/maintenance-bg.jpg"),
    var(--bg);
  background-size: cover;
  background-position: center;
}

.brand-logo {
  width: min(340px, 82vw);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  font-weight: 400;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 76px);
  background: var(--panel);
}

.contact-panel h2 {
  margin: 0 0 26px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
}

dl div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

dl div:last-child {
  border-bottom: 1px solid var(--line);
}

dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

dd a {
  color: var(--text);
  font-weight: 800;
  text-decoration-color: rgba(217, 31, 38, 0.35);
  text-underline-offset: 4px;
}

dd span {
  display: inline-block;
  margin: 0 8px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .maintenance-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
