:root {
  --text: #e5c47e;
  --muted: #e5c47e;
  --line: rgba(255, 255, 255, 0.18);
  --accent: #7fd6cb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #00a0a9;
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.22em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.site-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

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

.brand-logo {
  display: block;
  width: min(97px, 45vw);
  height: auto;
  margin: 0 auto 22px;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
}

.message {
  max-width: 520px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-style: normal;
  line-height: 1.6;
}

.contact span {
  color: var(--line);
}

.website-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  border: 1px solid currentColor;
  border-radius: 6px;
  margin: 24px auto 0;
  background: var(--text);
  color: #00a0a9;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.website-button:hover,
.website-button:focus-visible {
  background: transparent;
  color: var(--text);
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  .site-shell {
    padding: 24px;
  }

  .contact {
    align-items: center;
    flex-direction: column;
  }

  .contact span {
    display: none;
  }

  .website-button {
    margin-top: 24px;
  }
}
