:root {
  --ink: #10102e;
  --ink-soft: #4c4c74;
  --paper: #f5f6fb;
  --paper-card: rgba(252, 252, 255, 0.94);
  --line: rgba(11, 11, 59, 0.14);
  --accent: #2e2e7a;
  --accent-strong: #1c1c5e;
  --shadow: rgba(11, 11, 59, 0.14);
  --link-border: rgba(28, 28, 94, 0.24);
  --link-border-hover: rgba(28, 28, 94, 0.45);
  --link-shadow-hover: rgba(28, 28, 94, 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: var(--paper);
  display: flex;
  flex-direction: column;
}

.container {
  width: min(920px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 1.05rem 0;
  background: var(--paper);
}

.site-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
}

.banner {
  height: clamp(240px, 36vw, 430px);
  background: url("banner.jpg") no-repeat center;
  background-size: cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page {
  flex: 1;
  padding-bottom: 2.2rem;
}

.card {
  position: relative;
  margin-top: -3.4rem;
  background: var(--paper-card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  box-shadow: 0 18px 34px var(--shadow);
}

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

.company-name {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--accent-strong);
}

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

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

.details strong {
  color: var(--accent-strong);
}

.documents {
  margin-top: 1.6rem;
}

.documents h2 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.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);
}

.footer {
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 0.75rem 1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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