:root {
  color-scheme: light;
  --burgundy: #7b263f;
  --burgundy-dark: #5f1c30;
  --charcoal: #292527;
  --muted: #6f686b;
  --line: #d9d1d3;
  --paper: #fffdfb;
  --ground: #f4f0ed;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ground);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(123, 38, 63, 0.08), transparent 13rem),
    var(--ground);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  display: block;
  height: 0.35rem;
  background: var(--burgundy);
}

.maintenance {
  width: min(100% - 2.5rem, 50rem);
  margin-inline: auto;
  padding: clamp(3rem, 9vh, 7rem) 0 4rem;
}

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

.brand__logo {
  display: block;
  width: min(100%, 23rem);
  height: auto;
  mix-blend-mode: multiply;
}

.rule {
  display: flex;
  align-items: center;
  width: 100%;
  margin: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid var(--line);
}

.rule span {
  width: 5.25rem;
  border-top: 3px solid var(--burgundy);
  transform: translateY(-2px);
}

.message {
  max-width: 43rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  margin: 0 0 1.25rem;
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

p {
  max-width: 42rem;
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.lead {
  color: #4b4548;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  line-height: 1.55;
}

a {
  color: inherit;
}

.text-link {
  color: var(--burgundy-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0;
}

.contact-action {
  display: flex;
  min-height: 5.4rem;
  flex-direction: column;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--burgundy);
  border-radius: 0.25rem;
  color: var(--burgundy-dark);
  background: var(--paper);
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.contact-action--primary {
  color: white;
  background: var(--burgundy);
}

.contact-action span {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-action strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.contact-action:hover {
  color: white;
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

.contact-action:focus-visible,
.text-link:focus-visible {
  outline: 3px solid #d29aad;
  outline-offset: 4px;
}

.closing {
  margin-top: 2rem;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

@media (max-width: 37rem) {
  .maintenance {
    width: min(100% - 2rem, 50rem);
    padding-top: 2.5rem;
  }

  .brand__logo {
    width: min(88%, 19rem);
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-action {
    transition: none;
  }
}
