:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #122033;
  --muted: #617089;
  --line: #d9e1ea;
  --accent: #12659a;
  --accent-dark: #0d3f66;
  --shadow: 0 18px 45px rgba(18, 32, 51, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0, var(--bg) 48rem);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.hero-card,
.section {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 28px;
}

.business-card {
  width: min(100%, 760px);
  height: auto;
  display: block;
  border-radius: 18px;
}

.current-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.current-links a {
  color: var(--accent-dark);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  font-weight: 700;
}

.current-links a:hover,
.document-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.section {
  margin-top: 22px;
  padding: 30px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0 0 18px;
  color: var(--accent-dark);
  line-height: 1.15;
}

.bio-section p {
  text-align: justify;
  hyphens: auto;
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.7;
}

.bio-section p:last-child {
  margin-bottom: 0;
  color: var(--text);
}

.document-grid {
  display: grid;
  gap: 18px;
}

.document-grid-three { grid-template-columns: repeat(3, 1fr); }
.document-grid-two { grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; }

.document-card {
  display: grid;
  gap: 12px;
  align-content: start;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.document-card img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #edf1f5;
}

.document-card span {
  min-height: 44px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 860px) {
  .document-grid-three,
  .document-grid-two { grid-template-columns: 1fr; }
  .section,
  .hero-card { padding: 20px; }
  .document-card img { max-height: 520px; }
}