:root {
  --bg: #f7f3ee;
  --line: #d4b06a;
  --text: #0b2e6d;
  --soft: rgba(11, 46, 109, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.page {
  width: min(920px, 100%);
  min-height: min(760px, calc(100vh - 48px));
  border: 1px solid rgba(212, 176, 106, 0.45);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(212, 176, 106, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 70px rgba(11, 46, 109, 0.06);
  display: grid;
  place-items: center;
  padding: 34px;
}

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

.logo {
  width: min(100%, 340px);
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 26px rgba(11, 46, 109, 0.06));
}

.rule {
  width: 72px;
  height: 1px;
  margin: 0 auto 18px;
  background: var(--line);
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.subline {
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: var(--soft);
}

.subline a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.contact-links {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.contact-link {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid rgba(212, 176, 106, 0.45);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.5);
  max-width: 100%;
  word-break: break-word;
  text-align: center;
}

.contact-link--icon {
  width: 56px;
  height: 56px;
  padding: 0;
  display: grid;
  place-items: center;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  color: var(--text);
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.small {
  margin-top: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 46, 109, 0.5);
}

@media (max-width: 560px) {
  body {
    padding: 12px;
  }

  .page {
    min-height: calc(100vh - 24px);
    padding: 24px 18px;
    border-radius: 22px;
  }

  .logo {
    margin-bottom: 8px;
  }
}
