/* /presse/ — the press kit. Reading order is the priority order: facts, then
   the lines to quote, then vehicles, images, and permissions. */

.pk-hero { max-width: 680px; margin-bottom: clamp(34px, 5vw, 54px); }
.pk-title {
  font-family: var(--f-display);
  font-size: clamp(42px, 8vw, 78px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
.pk-lede {
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.6;
  text-wrap: pretty;
}

.pk-sec { margin-bottom: clamp(38px, 5.5vw, 60px); }
.pk-h2 {
  font-family: var(--f-stencil);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid rgba(232, 163, 23, .22);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pk-h2-flush { border: none; padding-bottom: 0; margin-bottom: 10px; }
.pk-h3 {
  font-family: var(--f-stencil);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 22px 0 10px;
}
.pk-body {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 62ch;
  text-wrap: pretty;
  margin-bottom: 18px;
}
.pk-body-wide { max-width: 80ch; }
.pk-note {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px dashed rgba(232, 227, 214, .16);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.pk-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--amber);
}
.pk-link:hover { color: var(--amber-bright); }

/* --- Fact sheet ---------------------------------------------------------- */
/* A grid of key/value pairs rather than a table: it is read a row at a time,
   never compared down a column, and it has to reflow to one column on a phone
   without a table's horizontal scroll.

   Fixed column counts, not auto-fit, and every count divides the eight facts
   exactly: 4, then 2, then 1. The 1px gaps are the container's background
   showing through, so a row that does not fill leaves that colour hanging in
   the empty cells and the sheet reads as unfinished. Keep the number of facts
   in presse/index.php divisible by four, or change these counts with it. */
.pk-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232, 227, 214, .07);
  border: 1px solid rgba(232, 227, 214, .07);
  margin: 0;
}
@media (max-width: 940px) { .pk-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pk-facts { grid-template-columns: 1fr; } }
.pk-fact { background: var(--panel); padding: 16px 18px; }
.pk-fact dt {
  font-family: var(--f-stencil);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 7px;
}
.pk-fact dd { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.4; }

/* --- Quotable lines ------------------------------------------------------ */
/* Set apart because they are meant to be copied verbatim into an article. */
.pk-quote {
  border-left: 2px solid var(--amber);
  background: rgba(232, 163, 23, .05);
  padding: 16px 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 72ch;
  text-wrap: pretty;
}
.pk-quote-short { font-size: 17px; line-height: 1.6; }

/* --- Vehicles ------------------------------------------------------------ */
.pk-vehicles { display: grid; gap: 8px; }
.pk-vehicle {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(232, 227, 214, .08);
  background: var(--panel);
  padding: 14px 16px;
}
.pk-veh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--amber-line);
  color: var(--amber);
  font-size: 18px;
}
.pk-veh-body { flex: 1; min-width: 0; }
.pk-veh-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: .02em; }
.pk-veh-meta { font-size: 12.5px; color: var(--muted-2); }
.pk-veh-specs {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .03em;
  text-align: right;
  white-space: nowrap;
}

/* --- Images -------------------------------------------------------------- */
.pk-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.pk-shot {
  display: block;
  border: 1px solid rgba(232, 227, 214, .08);
  background: var(--panel);
  transition: border-color .18s ease;
}
.pk-shot:hover { border-color: var(--amber-line); }
.pk-shot-img {
  display: block;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  filter: saturate(.9) brightness(.85);
  transition: filter .18s ease;
}
.pk-shot:hover .pk-shot-img { filter: saturate(1) brightness(1); }
.pk-shot-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.pk-shot:hover .pk-shot-bar { color: var(--amber); }

/* --- Press contact ------------------------------------------------------- */
.pk-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--amber-line);
  background: rgba(232, 163, 23, .06);
  padding: clamp(20px, 3vw, 30px);
}
.pk-cta .pk-body { margin-bottom: 0; }
.pk-cta-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  background: var(--amber);
  color: #14140d;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 15px 24px;
}
.pk-cta-btn:hover { background: var(--amber-bright); }

@media (max-width: 620px) {
  .pk-vehicle { flex-wrap: wrap; }
  .pk-veh-specs { text-align: left; width: 100%; white-space: normal; }
  .pk-cta-btn { width: 100%; justify-content: center; }
}
