@font-face {
  font-family: 'Cutive';
  src: url('../assets/Cutive/Cutive-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  background: #ffffff;
  color: #111111;
  font-family: 'Cutive', Georgia, serif;
  font-size: 0.95em;
  line-height: 1.8;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

/* ── Layout ─────────────────────────────────────────────────── */

.pk-wrap {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2em 1em;
  gap: 2em;
}

/* ── Sidebar ─────────────────────────────────────────────────── */

#pk-nav {
  flex: 0 0 200px;
  position: sticky;
  top: 2em;
}

.pk-nav-title {
  display: block;
  font-size: 0.85em;
  color: #555;
  margin-bottom: 1.2em;
  letter-spacing: 0.03em;
}

.pk-nav-title:hover {
  color: #000;
  text-decoration: none;
}

#pk-nav ul {
  list-style: none;
  border-left: 2px solid #ccc;
  padding-left: 1em;
}

#pk-nav ul li {
  margin-bottom: 0.4em;
}

#pk-nav ul li a {
  font-size: 0.9em;
  color: #555;
}

#pk-nav ul li a:hover {
  color: #000;
  text-decoration: none;
}

/* ── Content ─────────────────────────────────────────────────── */

#pk-content {
  flex: 1 1 0;
  min-width: 0;
}

.pk-header-logo {
  display: block;
  max-width: 480px;
  width: 100%;
  margin-bottom: 2em;
}

#pk-content section {
  margin-bottom: 3em;
}

#pk-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4em;
  color: #111;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3em;
  margin-bottom: 0.8em;
}

#pk-content p {
  margin-bottom: 0.9em;
}

#pk-content ul {
  list-style: square;
  padding-left: 1.4em;
}

#pk-content ul li {
  margin-bottom: 0.3em;
}

/* ── Top row: factsheet + description ────────────────────────── */

.pk-top-row {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  margin-bottom: 3em;
}

.pk-factsheet {
  flex: 0 0 240px;
}

.pk-description {
  flex: 1 1 0;
}

.pk-factsheet dl,
#pk-content dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2em 1em;
}

.pk-factsheet dt,
#pk-content dt {
  font-weight: bold;
  color: #111;
  white-space: nowrap;
}

.pk-credits {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2em 1em;
}

/* ── Image grid ──────────────────────────────────────────────── */

.pk-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6em;
}

.pk-image-grid a img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
  transition: opacity 0.15s;
}

.pk-image-grid a:hover img {
  opacity: 0.85;
}

.pk-logo-grid {
  grid-template-columns: 1fr;
  max-width: 360px;
}

/* ── Misc ────────────────────────────────────────────────────── */

.pk-placeholder {
  color: #888;
  font-style: italic;
}

@media (max-width: 700px) {
  .pk-wrap {
    flex-direction: column;
  }

  #pk-nav {
    position: static;
    flex: none;
    width: 100%;
  }

  .pk-top-row {
    flex-direction: column;
  }

  .pk-factsheet {
    flex: none;
    width: 100%;
  }

  .pk-image-grid {
    grid-template-columns: 1fr;
  }
}
