/* =============================================================================
   Press & media kit. Loaded only on /press — shared tokens live in site.css.
   ========================================================================== */

.press { color: var(--ink); background: var(--bg); overflow-x: hidden; }
.press section { padding-left: 32px; padding-right: 32px; }
.press .inner { max-width: 1180px; margin: 0 auto; }

/* eyebrow */
.press-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.press-eyebrow__rule { width: 26px; height: 2px; background: var(--accent-deep); }
.press-eyebrow__text {
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600;
}

/* ------------------------------------------------------------------ hero -- */
.press-hero { padding-top: 76px; padding-bottom: 40px; }
.press-hero__title {
  margin: 0; font-size: 54px; line-height: 1.04; letter-spacing: -.03em;
  font-weight: 700; color: var(--ink); max-width: 720px;
}
.press-hero__lede {
  max-width: 620px; margin: 20px 0 0; font-size: 18px; line-height: 1.55; color: #565a4f;
}

/* -------------------------------------------------- fact sheet + about -- */
.press-main { padding-top: 12px; padding-bottom: 40px; }
.press-split { display: flex; gap: 24px; align-items: flex-start; }

.fact-card {
  flex: 1; background: #fff; border: 1px solid var(--line-2);
  border-radius: 18px; padding: 32px;
}
.fact-card__label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #8b8f82; font-weight: 700; margin-bottom: 18px;
}
.factlist { margin: 0; }
.factlist__row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.factlist__row:last-child { border-bottom: 0; }
.factlist__key { margin: 0; color: #8b8f82; font-size: 14.5px; }
.factlist__val { margin: 0; font-weight: 600; font-size: 14.5px; text-align: right; }
.factlist__val--accent { color: var(--accent-deep); }

.press-about { flex: 1.25; }
.press-about__label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #8b8f82; font-weight: 700; margin-bottom: 14px;
}
.press-about__p {
  margin: 0 0 16px; font-size: 17px; line-height: 1.65; color: #3d4136; text-wrap: pretty;
}

.press-contact {
  margin-top: 8px; background: var(--foot-bg); border-radius: 16px; padding: 24px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.press-contact__title { color: #f4f6f2; font-weight: 700; font-size: 17px; }
.press-contact__sub { color: var(--foot-ink); font-size: 14.5px; margin-top: 3px; }
.press-contact__btn {
  text-decoration: none; background: var(--accent); color: #05130c; font-weight: 700;
  font-size: 14.5px; padding: 12px 22px; border-radius: 11px; white-space: nowrap;
}

/* ------------------------------------------------------------ brand assets -- */
.press-assets { padding-top: 40px; padding-bottom: 90px; }
.press-assets__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 22px; flex-wrap: wrap;
}
.press-assets__title {
  margin: 0; font-size: 30px; letter-spacing: -.02em; font-weight: 700; color: var(--ink);
}
.press-assets__note { font-size: 13.5px; color: #8b8f82; }

.asset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.asset-card {
  text-decoration: none; color: inherit; display: block; overflow: hidden;
  background: #fff; border: 1px solid var(--line-2); border-radius: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.asset-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -26px rgba(18, 40, 28, .32); }

.asset-card__frame {
  height: 180px; display: flex; align-items: center; justify-content: center;
  padding: 28px; overflow: hidden;
}
.asset-card__frame--dark   { background: var(--foot-bg); }
.asset-card__frame--mascot { background: linear-gradient(135deg, #12211a, #1c3550); padding: 22px; }
.asset-card__frame--shot   { background: #2e2e2e; padding: 0; }

.asset-card__svg,
.asset-card__img--contain { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.asset-card__img--cover   { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.asset-card__meta {
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.asset-card__name { font-size: 16px; font-weight: 700; }
.asset-card__type { font-size: 13px; color: #8b8f82; margin-top: 2px; }
.asset-card__dl { font-size: 13.5px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; }

/* ------------------------------------------------------------ responsive -- */
@media (max-width: 860px) {
  .press-split { flex-direction: column; }
  .asset-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .press section { padding-left: 20px; padding-right: 20px; }
  .press-hero__title { font-size: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .asset-card { transition: none; }
}
