:root {
  --ink: #18212f;
  --ink-soft: #516075;
  --paper: #f4f1ea;
  --paper-card: rgba(255, 255, 255, 0.78);
  --line: rgba(24, 33, 47, 0.14);
  --accent: #a17937;
  --accent-strong: #835f27;
  --spot-1: rgba(161, 121, 55, 0.16);
  --spot-2: rgba(24, 33, 47, 0.16);
  --shadow: rgba(18, 28, 40, 0.12);
  --link-border: rgba(131, 95, 39, 0.24);
  --link-border-hover: rgba(131, 95, 39, 0.45);
  --link-shadow-hover: rgba(131, 95, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, var(--spot-1), transparent 40%),
    radial-gradient(circle at 80% 90%, var(--spot-2), transparent 46%),
    var(--paper);
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2.2rem 1rem;
}

.card {
  width: min(760px, 100%);
  background: var(--paper-card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.4rem;
  box-shadow: 0 18px 34px var(--shadow);
}

.logo {
  display: block;
  max-width: 260px;
  width: 60%;
  height: auto;
  margin: 0 auto 1rem;
}

.company-name {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  line-height: 1.08;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.details p {
  margin: 0.5rem 0;
  line-height: 1.45;
}

.details strong {
  color: #111a29;
}

.documents {
  margin-top: 1.5rem;
}

.documents h2 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.document-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.document-link {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--link-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-decoration: none;
  transition: transform 130ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.document-link .icon {
  font-size: 1.08rem;
  line-height: 1.4;
}

.document-link small {
  display: block;
  margin-top: 0.18rem;
  color: var(--ink-soft);
}

.document-link:hover {
  transform: translateY(-1px);
  border-color: var(--link-border-hover);
  box-shadow: 0 8px 18px var(--link-shadow-hover);
}

.empty-state {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 0.75rem;
  color: var(--ink-soft);
}

.footer {
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 0.75rem 1rem 1.1rem;
}

@media (min-width: 680px) {
  .card {
    padding: 2.45rem;
  }
}
